cbbf085a4fdfcbbf41e4241900aa94e7f5116e81
[gnulib.git] / ChangeLog
1 2008-04-20  Bruno Haible  <bruno@clisp.org>
2
3         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
4         config.h. Provide _mkdir based fallback for mingw.
5         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
6         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
7         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
8         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
9         rather than defining mkdir in config.h.
10         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
11         (gl_SYS_STAT_H_DEFAULTS): New macro.
12         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
13         HAVE_IO_H any more.
14         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
15         HAVE_DECL_MKDIR and HAVE_IO_H.
16
17 2008-04-20  Bruno Haible  <bruno@clisp.org>
18
19         * lib/isapipe.c: Port to native Windows platforms.
20
21 2008-04-20  Bruno Haible  <bruno@clisp.org>
22
23         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
24
25 2008-04-21  Eric Blake  <ebb9@byu.net>
26
27         Work around preprocessors that don't handle UINTMAX_MAX.
28         * lib/memchr2.c (memchr2): Avoid embedded #if.
29         Reported by Alain Guibert, fix suggested by Bruno Haible.
30
31 2008-04-21  Simon Josefsson  <simon@josefsson.org>
32
33         * doc/posix-functions/strftime.texi (strftime): Explain better
34         Windows incompatibility.  Suggested by Micah Cowan
35         <micah@cowan.name>.
36
37 2008-04-20  Bruno Haible  <bruno@clisp.org>
38
39         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
40         unistr/u8-mblen.
41
42 2008-04-20  Bruno Haible  <bruno@clisp.org>
43
44         Fix test failure on platforms with non-GNU iconv.
45         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
46         (U_TO_U8): Use it, rather than u16_to_u8.
47         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
48         units at the end of the input string.
49         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
50
51 2008-04-20  Bruno Haible  <bruno@clisp.org>
52
53         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
54         when the resulting length is 0.
55         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
56
57 2008-04-20  Bruno Haible  <bruno@clisp.org>
58
59         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
60         works.
61         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
62
63 2008-04-20  Bruno Haible  <bruno@clisp.org>
64
65         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
66         * modules/tsearch-tests (configure.ac): Test for initstate function.
67
68 2008-04-20  Bruno Haible  <bruno@clisp.org>
69
70         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
71         for nlink_t if missing.
72         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
73
74 2008-04-19  Bruno Haible  <bruno@clisp.org>
75
76         Work around snprintf bug on Linux libc5.
77         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
78         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
79         gl_SNPRINTF_SIZE1.
80         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
81         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
82         that test failed.
83         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
84         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
85         * modules/snprintf (Files): Add m4/printf.m4.
86         * modules/vsnprintf (Files): Likewise.
87         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
88         * doc/posix-functions/vsnprintf.texi: Likewise.
89
90 2008-04-19  Bruno Haible  <bruno@clisp.org>
91
92         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
93         from 0.0058 to less than 10^-7.
94
95 2008-04-19  Bruno Haible  <bruno@clisp.org>
96
97         Fix rounding when a precision is given.
98         * lib/vasnprintf.c (is_borderline): New function.
99         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
100         9...9x.
101         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
102         %e, %g.
103         * tests/test-vasprintf-posix.c (test_function): Likewise.
104         * tests/test-snprintf-posix.h (test_function): Likewise.
105         * tests/test-sprintf-posix.h (test_function): Likewise.
106         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
107         * tests/test-printf-posix.h (test_function): Likewise.
108         * tests/test-printf-posix.output: Update.
109         Reported by John Darrington <john@darrington.wattle.id.au> via
110         Ben Pfaff <blp@cs.stanford.edu>.
111
112 2008-04-18  Simon Josefsson  <simon@josefsson.org>
113
114         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
115         Suggested by Bruno Haible <bruno@clisp.org>.
116
117 2008-04-17  Bruno Haible  <bruno@clisp.org>
118
119         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
120         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
121         implementation.
122         Patch by Bruce Merry <bmerry@gmail.com>.
123
124 2008-04-17  Simon Josefsson  <simon@josefsson.org>
125
126         * doc/posix-functions/strftime.texi (strftime): Mention that %e
127         doesn't work under Windows.
128
129 2008-04-16  Bruno Haible  <bruno@clisp.org>
130
131         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
132         New macros.
133         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
134         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
135         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
136         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
137         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
138         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
139         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
140         macros.
141         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
142         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
143         Northern Sotho, Uighur.
144
145 2008-04-16  Bruno Haible  <bruno@clisp.org>
146
147         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
148         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
149         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
150         Reported by Daniel Bergström <daniel@octocode.com>.
151
152 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
153             Bruno Haible  <bruno@clisp.org>
154
155         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
156         function.
157         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
158         New functions, mostly extracted from gl_locale_name_default.
159         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
160
161 2008-04-16  Eric Blake  <ebb9@byu.net>
162
163         Adjust strtod detection to catch glibc 2.7 bug.
164         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
165         Reported by John Gatewood Ham.
166
167 2008-04-16  Bruno Haible  <bruno@clisp.org>
168
169         Add tentative support for Linux libc5.
170         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
171         * lib/fpurge.c (fpurge): Likewise.
172         * lib/freadable.c (freadable): Likewise.
173         * lib/freadahead.c (freadahead): Likewise.
174         * lib/freading.c (freading): Likewise.
175         * lib/freadptr.c (freadptr): Likewise.
176         * lib/freadseek.c (freadptrinc): Likewise.
177         * lib/fseeko.c (rpl_fseeko): Likewise.
178         * lib/fseterr.c (fseterr): Likewise.
179         * lib/fwritable.c (fwritable): Likewise.
180         * lib/fwriting.c (fwriting): Likewise.
181         Reported by Alain Guibert <alguibert+bts@free.fr>.
182
183 2008-04-15  Bruno Haible  <bruno@clisp.org>
184
185         * modules/mathl (configure.ac): Define module indicator.
186
187 2008-04-15  Bruno Haible  <bruno@clisp.org>
188
189         * lib/logl.c (logl): Remove unused variables.
190
191 2008-04-15  Bruno Haible  <bruno@clisp.org>
192
193         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
194         fails.
195
196 2008-04-15  Bruno Haible  <bruno@clisp.org>
197
198         * lib/trim.c (trim2): Fix argument of isspace() macro.
199
200 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
201
202         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
203         to 0.
204         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
205
206 2008-04-14  Bruno Haible  <bruno@clisp.org>
207
208         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
209         AC_LANG_PROGRAM argument.
210         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
211         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
212         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
213         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
214         * m4/math_h.m4 (gl_MATH_H): Likewise.
215         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
216         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
217         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
218         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
219         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
220         * m4/regex.m4 (gl_REGEX): Likewise.
221         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
222         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
223         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
224         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
225         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
226         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
227         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
228         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
229
230 2008-04-14  Jim Meyering  <meyering@redhat.com>
231
232         test-strtod: fix typos: s/abs/fabs/
233         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
234
235 2008-04-13  Bruno Haible  <bruno@clisp.org>
236
237         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
238         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
239         module is also used and while not building the reloc-wrapper.
240
241 2008-04-13  Bruno Haible  <bruno@clisp.org>
242
243         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
244
245 2008-04-13  Bruno Haible  <bruno@clisp.org>
246
247         Fix AIX compilation failure introduced on 2008-04-02.
248         * tests/test-frexp.c (exp): Undefine before redefining.
249         * tests/test-frexpl.c (exp): Likewise.
250
251 2008-04-13  Bruno Haible  <bruno@clisp.org>
252
253         Work around a HP-UX stdio bug.
254         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
255         * tests/test-ftello.c (main): Likewise.
256         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
257         * doc/posix-functions/ftello.texi: Likewise.
258
259 2008-04-13  Bruno Haible  <bruno@clisp.org>
260
261         Make test-signbit pass on HP-UX/hppa.
262         * tests/test-signbit.c (minus_zerol): New variable.
263         (test_signbitl): Use it.
264
265 2008-04-13  Bruno Haible  <bruno@clisp.org>
266
267         Make truncl work on OSF/1 4.0.
268         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
269         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
270         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
271         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
272         HAVE_DECL_TRUNCL.
273         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
274         HAVE_DECL_TRUNCL.
275         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
276
277 2008-04-13  Bruno Haible  <bruno@clisp.org>
278
279         * lib/unictype.h: Remove trailing comma from enumeration definitions.
280
281 2008-04-13  Bruno Haible  <bruno@clisp.org>
282
283         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
284         expression, so as to avoid HP-UX 11 cc compiler bug.
285
286 2008-04-13  Bruno Haible  <bruno@clisp.org>
287
288         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
289
290 2008-04-13  Bruno Haible  <bruno@clisp.org>
291
292         * lib/git-merge-changelog.c: Remove empty declaration outside of
293         functions.
294
295 2008-04-13  Bruno Haible  <bruno@clisp.org>
296
297         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
298
299 2008-04-13  Bruno Haible  <bruno@clisp.org>
300
301         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
302         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
303         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
304         also if it exists but lacks definitions of the SHUT_* macros.
305         * modules/sys_socket (Description): Update.
306         Reported by Elbert Pol <e.pol@chello.nl>.
307
308 2008-04-13  Bruno Haible  <bruno@clisp.org>
309
310         * lib/localcharset.c (OS2): Don't redefine if already defined.
311         Reported by Elbert Pol <e.pol@chello.nl>.
312
313 2008-04-13  Bruno Haible  <bruno@clisp.org>
314
315         * lib/binary-io.h [__EMX__]: Include <io.h>.
316         Reported by Elbert Pol <e.pol@chello.nl>.
317
318 2008-04-12  Bruno Haible  <bruno@clisp.org>
319
320         * lib/fpucw.h: Enable the definitions also for x86_64.
321         Needed for NetBSD/x86_64.
322         Reported by Thomas Klausner <tk@giga.or.at>.
323
324 2008-04-12  Bruno Haible  <bruno@clisp.org>
325
326         * tests/test-strtod.c: Include isnand.h.
327         (main): Use isnand instead of isnan.
328         Reported by Jim Meyering.
329
330 2008-04-12  Bruno Haible  <bruno@clisp.org>
331
332         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
333         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
334
335 2008-04-12  Jim Meyering  <meyering@redhat.com>
336
337         * m4/math_h.m4 (gl_MATH_H): Fix typos.
338
339 2008-04-12  Bruno Haible  <bruno@clisp.org>
340
341         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
342         Reported by Elbert Pol <e.pol@chello.nl>.
343
344 2008-04-12  Eric Blake  <ebb9@byu.net>
345
346         Work around Solaris 10 math.h bug.
347         * m4/math_h.m4 (gl_MATH_H): Check for bug.
348         (gl_MATH_H_DEFAULTS): Set up default.
349         * modules/math (Makefile.am): Replace new indicators.
350         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
351         * tests/test-math.c (main): Test this.
352         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
353         * doc/posix-headers/math.texi (math.h): Mention bug.
354         Reported by Nelson H. F. Beebe and Jim Meyering.
355
356 2008-04-11  Bruno Haible  <bruno@clisp.org>
357
358         Adapt to future versions of Apple GCC.
359         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
360         Reported by Peter O'Gorman <peter@pogma.com>.
361
362 2008-04-11  Bruno Haible  <bruno@clisp.org>
363
364         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
365
366 2008-04-11  Bruno Haible  <bruno@clisp.org>
367
368         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
369
370         * modules/getaddrinfo-tests (Makefile.am): Define
371         test_getaddrinfo_LDADD.
372
373 2008-04-11  Bruno Haible  <bruno@clisp.org>
374
375         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
376         (init): Fix syntax error.
377         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
378         is declared.
379
380 2008-04-11  Bruno Haible  <bruno@clisp.org>
381
382         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
383         * modules/glob (Depends-on): Add stdbool.
384
385 2008-04-11  Bruno Haible  <bruno@clisp.org>
386
387         * lib/trim.c: Include <string.h>.
388
389 2008-04-11  Eric Blake  <ebb9@byu.net>
390
391         Avoid compile failure on OS/2.
392         * lib/regex_internal.h (internal_function): Disable optimization
393         on OS/2 (__EMX__), where it caused compiler error.
394         Reported by Elbert Pol.
395
396 2008-04-11  Bruno Haible  <bruno@clisp.org>
397
398         Flush the standard error stream before aborting. Needed on mingw.
399         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
400         * tests/test-array_list.c (ASSERT): Likewise.
401         * tests/test-array_oset.c (ASSERT): Likewise.
402         * tests/test-avltree_list.c (ASSERT): Likewise.
403         * tests/test-avltree_oset.c (ASSERT): Likewise.
404         * tests/test-avltreehash_list.c (ASSERT): Likewise.
405         * tests/test-binary-io.c (ASSERT): Likewise.
406         * tests/test-byteswap.c (ASSERT): Likewise.
407         * tests/test-c-ctype.c (ASSERT): Likewise.
408         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
409         * tests/test-c-strcasestr.c (ASSERT): Likewise.
410         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
411         * tests/test-c-strstr.c (ASSERT): Likewise.
412         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
413         * tests/test-canonicalize.c (ASSERT): Likewise.
414         * tests/test-carray_list.c (ASSERT): Likewise.
415         * tests/test-ceilf1.c (ASSERT): Likewise.
416         * tests/test-ceilf2.c (ASSERT): Likewise.
417         * tests/test-ceill.c (ASSERT): Likewise.
418         * tests/test-count-one-bits.c (ASSERT): Likewise.
419         * tests/test-fbufmode.c (ASSERT): Likewise.
420         * tests/test-fflush2.c (ASSERT): Likewise.
421         * tests/test-floorf1.c (ASSERT): Likewise.
422         * tests/test-floorf2.c (ASSERT): Likewise.
423         * tests/test-floorl.c (ASSERT): Likewise.
424         * tests/test-fopen.c (ASSERT): Likewise.
425         * tests/test-fpending.c (ASSERT): Likewise.
426         * tests/test-fprintf-posix.c (ASSERT): Likewise.
427         * tests/test-fpurge.c (ASSERT): Likewise.
428         * tests/test-freadable.c (ASSERT): Likewise.
429         * tests/test-freadahead.c (ASSERT): Likewise.
430         * tests/test-freading.c (ASSERT): Likewise.
431         * tests/test-freadptr.c (ASSERT): Likewise.
432         * tests/test-freadptr2.c (ASSERT): Likewise.
433         * tests/test-freadseek.c (ASSERT): Likewise.
434         * tests/test-freopen.c (ASSERT): Likewise.
435         * tests/test-frexp.c (ASSERT): Likewise.
436         * tests/test-frexpl.c (ASSERT): Likewise.
437         * tests/test-fseek.c (ASSERT): Likewise.
438         * tests/test-fseeko.c (ASSERT): Likewise.
439         * tests/test-fstrcmp.c (ASSERT): Likewise.
440         * tests/test-ftell.c (ASSERT): Likewise.
441         * tests/test-ftello.c (ASSERT): Likewise.
442         * tests/test-func.c (ASSERT): Likewise.
443         * tests/test-fwritable.c (ASSERT): Likewise.
444         * tests/test-fwriting.c (ASSERT): Likewise.
445         * tests/test-getdelim.c (ASSERT): Likewise.
446         * tests/test-getline.c (ASSERT): Likewise.
447         * tests/test-i-ring.c (ASSERT): Likewise.
448         * tests/test-iconv-utf.c (ASSERT): Likewise.
449         * tests/test-iconv.c (ASSERT): Likewise.
450         * tests/test-isfinite.c (ASSERT): Likewise.
451         * tests/test-isnand.c (ASSERT): Likewise.
452         * tests/test-isnanf.c (ASSERT): Likewise.
453         * tests/test-isnanl.h (ASSERT): Likewise.
454         * tests/test-ldexpl.c (ASSERT): Likewise.
455         * tests/test-linked_list.c (ASSERT): Likewise.
456         * tests/test-linkedhash_list.c (ASSERT): Likewise.
457         * tests/test-localename.c (ASSERT): Likewise.
458         * tests/test-lseek.c (ASSERT): Likewise.
459         * tests/test-mbscasecmp.c (ASSERT): Likewise.
460         * tests/test-mbscasestr1.c (ASSERT): Likewise.
461         * tests/test-mbscasestr2.c (ASSERT): Likewise.
462         * tests/test-mbscasestr3.c (ASSERT): Likewise.
463         * tests/test-mbscasestr4.c (ASSERT): Likewise.
464         * tests/test-mbschr.c (ASSERT): Likewise.
465         * tests/test-mbscspn.c (ASSERT): Likewise.
466         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
467         * tests/test-mbspbrk.c (ASSERT): Likewise.
468         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
469         * tests/test-mbsrchr.c (ASSERT): Likewise.
470         * tests/test-mbsspn.c (ASSERT): Likewise.
471         * tests/test-mbsstr1.c (ASSERT): Likewise.
472         * tests/test-mbsstr2.c (ASSERT): Likewise.
473         * tests/test-mbsstr3.c (ASSERT): Likewise.
474         * tests/test-memchr2.c (ASSERT): Likewise.
475         * tests/test-memmem.c (ASSERT): Likewise.
476         * tests/test-open.c (ASSERT): Likewise.
477         * tests/test-printf-frexp.c (ASSERT): Likewise.
478         * tests/test-printf-frexpl.c (ASSERT): Likewise.
479         * tests/test-printf-posix.c (ASSERT): Likewise.
480         * tests/test-quotearg.c (ASSERT): Likewise.
481         * tests/test-rbtree_list.c (ASSERT): Likewise.
482         * tests/test-rbtree_oset.c (ASSERT): Likewise.
483         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
484         * tests/test-round1.c (ASSERT): Likewise.
485         * tests/test-roundf1.c (ASSERT): Likewise.
486         * tests/test-roundl.c (ASSERT): Likewise.
487         * tests/test-signbit.c (ASSERT): Likewise.
488         * tests/test-sleep.c (ASSERT): Likewise.
489         * tests/test-snprintf-posix.c (ASSERT): Likewise.
490         * tests/test-snprintf.c (ASSERT): Likewise.
491         * tests/test-sprintf-posix.c (ASSERT): Likewise.
492         * tests/test-stat-time.c (ASSERT): Likewise.
493         * tests/test-strcasestr.c (ASSERT): Likewise.
494         * tests/test-strerror.c (ASSERT): Likewise.
495         * tests/test-striconv.c (ASSERT): Likewise.
496         * tests/test-striconveh.c (ASSERT): Likewise.
497         * tests/test-striconveha.c (ASSERT): Likewise.
498         * tests/test-strsignal.c (ASSERT): Likewise.
499         * tests/test-strstr.c (ASSERT): Likewise.
500         * tests/test-strtod.c (ASSERT): Likewise.
501         * tests/test-trunc1.c (ASSERT): Likewise.
502         * tests/test-trunc2.c (ASSERT): Likewise.
503         * tests/test-truncf1.c (ASSERT): Likewise.
504         * tests/test-truncf2.c (ASSERT): Likewise.
505         * tests/test-truncl.c (ASSERT): Likewise.
506         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
507         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
508         * tests/test-vasnprintf.c (ASSERT): Likewise.
509         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
510         * tests/test-vasprintf.c (ASSERT): Likewise.
511         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
512         * tests/test-vprintf-posix.c (ASSERT): Likewise.
513         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
514         * tests/test-vsnprintf.c (ASSERT): Likewise.
515         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
516         * tests/test-wcwidth.c (ASSERT): Likewise.
517         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
518         * tests/test-xprintf-posix.c (ASSERT): Likewise.
519         * tests/test-xvasprintf.c (ASSERT): Likewise.
520         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
521         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
522         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
523         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
524         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
525         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
526         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
527         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
528         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
529         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
530         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
531         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
532         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
533         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
534         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
535         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
536         * tests/unictype/test-block_list.c (ASSERT): Likewise.
537         * tests/unictype/test-block_of.c (ASSERT): Likewise.
538         * tests/unictype/test-block_test.c (ASSERT): Likewise.
539         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
540         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
541         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
542         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
543         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
544         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
545         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
546         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
547         * tests/unictype/test-combining.c (ASSERT): Likewise.
548         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
549         * tests/unictype/test-digit.c (ASSERT): Likewise.
550         * tests/unictype/test-mirror.c (ASSERT): Likewise.
551         * tests/unictype/test-numeric.c (ASSERT): Likewise.
552         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
553         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
554         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
555         * tests/unictype/test-scripts.c (ASSERT): Likewise.
556         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
557         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
558         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
559         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
560         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
561         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
562         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
563         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
564         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
565         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
566         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
567         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
568         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
569         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
570         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
571         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
572         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
573         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
574         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
575         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
576         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
577         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
578         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
579         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
580         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
581         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
582         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
583         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
584         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
585         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
586         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
587         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
588         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
589         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
590         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
591         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
592         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
593         Reported by Eric Blake.
594
595 2008-04-11  Bruno Haible  <bruno@clisp.org>
596
597         * lib/wchar.in.h: Tweak comment.
598
599 2008-04-11  Bruno Haible  <bruno@clisp.org>
600
601         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
602         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
603         gl_COMMON.
604         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
605
606 2008-04-11  Bruno Haible  <bruno@clisp.org>
607
608         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
609
610 2008-04-11  Simon Josefsson  <simon@josefsson.org>
611
612         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
613         of attempting to use non-existing /dev/*random.  Based on patch
614         from Adam Strzelecki <ono@java.pl> in
615         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
616
617 2008-04-08  Bruno Haible  <bruno@clisp.org>
618
619         Add tentative support for emx+gcc.
620         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
621         * lib/fpurge.c (fpurge): Likewise.
622         * lib/freadable.c (freadable): Likewise.
623         * lib/freadahead.c (freadahead): Likewise.
624         * lib/freading.c (freading): Likewise.
625         * lib/freadptr.c (freadptr): Likewise.
626         * lib/freadseek.c (freadptrinc): Likewise.
627         * lib/fseeko.c (rpl_fseeko): Likewise.
628         * lib/fseterr.c (fseterr): Likewise.
629         * lib/fwritable.c (fwritable): Likewise.
630         * lib/fwriting.c (fwriting): Likewise.
631         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
632
633 2008-04-09  Eric Blake  <ebb9@byu.net>
634
635         Avoid some autoconf warnings.
636         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
637         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
638         * m4/afs.m4 (gl_AFS): Likewise.
639         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
640         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
641         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
642         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
643         (gl_INTEGER_TYPE_SUFFIX): Likewise.
644         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
645         (AC_CHECK_DECLS_ONCE): Likewise.
646         Rename file...
647         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
648         gnulib-tool requires autoconf 2.59 or better.
649         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
650
651 2008-04-08  Eric Blake  <ebb9@byu.net>
652
653         Use 'git describe --match' if present (added in git 1.5.5).
654         * build-aux/git-version-gen: Limit result to tags that match 'v*'
655         if possible.
656
657 2008-04-08  Bruno Haible  <bruno@clisp.org>
658
659         Add tentative support for OpenServer.
660         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
661         _ptr, _cnt.
662         * lib/fpurge.c (fpurge): Likewise.
663         * lib/freadable.c (freadable): Likewise.
664         * lib/freadahead.c (freadahead): Likewise.
665         * lib/freading.c (freading): Likewise.
666         * lib/freadptr.c (freadptr): Likewise.
667         * lib/freadseek.c (freadptrinc): Likewise.
668         * lib/fseeko.c (rpl_fseeko): Likewise.
669         * lib/fseterr.c (fseterr): Likewise.
670         * lib/fwritable.c (fwritable): Likewise.
671         * lib/fwriting.c (fwriting): Likewise.
672         Reported by Roger Cornelius <rac@tenzing.org> and
673         Brian K. White <brian@aljex.com>.
674
675 2008-04-06  Jim Meyering  <meyering@redhat.com>
676
677         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
678
679 2008-04-06  Bruno Haible  <bruno@clisp.org>
680
681         Avoid possible error with non-ASCII bytes in UTF-8 locales.
682         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
683         * tests/test-printf-posix.sh: Likewise.
684         * tests/test-vfprintf-posix.sh: Likewise.
685         * tests/test-vprintf-posix.sh: Likewise.
686         * tests/test-xprintf-posix.sh: Likewise.
687
688 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
689
690         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
691         hide error from 'ls', needed on OS/2.
692         Report by Elbert Pol <elbert.pol@gmail.com>.
693
694 2008-04-04  Eric Blake  <ebb9@byu.net>
695
696         Make test-fseeko.c failures meaningful.
697         * tests/test-fseeko.c: Print line number on failure.
698         * tests/test-fseek.c: Likewise.
699         Reported by Nelson H. F. Beebe.
700
701         Improve strtod bug detection check.
702         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
703         required for Solaris 10.
704         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
705
706 2008-04-04  Bruno Haible  <bruno@clisp.org>
707
708         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
709         by m4/setenv.m4.
710
711 2008-04-03  Eric Blake  <ebb9@byu.net>
712
713         Ensure sane .version contents.
714         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
715         version string.
716         * build-aux/git-version-gen: Improve documentation.
717
718         Make GNU make output nicer.
719         * top/GNUmakefile [!_have-Makefile]: Add dependency on
720         MAKECMDGOALS to enforce message for all command line targets.  Set
721         srcdir for use in maint.mk.
722
723         Another maintainer tweak.
724         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
725         a target that regenerates version.
726
727 2008-04-03  Jim Meyering  <meyering@redhat.com>
728
729         vc-list-files: don't cause coreutils "make po-check" failure
730         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
731
732 2008-04-03  Eric Blake  <ebb9@byu.net>
733
734         Allow VPATH usage of vc-list-files.
735         * build-aux/vc-list-files (scriptversion): Add timestamp.
736         (options): Add --help, --version, -C.
737         (CVS): Support installed cvsu.
738
739 2008-04-02  Bruno Haible  <bruno@clisp.org>
740
741         Avoid some "statement with no effect" warnings from gcc.
742         * tests/test-wctype.c (main): Explicitly ignore unused values.
743         Reported by Jim Meyering.
744
745 2008-04-02  Jim Meyering  <meyering@redhat.com>
746
747         Avoid some warnings from "gcc -Wshadow".
748         * tests/test-frexp.c (exp): Define to a different identifier.
749         * tests/test-frexpl.c (exp): Likewise.
750
751 2008-04-03  Jim Meyering  <meyering@redhat.com>
752
753         bootstrap: remove dangling *.[ch] symlinks from lib
754         * build-aux/bootstrap [dangling symlink removal]: Move find's
755         -depth option to precede all others, to avoid a warning.
756         Remove *.[ch] files too, and from "$source_base" (usually lib/).
757
758 2008-04-02  Bruno Haible  <bruno@clisp.org>
759
760         Avoid some warnings from "gcc -Wshadow".
761         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
762         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
763         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
764         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
765         Reported by Jim Meyering.
766
767 2008-04-01  Bruno Haible  <bruno@clisp.org>
768
769         Fix test to work on IRIX 6.5 with cc.
770         * tests/test-math.c (numeric_equal): New function.
771         (main): Use it.
772
773 2008-04-01  Bruno Haible  <bruno@clisp.org>
774
775         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
776
777 2008-04-01  Bruno Haible  <bruno@clisp.org>
778
779         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
780         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
781         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
782         (Depends-on): Remove math.
783
784         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
785         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
786         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
787         (Depends-on): Remove math.
788
789         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
790         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
791         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
792         (Depends-on): Remove math.
793         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
794         (Depends-on): Remove math.
795
796         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
797         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
798         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
799         (Depends-on): Remove math.
800         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
801         (Depends-on): Remove math.
802
803         * tests/test-round1.c: Include nan.h.
804         (main): Use NaNd instead of NAN.
805         * modules/round-tests (Files): Add tests/nan.h.
806
807         * tests/test-trunc1.c: Include nan.h.
808         (main): Use NaNd instead of NAN.
809         * modules/trunc-tests (Files): Add tests/nan.h.
810
811         * tests/test-roundf1.c: Include nan.h.
812         (main): Use NaNf instead of NAN.
813         * modules/roundf-tests (Files): Add tests/nan.h.
814
815         * tests/test-truncf1.c: Include nan.h.
816         (main): Use NaNf instead of NAN.
817         * modules/truncf-tests (Files): Add tests/nan.h.
818
819         * tests/test-ceilf1.c: Include nan.h.
820         (main): Use NaNf instead of NAN.
821         * modules/ceilf-tests (Files): Add tests/nan.h.
822
823         * tests/test-floorf1.c: Include nan.h.
824         (main): Use NaNf instead of NAN.
825         * modules/floorf-tests (Files): Add tests/nan.h.
826
827         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
828         (main): Use NaNf instead of NAN.
829         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
830
831         * tests/test-isnand.c: Include nan.h instead of <math.h>.
832         (main): Use NaNd instead of NAN.
833         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
834
835         * tests/test-frexp.c: Include nan.h.
836         (main): Use NaNd instead of NAN.
837         * modules/frexp-tests (Files): Add tests/nan.h.
838
839         * lib/isnan.c: Don't include <math.h>.
840         (FUNC): Don't use NAN macro.
841         * modules/isnand-nolibm (Depends-on): Remove math.
842         * modules/isnanf-nolibm (Depends-on): Remove math.
843         * modules/isnanl (Depends-on): Remove math.
844         * modules/isnanl-nolibm (Depends-on): Remove math.
845
846         * tests/nan.h: New file.
847
848 2008-04-01  Eric Blake  <ebb9@byu.net>
849
850         Fix typos.
851         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
852         values to be the right type.
853
854         For now, cater to gnulib strtod inaccuracies.
855         * tests/test-strtod.c (main): Allow 1-ulp error on expected
856         fractional results.  While not as nice from a QoI perspective, it
857         is a quicker patch than correctly implementing decimal to binary
858         rounding.
859
860 2008-03-31  Eric Blake  <ebb9@byu.net>
861
862         Guarantee a definition of NAN.
863         * lib/math.in.h (NAN): Define if missing.
864         * tests/test-math.c (main): Test it.
865         * doc/posix-headers/math.texi (math.h): Document this.
866         * lib/isnan.c (rpl_isnand): Use it.
867         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
868         * tests/test-floorf1.c (NaN): Likewise.
869         * tests/test-frexp.c (NaN): Likewise.
870         * tests/test-isnand.c (NaN): Likewise.
871         * tests/test-isnanf.c (NaN): Likewise.
872         * tests/test-round1.c (NaN): Likewise.
873         * tests/test-roundf1.c (NaN): Likewise.
874         * tests/test-snprintf-posix.h (NaN): Likewise.
875         * tests/test-sprintf-posix.h (NaN): Likewise.
876         * tests/test-trunc1.c (NaN): Likewise.
877         * tests/test-truncf1.c (NaN): Likewise.
878         * tests/test-vasnprintf-posix.c (NaN): Likewise.
879         * tests/test-vasprintf-posix.c (NaN): Likewise.
880         * modules/isnand-nolibm (Depends-on): Add math.
881         * modules/isnanf-nolibm (Depends-on): Likewise.
882         * modules/isnanl (Depends-on): Likewise.
883         * modules/isnanl-nolibm (Depends-on): Likewise.
884         * modules/snprintf-posix-tests (Depends-on): Likewise.
885         * modules/sprintf-posix-tests (Depends-on): Likewise.
886         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
887         * modules/vsprintf-posix-tests (Depends-on): Likewise.
888         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
889         * modules/vasprintf-posix-tests (Depends-on): Likewise.
890
891 2008-03-31  Bruno Haible  <bruno@clisp.org>
892
893         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
894         * doc/posix-functions/strtod.texi: Likewise.
895
896 2008-03-31  Bruno Haible  <bruno@clisp.org>
897
898         * tests/test-strtod.c (main): Don't use C99 syntax.
899
900 2008-03-31  Bruno Haible  <bruno@clisp.org>
901
902         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
903         Reported by Eric Blake.
904
905 2008-03-31  Jim Meyering  <meyering@redhat.com>
906
907         Don't compare actual signbit return values.
908         * tests/test-strtod.c (main): Rather, compare only their
909         zero/non-zero nature.
910
911 2008-03-31  Eric Blake  <ebb9@byu.net>
912
913         More strtod documentation.
914         * doc/posix-functions/strtod.texi (strtod): Interpret more test
915         failures as distinct bugs.
916
917 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
918
919         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
920         Problem reported by Erik Benada in
921         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
922
923 2008-03-30  Bruno Haible  <bruno@clisp.org>
924
925         * tests/test-strtod.c: Add comments about which assertion fails on which
926         platform.
927         * doc/posix-functions/strtod.texi: Add info about many more platforms.
928
929 2008-03-30  Eric Blake  <ebb9@byu.net>
930
931         Test signbit behavior on zeros.
932         * tests/test-signbit.c (test_signbitf): Add tests for zero.
933         (test_signbitd, test_signbitl): Likewise.
934
935         More strtod touchups.
936         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
937         sign of negative underflow, for now.  Use .5, not .1.
938         * doc/posix-functions/strtod.texi (strtod): Mention these
939         limitations.
940         Reported by Jim Meyering.
941
942 2008-03-30  Bruno Haible  <bruno@clisp.org>
943
944         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
945         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
946
947 2008-03-30  Bruno Haible  <bruno@clisp.org>
948
949         Avoid failure when attempting to return empty iconv results on some
950         platforms.
951         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
952         allocation, don't report ENOMEM when the resulting string is empty.
953
954 2008-03-30  Bruno Haible  <bruno@clisp.org>
955
956         Fix buffer overrun.
957         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
958         Don't consider the width for tmp_length. Check count against tmp_length
959         before doing the padding. Ensure enough allocation during padding.
960
961 2008-03-30  Eric Blake  <ebb9@byu.net>
962
963         strtod touchups.
964         * lib/strtod.c (strtod): Avoid compiler warnings.
965         Reported by Jim Meyering.
966
967 2008-03-30  Bruno Haible  <bruno@clisp.org>
968
969         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
970         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
971         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
972         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
973         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
974         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
975         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
976         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
977
978         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
979         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
980         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
981         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
982         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
983         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
984         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
985         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
986
987         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
988         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
989         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
990         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
991         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
992         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
993         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
994         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
995
996         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
997         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
998
999         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
1000         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
1001
1002         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
1003         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
1004
1005         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
1006         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
1007         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
1008
1009         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
1010         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
1011         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
1012
1013         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
1014         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
1015         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
1016
1017         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
1018         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
1019         * modules/vasprintf (Depends-on): Add EOVERFLOW.
1020
1021         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
1022         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
1023         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
1024         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
1025         (Depends-on): Add EOVERFLOW.
1026         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
1027         (Depends-on): Add EOVERFLOW.
1028         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
1029         (Depends-on): Add EOVERFLOW.
1030         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
1031         (Depends-on): Add EOVERFLOW.
1032         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
1033         (Depends-on): Add EOVERFLOW.
1034         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
1035         (Depends-on): Add EOVERFLOW.
1036         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
1037         (Depends-on): Add EOVERFLOW.
1038         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
1039         (Depends-on): Add EOVERFLOW.
1040
1041         * lib/sprintf.c (EOVERFLOW): Remove fallback.
1042         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
1043         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
1044
1045         * lib/snprintf.c (EOVERFLOW): Remove fallback.
1046         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
1047         * modules/snprintf (Depends-on): Add EOVERFLOW.
1048
1049         * lib/poll.c (EOVERFLOW): Remove fallback.
1050         * modules/poll (Depends-on): Add EOVERFLOW.
1051
1052         * lib/getugroups.c (EOVERFLOW): Remove fallback.
1053         * modules/getugroups (Depends-on): Add EOVERFLOW.
1054
1055         * lib/getdelim.c (EOVERFLOW): Remove fallback.
1056         * modules/getdelim (Depends-on): Add EOVERFLOW.
1057
1058         * lib/ftell.c (EOVERFLOW): Remove fallback.
1059         * modules/ftell (Depends-on): Add EOVERFLOW.
1060
1061         * lib/fprintf.c (EOVERFLOW): Remove fallback.
1062         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
1063         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
1064
1065         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
1066
1067         * modules/EOVERFLOW-tests: New file.
1068         * tests/test-EOVERFLOW.c: New file.
1069
1070         * modules/EOVERFLOW: New file.
1071         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
1072
1073 2008-03-30  Bruno Haible  <bruno@clisp.org>
1074
1075         Fix bug introduced on 2007-06-10.
1076         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
1077         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
1078
1079 2008-03-30  Bruno Haible  <bruno@clisp.org>
1080
1081         Improve freadseek's efficiency after ungetc.
1082         * lib/freadseek.c: Include freadahead.h.
1083         (freadptrinc): New function, extracted from freadseek.
1084         (freadseek): Use it in a loop. Use freadahead to determine the number
1085         of loop iterations.
1086         * modules/freadseek (Depends-on): Add freadahead.
1087         (configure.ac): Require AC_C_INLINE.
1088
1089 2008-03-30  Bruno Haible  <bruno@clisp.org>
1090
1091         * lib/freadseek.c (freadseek): Don't ignore the return value of
1092         freadptr.
1093
1094 2008-03-29  Eric Blake  <ebb9@byu.net>
1095
1096         Add hex float support.
1097         * modules/strtod (Depends-on): Add c-ctype.
1098         (Link): Mention POW_LIB.
1099         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
1100         whitespace between 'e' and exponent.
1101         * tests/test-strtod.c (main): Enable hex float tests.
1102         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
1103         now provides.
1104
1105         Document various strtod bugs, with some fixes.
1106         * doc/posix-functions/strtod.texi (strtod): Document bugs with
1107         "-0x", "inf", "nan", and hex constants.
1108         * doc/posix-functions/atof.texi (atof): Likewise.
1109         * modules/stdlib (Makefile.am): Support strtod.
1110         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
1111         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
1112         detect additional strtod bugs.
1113         * lib/stdlib.in.h (rpl_strtod): Add declarations.
1114         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
1115         bool where appropriate.  Parse 'inf' and 'nan'.
1116         * tests/test-strtod.c: New file.
1117         * modules/strtod (Depends-on): Add stdbool, stdlib.
1118         (configure.ac): Turn on module indicator.
1119         * modules/strtod-tests: New module.
1120
1121 2008-03-29  Eric Blake  <ebb9@byu.net>
1122
1123         Fix ftell on mingw.
1124         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
1125         * modules/ftell-tests (Depends-on): Add binary-io.
1126         * modules/ftello-tests (Depends-on): Likewise.
1127         * tests/test-ftell.c (main): Enhance test to cover behavior after
1128         ungetc.  Enforce binary mode.
1129         * tests/test-ftello.c (main): Likewise.
1130
1131         Pass test-freadseek on cygwin.
1132         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
1133         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
1134         ungetc buffer.
1135
1136         * tests/test-fflush2.c (main): Fix typo.
1137
1138 2008-03-29  Bruno Haible  <bruno@clisp.org>
1139
1140         * tests/test-fflush2.c (main): Temporarily disable the contents of
1141         this test.
1142         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
1143         Reported by Eric Blake.
1144
1145 2008-03-28  Simon Josefsson  <simon@josefsson.org>
1146
1147         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
1148         (GC_SHA224_DIGEST_SIZE): Add.
1149
1150         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
1151         (gc_hash_digest_length): Likewise.
1152         (gc_hash_buffer): Likewise.
1153
1154 2008-03-25  Bruno Haible  <bruno@clisp.org>
1155
1156         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
1157         detail which gettext release to use.
1158         Reported by Simon Josefsson.
1159
1160 2008-03-26  Jim Meyering  <meyering@redhat.com>
1161
1162         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
1163         * modules/gnumakefile (clean-GNUmakefile): Also, use
1164         test ... && ... || : syntax rather than if-then ... fi.
1165
1166         gnumakefile: Don't double-quote-expand $(VPATH) value.
1167         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
1168
1169 2008-03-24  Eric Blake  <ebb9@byu.net>
1170
1171         Alter GNUmakefile to install into top directory.
1172         * modules/maintainer-makefile: Split, and add dependency...
1173         * modules/gnumakefile: to this new module.
1174         * build-aux/GNUmakefile: Move...
1175         * top/GNUmakefile: ...here.
1176         * build-aux/maint.mk: Move...
1177         * top/maint.mk: ...here.
1178         * MODULES.html.sh (Support for maintaining...): Document new
1179         module.
1180
1181 2008-03-23  Bruno Haible  <bruno@clisp.org>
1182
1183         * gnulib-tool: New options --vc-files, --no-vc-files.
1184         (func_usage): Document them.
1185         (vc_files): New variable.
1186         (func_import): Consider vc_files.
1187         (func_create_testdir): Set vc_files to empty.
1188         Suggested by Jim Meyering and Karl Berry.
1189
1190 2008-03-23  Bruno Haible  <bruno@clisp.org>
1191
1192         Fix regex compilation error on HP-UX 11.
1193         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
1194         * modules/regex (Files): Add m4/mbstate_t.m4.
1195         Reported by Ton Voon <ton.voon@altinity.com>.
1196
1197 2008-03-23  Bruno Haible  <bruno@clisp.org>
1198
1199         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
1200
1201 2008-03-23  Eric Blake  <ebb9@byu.net>
1202             Bruno Haible  <bruno@clisp.org>
1203
1204         Install files from top/ in the destination directory.
1205         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
1206         augmentation also for the files from top/.
1207         (func_import, func_create_testdir): Rewrite file names:
1208         top/filename -> filename.
1209
1210 2008-03-23  Bruno Haible  <bruno@clisp.org>
1211
1212         Tweak "gnulib --version" output.
1213         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
1214
1215 2008-03-23  Bruno Haible  <bruno@clisp.org>
1216
1217         Tweak "gnulib --version" output.
1218         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
1219         rather than contents of ChangeLog, when possible.
1220
1221 2008-03-21  Eric Blake  <ebb9@byu.net>
1222
1223         More --version tweaks.
1224         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
1225         date of last ChangeLog entry.
1226
1227 2008-03-21  Jim Meyering  <meyering@redhat.com>
1228
1229         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
1230
1231 2008-03-20  Eric Blake  <ebb9@byu.net>
1232
1233         VPATH fix.
1234         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
1235
1236 2008-03-20  Simon Josefsson  <simon@josefsson.org>
1237
1238         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
1239         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
1240
1241 2008-03-20  Eric Blake  <ebb9@byu.net>
1242
1243         Sync GNUmakefile with coreutils.
1244         * build-aux/GNUmakefile (have-Makefile): Rename...
1245         (_have-Makefile): ...to this, for namespace consideration.
1246         (GNUmakefile.cfg): Include, if present.
1247         (_autoreconf): Define a default.
1248         (_is-dist-target): New rule for rebuilds to pick up intra-release
1249         version.
1250         (maint-cfg.mk): Rename...
1251         (cfg.mk): ...to this.
1252
1253 2008-03-18  Jim Meyering  <meyering@redhat.com>
1254
1255         New script and module: mktempd
1256         * MODULES.html.sh (maint+release support): Add mktempd.
1257         * build-aux/mktempd: New file.
1258         * modules/mktempd: New file.
1259
1260 2008-03-15  Jim Meyering  <meyering@redhat.com>
1261
1262         Undo last change.
1263         * lib/sha1.c, lib/md5.c: 63 != ~63.
1264         Reported by Andreas Schwab.
1265
1266         sha1.c, md5.c: Hoist a redundant expression.
1267         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
1268         "ctx->buflen" only once, before calling *_process_block.
1269         * lib/md5.c (md5_process_bytes): Likewise.
1270
1271 2008-03-14  Eric Blake  <ebb9@byu.net>
1272
1273         Bump copyright year in files generated by gnulib-tool.
1274         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
1275         gnulib-tool, rather than hard-coding it.
1276
1277         Fix 'gnulib-tool --version' output to work with git.
1278         * gnulib-tool (func_gnulib_dir): New function, extracted from...
1279         (startup): ...here.
1280         (func_version): Use it to invoke git-version-gen, rather than
1281         relying on CVS keyword expansion.  Modernize wording.
1282         (cvsdatestamp, last_checkin_date, version): Kill unused
1283         variables.
1284
1285 2008-03-12  Jim Meyering  <meyering@redhat.com>
1286
1287         Recognize optional cast of the argument to free.
1288         * build-aux/useless-if-before-free: Update regexps.
1289
1290         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
1291
1292 2008-03-11  Bruno Haible  <bruno@clisp.org>
1293
1294         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
1295         by a single package.
1296         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
1297         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
1298         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
1299         Reported by Sam Steingold <sds@gnu.org>.
1300
1301 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
1302
1303         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
1304         repositories.
1305
1306 2008-03-11  Bruno Haible  <bruno@clisp.org>
1307
1308         Avoid conflicts between local macro definitions.
1309         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
1310         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
1311
1312 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
1313             Bruno Haible  <bruno@clisp.org>
1314
1315         Make va_copy work with some version of xlc on AIX 5.1.
1316         * lib/stdarg.in.h: New file.
1317         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
1318         On AIX, use a <stdarg.h> file substitute.
1319         * modules/stdarg (Files): Add lib/stdarg.in.h.
1320         (Depends-on): Add include_next.
1321         (Makefile.am): Build a stdarg.h substitute if requested.
1322         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
1323
1324 2008-03-10  Bruno Haible  <bruno@clisp.org>
1325
1326         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
1327         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
1328         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
1329
1330 2008-03-10  Bruno Haible  <bruno@clisp.org>
1331
1332         * modules/stdlib (Depends-on): Add include_next, remove
1333         absolute-header.
1334
1335 2008-03-09  Bruno Haible  <bruno@clisp.org>
1336
1337         * lib/freadahead.h (freadahead): Document more precisely.
1338         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
1339         the sum of both buffer sizes.
1340         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
1341         * NEWS: Document the change.
1342
1343 2008-03-09  Bruno Haible  <bruno@clisp.org>
1344
1345         Extend freadptr to return also the buffer size.
1346         * lib/freadptr.h (freadptr): Add sizep argument.
1347         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
1348         (freadptr): Add sizep argument. Determine buffer size like freadahead
1349         does.
1350         * tests/test-freadptr.c: Don't include freadahead.h.
1351         (main): Adapt for new calling convention of freadptr.
1352         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
1353         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
1354         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
1355         tests/test-freadptr2.sh.
1356         (Depends): Remove freadahead.
1357         (TESTS): Add test-freadptr2.sh.
1358         (check_PROGRAMS): Add test-freadptr2.
1359
1360 2008-03-09  Bruno Haible  <bruno@clisp.org>
1361
1362         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
1363         Report and solution by Simon Josefsson.
1364
1365 2008-03-06  Bruno Haible  <bruno@clisp.org>
1366
1367         Make fflush after ungetc work on BSD platforms.
1368         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
1369         * tests/test-fflush2.c: New file.
1370         * tests/test-fflush2.sh: New file.
1371         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
1372         tests/test-fflush2.c.
1373         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
1374         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
1375
1376 2008-03-06  Eric Blake  <ebb9@byu.net>
1377
1378         Likewise for ftello.
1379         * modules/ftello (Dependencies): Add extensions.
1380         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
1381
1382 2008-03-06  Bruno Haible  <bruno@clisp.org>
1383
1384         * modules/fseeko (Dependencies): Add extensions.
1385         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
1386         Needed on glibc systems.
1387
1388 2008-03-06  Bruno Haible  <bruno@clisp.org>
1389
1390         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
1391         email address.
1392         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
1393
1394 2008-03-06  Bruno Haible  <bruno@clisp.org>
1395
1396         * users.txt: Add libgnupdf.
1397
1398 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
1399
1400         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
1401         (Header File Substitutes, Function Substitutes,
1402         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
1403         (Build robot for gnulib): Fix typo.
1404
1405 2008-03-06  Bruno Haible  <bruno@clisp.org>
1406
1407         * doc/gnulib-tool.texi (VCS Issues): Small updates.
1408         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
1409
1410 2008-03-06  Bruno Haible  <bruno@clisp.org>
1411
1412         * doc/func.texi: New file, extracted from doc/gnulib.texi.
1413         * doc/gnulib.texi: Include it.
1414
1415 2008-03-06  Simon Josefsson  <simon@josefsson.org>
1416
1417         * modules/func (License): Change license to unlimited; there was
1418         no LGPL parts in the module anyway.
1419
1420 2008-03-06  Simon Josefsson  <simon@josefsson.org>
1421
1422         * modules/__func__: Renamed to modules/func.
1423         * modules/__func__-tests: Renamed to modules/func-tests.
1424         * tests/test-__func__.c: Renamed to tests/test-func.c.
1425         * m4/__func__.m4: Renamed to m4/func.m4.
1426         * doc/gnulib.texi (__func__): Section renamed to func.
1427         Suggested by Eric Blake <ebb9@byu.net>.
1428
1429 2008-03-06  Simon Josefsson  <simon@josefsson.org>
1430
1431         * doc/gnulib.texi (__func__): Use C99 terminology when talking
1432         about __func__.  Make example self-contained.  Suggested by Eric
1433         Blake <ebb9@byu.net>.
1434
1435         * tests/test-__func__.c (main): Avoid extraneous () around __func.
1436         Suggested by Eric Blake <ebb9@byu.net>.
1437
1438 2008-03-06  Simon Josefsson  <simon@josefsson.org>
1439
1440         * modules/__func__: New file.
1441         * modules/__func__-tests: New file.
1442         * tests/test-__func__.c: New file.
1443         * m4/__func__.m4: New file.
1444         * doc/gnulib.texi (__func__): Document __func__ module.
1445
1446 2008-03-05  Simon Josefsson  <simon@josefsson.org>
1447
1448         * modules/byteswap (License): Re-license as LGPLv2+.
1449
1450 2008-03-05  Simon Josefsson  <simon@josefsson.org>
1451
1452         * doc/Makefile: Add pdf target.
1453
1454 2008-03-05  Simon Josefsson  <simon@josefsson.org>
1455
1456         * modules/inline (License): Use 'unlimited', since there are only
1457         *.m4 files in this module.
1458
1459 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
1460             Bruno Haible  <bruno@clisp.org>
1461
1462         Add support for HP C 7.1 on OpenVMS 8.3.
1463         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
1464
1465 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
1466
1467         Update VMS specifics.
1468         * lib/getopt.c [VMS]: Remove include of unixlib.h.
1469
1470 2008-03-02  Jim Meyering  <meyering@redhat.com>
1471
1472         Remove the last dependency on the "free" module.
1473         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
1474         Reported by Bob Proulx.
1475
1476         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
1477
1478         Remove useless "if" tests before free.  Deprecate "free" module.
1479         * doc/posix-functions/free.texi: Mention that this
1480         module is no longer useful.
1481         * modules/free (Notice): Say this module is obsolete.
1482         * modules/readutmp (Depends-on): Remove free.
1483         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
1484         * lib/putenv.c (putenv): Likewise.
1485         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
1486         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
1487         * tests/test-c-strcasestr.c (main): Likewise.
1488         * tests/test-c-strstr.c (main): Likewise.
1489         * tests/test-mbscasestr1.c (main): Likewise.
1490         * tests/test-mbscasestr2.c (main): Likewise.
1491         * tests/test-mbsstr1.c (main): Likewise.
1492         * tests/test-mbsstr2.c (main): Likewise.
1493         * tests/test-memmem.c (main): Likewise.
1494         * tests/test-strcasestr.c (main): Likewise.
1495         * tests/test-striconv.c (main): Likewise.
1496         * tests/test-striconveh.c (main): Likewise.
1497         * tests/test-striconveha.c (main): Likewise.
1498         * tests/test-strstr.c (main): Likewise.
1499
1500         * build-aux/git-version-gen: Adjust a comment and the Usage string.
1501
1502         bootstrap: sync from coreutils again
1503         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
1504
1505 2008-03-01  Jim Meyering  <meyering@redhat.com>
1506
1507         bootstrap: sync from coreutils
1508         * build-aux/bootstrap (update_po_files): Copy a .po file into place
1509         also when the target doesn't exist.
1510
1511 2008-03-01  Eric Blake  <ebb9@byu.net>
1512
1513         Fix bugs in last patch.
1514         * lib/memchr2.c (memchr2): Fix typo.
1515         * tests/test-memchr2.c: Test previous bug, and don't use GNU
1516         extension.
1517         Reported by Bruce Korb.
1518
1519         New module 'memchr2'.
1520         * modules/memchr2: New file.
1521         * modules/memchr2-tests: Likewise.
1522         * lib/memchr2.h: Likewise.
1523         * lib/memchr2.c: Likewise, based on memchr.c.
1524         * tests/test-memchr2.c: New test.
1525         * MODULES.html.sh (String handling): Add memchr2.
1526
1527 2008-02-29  Bruno Haible  <bruno@clisp.org>
1528
1529         * modules/freadseek-tests: New file.
1530         * tests/test-freadseek.sh: New file.
1531         * tests/test-freadseek.c: New file.
1532
1533         New module 'freadseek'.
1534         * modules/freadseek: New file.
1535         * lib/freadseek.h: New file.
1536         * lib/freadseek.c: New file.
1537         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
1538
1539 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
1540
1541         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
1542         wydawca.
1543
1544         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
1545         program_invocation_name and program_invocation_short_name are
1546         present.
1547
1548 2008-02-28  Bruno Haible  <bruno@clisp.org>
1549
1550         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
1551         * tests/test-freadptr.sh: Also test non-seekable stdin.
1552
1553 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
1554
1555         * build-aux/bootstrap (source_base, m4_base)
1556         (doc_base, tests_base): New variables.
1557         (gnulib_tool_options): Do not hardcode base directories, use
1558         the above variables instead.
1559
1560 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
1561
1562         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
1563
1564 2008-02-28  Bruno Haible  <bruno@clisp.org>
1565
1566         * modules/freadptr-tests: New file.
1567         * tests/test-freadptr.sh: New file.
1568         * tests/test-freadptr.c: New file.
1569
1570         New module 'freadptr'.
1571         * modules/freadptr: New file.
1572         * lib/freadptr.h: New file.
1573         * lib/freadptr.c: New file.
1574         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
1575
1576 2008-02-26  Karl Berry  <karl@freefriends.org>
1577
1578         Sync from Libtool:
1579         * libltdl/argz.c (argz_add, argz_count): New functions.
1580         * libltdl/argz.in.h: Declare them.
1581         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
1582
1583 2008-02-22  Bruno Haible  <bruno@clisp.org>
1584
1585         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
1586         is a pointer type.  Needed for HP-UX 10.
1587         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
1588         * doc/posix-functions/gmtime_r.texi: Likewise.
1589         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
1590
1591 2008-02-24  Bruno Haible  <bruno@clisp.org>
1592
1593         * modules/environ-tests: New file.
1594         * tests/test-environ.c: New file.
1595
1596         New module 'environ'.
1597         * modules/environ: New file.
1598         * lib/unistd.in.h (environ): New declaration.
1599         * m4/environ.m4: New file.
1600         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
1601         after use.
1602         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
1603         HAVE_DECL_ENVIRON.
1604         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
1605         HAVE_DECL_ENVIRON.
1606         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
1607         wrong claim that 'environ' is missing on some systems.
1608         * modules/execute (Depends-on): Add environ.
1609         * lib/execute.c (environ): Remove fallback declaration.
1610         * modules/pipe (Depends-on): Add environ.
1611         * lib/pipe.c (environ): Remove fallback declaration.
1612         * modules/setenv (Depends-on): Add environ.
1613         * lib/setenv.c (environ): Remove fallback declaration.
1614         * modules/unsetenv (Depends-on): Add environ.
1615         * lib/unsetenv.c (environ): Remove fallback declaration.
1616         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
1617         m4/environ.m4.
1618         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
1619         (gl_PREREQ_UNSETENV): Likewise.
1620
1621 2008-02-24  Bruno Haible  <bruno@clisp.org>
1622
1623         * doc/posix-functions/environ.texi: Document the MacOS X problem.
1624
1625 2008-02-20  Bob Proulx  <bob@proulx.com>
1626
1627         Enable use of older two part flavor 'git describe'.
1628         * build-aux/git-version-gen: If using the older two part flavor of
1629         git version then recreate the third part now present in the
1630         newer three part flavor of git describe.
1631
1632 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
1633
1634         * lib/fts.c (fts_build): Typo correction to comment.
1635
1636 2008-02-17  Bruno Haible  <bruno@clisp.org>
1637
1638         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
1639         generating no-op conflicts.
1640
1641 2008-02-17  Bruno Haible  <bruno@clisp.org>
1642
1643         Speed up by 10%.
1644         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
1645         result_entries, rather than an index-based loop.
1646
1647 2008-02-17  Bruno Haible  <bruno@clisp.org>
1648
1649         Speed up by 25%.
1650         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
1651         'hashcode_cached'.
1652         (entry_create): New function.
1653         (entry_hashcode): Use the cached hashcode if possible.
1654         (read_changelog_file, try_split_merged_entry): Use entry_create.
1655
1656 2008-02-17  Bruno Haible  <bruno@clisp.org>
1657
1658         Speed up from O(n^2) to O(n) for long ChangeLog files.
1659         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
1660         (read_changelog_file): Change implementation of entries_reversed list
1661         to rbtreehash.
1662         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
1663
1664 2008-02-17  Bruno Haible  <bruno@clisp.org>
1665
1666         New option --split-merged-entry.
1667         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
1668         (find_paragraph_end, try_split_merged_entry): New functions.
1669         (long_options): Add option --split-merged-entry.
1670         (usage): Document option --split-merged-entry.
1671         (main): Implement option --split-merged-entry.
1672         Reported by Eric Blake.
1673
1674 2008-02-17  Bruno Haible  <bruno@clisp.org>
1675
1676         * lib/git-merge-changelog.c: Include c-strstr.h.
1677         (main): Support the "git pull --rebase" situation.
1678         * modules/git-merge-changelog (Depends-on): Add c-strstr.
1679         Reported by Eric Blake.
1680
1681 2008-02-16  Eric Blake  <ebb9@byu.net>
1682
1683         Avoid doubling \ in common case of "c-maybe" quoting style.
1684         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
1685         eliding outer quotes.
1686         * lib/quotearg.h: Document this.
1687         * tests/test-quotearg.c (result_strings, inputs, results_g)
1688         (flag_results, locale_results): Test it by adding a new string to
1689         each test group.
1690         (compare_strings): Test new string.
1691
1692 2008-02-13  Eric Blake  <ebb9@byu.net>
1693
1694         Avoid trigraph quoting in default output.
1695         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
1696         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
1697         unless explicitly requested.
1698         * tests/test-quotearg.c (flag_results, main): Add additional tests.
1699
1700 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
1701
1702         Don't rely on signed integer overflowing to negative value.
1703         * lib/getugroups.c (getugroups): Include <limits.h>.
1704         Instead, compare against INT_MAX, and increment only if the test passes.
1705
1706 2008-02-13  Jim Meyering  <meyering@redhat.com>
1707         and Eric Blake  <ebb9@byu.net>
1708
1709         Avoid shadowing warning and compile errors on Linux.
1710         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
1711         forwarding macros on Linux.
1712         (dcgettext): Define a stub, for Linux.
1713         (results_g, main): Avoid warnings.
1714
1715 2008-02-12  Eric Blake  <ebb9@byu.net>
1716
1717         Silence warning in last patch.
1718         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
1719
1720         Quotearg part 4: add tests, fix c-maybe colon quoting.
1721         * lib/quotearg.h: Improve documentation.
1722         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
1723         escapes when adding outer quotes.  When quoting trigraphs, use
1724         valid C notation.  When quoting NUL, omit extra characters if next
1725         character is not digit.  Alter prototype.
1726         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
1727         callers.
1728         * modules/quotearg-tests: New module.
1729         * tests/test-quotearg.c: New test.
1730
1731 2008-02-07  Eric Blake  <ebb9@byu.net>
1732
1733         Quotearg part 3: add flag to control outer quote elision.
1734         * lib/quotearg.h (c_maybe_quoting_style): New style.
1735         (enum quoting_flags): Better documentation of flags.
1736         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
1737         c-maybe style.
1738         (quotearg_buffer_restyled): Handle new flag to elide outer
1739         quotes.
1740
1741         Quotearg part 2: add flag that can control NUL elision.
1742         * lib/quotearg.h (set_quoting_flags): New prototype.
1743         * lib/quotearg.c (struct quoting_options): Add flag field.
1744         (set_quoting_flags): New function.
1745         (quotearg_buffer_restyled): Add flags parameter.
1746         (quotearg_alloc_mem): Set the flag if length cannot be returned.
1747         (quotearg_n_options): Set the flag, since length cannot be
1748         returned.
1749         (quoting_options_from_style): Default flags correctly.
1750
1751         Quotearg part 1: more wrappers, restore quotearg_char state.
1752         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
1753         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
1754         (quotearg_colon_mem): New wrappers.
1755         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
1756         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
1757         functions.
1758         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
1759         (quotearg_colon_mem): New functions.
1760
1761 2008-02-11  Bruno Haible  <bruno@clisp.org>
1762
1763         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
1764         library in the current directory: it does not work with parallel make.
1765         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
1766
1767 2008-02-11  Bruno Haible  <bruno@clisp.org>
1768
1769         * .gitattributes: New file.
1770
1771 2008-02-11  Jim Meyering  <meyering@redhat.com>
1772
1773         useless-if-before-free: Fix reversed exit values.
1774         * build-aux/useless-if-before-free: Use correct values
1775         for EXIT_MATCH and EXIT_NO_MATCH.
1776
1777         * build-aux/useless-if-before-free: Close stdout carefully.
1778
1779 2008-02-10  Bruno Haible  <bruno@clisp.org>
1780
1781         New module 'git-merge-changelog'.
1782         * modules/git-merge-changelog: New file.
1783         * lib/git-merge-changelog.c: New file.
1784
1785 2008-02-10  Jim Meyering  <meyering@redhat.com>
1786
1787         useless-if-before-free: New option: --list (-l).
1788
1789         useless-if-before-free: Don't exit immediately upon open failure.
1790         * build-aux/useless-if-before-free: Exit 2 for errors.
1791         Upon failure to open a file, don't exit immediately.
1792         Rather, just warn and continue with any remaining files.
1793
1794 2008-02-10  Bruno Haible  <bruno@clisp.org>
1795
1796         New abstract list operation 'node_set_value'.
1797         * lib/gl_list.h (gl_list_node_set_value): New function.
1798         (struct gl_list_implementation): New field node_set_value.
1799         * lib/gl_list.c (gl_list_node_set_value): New function.
1800         * lib/gl_array_list.c (gl_array_node_set_value): New function.
1801         (gl_array_list_implementation): Update.
1802         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
1803         (gl_carray_list_implementation): Update.
1804         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
1805         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
1806         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
1807         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
1808         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
1809         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
1810         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
1811         Update.
1812         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
1813         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
1814         (gl_sublist_list_implementation): Update.
1815
1816 2008-02-10  Bruno Haible  <bruno@clisp.org>
1817
1818         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
1819         Needed when ELEMENT is #defined to 'some_type *'.
1820
1821 2008-02-10  Jim Meyering  <meyering@redhat.com>
1822
1823         New script and module: useless-if-before-free
1824         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
1825         * build-aux/useless-if-before-free: New file.
1826         * modules/useless-if-before-free: New file.
1827
1828         * build-aux/gitlog-to-changelog: Use committer date, not author date.
1829
1830         xstrtol_error: Fix typo.
1831         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
1832         s/exit_failure/exit_status/.
1833
1834 2008-02-09  Jim Meyering  <meyering@redhat.com>
1835
1836         New script and module: gitlog-to-changelog
1837         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
1838         * modules/gitlog-to-changelog: New file.
1839         * build-aux/gitlog-to-changelog: New file.
1840
1841 2008-02-08  Jim Meyering  <meyering@redhat.com>
1842
1843         Avoid two "parameter unused" warnings.
1844         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
1845         Mark "st" as used.
1846
1847         Use "git COMMAND", not "git-COMMAND".
1848         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
1849         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
1850         * build-aux/git-version-gen: Use "git status", not "git-status".
1851
1852 2008-02-07  Bruno Haible  <bruno@clisp.org>
1853
1854         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
1855         Avoids a crash on Windows Vista.
1856         Reported by Adam Strzelecki <ono@java.pl> via
1857         Simon Josefsson <simon@josefsson.org>.
1858
1859 2008-02-06  Bruno Haible  <bruno@clisp.org>
1860
1861         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
1862         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
1863         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
1864         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
1865         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
1866         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
1867         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
1868         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
1869         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
1870         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
1871         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
1872         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
1873         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
1874         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
1875         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
1876         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
1877         left-adjust flag.
1878         * tests/test-snprintf-posix.h (test_function): Likewise.
1879         * tests/test-sprintf-posix.h (test_function): Likewise.
1880         * tests/test-vasprintf-posix.c (test_function): Likewise.
1881         * doc/posix-functions/fprintf.texi: Update.
1882         * doc/posix-functions/printf.texi: Update.
1883         * doc/posix-functions/snprintf.texi: Update.
1884         * doc/posix-functions/sprintf.texi: Update.
1885         * doc/posix-functions/vfprintf.texi: Update.
1886         * doc/posix-functions/vprintf.texi: Update.
1887         * doc/posix-functions/vsnprintf.texi: Update.
1888         * doc/posix-functions/vsprintf.texi: Update.
1889         Reported by Peter Fales <psfales@alcatel-lucent.com>.
1890
1891 2008-02-06  Bruno Haible  <bruno@clisp.org>
1892
1893         Fix bug introduced on 2008-01-26.
1894         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
1895
1896 2008-02-06  Bruno Haible  <bruno@clisp.org>
1897
1898         Fix bug introduced on 2007-06-10.
1899         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
1900         !NEED_PRINTF_FLAG_ZERO.
1901
1902 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
1903
1904         getloadavg: use libperfstat on AIX5
1905         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
1906
1907 2008-02-03  Bruno Haible  <bruno@clisp.org>
1908
1909         * lib/diffseq.h: Add comments about required #includes.
1910         Reported by Michael Biggs <gnulib@doubleplum.net>.
1911
1912 2008-02-01  Bruno Haible  <bruno@clisp.org>
1913
1914         * users.txt: Add gnuit.
1915
1916 2008-01-31  Bruno Haible  <bruno@clisp.org>
1917
1918         * lib/md4.c (set_uint32): Mark as inline.
1919         * lib/md5.c (set_uint32): Likewise.
1920         * lib/sha1.c (set_uint32): Likewise.
1921         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
1922         * m4/md5.m4 (gl_MD5): Likewise.
1923         * m4/sha1.m4 (gl_SHA1): Likewise.
1924
1925 2008-01-31  Jim Meyering  <meyering@redhat.com>
1926
1927         Use "sizeof VAR", rather than a literal "4".
1928         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
1929         * lib/md4.c (md4_read_ctx): Likewise.
1930         * lib/sha1.c (sha1_read_ctx): Likewise.
1931
1932 2008-01-31  Simon Josefsson  <simon@josefsson.org>
1933
1934         * tests/test-sha1.c: New file, based on test-md5.c.
1935
1936         * modules/crypto/sha1-tests: New file.
1937
1938 2008-01-31  Simon Josefsson  <simon@josefsson.org>
1939
1940         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
1941
1942 2008-01-31  Jim Meyering  <meyering@redhat.com>
1943
1944         Prefer "sizeof v" over the equivalent "4".
1945         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
1946         * lib/md5.c (set_uint32): Likewise.
1947         * lib/sha1.c (set_uint32): Likewise.
1948
1949 2008-01-31  Simon Josefsson  <simon@josefsson.org>
1950
1951         * lib/sha1.c (set_uint32): Mark function as static.
1952
1953 2008-01-31  Simon Josefsson  <simon@josefsson.org>
1954
1955         md2: clarify comments to say that alignment is not required.
1956         * lib/md2.h: Remove warning about alignment in comment.
1957         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
1958         never been required.
1959
1960 2008-01-31  Simon Josefsson  <simon@josefsson.org>
1961
1962         md4: adapt alignment constraint fix from sha1.
1963         * lib/md4.c (set_uint32): New function, from sha1.c
1964         (md4_read_ctx): Use it.
1965         (md4_finish_ctx): Doc fix.
1966         * lib/md4.h: Doc fix.
1967
1968 2008-01-31  Simon Josefsson  <simon@josefsson.org>
1969
1970         md5: adapt alignment constraint fix from sha1.
1971         * lib/md5.c (set_uint32): New function, from sha1.c
1972         (md5_read_ctx): Use it.
1973         (md5_finish_ctx): Doc fix.
1974         * lib/md5.h: Doc fix.
1975
1976 2008-01-30  Peter Palfrader  <weasel@debian.org>
1977
1978         sha1: remove the result buffer alignment constraint
1979         * lib/sha1.c (set_uint32): New function.
1980         (sha1_read_ctx): Rewrite to remove the result buffer alignment
1981         constraint.
1982         (sha1_finish_ctx): Remove comment warning about alignment constraint.
1983         * lib/sha1.h: Likewise.
1984
1985 2008-01-30  Andreas Schwab  <schwab@suse.de>
1986             Bruno Haible  <bruno@clisp.org>
1987
1988         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
1989         correct definition of LDBL_MIN_EXP.
1990
1991 2008-01-30  Karl Berry  <karl@gnu.org>
1992
1993         * config/srclist-update: try to preserve x bit on updates.
1994         * config/srclistvars.sh: update for karl.
1995
1996 2008-01-29  Jim Meyering  <meyering@redhat.com>
1997
1998         vasnprintf.c: Avoid warning about unused label
1999         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
2000         "overflow" label definition and associated code with the
2001         same cpp condition that guards the sole use of that label.
2002
2003 2008-01-26  Bruno Haible  <bruno@clisp.org>
2004
2005         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
2006         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
2007         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
2008         * lib/isnanl-nolibm.h (isnanl): Likewise.
2009         Reported by Paul Eggert <eggert@cs.ucla.edu>.
2010
2011 2008-01-26  Bruno Haible  <bruno@clisp.org>
2012
2013         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
2014         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
2015
2016 2008-01-26  Bruno Haible  <bruno@clisp.org>
2017
2018         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
2019         GCC >= 4.0 built-in.
2020         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
2021
2022 2008-01-26  Bruno Haible  <bruno@clisp.org>
2023
2024         Rename isnan, applicable to 'double' only, to isnand.
2025         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
2026         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
2027         (configure.ac): Update.
2028         (Include): Replace "isnan.h" with "isnand.h".
2029         * m4/isnand.m4: Renamed from m4/isnan.m4.
2030         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
2031         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
2032         instead of isnan.c.
2033         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
2034         instead of HAVE_ISNAN_IN_LIBC.
2035         (isnand): Renamed from isnan.
2036         * lib/isnand.c: New file.
2037         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
2038         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
2039         (Makefile.am): Update.
2040         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
2041         Include isnand.h instead of isnan.h.
2042         (main): Test isnand instead of isnan.
2043         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
2044         isnan-nolibm.
2045         * modules/frexp (Depends-on): Likewise.
2046         * modules/frexp-tests (Depends-on): Likewise.
2047         * modules/frexp-nolibm (Depends-on): Likewise.
2048         * modules/frexp-nolibm-tests (Depends-on): Likewise.
2049         * modules/isfinite (Depends-on): Likewise.
2050         * modules/round-tests (Depends-on): Likewise.
2051         * modules/signbit (Depends-on): Likewise.
2052         * modules/signbit-tests (Depends-on): Likewise.
2053         * modules/snprintf-posix (Depends-on): Likewise.
2054         * modules/sprintf-posix (Depends-on): Likewise.
2055         * modules/trunc-tests (Depends-on): Likewise.
2056         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
2057         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
2058         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
2059         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
2060         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
2061         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
2062         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
2063         * modules/vasnprintf-posix (Depends-on): Likewise.
2064         * modules/vasprintf-posix (Depends-on): Likewise.
2065         * modules/vfprintf-posix (Depends-on): Likewise.
2066         * modules/vsnprintf-posix (Depends-on): Likewise.
2067         * modules/vsprintf-posix (Depends-on): Likewise.
2068         * lib/frexp.c: Include isnand.h instead of isnan.h.
2069         (ISNAN): Set to isnand instead of isnan.
2070         * lib/isfinite.c: Include isnand.h instead of isnan.h.
2071         (gl_isfinited): Use isnand instead of isnan.
2072         * lib/signbitd.c: Include isnand.h instead of isnan.h.
2073         (gl_signbitd): Use isnand instead of isnan.
2074         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
2075         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
2076         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
2077         (main): Use isnand instead of isnan.
2078         * tests/test-round1.c: Include isnand.h.
2079         (main): Use isnand instead of isnan.
2080         * tests/test-round2.c: Include isnand.h instead of isnan.h.
2081         (ISNAN): Set to isnand instead of isnan.
2082         * tests/test-trunc1.c: Include isnand.h.
2083         (main): Use isnand instead of isnan.
2084         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
2085         (equal): Use isnand instead of isnan.
2086         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
2087         isnand-nolibm.
2088         * NEWS: Mention the change.
2089
2090 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
2091             Bruno Haible  <bruno@clisp.org>
2092
2093         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
2094         the GCC builtins for signbits are present and set
2095         REPLACE_SIGNBIT_USING_GCC if so.
2096         * lib/math.in.h (signbit): Define using GCC builtins if
2097         REPLACE_SIGNBIT_USING_GCC is set.
2098         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
2099         REPLACE_SIGNBIT_USING_GCC.
2100         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
2101
2102 2008-01-25  Jim Meyering  <meyering@redhat.com>
2103
2104         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
2105         * lib/poll.c: Include <config.h>, not "config.h".
2106         * tests/test-getaddrinfo.c: Likewise.
2107
2108 2008-01-25  Simon Josefsson  <simon@josefsson.org>
2109
2110         * modules/sockets-tests: New file.
2111
2112 2008-01-24  Simon Josefsson  <simon@josefsson.org>
2113
2114         * modules/sockets: New module, can be used to call WSA_Startup and
2115         WSA_Cleanup when needed.
2116
2117         * lib/sockets.h, lib/sockets.c: New files.
2118
2119         * m4/sockets.m4: New file.
2120
2121         * tests/test-sockets.c: New file.
2122
2123 2008-01-19  Bruno Haible  <bruno@clisp.org>
2124
2125         * doc/posix-headers: Renamed from doc/headers.
2126         * doc/posix-functions: Renamed from doc/functions.
2127         * doc/gnulib.texi: Update.
2128
2129 2008-01-19  Bruno Haible  <bruno@clisp.org>
2130
2131         * doc/glibc-functions/strcasestr.texi: Include contents of
2132         doc/functions/strcasestr.texi, fixing the list of platforms.
2133         * doc/functions/strcasestr.texi: Remove file.
2134
2135 2008-01-19  Bruno Haible  <bruno@clisp.org>
2136
2137         * doc/glibc-functions/memmem.texi: Include contents of
2138         doc/functions/memmem.texi.
2139         * doc/functions/memmem.texi: Remove file.
2140
2141 2008-01-18  Bruno Haible  <bruno@clisp.org>
2142
2143         * doc/glibc-functions/*.texi: New files.
2144         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
2145         to use the new files.
2146
2147 2008-01-17  Bruno Haible  <bruno@clisp.org>
2148
2149         * tests/test-gethostname.c (main): Fix printf statement.
2150
2151 2008-01-17  Simon Josefsson  <simon@josefsson.org>
2152
2153         * modules/gethostname-tests: New file.
2154
2155         * tests/test-gethostname.c: New file.
2156
2157 2008-01-17  Simon Josefsson  <simon@josefsson.org>
2158
2159         * lib/gethostname.c: Include string.h unconditionally, strncpy is
2160         used by the UNAME case.  Reported by Bruno Haible
2161         <bruno@clisp.org>.
2162
2163 2008-01-17  Eric Blake  <ebb9@byu.net>
2164
2165         Convert c-strcasestr to be more efficient.
2166         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
2167         (Depends-on): Add c-strcase, remove malloca, strnlen.
2168         * tests/test-c-strcasestr.c (main): Enhance test.
2169         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
2170
2171 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
2172
2173         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
2174         Use it in creating po/Makevars.
2175
2176 2008-01-15  Simon Josefsson  <simon@josefsson.org>
2177
2178         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
2179         Applications that requires it should initialize libgcrypt
2180         manually.
2181
2182 2008-01-16  Simon Josefsson  <simon@josefsson.org>
2183
2184         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
2185
2186 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
2187
2188         Fix problem with getdate on mingw32 reported by Simon Josefsson
2189         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
2190         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
2191         tzname", when deciding whether to declare tzname.
2192         * lib/strftime.c (tzname): Likewise.
2193
2194 2008-01-15  Bruno Haible  <bruno@clisp.org>
2195
2196         Work around a MacOS X 10.5 bug in frexpl().
2197         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
2198         * doc/functions/frexpl.texi: Document the bug.
2199         Reported by Elias Pipping <pipping@gentoo.org>.
2200
2201 2008-01-14  Eric Blake  <ebb9@byu.net>
2202
2203         Touch up previous patch.
2204         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
2205         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
2206
2207         Convert strcasestr module to use Two-Way algorithm.
2208         * modules/strcasestr-simple: New module, based on the old
2209         strcasestr, but with Two-Way rather than KMP.
2210         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
2211         * lib/string.in.h (rpl_strcasestr): Declare.
2212         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
2213         performance.
2214         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
2215         * modules/string (Makefile.am): Support strcasestr.
2216         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
2217         * modules/strcasestr-tests (Depends-on): Check for alarm.
2218         * tests/test-strcasestr.c: Augment test.
2219         * lib/str-two-way.h: Clean up stray macro.
2220         * NEWS: Document new module.
2221         * MODULES.html.sh (string handling): Likewise.
2222         * doc/functions/strcasestr.texi: New file.
2223         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
2224         here, since it is not a POSIX function.
2225
2226 2008-01-14  Colin Watson  <cjwatson@debian.org>
2227             Bruno Haible  <bruno@clisp.org>
2228
2229         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
2230         works fine; if not, set REPLACE_STRSIGNAL.
2231         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
2232         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
2233         REPLACE_STRSIGNAL.
2234         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
2235         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
2236         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
2237
2238 2008-01-14  Bruno Haible  <bruno@clisp.org>
2239
2240         * modules/strsignal (Include): Change to <string.h>.
2241
2242 2008-01-14  Colin Watson  <cjwatson@debian.org>
2243
2244         * modules/argp (Notice): Add a notice recommending to change
2245         XGETTEXT_OPTIONS.
2246         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
2247
2248 2008-01-13  Colin Watson  <cjwatson@debian.org>
2249
2250         * modules/strsignal-tests: New file.
2251         * tests/test-strsignal.c: New file.
2252
2253         * lib/strsignal.c: New file, from glibc with modifications.
2254         * lib/siglist.h: New file, from glibc with modifications.
2255         * lib/string.in.h (strsignal): New declaration.
2256         * m4/strsignal.m4: New file.
2257         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
2258         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
2259         * modules/strsignal: New file.
2260         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
2261         HAVE_DECL_STRSIGNAL.
2262
2263 2008-01-13  Bruno Haible  <bruno@clisp.org>
2264
2265         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
2266         locale encoding is not ASCII. Needed for OpenBSD 4.0.
2267         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
2268         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
2269
2270 2008-01-13  Bruno Haible  <bruno@clisp.org>
2271
2272         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
2273         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
2274         * lib/argp.h (__attribute__): Likewise.
2275         * lib/c-stack.c (__attribute__): Likewise.
2276         * lib/error.h (__attribute__): Likewise.
2277         * lib/fts.c (__attribute__): Likewise.
2278         * lib/openat.h (__attribute__): Likewise.
2279         * lib/stdio.in.h (__attribute__): Likewise.
2280         * lib/string.in.h (__attribute__): Likewise.
2281         * lib/utimens.c (__attribute__): Likewise.
2282         * lib/vasnprintf.h (__attribute__): Likewise.
2283         * lib/xalloc.h (__attribute__): Likewise.
2284         * lib/xprintf.h (__attribute__): Likewise.
2285         * lib/xstrtol.h (__attribute__): Likewise.
2286         * lib/xvasprintf.h (__attribute__): Likewise.
2287
2288 2008-01-12  Bruno Haible  <bruno@clisp.org>
2289
2290         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
2291         * doc/glibc-headers/a.out.texi: New file.
2292         * doc/glibc-headers/aliases.texi: New file.
2293         * doc/glibc-headers/alloca.texi: New file.
2294         * doc/glibc-headers/ar.texi: New file.
2295         * doc/glibc-headers/argp.texi: New file.
2296         * doc/glibc-headers/argz.texi: New file.
2297         * doc/glibc-headers/byteswap.texi: New file.
2298         * doc/glibc-headers/crypt.texi: New file.
2299         * doc/glibc-headers/endian.texi: New file.
2300         * doc/glibc-headers/envz.texi: New file.
2301         * doc/glibc-headers/err.texi: New file.
2302         * doc/glibc-headers/error.texi: New file.
2303         * doc/glibc-headers/execinfo.texi: New file.
2304         * doc/glibc-headers/fpu_control.texi: New file.
2305         * doc/glibc-headers/fstab.texi: New file.
2306         * doc/glibc-headers/fts.texi: New file.
2307         * doc/glibc-headers/getopt.texi: New file.
2308         * doc/glibc-headers/ieee754.texi: New file.
2309         * doc/glibc-headers/ifaddrs.texi: New file.
2310         * doc/glibc-headers/libintl.texi: New file.
2311         * doc/glibc-headers/mcheck.texi: New file.
2312         * doc/glibc-headers/mntent.texi: New file.
2313         * doc/glibc-headers/obstack.texi: New file.
2314         * doc/glibc-headers/paths.texi: New file.
2315         * doc/glibc-headers/printf.texi: New file.
2316         * doc/glibc-headers/pty.texi: New file.
2317         * doc/glibc-headers/resolv.texi: New file.
2318         * doc/glibc-headers/shadow.texi: New file.
2319         * doc/glibc-headers/sysexits.texi: New file.
2320         * doc/glibc-headers/ttyent.texi: New file.
2321
2322 2008-01-12  Jim Meyering  <meyering@redhat.com>
2323
2324         announce-gen: emit Gnulib's git-based version string.
2325         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
2326         New option --gnulib-version=V, where V is expected to be
2327         the output of running git describe in the gnulib directory.
2328         (get_tool_versions): Request feedback on xdelta.  I suspect it's
2329         not useful, and plan to stop publishing an xdelta file with each
2330         coreutils release.
2331
2332         * build-aux/announce-gen: Also check for lzma-compressed files.
2333
2334 2008-01-11  Bruno Haible  <bruno@clisp.org>
2335
2336         * tests/test-memmem.c (main): Increase maximum allowed time.
2337         * tests/test-strstr.c (main): Likewise.
2338
2339 2008-01-11  Bruno Haible  <bruno@clisp.org>
2340
2341         * doc/functions/memmem.texi: Add more precisions about platforms.
2342         * doc/functions/strstr.texi: Likewise.
2343
2344 2008-01-10  Eric Blake  <ebb9@byu.net>
2345
2346         * m4/strstr.m4: Delete cruft from copy-n-paste.
2347         Reported by Bruno Haible.
2348
2349 2008-01-10  Bruno Haible  <bruno@clisp.org>
2350
2351         Make c-strstr rely on strstr.
2352         * lib/c-strstr.c: Don't include str-kmp.h.
2353         (c_strstr): Define in terms of strstr.
2354         * modules/c-strstr (Files): Remove lib/str-kmp.h.
2355         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
2356
2357 2008-01-10  Bruno Haible  <bruno@clisp.org>
2358
2359         * doc/gnulib.texi (String Functions in C Locale): New section.
2360         * doc/c-ctype.texi: New file.
2361         * doc/c-strcase.texi: New file.
2362         * doc/c-strcaseeq.texi: New file.
2363         * doc/c-strcasestr.texi: New file.
2364         * doc/c-strstr.texi: New file.
2365         * doc/c-strtod.texi: New file.
2366         * doc/c-strtold.texi: New file.
2367
2368 2008-01-10  Eric Blake  <ebb9@byu.net>
2369
2370         * lib/relocatable.h: Fix a comment.
2371
2372 2008-01-10  Eric Blake  <ebb9@byu.net>
2373
2374         Share two-way algorithm.
2375         * lib/str-two-way.h: New file, merged from...
2376         * lib/memmem.c: ...here...
2377         * lib/strstr.c: ...and here.
2378         * modules/memmem (Files): Use it.
2379         * modules/strstr (Files): Likewise.
2380
2381         Avoid quadratic strstr implementations.
2382         * lib/strstr.c: New file.
2383         * m4/strstr.m4: Likewise.
2384         * modules/strstr: Likewise.
2385         * modules/strstr-tests: Likewise.
2386         * tests/test-strstr.c: Likewise.
2387         * lib/string.in.h (rpl_strstr): Declare.
2388         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
2389         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
2390         * modules/string (Makefile.am): Likewise.
2391         * MODULES.html.sh (string handling): Mention new module.
2392         * doc/functions/strstr.texi (strstr): Document the bug.
2393
2394 2008-01-10  Bruno Haible  <bruno@clisp.org>
2395
2396         * lib/relocatable.h (relocate): State whether result is freshly
2397         allocated or not.
2398         * lib/relocatable.c (relocate): Return a freshly allocated string
2399         instead of a pointer to a privately held string.
2400         Reported by Sylvain Beucler <beuc@gnu.org>.
2401
2402 2008-01-10  Colin Watson  <cjwatson@debian.org>
2403
2404         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
2405         s/S_ISNLK/S_ISLNK/.
2406
2407 2008-01-09  Bruno Haible  <bruno@clisp.org>
2408
2409         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
2410         and other files.
2411         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
2412         if it's only a guess.
2413         * modules/memmem: Simplify by depending on memmem-simple.
2414
2415 2008-01-09  Bruno Haible  <bruno@clisp.org>
2416
2417         Work around OpenBSD 4.0 tdelete() bug.
2418         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
2419         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
2420         macros and don't redefine the enum values.
2421         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
2422         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
2423         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
2424
2425 2008-01-09  Bruno Haible  <bruno@clisp.org>
2426
2427         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
2428         (main): Don't perform the tests if setlocale did not install a UTF-8
2429         locale. Needed on OpenBSD 4.0.
2430         * modules/wcwidth-tests (Depends-on): Add localcharset.
2431
2432 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
2433
2434         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
2435         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
2436         * NEWS: announce this.
2437         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
2438
2439 2008-01-09  Simon Josefsson  <simon@josefsson.org>
2440         and Eric Blake  <ebb9@byu.net>
2441
2442         Add memmem-simple module.
2443         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
2444         (gl_FUNC_MEMMEM): Separate performance from presence checks.
2445         * modules/memmem-simple: New file.
2446         * modules/memmem (Description): Tweak.
2447         * MODULES.html.sh (string handling): Mention new module.
2448         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
2449         addressed by memmem-simple.
2450         * NEWS: Document the difference.
2451
2452 2008-01-09  Eric Blake  <ebb9@byu.net>
2453
2454         Give gcc some memmem optimization hints.
2455         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
2456         (strcasestr): Declare as pure.
2457         * modules/memmem (Maintainer): Claim my implementation.
2458
2459 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2460
2461         Support AIX 6.1 and higher.
2462         * build-aux/config.libpath: Likewise.
2463         * build-aux/config.rpath: Likewise.
2464
2465 2008-01-08  Jim Meyering  <meyering@redhat.com>
2466             Bruno Haible  <bruno@clisp.org>
2467
2468         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
2469         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
2470         Reported by Peter Fales in
2471         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
2472
2473 2008-01-08  Bruno Haible  <bruno@clisp.org>
2474
2475         * modules/unictype/category-of (Depends-on): Add
2476         unictype/category-none.
2477         * modules/unictype/category-and-tests (Depends-on): Add
2478         unictype/category-{L,N,Lu,Nd}.
2479         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
2480         * modules/unictype/category-or-tests (Depends-on): Add
2481         unictype/category-{L,N}.
2482         * modules/unictype/category-name-tests (Depends-on): Add
2483         unictype/category-{Z,Nl}.
2484         Reported by Simon Josefsson.
2485
2486 2008-01-08  Bruno Haible  <bruno@clisp.org>
2487
2488         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
2489         convention better.
2490         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
2491         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
2492         Reported by Peter Miller <millerp@canb.auug.org.au>.
2493
2494 2008-01-08  Eric Blake  <ebb9@byu.net>
2495
2496         Rewrite memmem to guarantee linear complexity without malloc.
2497         * lib/memmem.c (memmem): Use Two-Way rather than
2498         Knuth-Morris-Pratt, to allow O(1) space usage.
2499         (critical_factorization, two_way_short_needle)
2500         (two_way_long_needle): New functions.
2501         (knuth_morris_pratt): Delete.
2502         * modules/memmem (Depends-on): No longer need malloca or stdbool.
2503         Add stdint.
2504         * tests/test-memmem.c (main): Add tests for periodic needle and
2505         sublinear performance.
2506         * doc/functions/memmem.texi (memmem): Document other deficiencies
2507         in cygwin and older glibc.
2508
2509 2008-01-08  Bruno Haible  <bruno@clisp.org>
2510
2511         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
2512         augmentation.
2513
2514 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
2515
2516         Add a configure time option: --disable-acl.
2517         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
2518         AC_ARG_ENABLE(acl).
2519
2520 2008-01-06  Simon Josefsson  <simon@josefsson.org>
2521
2522         * tests/test-localename.c: Don't include obsolete "setenv.h".
2523
2524         * modules/localename-tests (Depends-on): Need unsetenv.
2525
2526 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2527
2528         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
2529
2530 2008-01-06  Colin Watson  <cjwatson@debian.org>
2531
2532         * users.txt: Add man-db.
2533
2534 2008-01-07  Bruno Haible  <bruno@clisp.org>
2535
2536         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
2537         previous section name.
2538
2539 2008-01-07  Bruno Haible  <bruno@clisp.org>
2540
2541         * lib/progname.c (set_program_name): Don't strip off a leading
2542         "lt-" prefix outside a .libs directory.
2543         Suggested by Paul Eggert.
2544
2545 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
2546             Bruno Haible  <bruno@clisp.org>
2547
2548         Improve memory cleanup in 'relocatable' module.
2549         * lib/relocatable.h (compute_curr_prefix): Change return type to
2550         'char *'.
2551         * lib/relocatable.c (compute_curr_prefix): Change return type to
2552         'char *'. Free curr_installdir after use.
2553         (relocate): Free curr_prefix_better after use.
2554         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
2555
2556 2008-01-01  Bruno Haible  <bruno@clisp.org>
2557
2558         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
2559         failure on older glibc systems.
2560         Reported by Peter Fales <psfales@alcatel-lucent.com>.
2561
2562 2008-01-05  Eric Blake  <ebb9@byu.net>
2563
2564         Avoid quadratic system memmem.
2565         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
2566         Reported by Ralf Wildenhues.
2567
2568         Fix memmem test for mingw.
2569         * modules/memmem-tests (configure.ac): Check for alarm.
2570         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
2571         it.
2572         * doc/functions/memmem.texi: New file.
2573         * doc/gnulib.texi (Function Substitutes): Add memmem.
2574         Reported by Bruno Haible.
2575
2576 2008-01-04  Bruno Haible  <bruno@clisp.org>
2577
2578         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
2579         Require gl_HEADER_STRINGS_H_DEFAULTS, not
2580         gl_HEADER_STRING_H_DEFAULTS.
2581
2582 2008-01-04  Eric Blake  <ebb9@byu.net>
2583
2584         Shorten duration of memmem test.
2585         * tests/test-memmem.c (main): Use alarm to declare failure if test
2586         is taking too long.
2587         Reported by Ralf Wildenhues.
2588
2589 2007-12-21  Simon Josefsson  <simon@josefsson.org>
2590
2591         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
2592         string, needed by strerror.
2593
2594 2008-01-03  Colin Watson  <cjwatson@debian.org>
2595             Bruno Haible  <bruno@clisp.org>
2596
2597         * doc/gnulib-tool.texi (Localization): New section.
2598
2599 2008-01-02  Bruno Haible  <bruno@clisp.org>
2600
2601         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
2602         variables to 'unsigned char *' type.
2603         Reported by Paul Eggert.
2604
2605 2008-01-02  Jim Meyering  <jim@meyering.net>
2606
2607         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
2608
2609 2007-12-31  Jim Meyering  <jim@meyering.net>
2610
2611         Avoid use of private FTS type name.
2612         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
2613
2614 2007-12-30  Karl Berry  <karl@gnu.org>
2615
2616         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
2617         work around defect in Texinfo and/or the standalone Info browser.
2618
2619 2007-12-30  Bruno Haible  <bruno@clisp.org>
2620
2621         Unify 5 copies of the KMP code.
2622         * lib/str-kmp.h: New file.
2623         * lib/c-strcasestr.c: Include str-kmp.h.
2624         (knuth_morris_pratt): Remove function.
2625         (c_strcasestr): Update.
2626         * lib/c-strstr.c: Include str-kmp.h.
2627         (knuth_morris_pratt): Remove function.
2628         (c_strcasestr): Update.
2629         * lib/mbscasestr.c: Include str-kmp.h.
2630         (knuth_morris_pratt_unibyte): Remove function.
2631         * lib/mbsstr.c: Include str-kmp.h.
2632         (knuth_morris_pratt_unibyte): Remove function.
2633         * lib/strcasestr.c: Include str-kmp.h.
2634         (knuth_morris_pratt): Remove function.
2635         (strcasestr): Update.
2636         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
2637         * modules/c-strstr (Files): Likewise.
2638         * modules/mbscasestr (Files): Likewise.
2639         * modules/mbsstr (Files): Likewise.
2640         * modules/strcasestr (Files): Likewise.
2641         Suggested by Paul Eggert.
2642
2643 2007-12-30  Bruno Haible  <bruno@clisp.org>
2644
2645         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
2646         defined.
2647
2648 2007-12-30  Bruno Haible  <bruno@clisp.org>
2649
2650         * lib/xmalloca.h: Include xalloc.h.
2651         (xnmalloca): New macro.
2652
2653 2007-12-30  Bruno Haible  <bruno@clisp.org>
2654
2655         * lib/malloca.h (nmalloca): New macro.
2656         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
2657         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
2658         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
2659         knuth_morris_pratt_multibyte): Likewise.
2660         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
2661         knuth_morris_pratt_multibyte): Likewise.
2662         * lib/memmem.c (knuth_morris_pratt): Likewise.
2663         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
2664
2665 2007-12-25  Bruno Haible  <bruno@clisp.org>
2666
2667         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
2668         * lib/glob.c: Don't include openat.h.
2669         (link_exists2_p): Add back the code that deals with the
2670         !GLOB_ALTDIRFUNC case.
2671         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
2672         let it do the filename concatenation.
2673         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
2674         * modules/glob (Depends-on): Remove openat.
2675
2676 2007-12-31  Bruno Haible  <bruno@clisp.org>
2677
2678         * modules/dirfd (License): Change to LGPLv2+.
2679         Approved by Jim Meyering.
2680
2681 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2682
2683         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
2684         when multiplying M by sizeof (size_t).
2685
2686 2007-12-10  Martin Lambers  <marlam@marlam.de>
2687
2688         Override getpagesize on mingw.
2689         * lib/getpagesize.c: New file.
2690         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
2691         * modules/getpagesize (Files): Add lib/getpagesize.c.
2692         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
2693         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
2694         REPLACE_GETPAGESIZE.
2695         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
2696
2697 2007-12-25  Bruno Haible  <bruno@clisp.org>
2698
2699         * modules/localcharset (Notice): New field.
2700         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
2701         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
2702
2703 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
2704             Bruno Haible  <bruno@clisp.org>
2705
2706         Avoid using the syntax symbol() in formatted documentation.
2707         * MODULES.html.sh (func_module): When replacing symbol() with a
2708         hyperlink, remove the parentheses. Show an error if some remain.
2709         Recognize and render the '...' syntax.
2710         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
2711         Rework. Add paragraph about GCC's inlining.
2712         * doc/alloca.texi: Likewise.
2713         * doc/error.texi: Remove parentheses from symbol reference.
2714         * doc/gnulib-intro.texi: Likewise.
2715         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
2716         * modules/fnmatch (Description): Reword to say "the ... function".
2717         * modules/full-read (Description): Likewise.
2718         * modules/full-write (Description): Likewise.
2719         * modules/safe-read (Description): Likewise.
2720         * modules/safe-write (Description): Likewise.
2721         * modules/strchrnul (Description): Likewise.
2722         * modules/trim (Description): Likewise.
2723         * modules/error (Description): Remove parentheses from symbol
2724         references.
2725         * modules/verror (Description): Likewise.
2726         Reported by Karl Berry.
2727
2728 2007-12-25  Bruno Haible  <bruno@clisp.org>
2729
2730         Fixup after 2007-10-16 commit.
2731         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
2732
2733 2007-12-24  Bruno Haible  <bruno@clisp.org>
2734
2735         Make --enable-relocatable work with DESTDIR.
2736         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
2737         to compute installdir from destprog.
2738         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
2739         also set the RELOC_DESTDIR variable.
2740         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
2741
2742 2007-12-24  Bruno Haible  <bruno@clisp.org>
2743
2744         Fix link error due to xalloc_die().
2745         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
2746         of xreadlink.
2747         * lib/relocwrapper.c: Update comments.
2748         * build-aux/install-reloc: Remove xreadlink.c from file list.
2749         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
2750         xreadlink.c.
2751         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
2752
2753 2007-12-24  Bruno Haible  <bruno@clisp.org>
2754
2755         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
2756         * lib/setenv.h: Remove file.
2757         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
2758         lib/setenv.h.
2759         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
2760         (Depends-on): Add stdlib.
2761         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
2762         gl_FUNC_UNSETENV.
2763         (Include): Replace setenv.h with <stdlib.h>.
2764         * modules/unsetenv: New file.
2765         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
2766         * lib/unsetenv.c: Include <stdlib.h> first.
2767         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
2768         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
2769         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
2770         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
2771         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
2772         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
2773         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
2774         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
2775         * doc/functions/unsetenv.texi: Update.
2776         * modules/xsetenv (Depends-on): Add unsetenv.
2777         * modules/getdate (Depends-on): Likewise.
2778         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
2779         * lib/xsetenv.c: Don't include setenv.h.
2780         * lib/getdate.y: Likewise.
2781         * lib/relocwrapper.c: Likewise.
2782         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
2783         (Depends-on): Add stdlib.
2784         * NEWS: Mention the changes.
2785         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
2786
2787 2007-12-23  Bruno Haible  <bruno@clisp.org>
2788
2789         * lib/memmem.c (memmem): Use lowercase variable names. Tab
2790         indentation.
2791
2792 2007-12-23  Bruno Haible  <bruno@clisp.org>
2793
2794         * lib/c-strcasestr.c: Add more comments.
2795         * lib/c-strstr.c: Likewise.
2796         * lib/mbscasestr.c: Likewise.
2797         * lib/mbsstr.c: Likewise.
2798         * lib/strcasestr.c: Likewise.
2799         * lib/memmem.c: Likewise.
2800
2801 2007-12-23  Bruno Haible  <bruno@clisp.org>
2802
2803         * tests/test-memmem.c: Include <string.h> first.
2804
2805 2007-12-22  Bruno Haible  <bruno@clisp.org>
2806
2807         * gnulib-tool (func_create_testdir): Change $auxdir while generating
2808         the contents of $testsbase.
2809         Reported by Ralf Wildenhues.
2810
2811 2007-12-22  Bruno Haible  <bruno@clisp.org>
2812
2813         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
2814         two variables local_ldadd_before, local_ldadd_last.
2815
2816 2007-12-20  Eric Blake  <ebb9@byu.net>
2817
2818         Work around circular library issue when cross-compiling.
2819         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
2820         that progname.o does not need to pull in rpl_memcmp.
2821
2822 2007-12-19  Eric Blake  <ebb9@byu.net>
2823
2824         Fix memmem to avoid O(n^2) worst-case complexity.
2825         * lib/memmem.c (knuth_morris_pratt): New function.
2826         (memmem): Use it if first few naive iterations fail.
2827         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
2828         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
2829         * modules/memchr (License): Likewise.
2830         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
2831         malloca.
2832         * tests/test-memmem.c: Rewrite, borrowing ideas from
2833         test-mbsstr1.c; the old version wouldn't even compile!
2834         * modules/memmem-tests: New file.
2835         * lib/string.in.h (rpl_memmem): Add declaration.
2836         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
2837         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
2838         REPLACE_MEMMEM.
2839
2840 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
2841
2842         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
2843         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
2844         before any system include files, and undef after them all.  This
2845         should fix a problem on VMS reported by John E. Malmberg in
2846         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
2847
2848 2007-12-17  Eric Blake  <ebb9@byu.net>
2849
2850         Revert addition of verify, for BSD/OS.
2851         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
2852         can't handle large files, for the sake of obsolete platforms.
2853         * modules/fseeko (Depends-on): Remove verify.
2854         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
2855         * doc/functions/ftello.texi (ftello): Likewise.
2856         * doc/functions/fgetpos.texi (fgetpos): Likewise.
2857         Reported by Larry Jones.
2858
2859 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
2860
2861         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
2862         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
2863
2864 2007-12-17  Jim Meyering  <meyering@redhat.com>
2865
2866         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
2867         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
2868         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
2869         * modules/getcwd (Depends-on): Add openat.
2870         Reported by Petr Salinger.
2871
2872 2007-12-17  Bruno Haible  <bruno@clisp.org>
2873
2874         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
2875         avoid a segmentation fault of the configure test on x86_64 systems.
2876
2877 2007-12-15  Jim Meyering  <meyering@redhat.com>
2878
2879         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
2880
2881 2007-12-13  Eric Blake  <ebb9@byu.net>
2882
2883         Another fseek test.
2884         * tests/test-fseek.c (main): Also test ungetc handling.
2885         * tests/test-fseeko.c (main): Likewise.
2886         * modules/fseeko (Depends-on): Add verify.
2887         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
2888         large.
2889         Reported by Larry Jones.
2890
2891         Fix fseeko on mingw.
2892         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
2893         seek.
2894
2895         Beef up fseek tests.
2896         * tests/test-fseek.c (main): Also test eof handling.
2897         * tests/test-fseeko.c (main): Likewise.
2898         Reported by Larry Jones.
2899
2900 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
2901
2902         Fix fseeko on BSD-based platforms.
2903         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
2904         successful seek.
2905
2906 2007-12-12  Eric Blake  <ebb9@byu.net>
2907
2908         Allow circular dependency of separate libtests.a
2909         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
2910         when use_libtests.
2911
2912 2007-12-11  Eric Blake  <ebb9@byu.net>
2913
2914         Fix bug with -0.0L in previous patch.
2915         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
2916         * tests/test-isnan.c (main): Also test on zeroes.
2917         * tests/test-isnanf.c (main): Likewise.
2918         * tests/test-isnanl.h (main): Likewise.
2919
2920         Detect pseudo-denormals on x86 even when cross-compiling.
2921         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
2922         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
2923         invalid bit patterns that happen to satisfy ==.
2924
2925         Avoid link failures with separate libtests.a.
2926         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
2927         last, to satisfy circular dependencies.
2928
2929 2007-12-11  Eric Blake  <ebb9@byu.net>
2930         and Bruno Haible  <bruno@clisp.org>
2931
2932         Fix OpenBSD 4.0 <float.h> handling of long double.
2933         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
2934         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
2935         * doc/headers/float.texi (float.h): Document OpenBSD bug.
2936
2937 2007-12-11  Jim Meyering  <meyering@redhat.com>
2938
2939         * users.txt: Add libvirt.
2940
2941         Support versions of autoconf prior to 2.59c.
2942         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
2943         if it is not already defined.
2944
2945 2007-12-09  Bruno Haible  <bruno@clisp.org>
2946
2947         Let 'gnulib-tool --import' collect sources needed for the tests in
2948         tests/ rather than in lib/.
2949         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
2950         argument. If true, add rules to generate libtests.a, and put libtests.a
2951         into $(LDADD). Consider source files in subdirectories and set
2952         uses_subdirs.
2953         (func_emit_initmacro_start, func_emit_initmacro_end,
2954         func_emit_initmacro_done): Pass all arguments explicitly.
2955         (func_import): Determine two module lists main_modules,
2956         testsrelated_modules. Determine use_libtests. Determine two variables
2957         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
2958         instead of just sed_transform_lib_file. Determine two variables
2959         main_files and testsrelated_files. Compute 'files' as the union of
2960         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
2961         func_add_or_update. In the generated gnulib-comp.m4, collect the
2962         object files for tests/ in different variables than those for lib/.
2963         Substitute LIBTESTS_LIBDEPS.
2964         (func_create_testdir): Combine the uses_subdirs results from
2965         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
2966
2967 2007-12-09  Bruno Haible  <bruno@clisp.org>
2968
2969         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
2970         the build-aux directory.
2971
2972 2007-12-09  Bruno Haible  <bruno@clisp.org>
2973
2974         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
2975         introduced on 2006-09-09.
2976
2977 2007-12-07  Jim Meyering  <meyering@redhat.com>
2978
2979         Let these macros work also with autoconf-2.59.
2980         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
2981         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
2982         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
2983
2984 2007-12-06  Jim Meyering  <meyering@redhat.com>
2985
2986         Avoid a configure-time syntax error in gl_FUNC_ACL.
2987         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
2988         function in each branch, before testing the cache variable.
2989
2990 2007-12-04  Eric Blake  <ebb9@byu.net>
2991
2992         Make scripts executable.
2993         * build-aux/config.guess: Add execute permissions.
2994         * build-aux/config.sub: Likewise.
2995         * build-aux/gendocs.sh: Likewise.
2996
2997         Fix frexp on mingw.
2998         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
2999         cross-compiling.
3000         * doc/functions/frexp.texi (frexp): Document the bug.
3001
3002         Make cygwin fseeko check more reliable.
3003         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
3004         version numbers, rather than unrelated feature check.
3005         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
3006         * doc/functions/ftello.texi (ftello): Likewise.
3007         Reported by Bruno Haible.
3008
3009         * m4/strerror.m4: Bump version number.
3010
3011 2007-12-03  Bruno Haible  <bruno@clisp.org>
3012
3013         * doc/functions/mprotect.texi: Mention the mingw problem.
3014
3015 2007-12-03  Eric Blake  <ebb9@byu.net>
3016
3017         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
3018         REPLACE_STRERROR is initialized before this macro.
3019
3020 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
3021
3022         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
3023         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
3024         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
3025         put -lsec in even for programs other than 'ls'.  This fixes a problem
3026         for gettext reported by Bruno Haible in
3027         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
3028         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
3029         Add support for Solaris 10.  This isn't efficient, but should get the
3030         job done for now.
3031
3032 2007-12-03  James Youngman  <jay@gnu.org>
3033
3034         * doc/regexprops-generic.texi: change "an close-group" to "a
3035         close-group" and "illegal" to "not allowed".
3036
3037 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3038
3039         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
3040         pr_byname.h. Needed for the rare case when the maintainer has done
3041         "make maintainer-clean" in the source directory and then attempts a
3042         build outside the source directory.
3043         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
3044         scripts_byname.h.
3045
3046 2007-12-02  Martin Lambers <marlam@marlam.de>
3047             Bruno Haible  <bruno@clisp.org>
3048
3049         * lib/getpagesize.h: Remove file.
3050         * lib/unistd.in.h: Include declaration of getpagesize here.
3051         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
3052         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
3053         HAVE_SYS_PARAM_H.
3054         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
3055         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
3056         * modules/getpagesize (Files): Remove lib/getpagesize.h.
3057         (Depends-on): Add unistd.
3058         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3059         (Include): Use <unistd.h> instead of getpagesize.h.
3060         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
3061         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
3062         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
3063         gl_GETPAGESIZE invocation, already handled by module dependency.
3064         * lib/pagealign_alloc.c: Don't include getpagesize.h.
3065
3066 2007-12-02  Bruno Haible  <bruno@clisp.org>
3067
3068         * modules/strings-tests: New file.
3069         * tests/test-strings.c: New file.
3070
3071         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
3072         * lib/strings.in.h: New file.
3073         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
3074         * m4/strings_h.m4: New file.
3075         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
3076         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
3077         * modules/strings: New file.
3078         * modules/string (Makefile.am): Update.
3079         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
3080         Reported by Karl Berry.
3081
3082 2007-12-01  Eric Blake  <ebb9@byu.net>
3083
3084         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
3085         accomodate fix in cygwin 1.5.25.
3086
3087 2007-12-01  Jim Meyering  <meyering@redhat.com>
3088
3089         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
3090         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
3091         that would inhibit utf8-optimization of a regexp containing line-
3092         or buffer-anchors, e.g., `^', `$'.
3093
3094 2007-11-30  Bruno Haible  <bruno@clisp.org>
3095
3096         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
3097         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
3098         glthread_recursive_lock_init.
3099         * lib/lock.c (glthread_recursive_lock_init)
3100         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
3101         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
3102
3103 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
3104
3105         New function qset_acl, like set_acl but with syscall semantics.
3106         * lib/acl.h (qset_acl): New decl.
3107         * lib/acl.c (qset_acl): New function.
3108         (set_acl): Use new function.  Use more-consistent diagnostics.
3109
3110 2007-11-28  Jim Meyering  <meyering@redhat.com>
3111
3112         * modules/physmem (License): Change from GPL to LGPLv2+.
3113
3114 2007-11-26  Bruno Haible  <bruno@clisp.org>
3115
3116         * lib/vasnprintf.c (decode_long_double): Don't abort if the
3117         'long double' type has excess precision.
3118         Reported by Jim Meyering in
3119         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
3120
3121 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3122
3123         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
3124         Sync from <http://gnu.org/licenses>.
3125         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
3126         with license text from same location.
3127         * doc/maintain.texi, doc/standards.texi:  Sync from
3128         <http://savannah.gnu.org/projects/gnustandards>.
3129
3130 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
3131         and Jim Meyering  <meyering@redhat.com>
3132
3133         Adjust getdate' grammar to accept a slightly more regular language.
3134         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
3135         Before, the former was rejected.
3136         * lib/getdate.y (digits_to_date_time): New function, factored
3137         out of ...
3138         (number): ...here.  Just call digits_to_date_time.
3139         (hybrid): New non-terminal to handle an <unsigned number,
3140         signed relative offset> sequence consistently.
3141
3142 2007-11-18  Jim Meyering  <meyering@redhat.com>
3143
3144         Pull my changes from coreutils:
3145         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
3146         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
3147         use of $gnulib_tool_option_extras, so that it's separated from the
3148         preceding argument.
3149
3150         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
3151         * build-aux/bootstrap (cp_mark_as_generated): Create any required
3152         parent destination directories before copying a file into place.
3153
3154 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3155
3156         bootstrap: work also with 4-argument variant of AC_INIT
3157         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
3158
3159 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
3160
3161         Port test-getaddrinfo to Solaris.
3162         Problem reported by Bruno Haible in
3163         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
3164         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
3165         explanation of setting 'hints'.
3166         Don't reject an implementation merely because it returns EAI_SERVICE.
3167         (EAI_SERVICE): Define to 0 if not defined.
3168
3169 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
3170
3171         The license of gnu-make and posix-shell is now "GPLed build tool".
3172         * modules/gnu-make (License): Likewise.
3173         * modules/posix-shell (License): Likewise.
3174
3175         New module posix-shell, for determining a POSIX shell
3176         or perhaps something that is close enough to a POSIX shell.
3177         * m4/posix-shell.m4: New file.
3178         * modules/posix-shell: New file.
3179
3180         * MODULES.html.sh: Mention new module.
3181
3182         New module gnu-make, for determining whether we're using GNU Make.
3183         * m4/gnu-make.m4: New file.
3184         * modules/gnu-make: New file.
3185         * MODULES.html.sh: Mention new module.
3186
3187 2007-11-14  Jim Meyering  <meyering@redhat.com>
3188
3189         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
3190         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
3191         use this macro to create a function _definition_.
3192         Remove useless "#undef ARGMATCH_DIE".
3193
3194 2007-11-14  Bruno Haible  <bruno@clisp.org>
3195
3196         * lib/config.charset: Update for OpenBSD 4.1.
3197         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
3198
3199 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
3200
3201         Document 64-bit #if problems in stdint.texi.
3202         * doc/headers/stdint.texi (stdint.h): Mention problems with
3203         64-bit-#if, and how to work around them.
3204
3205         Don't insist on 'long long int' support in the preprocessor.  It
3206         breaks too many things.  For example, PRIdMAX still uses a 'long
3207         long int' format with the latest Sun compiler, even though
3208         HAVE_LONG_LONG_INT isn't defined due to that compiler's
3209         preprocessor problem.  This causes the latest coreutils to dump
3210         core on Solaris 10 sparc with the Sun C compiler.
3211         Instead, fix the 2007-10-16 problem in a different way, by evaluating
3212         the troublesome expressions at configure-time, not at #if-time.
3213         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
3214         preprocessor.
3215         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
3216         compile-time C checks, done at 'configure'-time.
3217         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
3218         * modules/inttypes (Makefile): Substitute the new symbols that
3219         gl_INTTYPES_H now generates.
3220         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
3221
3222 2007-11-12  Bruno Haible  <bruno@clisp.org>
3223
3224         Tests for Unicode character classification functions.
3225
3226         * modules/unictype/bidicategory-byname-tests: New file.
3227         * modules/unictype/bidicategory-name-tests: New file.
3228         * modules/unictype/bidicategory-of-tests: New file.
3229         * modules/unictype/bidicategory-test-tests: New file.
3230         * modules/unictype/block-list-tests: New file.
3231         * modules/unictype/block-of-tests: New file.
3232         * modules/unictype/block-test-tests: New file.
3233         * modules/unictype/category-C-tests: New file.
3234         * modules/unictype/category-Cc-tests: New file.
3235         * modules/unictype/category-Cf-tests: New file.
3236         * modules/unictype/category-Cn-tests: New file.
3237         * modules/unictype/category-Co-tests: New file.
3238         * modules/unictype/category-Cs-tests: New file.
3239         * modules/unictype/category-L-tests: New file.
3240         * modules/unictype/category-Ll-tests: New file.
3241         * modules/unictype/category-Lm-tests: New file.
3242         * modules/unictype/category-Lo-tests: New file.
3243         * modules/unictype/category-Lt-tests: New file.
3244         * modules/unictype/category-Lu-tests: New file.
3245         * modules/unictype/category-M-tests: New file.
3246         * modules/unictype/category-Mc-tests: New file.
3247         * modules/unictype/category-Me-tests: New file.
3248         * modules/unictype/category-Mn-tests: New file.
3249         * modules/unictype/category-N-tests: New file.
3250         * modules/unictype/category-Nd-tests: New file.
3251         * modules/unictype/category-Nl-tests: New file.
3252         * modules/unictype/category-No-tests: New file.
3253         * modules/unictype/category-P-tests: New file.
3254         * modules/unictype/category-Pc-tests: New file.
3255         * modules/unictype/category-Pd-tests: New file.
3256         * modules/unictype/category-Pe-tests: New file.
3257         * modules/unictype/category-Pf-tests: New file.
3258         * modules/unictype/category-Pi-tests: New file.
3259         * modules/unictype/category-Po-tests: New file.
3260         * modules/unictype/category-Ps-tests: New file.
3261         * modules/unictype/category-S-tests: New file.
3262         * modules/unictype/category-Sc-tests: New file.
3263         * modules/unictype/category-Sk-tests: New file.
3264         * modules/unictype/category-Sm-tests: New file.
3265         * modules/unictype/category-So-tests: New file.
3266         * modules/unictype/category-Z-tests: New file.
3267         * modules/unictype/category-Zl-tests: New file.
3268         * modules/unictype/category-Zp-tests: New file.
3269         * modules/unictype/category-Zs-tests: New file.
3270         * modules/unictype/category-and-not-tests: New file.
3271         * modules/unictype/category-and-tests: New file.
3272         * modules/unictype/category-byname-tests: New file.
3273         * modules/unictype/category-name-tests: New file.
3274         * modules/unictype/category-none-tests: New file.
3275         * modules/unictype/category-of-tests: New file.
3276         * modules/unictype/category-or-tests: New file.
3277         * modules/unictype/category-test-withtable-tests: New file.
3278         * modules/unictype/combining-class-tests: New file.
3279         * modules/unictype/ctype-alnum-tests: New file.
3280         * modules/unictype/ctype-alpha-tests: New file.
3281         * modules/unictype/ctype-blank-tests: New file.
3282         * modules/unictype/ctype-cntrl-tests: New file.
3283         * modules/unictype/ctype-digit-tests: New file.
3284         * modules/unictype/ctype-graph-tests: New file.
3285         * modules/unictype/ctype-lower-tests: New file.
3286         * modules/unictype/ctype-print-tests: New file.
3287         * modules/unictype/ctype-punct-tests: New file.
3288         * modules/unictype/ctype-space-tests: New file.
3289         * modules/unictype/ctype-upper-tests: New file.
3290         * modules/unictype/ctype-xdigit-tests: New file.
3291         * modules/unictype/decimal-digit-tests: New file.
3292         * modules/unictype/digit-tests: New file.
3293         * modules/unictype/mirror-tests: New file.
3294         * modules/unictype/numeric-tests: New file.
3295         * modules/unictype/property-alphabetic-tests: New file.
3296         * modules/unictype/property-ascii-hex-digit-tests: New file.
3297         * modules/unictype/property-bidi-arabic-digit-tests: New file.
3298         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
3299         * modules/unictype/property-bidi-block-separator-tests: New file.
3300         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
3301         * modules/unictype/property-bidi-common-separator-tests: New file.
3302         * modules/unictype/property-bidi-control-tests: New file.
3303         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
3304         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
3305         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
3306         * modules/unictype/property-bidi-european-digit-tests: New file.
3307         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
3308         * modules/unictype/property-bidi-left-to-right-tests: New file.
3309         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
3310         * modules/unictype/property-bidi-other-neutral-tests: New file.
3311         * modules/unictype/property-bidi-pdf-tests: New file.
3312         * modules/unictype/property-bidi-segment-separator-tests: New file.
3313         * modules/unictype/property-bidi-whitespace-tests: New file.
3314         * modules/unictype/property-byname-tests: New file.
3315         * modules/unictype/property-combining-tests: New file.
3316         * modules/unictype/property-composite-tests: New file.
3317         * modules/unictype/property-currency-symbol-tests: New file.
3318         * modules/unictype/property-dash-tests: New file.
3319         * modules/unictype/property-decimal-digit-tests: New file.
3320         * modules/unictype/property-default-ignorable-code-point-tests: New file.
3321         * modules/unictype/property-deprecated-tests: New file.
3322         * modules/unictype/property-diacritic-tests: New file.
3323         * modules/unictype/property-extender-tests: New file.
3324         * modules/unictype/property-format-control-tests: New file.
3325         * modules/unictype/property-grapheme-base-tests: New file.
3326         * modules/unictype/property-grapheme-extend-tests: New file.
3327         * modules/unictype/property-grapheme-link-tests: New file.
3328         * modules/unictype/property-hex-digit-tests: New file.
3329         * modules/unictype/property-hyphen-tests: New file.
3330         * modules/unictype/property-id-continue-tests: New file.
3331         * modules/unictype/property-id-start-tests: New file.
3332         * modules/unictype/property-ideographic-tests: New file.
3333         * modules/unictype/property-ids-binary-operator-tests: New file.
3334         * modules/unictype/property-ids-trinary-operator-tests: New file.
3335         * modules/unictype/property-ignorable-control-tests: New file.
3336         * modules/unictype/property-iso-control-tests: New file.
3337         * modules/unictype/property-join-control-tests: New file.
3338         * modules/unictype/property-left-of-pair-tests: New file.
3339         * modules/unictype/property-line-separator-tests: New file.
3340         * modules/unictype/property-logical-order-exception-tests: New file.
3341         * modules/unictype/property-lowercase-tests: New file.
3342         * modules/unictype/property-math-tests: New file.
3343         * modules/unictype/property-non-break-tests: New file.
3344         * modules/unictype/property-not-a-character-tests: New file.
3345         * modules/unictype/property-numeric-tests: New file.
3346         * modules/unictype/property-other-alphabetic-tests: New file.
3347         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
3348         * modules/unictype/property-other-grapheme-extend-tests: New file.
3349         * modules/unictype/property-other-id-continue-tests: New file.
3350         * modules/unictype/property-other-id-start-tests: New file.
3351         * modules/unictype/property-other-lowercase-tests: New file.
3352         * modules/unictype/property-other-math-tests: New file.
3353         * modules/unictype/property-other-uppercase-tests: New file.
3354         * modules/unictype/property-paired-punctuation-tests: New file.
3355         * modules/unictype/property-paragraph-separator-tests: New file.
3356         * modules/unictype/property-pattern-syntax-tests: New file.
3357         * modules/unictype/property-pattern-white-space-tests: New file.
3358         * modules/unictype/property-private-use-tests: New file.
3359         * modules/unictype/property-punctuation-tests: New file.
3360         * modules/unictype/property-quotation-mark-tests: New file.
3361         * modules/unictype/property-radical-tests: New file.
3362         * modules/unictype/property-sentence-terminal-tests: New file.
3363         * modules/unictype/property-soft-dotted-tests: New file.
3364         * modules/unictype/property-space-tests: New file.
3365         * modules/unictype/property-terminal-punctuation-tests: New file.
3366         * modules/unictype/property-test-tests: New file.
3367         * modules/unictype/property-titlecase-tests: New file.
3368         * modules/unictype/property-unassigned-code-value-tests: New file.
3369         * modules/unictype/property-unified-ideograph-tests: New file.
3370         * modules/unictype/property-uppercase-tests: New file.
3371         * modules/unictype/property-variation-selector-tests: New file.
3372         * modules/unictype/property-white-space-tests: New file.
3373         * modules/unictype/property-xid-continue-tests: New file.
3374         * modules/unictype/property-xid-start-tests: New file.
3375         * modules/unictype/property-zero-width-tests: New file.
3376         * modules/unictype/scripts-tests: New file.
3377         * modules/unictype/syntax-c-ident-tests: New file.
3378         * modules/unictype/syntax-c-whitespace-tests: New file.
3379         * modules/unictype/syntax-java-ident-tests: New file.
3380         * modules/unictype/syntax-java-whitespace-tests: New file.
3381         * tests/unictype/test-bidi_byname.c: New file.
3382         * tests/unictype/test-bidi_name.c: New file.
3383         * tests/unictype/test-bidi_of.c: New file.
3384         * tests/unictype/test-bidi_test.c: New file.
3385         * tests/unictype/test-block_list.c: New file.
3386         * tests/unictype/test-block_of.c: New file.
3387         * tests/unictype/test-block_test.c: New file.
3388         * tests/unictype/test-categ_and.c: New file.
3389         * tests/unictype/test-categ_and_not.c: New file.
3390         * tests/unictype/test-categ_byname.c: New file.
3391         * tests/unictype/test-categ_name.c: New file.
3392         * tests/unictype/test-categ_none.c: New file.
3393         * tests/unictype/test-categ_of.c: New file.
3394         * tests/unictype/test-categ_or.c: New file.
3395         * tests/unictype/test-categ_test_withtable.c: New file.
3396         * tests/unictype/test-combining.c: New file.
3397         * tests/unictype/test-decdigit.c: New file.
3398         * tests/unictype/test-digit.c: New file.
3399         * tests/unictype/test-mirror.c: New file.
3400         * tests/unictype/test-numeric.c: New file.
3401         * tests/unictype/test-pr_byname.c: New file.
3402         * tests/unictype/test-pr_test.c: New file.
3403         * tests/unictype/test-predicate-part1.h: New file.
3404         * tests/unictype/test-predicate-part2.h: New file.
3405         * tests/unictype/test-scripts.c: New file.
3406         * tests/unictype/test-sy_c_ident.c: New file.
3407         * tests/unictype/test-sy_java_ident.c: New file.
3408
3409         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
3410         for Unicode 5.0.0.
3411         * tests/unictype/test-categ_Cc.c: Likewise.
3412         * tests/unictype/test-categ_Cf.c: Likewise.
3413         * tests/unictype/test-categ_Cn.c: Likewise.
3414         * tests/unictype/test-categ_Co.c: Likewise.
3415         * tests/unictype/test-categ_Cs.c: Likewise.
3416         * tests/unictype/test-categ_L.c: Likewise.
3417         * tests/unictype/test-categ_Ll.c: Likewise.
3418         * tests/unictype/test-categ_Lm.c: Likewise.
3419         * tests/unictype/test-categ_Lo.c: Likewise.
3420         * tests/unictype/test-categ_Lt.c: Likewise.
3421         * tests/unictype/test-categ_Lu.c: Likewise.
3422         * tests/unictype/test-categ_M.c: Likewise.
3423         * tests/unictype/test-categ_Mc.c: Likewise.
3424         * tests/unictype/test-categ_Me.c: Likewise.
3425         * tests/unictype/test-categ_Mn.c: Likewise.
3426         * tests/unictype/test-categ_N.c: Likewise.
3427         * tests/unictype/test-categ_Nd.c: Likewise.
3428         * tests/unictype/test-categ_Nl.c: Likewise.
3429         * tests/unictype/test-categ_No.c: Likewise.
3430         * tests/unictype/test-categ_P.c: Likewise.
3431         * tests/unictype/test-categ_Pc.c: Likewise.
3432         * tests/unictype/test-categ_Pd.c: Likewise.
3433         * tests/unictype/test-categ_Pe.c: Likewise.
3434         * tests/unictype/test-categ_Pf.c: Likewise.
3435         * tests/unictype/test-categ_Pi.c: Likewise.
3436         * tests/unictype/test-categ_Po.c: Likewise.
3437         * tests/unictype/test-categ_Ps.c: Likewise.
3438         * tests/unictype/test-categ_S.c: Likewise.
3439         * tests/unictype/test-categ_Sc.c: Likewise.
3440         * tests/unictype/test-categ_Sk.c: Likewise.
3441         * tests/unictype/test-categ_Sm.c: Likewise.
3442         * tests/unictype/test-categ_So.c: Likewise.
3443         * tests/unictype/test-categ_Z.c: Likewise.
3444         * tests/unictype/test-categ_Zl.c: Likewise.
3445         * tests/unictype/test-categ_Zp.c: Likewise.
3446         * tests/unictype/test-categ_Zs.c: Likewise.
3447         * tests/unictype/test-ctype_alnum.c: Likewise.
3448         * tests/unictype/test-ctype_alpha.c: Likewise.
3449         * tests/unictype/test-ctype_blank.c: Likewise.
3450         * tests/unictype/test-ctype_cntrl.c: Likewise.
3451         * tests/unictype/test-ctype_digit.c: Likewise.
3452         * tests/unictype/test-ctype_graph.c: Likewise.
3453         * tests/unictype/test-ctype_lower.c: Likewise.
3454         * tests/unictype/test-ctype_print.c: Likewise.
3455         * tests/unictype/test-ctype_punct.c: Likewise.
3456         * tests/unictype/test-ctype_space.c: Likewise.
3457         * tests/unictype/test-ctype_upper.c: Likewise.
3458         * tests/unictype/test-ctype_xdigit.c: Likewise.
3459         * tests/unictype/test-decdigit.h: Likewise.
3460         * tests/unictype/test-digit.h: Likewise.
3461         * tests/unictype/test-numeric.h: Likewise.
3462         * tests/unictype/test-pr_alphabetic.c: Likewise.
3463         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
3464         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
3465         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
3466         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
3467         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
3468         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
3469         * tests/unictype/test-pr_bidi_control.c: Likewise.
3470         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
3471         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
3472         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
3473         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
3474         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
3475         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
3476         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
3477         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
3478         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
3479         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
3480         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
3481         * tests/unictype/test-pr_combining.c: Likewise.
3482         * tests/unictype/test-pr_composite.c: Likewise.
3483         * tests/unictype/test-pr_currency_symbol.c: Likewise.
3484         * tests/unictype/test-pr_dash.c: Likewise.
3485         * tests/unictype/test-pr_decimal_digit.c: Likewise.
3486         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
3487         * tests/unictype/test-pr_deprecated.c: Likewise.
3488         * tests/unictype/test-pr_diacritic.c: Likewise.
3489         * tests/unictype/test-pr_extender.c: Likewise.
3490         * tests/unictype/test-pr_format_control.c: Likewise.
3491         * tests/unictype/test-pr_grapheme_base.c: Likewise.
3492         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
3493         * tests/unictype/test-pr_grapheme_link.c: Likewise.
3494         * tests/unictype/test-pr_hex_digit.c: Likewise.
3495         * tests/unictype/test-pr_hyphen.c: Likewise.
3496         * tests/unictype/test-pr_id_continue.c: Likewise.
3497         * tests/unictype/test-pr_id_start.c: Likewise.
3498         * tests/unictype/test-pr_ideographic.c: Likewise.
3499         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
3500         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
3501         * tests/unictype/test-pr_ignorable_control.c: Likewise.
3502         * tests/unictype/test-pr_iso_control.c: Likewise.
3503         * tests/unictype/test-pr_join_control.c: Likewise.
3504         * tests/unictype/test-pr_left_of_pair.c: Likewise.
3505         * tests/unictype/test-pr_line_separator.c: Likewise.
3506         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
3507         * tests/unictype/test-pr_lowercase.c: Likewise.
3508         * tests/unictype/test-pr_math.c: Likewise.
3509         * tests/unictype/test-pr_non_break.c: Likewise.
3510         * tests/unictype/test-pr_not_a_character.c: Likewise.
3511         * tests/unictype/test-pr_numeric.c: Likewise.
3512         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
3513         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
3514         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
3515         * tests/unictype/test-pr_other_id_continue.c: Likewise.
3516         * tests/unictype/test-pr_other_id_start.c: Likewise.
3517         * tests/unictype/test-pr_other_lowercase.c: Likewise.
3518         * tests/unictype/test-pr_other_math.c: Likewise.
3519         * tests/unictype/test-pr_other_uppercase.c: Likewise.
3520         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
3521         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
3522         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
3523         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
3524         * tests/unictype/test-pr_private_use.c: Likewise.
3525         * tests/unictype/test-pr_punctuation.c: Likewise.
3526         * tests/unictype/test-pr_quotation_mark.c: Likewise.
3527         * tests/unictype/test-pr_radical.c: Likewise.
3528         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
3529         * tests/unictype/test-pr_soft_dotted.c: Likewise.
3530         * tests/unictype/test-pr_space.c: Likewise.
3531         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
3532         * tests/unictype/test-pr_titlecase.c: Likewise.
3533         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
3534         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
3535         * tests/unictype/test-pr_uppercase.c: Likewise.
3536         * tests/unictype/test-pr_variation_selector.c: Likewise.
3537         * tests/unictype/test-pr_white_space.c: Likewise.
3538         * tests/unictype/test-pr_xid_continue.c: Likewise.
3539         * tests/unictype/test-pr_xid_start.c: Likewise.
3540         * tests/unictype/test-pr_zero_width.c: Likewise.
3541         * tests/unictype/test-sy_c_whitespace.c: Likewise.
3542         * tests/unictype/test-sy_java_whitespace.c: Likewise.
3543
3544 2007-11-12  Bruno Haible  <bruno@clisp.org>
3545
3546         Unicode character classification functions.
3547         * lib/unictype.h: New file.
3548         * modules/unictype/base: New file.
3549         * modules/unictype/category-L: New file.
3550         * modules/unictype/category-Lu: New file.
3551         * modules/unictype/category-Ll: New file.
3552         * modules/unictype/category-Lt: New file.
3553         * modules/unictype/category-Lm: New file.
3554         * modules/unictype/category-Lo: New file.
3555         * modules/unictype/category-M: New file.
3556         * modules/unictype/category-Mn: New file.
3557         * modules/unictype/category-Mc: New file.
3558         * modules/unictype/category-Me: New file.
3559         * modules/unictype/category-N: New file.
3560         * modules/unictype/category-Nd: New file.
3561         * modules/unictype/category-Nl: New file.
3562         * modules/unictype/category-No: New file.
3563         * modules/unictype/category-P: New file.
3564         * modules/unictype/category-Pc: New file.
3565         * modules/unictype/category-Pd: New file.
3566         * modules/unictype/category-Ps: New file.
3567         * modules/unictype/category-Pe: New file.
3568         * modules/unictype/category-Pi: New file.
3569         * modules/unictype/category-Pf: New file.
3570         * modules/unictype/category-Po: New file.
3571         * modules/unictype/category-S: New file.
3572         * modules/unictype/category-Sm: New file.
3573         * modules/unictype/category-Sc: New file.
3574         * modules/unictype/category-Sk: New file.
3575         * modules/unictype/category-So: New file.
3576         * modules/unictype/category-Z: New file.
3577         * modules/unictype/category-Zs: New file.
3578         * modules/unictype/category-Zl: New file.
3579         * modules/unictype/category-Zp: New file.
3580         * modules/unictype/category-C: New file.
3581         * modules/unictype/category-Cc: New file.
3582         * modules/unictype/category-Cf: New file.
3583         * modules/unictype/category-Cs: New file.
3584         * modules/unictype/category-Co: New file.
3585         * modules/unictype/category-Cn: New file.
3586         * modules/unictype/category-or: New file.
3587         * modules/unictype/category-of: New file.
3588         * modules/unictype/category-test: New file.
3589         * modules/unictype/category-test-withtable: New file.
3590         * modules/unictype/category-byname: New file.
3591         * modules/unictype/category-none: New file.
3592         * modules/unictype/category-and: New file.
3593         * modules/unictype/category-and-not: New file.
3594         * modules/unictype/category-name: New file.
3595         * modules/unictype/combining-class: New file.
3596         * modules/unictype/category-all: New file.
3597         * modules/unictype/bidicategory-all: New file.
3598         * modules/unictype/bidicategory-byname: New file.
3599         * modules/unictype/bidicategory-name: New file.
3600         * modules/unictype/bidicategory-of: New file.
3601         * modules/unictype/bidicategory-test: New file.
3602         * modules/unictype/decimal-digit: New file.
3603         * modules/unictype/digit: New file.
3604         * modules/unictype/numeric: New file.
3605         * modules/unictype/mirror: New file.
3606         * modules/unictype/property-white-space: New file.
3607         * modules/unictype/property-alphabetic: New file.
3608         * modules/unictype/property-other-alphabetic: New file.
3609         * modules/unictype/property-not-a-character: New file.
3610         * modules/unictype/property-default-ignorable-code-point: New file.
3611         * modules/unictype/property-other-default-ignorable-code-point: New
3612         file.
3613         * modules/unictype/property-deprecated: New file.
3614         * modules/unictype/property-logical-order-exception: New file.
3615         * modules/unictype/property-variation-selector: New file.
3616         * modules/unictype/property-private-use: New file.
3617         * modules/unictype/property-unassigned-code-value: New file.
3618         * modules/unictype/property-uppercase: New file.
3619         * modules/unictype/property-other-uppercase: New file.
3620         * modules/unictype/property-lowercase: New file.
3621         * modules/unictype/property-other-lowercase: New file.
3622         * modules/unictype/property-titlecase: New file.
3623         * modules/unictype/property-soft-dotted: New file.
3624         * modules/unictype/property-id-start: New file.
3625         * modules/unictype/property-other-id-start: New file.
3626         * modules/unictype/property-id-continue: New file.
3627         * modules/unictype/property-other-id-continue: New file.
3628         * modules/unictype/property-xid-start: New file.
3629         * modules/unictype/property-xid-continue: New file.
3630         * modules/unictype/property-pattern-white-space: New file.
3631         * modules/unictype/property-pattern-syntax: New file.
3632         * modules/unictype/property-join-control: New file.
3633         * modules/unictype/property-grapheme-base: New file.
3634         * modules/unictype/property-grapheme-extend: New file.
3635         * modules/unictype/property-other-grapheme-extend: New file.
3636         * modules/unictype/property-grapheme-link: New file.
3637         * modules/unictype/property-bidi-control: New file.
3638         * modules/unictype/property-bidi-left-to-right: New file.
3639         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
3640         * modules/unictype/property-bidi-arabic-right-to-left: New file.
3641         * modules/unictype/property-bidi-european-digit: New file.
3642         * modules/unictype/property-bidi-eur-num-separator: New file.
3643         * modules/unictype/property-bidi-eur-num-terminator: New file.
3644         * modules/unictype/property-bidi-arabic-digit: New file.
3645         * modules/unictype/property-bidi-common-separator: New file.
3646         * modules/unictype/property-bidi-block-separator: New file.
3647         * modules/unictype/property-bidi-segment-separator: New file.
3648         * modules/unictype/property-bidi-whitespace: New file.
3649         * modules/unictype/property-bidi-non-spacing-mark: New file.
3650         * modules/unictype/property-bidi-boundary-neutral: New file.
3651         * modules/unictype/property-bidi-pdf: New file.
3652         * modules/unictype/property-bidi-embedding-or-override: New file.
3653         * modules/unictype/property-bidi-other-neutral: New file.
3654         * modules/unictype/property-hex-digit: New file.
3655         * modules/unictype/property-ascii-hex-digit: New file.
3656         * modules/unictype/property-ideographic: New file.
3657         * modules/unictype/property-unified-ideograph: New file.
3658         * modules/unictype/property-radical: New file.
3659         * modules/unictype/property-ids-binary-operator: New file.
3660         * modules/unictype/property-ids-trinary-operator: New file.
3661         * modules/unictype/property-zero-width: New file.
3662         * modules/unictype/property-space: New file.
3663         * modules/unictype/property-non-break: New file.
3664         * modules/unictype/property-iso-control: New file.
3665         * modules/unictype/property-format-control: New file.
3666         * modules/unictype/property-dash: New file.
3667         * modules/unictype/property-hyphen: New file.
3668         * modules/unictype/property-punctuation: New file.
3669         * modules/unictype/property-line-separator: New file.
3670         * modules/unictype/property-paragraph-separator: New file.
3671         * modules/unictype/property-quotation-mark: New file.
3672         * modules/unictype/property-sentence-terminal: New file.
3673         * modules/unictype/property-terminal-punctuation: New file.
3674         * modules/unictype/property-currency-symbol: New file.
3675         * modules/unictype/property-math: New file.
3676         * modules/unictype/property-other-math: New file.
3677         * modules/unictype/property-paired-punctuation: New file.
3678         * modules/unictype/property-left-of-pair: New file.
3679         * modules/unictype/property-combining: New file.
3680         * modules/unictype/property-composite: New file.
3681         * modules/unictype/property-decimal-digit: New file.
3682         * modules/unictype/property-numeric: New file.
3683         * modules/unictype/property-diacritic: New file.
3684         * modules/unictype/property-extender: New file.
3685         * modules/unictype/property-ignorable-control: New file.
3686         * modules/unictype/property-test: New file.
3687         * modules/unictype/property-byname: New file.
3688         * modules/unictype/property-all: New file.
3689         * modules/unictype/scripts: New file.
3690         * modules/unictype/scripts-all: New file.
3691         * modules/unictype/block-of: New file.
3692         * modules/unictype/block-test: New file.
3693         * modules/unictype/block-list: New file.
3694         * modules/unictype/block-all: New file.
3695         * modules/unictype/syntax-c-whitespace: New file.
3696         * modules/unictype/syntax-java-whitespace: New file.
3697         * modules/unictype/syntax-c-ident: New file.
3698         * modules/unictype/syntax-java-ident: New file.
3699         * modules/unictype/ctype-alnum: New file.
3700         * modules/unictype/ctype-alpha: New file.
3701         * modules/unictype/ctype-cntrl: New file.
3702         * modules/unictype/ctype-digit: New file.
3703         * modules/unictype/ctype-graph: New file.
3704         * modules/unictype/ctype-lower: New file.
3705         * modules/unictype/ctype-print: New file.
3706         * modules/unictype/ctype-punct: New file.
3707         * modules/unictype/ctype-space: New file.
3708         * modules/unictype/ctype-upper: New file.
3709         * modules/unictype/ctype-xdigit: New file.
3710         * modules/unictype/ctype-blank: New file.
3711         * lib/unictype/bidi_byname.c: New file.
3712         * lib/unictype/bidi_name.c: New file.
3713         * lib/unictype/bidi_of.c: New file.
3714         * lib/unictype/bidi_test.c: New file.
3715         * lib/unictype/bitmap.h: New file.
3716         * lib/unictype/block_test.c: New file.
3717         * lib/unictype/blocks.c: New file.
3718         * lib/unictype/categ_C.c: New file.
3719         * lib/unictype/categ_Cc.c: New file.
3720         * lib/unictype/categ_Cf.c: New file.
3721         * lib/unictype/categ_Cn.c: New file.
3722         * lib/unictype/categ_Co.c: New file.
3723         * lib/unictype/categ_Cs.c: New file.
3724         * lib/unictype/categ_L.c: New file.
3725         * lib/unictype/categ_Ll.c: New file.
3726         * lib/unictype/categ_Lm.c: New file.
3727         * lib/unictype/categ_Lo.c: New file.
3728         * lib/unictype/categ_Lt.c: New file.
3729         * lib/unictype/categ_Lu.c: New file.
3730         * lib/unictype/categ_M.c: New file.
3731         * lib/unictype/categ_Mc.c: New file.
3732         * lib/unictype/categ_Me.c: New file.
3733         * lib/unictype/categ_Mn.c: New file.
3734         * lib/unictype/categ_N.c: New file.
3735         * lib/unictype/categ_Nd.c: New file.
3736         * lib/unictype/categ_Nl.c: New file.
3737         * lib/unictype/categ_No.c: New file.
3738         * lib/unictype/categ_P.c: New file.
3739         * lib/unictype/categ_Pc.c: New file.
3740         * lib/unictype/categ_Pd.c: New file.
3741         * lib/unictype/categ_Pe.c: New file.
3742         * lib/unictype/categ_Pf.c: New file.
3743         * lib/unictype/categ_Pi.c: New file.
3744         * lib/unictype/categ_Po.c: New file.
3745         * lib/unictype/categ_Ps.c: New file.
3746         * lib/unictype/categ_S.c: New file.
3747         * lib/unictype/categ_Sc.c: New file.
3748         * lib/unictype/categ_Sk.c: New file.
3749         * lib/unictype/categ_Sm.c: New file.
3750         * lib/unictype/categ_So.c: New file.
3751         * lib/unictype/categ_Z.c: New file.
3752         * lib/unictype/categ_Zl.c: New file.
3753         * lib/unictype/categ_Zp.c: New file.
3754         * lib/unictype/categ_Zs.c: New file.
3755         * lib/unictype/categ_and.c: New file.
3756         * lib/unictype/categ_and_not.c: New file.
3757         * lib/unictype/categ_byname.c: New file.
3758         * lib/unictype/categ_name.c: New file.
3759         * lib/unictype/categ_none.c: New file.
3760         * lib/unictype/categ_of.c: New file.
3761         * lib/unictype/categ_or.c: New file.
3762         * lib/unictype/categ_test.c: New file.
3763         * lib/unictype/combining.c: New file.
3764         * lib/unictype/ctype_alnum.c: New file.
3765         * lib/unictype/ctype_alpha.c: New file.
3766         * lib/unictype/ctype_blank.c: New file.
3767         * lib/unictype/ctype_cntrl.c: New file.
3768         * lib/unictype/ctype_digit.c: New file.
3769         * lib/unictype/ctype_graph.c: New file.
3770         * lib/unictype/ctype_lower.c: New file.
3771         * lib/unictype/ctype_print.c: New file.
3772         * lib/unictype/ctype_punct.c: New file.
3773         * lib/unictype/ctype_space.c: New file.
3774         * lib/unictype/ctype_upper.c: New file.
3775         * lib/unictype/ctype_xdigit.c: New file.
3776         * lib/unictype/decdigit.c: New file.
3777         * lib/unictype/digit.c: New file.
3778         * lib/unictype/identsyntaxmap.h: New file.
3779         * lib/unictype/mirror.c: New file.
3780         * lib/unictype/numeric.c: New file.
3781         * lib/unictype/pr_alphabetic.c: New file.
3782         * lib/unictype/pr_ascii_hex_digit.c: New file.
3783         * lib/unictype/pr_bidi_arabic_digit.c: New file.
3784         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
3785         * lib/unictype/pr_bidi_block_separator.c: New file.
3786         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
3787         * lib/unictype/pr_bidi_common_separator.c: New file.
3788         * lib/unictype/pr_bidi_control.c: New file.
3789         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
3790         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
3791         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
3792         * lib/unictype/pr_bidi_european_digit.c: New file.
3793         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
3794         * lib/unictype/pr_bidi_left_to_right.c: New file.
3795         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
3796         * lib/unictype/pr_bidi_other_neutral.c: New file.
3797         * lib/unictype/pr_bidi_pdf.c: New file.
3798         * lib/unictype/pr_bidi_segment_separator.c: New file.
3799         * lib/unictype/pr_bidi_whitespace.c: New file.
3800         * lib/unictype/pr_byname.c: New file.
3801         * lib/unictype/pr_byname.gperf: New file.
3802         * lib/unictype/pr_combining.c: New file.
3803         * lib/unictype/pr_composite.c: New file.
3804         * lib/unictype/pr_currency_symbol.c: New file.
3805         * lib/unictype/pr_dash.c: New file.
3806         * lib/unictype/pr_decimal_digit.c: New file.
3807         * lib/unictype/pr_default_ignorable_code_point.c: New file.
3808         * lib/unictype/pr_deprecated.c: New file.
3809         * lib/unictype/pr_diacritic.c: New file.
3810         * lib/unictype/pr_extender.c: New file.
3811         * lib/unictype/pr_format_control.c: New file.
3812         * lib/unictype/pr_grapheme_base.c: New file.
3813         * lib/unictype/pr_grapheme_extend.c: New file.
3814         * lib/unictype/pr_grapheme_link.c: New file.
3815         * lib/unictype/pr_hex_digit.c: New file.
3816         * lib/unictype/pr_hyphen.c: New file.
3817         * lib/unictype/pr_id_continue.c: New file.
3818         * lib/unictype/pr_id_start.c: New file.
3819         * lib/unictype/pr_ideographic.c: New file.
3820         * lib/unictype/pr_ids_binary_operator.c: New file.
3821         * lib/unictype/pr_ids_trinary_operator.c: New file.
3822         * lib/unictype/pr_ignorable_control.c: New file.
3823         * lib/unictype/pr_iso_control.c: New file.
3824         * lib/unictype/pr_join_control.c: New file.
3825         * lib/unictype/pr_left_of_pair.c: New file.
3826         * lib/unictype/pr_line_separator.c: New file.
3827         * lib/unictype/pr_logical_order_exception.c: New file.
3828         * lib/unictype/pr_lowercase.c: New file.
3829         * lib/unictype/pr_math.c: New file.
3830         * lib/unictype/pr_non_break.c: New file.
3831         * lib/unictype/pr_not_a_character.c: New file.
3832         * lib/unictype/pr_numeric.c: New file.
3833         * lib/unictype/pr_other_alphabetic.c: New file.
3834         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
3835         * lib/unictype/pr_other_grapheme_extend.c: New file.
3836         * lib/unictype/pr_other_id_continue.c: New file.
3837         * lib/unictype/pr_other_id_start.c: New file.
3838         * lib/unictype/pr_other_lowercase.c: New file.
3839         * lib/unictype/pr_other_math.c: New file.
3840         * lib/unictype/pr_other_uppercase.c: New file.
3841         * lib/unictype/pr_paired_punctuation.c: New file.
3842         * lib/unictype/pr_paragraph_separator.c: New file.
3843         * lib/unictype/pr_pattern_syntax.c: New file.
3844         * lib/unictype/pr_pattern_white_space.c: New file.
3845         * lib/unictype/pr_private_use.c: New file.
3846         * lib/unictype/pr_punctuation.c: New file.
3847         * lib/unictype/pr_quotation_mark.c: New file.
3848         * lib/unictype/pr_radical.c: New file.
3849         * lib/unictype/pr_sentence_terminal.c: New file.
3850         * lib/unictype/pr_soft_dotted.c: New file.
3851         * lib/unictype/pr_space.c: New file.
3852         * lib/unictype/pr_terminal_punctuation.c: New file.
3853         * lib/unictype/pr_test.c: New file.
3854         * lib/unictype/pr_titlecase.c: New file.
3855         * lib/unictype/pr_unassigned_code_value.c: New file.
3856         * lib/unictype/pr_unified_ideograph.c: New file.
3857         * lib/unictype/pr_uppercase.c: New file.
3858         * lib/unictype/pr_variation_selector.c: New file.
3859         * lib/unictype/pr_white_space.c: New file.
3860         * lib/unictype/pr_xid_continue.c: New file.
3861         * lib/unictype/pr_xid_start.c: New file.
3862         * lib/unictype/pr_zero_width.c: New file.
3863         * lib/unictype/scripts.c: New file.
3864         * lib/unictype/sy_c_ident.c: New file.
3865         * lib/unictype/sy_c_whitespace.c: New file.
3866         * lib/unictype/sy_java_ident.c: New file.
3867         * lib/unictype/sy_java_whitespace.c: New file.
3868
3869         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
3870         Unicode 5.0.0.
3871         * lib/unictype/blocks.h: Likewise.
3872         * lib/unictype/categ_C.h: Likewise.
3873         * lib/unictype/categ_Cc.h: Likewise.
3874         * lib/unictype/categ_Cf.h: Likewise.
3875         * lib/unictype/categ_Cn.h: Likewise.
3876         * lib/unictype/categ_Co.h: Likewise.
3877         * lib/unictype/categ_Cs.h: Likewise.
3878         * lib/unictype/categ_L.h: Likewise.
3879         * lib/unictype/categ_Ll.h: Likewise.
3880         * lib/unictype/categ_Lm.h: Likewise.
3881         * lib/unictype/categ_Lo.h: Likewise.
3882         * lib/unictype/categ_Lt.h: Likewise.
3883         * lib/unictype/categ_Lu.h: Likewise.
3884         * lib/unictype/categ_M.h: Likewise.
3885         * lib/unictype/categ_Mc.h: Likewise.
3886         * lib/unictype/categ_Me.h: Likewise.
3887         * lib/unictype/categ_Mn.h: Likewise.
3888         * lib/unictype/categ_N.h: Likewise.
3889         * lib/unictype/categ_Nd.h: Likewise.
3890         * lib/unictype/categ_Nl.h: Likewise.
3891         * lib/unictype/categ_No.h: Likewise.
3892         * lib/unictype/categ_P.h: Likewise.
3893         * lib/unictype/categ_Pc.h: Likewise.
3894         * lib/unictype/categ_Pd.h: Likewise.
3895         * lib/unictype/categ_Pe.h: Likewise.
3896         * lib/unictype/categ_Pf.h: Likewise.
3897         * lib/unictype/categ_Pi.h: Likewise.
3898         * lib/unictype/categ_Po.h: Likewise.
3899         * lib/unictype/categ_Ps.h: Likewise.
3900         * lib/unictype/categ_S.h: Likewise.
3901         * lib/unictype/categ_Sc.h: Likewise.
3902         * lib/unictype/categ_Sk.h: Likewise.
3903         * lib/unictype/categ_Sm.h: Likewise.
3904         * lib/unictype/categ_So.h: Likewise.
3905         * lib/unictype/categ_Z.h: Likewise.
3906         * lib/unictype/categ_Zl.h: Likewise.
3907         * lib/unictype/categ_Zp.h: Likewise.
3908         * lib/unictype/categ_Zs.h: Likewise.
3909         * lib/unictype/categ_of.h: Likewise.
3910         * lib/unictype/combining.h: Likewise.
3911         * lib/unictype/ctype_alnum.h: Likewise.
3912         * lib/unictype/ctype_alpha.h: Likewise.
3913         * lib/unictype/ctype_blank.h: Likewise.
3914         * lib/unictype/ctype_cntrl.h: Likewise.
3915         * lib/unictype/ctype_digit.h: Likewise.
3916         * lib/unictype/ctype_graph.h: Likewise.
3917         * lib/unictype/ctype_lower.h: Likewise.
3918         * lib/unictype/ctype_print.h: Likewise.
3919         * lib/unictype/ctype_punct.h: Likewise.
3920         * lib/unictype/ctype_space.h: Likewise.
3921         * lib/unictype/ctype_upper.h: Likewise.
3922         * lib/unictype/ctype_xdigit.h: Likewise.
3923         * lib/unictype/decdigit.h: Likewise.
3924         * lib/unictype/digit.h: Likewise.
3925         * lib/unictype/mirror.h: Likewise.
3926         * lib/unictype/numeric.h: Likewise.
3927         * lib/unictype/pr_alphabetic.h: Likewise.
3928         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
3929         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
3930         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
3931         * lib/unictype/pr_bidi_block_separator.h: Likewise.
3932         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
3933         * lib/unictype/pr_bidi_common_separator.h: Likewise.
3934         * lib/unictype/pr_bidi_control.h: Likewise.
3935         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
3936         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
3937         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
3938         * lib/unictype/pr_bidi_european_digit.h: Likewise.
3939         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
3940         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
3941         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
3942         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
3943         * lib/unictype/pr_bidi_pdf.h: Likewise.
3944         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
3945         * lib/unictype/pr_bidi_whitespace.h: Likewise.
3946         * lib/unictype/pr_combining.h: Likewise.
3947         * lib/unictype/pr_composite.h: Likewise.
3948         * lib/unictype/pr_currency_symbol.h: Likewise.
3949         * lib/unictype/pr_dash.h: Likewise.
3950         * lib/unictype/pr_decimal_digit.h: Likewise.
3951         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
3952         * lib/unictype/pr_deprecated.h: Likewise.
3953         * lib/unictype/pr_diacritic.h: Likewise.
3954         * lib/unictype/pr_extender.h: Likewise.
3955         * lib/unictype/pr_format_control.h: Likewise.
3956         * lib/unictype/pr_grapheme_base.h: Likewise.
3957         * lib/unictype/pr_grapheme_extend.h: Likewise.
3958         * lib/unictype/pr_grapheme_link.h: Likewise.
3959         * lib/unictype/pr_hex_digit.h: Likewise.
3960         * lib/unictype/pr_hyphen.h: Likewise.
3961         * lib/unictype/pr_id_continue.h: Likewise.
3962         * lib/unictype/pr_id_start.h: Likewise.
3963         * lib/unictype/pr_ideographic.h: Likewise.
3964         * lib/unictype/pr_ids_binary_operator.h: Likewise.
3965         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
3966         * lib/unictype/pr_ignorable_control.h: Likewise.
3967         * lib/unictype/pr_iso_control.h: Likewise.
3968         * lib/unictype/pr_join_control.h: Likewise.
3969         * lib/unictype/pr_left_of_pair.h: Likewise.
3970         * lib/unictype/pr_line_separator.h: Likewise.
3971         * lib/unictype/pr_logical_order_exception.h: Likewise.
3972         * lib/unictype/pr_lowercase.h: Likewise.
3973         * lib/unictype/pr_math.h: Likewise.
3974         * lib/unictype/pr_non_break.h: Likewise.
3975         * lib/unictype/pr_not_a_character.h: Likewise.
3976         * lib/unictype/pr_numeric.h: Likewise.
3977         * lib/unictype/pr_other_alphabetic.h: Likewise.
3978         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
3979         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
3980         * lib/unictype/pr_other_id_continue.h: Likewise.
3981         * lib/unictype/pr_other_id_start.h: Likewise.
3982         * lib/unictype/pr_other_lowercase.h: Likewise.
3983         * lib/unictype/pr_other_math.h: Likewise.
3984         * lib/unictype/pr_other_uppercase.h: Likewise.
3985         * lib/unictype/pr_paired_punctuation.h: Likewise.
3986         * lib/unictype/pr_paragraph_separator.h: Likewise.
3987         * lib/unictype/pr_pattern_syntax.h: Likewise.
3988         * lib/unictype/pr_pattern_white_space.h: Likewise.
3989         * lib/unictype/pr_private_use.h: Likewise.
3990         * lib/unictype/pr_punctuation.h: Likewise.
3991         * lib/unictype/pr_quotation_mark.h: Likewise.
3992         * lib/unictype/pr_radical.h: Likewise.
3993         * lib/unictype/pr_sentence_terminal.h: Likewise.
3994         * lib/unictype/pr_soft_dotted.h: Likewise.
3995         * lib/unictype/pr_space.h: Likewise.
3996         * lib/unictype/pr_terminal_punctuation.h: Likewise.
3997         * lib/unictype/pr_titlecase.h: Likewise.
3998         * lib/unictype/pr_unassigned_code_value.h: Likewise.
3999         * lib/unictype/pr_unified_ideograph.h: Likewise.
4000         * lib/unictype/pr_uppercase.h: Likewise.
4001         * lib/unictype/pr_variation_selector.h: Likewise.
4002         * lib/unictype/pr_white_space.h: Likewise.
4003         * lib/unictype/pr_xid_continue.h: Likewise.
4004         * lib/unictype/pr_xid_start.h: Likewise.
4005         * lib/unictype/pr_zero_width.h: Likewise.
4006         * lib/unictype/scripts.h: Likewise.
4007         * lib/unictype/scripts_byname.gperf: Likewise.
4008         * lib/unictype/sy_c_ident.h: Likewise.
4009         * lib/unictype/sy_c_whitespace.h: Likewise.
4010         * lib/unictype/sy_java_ident.h: Likewise.
4011         * lib/unictype/sy_java_whitespace.h: Likewise.
4012
4013         * lib/unictype/Makefile: New file.
4014         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
4015         glibc.
4016         * lib/unictype/3level.h: New file, copied from glibc.
4017         * lib/unictype/3levelbit.h: New file.
4018
4019 2007-11-11  Bruno Haible  <bruno@clisp.org>
4020
4021         * modules/gperf: New file.
4022         * modules/iconv_open (Depends-on): Add it.
4023         (Makefile.am): Remove the GPERF definition.
4024
4025 2007-11-11  Bruno Haible  <bruno@clisp.org>
4026
4027         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
4028         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
4029
4030 2007-11-11  Bruno Haible  <bruno@clisp.org>
4031
4032         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
4033         (usage): Remove function.
4034
4035 2007-11-11  Bruno Haible  <bruno@clisp.org>
4036
4037         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
4038         gl_FUNC_CEILF_LIBS.
4039         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
4040         gl_FUNC_CEIL_LIBS.
4041         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
4042         gl_FUNC_CEILL_LIBS.
4043         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
4044         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
4045         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
4046
4047 2007-11-11  Bruno Haible  <bruno@clisp.org>
4048
4049         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
4050         roundf were declared but do not exist on functions.
4051         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
4052         roundl were declared but do not exist on functions.
4053         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
4054         HAVE_FLOORL_AND_CEILL, respectively.
4055         Needed for Sun C on Solaris 10.
4056
4057 2007-11-11  Bruno Haible  <bruno@clisp.org>
4058
4059         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
4060         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
4061         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
4062         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
4063         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
4064         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
4065         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
4066         HAVE_DECL_ROUNDF.
4067         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
4068         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
4069         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
4070         of HAVE_DECL_ROUND*.
4071         * modules/math (Makefile.am): Update.
4072
4073 2007-11-10  Bruno Haible  <bruno@clisp.org>
4074
4075         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
4076         ptrdiff_t as m4/intl.m4.
4077
4078 2007-11-10  Jim Meyering  <meyering@redhat.com>
4079
4080         Avoid link failure for the argmatch test.
4081         * tests/test-argmatch.c (usage): Define function to avoid a link
4082         failure: argmatch_die requires a usage function.
4083
4084 2007-11-09  Bruno Haible  <bruno@clisp.org>
4085
4086         * doc/functions/snprintf.texi: Mention BeOS deficiency.
4087         * doc/functions/vsnprintf.texi: Likewise.
4088         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
4089         with a size argument < 2.
4090
4091 2007-11-09  Bruno Haible  <bruno@clisp.org>
4092
4093         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
4094         buffer. Fixes an inefficiency introduced on 2007-11-03.
4095
4096 2007-11-09  Bruno Haible  <bruno@clisp.org>
4097
4098         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
4099         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
4100
4101 2007-11-08  Jim Meyering  <meyering@redhat.com>
4102
4103         Change cache variable name prefix "jm_" to "gl_" everywhere.
4104         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
4105         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
4106         * m4/uptime.m4: s/gl_/jm_/
4107
4108 2007-11-07  Bruno Haible  <bruno@clisp.org>
4109
4110         Update to GNU gettext 0.17.
4111         * m4/intl.m4: Update to GNU gettext 0.17.
4112         * m4/po.m4: Likewise.
4113         * modules/gettext (Files): Remove m4/ulonglong.m4.
4114         (configure.ac): Require gettext infrastructure from version 0.17.
4115
4116 2007-11-06  Bruno Haible  <bruno@clisp.org>
4117
4118         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
4119         symbolic values are not defined in a public header.
4120         * lib/freadable.c (freadable) [QNX]: Likewise.
4121         * lib/freadahead.c (freadahead) [QNX]: Likewise.
4122         * lib/freading.c (freading) [QNX]: Likewise.
4123         * lib/fseterr.c (fseterr) [QNX]: Likewise.
4124         * lib/fwritable.c (fwritable) [QNX]: Likewise.
4125         * lib/fwriting.c (fwriting) [QNX]: Likewise.
4126         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
4127         Reported by Alain Magloire.
4128
4129         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
4130
4131 2007-11-05  Bruno Haible  <bruno@clisp.org>
4132
4133         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
4134         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
4135         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
4136         Reported by Eric Blake.
4137
4138 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4139             Bruno Haible  <bruno@clisp.org>
4140
4141         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
4142         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
4143         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
4144         (malloc): Undefine also before including <stdlib.h>.
4145         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
4146         Needed on OSF/1 4.0.
4147
4148 2007-11-05  Jim Meyering  <meyering@redhat.com>
4149
4150         git-version-gen: sync from coreutils.
4151         * build-aux/git-version-gen: Add comments.
4152         Change the first '-' to '.' in the snapshot version string,
4153         e.g., 6.9-377-08144 -> 6.9.377-08144
4154         Remove first parameter.
4155         Don't declare a version "-dirty" merely because a time
4156         stamp has changed.
4157
4158 2007-11-04  Bruno Haible  <bruno@clisp.org>
4159
4160         * lib/lock.h: Protect all macro definitions containing an 'if'
4161         statement through a "do { ... } while (0)".
4162         * lib/tls.h: Likewise.
4163
4164 2007-11-04  Bruno Haible  <bruno@clisp.org>
4165
4166         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
4167
4168 2007-11-04  Bruno Haible  <bruno@clisp.org>
4169
4170         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
4171         * modules/fprintf-posix (Depends-on): Add nocrash.
4172         * modules/snprintf-posix (Depends-on): Likewise.
4173         * modules/sprintf-posix (Depends-on): Likewise.
4174         * modules/vasnprintf-posix (Depends-on): Likewise.
4175         * modules/vasprintf-posix (Depends-on): Likewise.
4176         * modules/vfprintf-posix (Depends-on): Likewise.
4177         * modules/vsnprintf-posix (Depends-on): Likewise.
4178         * modules/vsprintf-posix (Depends-on): Likewise.
4179         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
4180         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
4181         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
4182         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
4183         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
4184         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
4185         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
4186
4187 2007-11-04  Bruno Haible  <bruno@clisp.org>
4188
4189         * modules/nocrash: New file.
4190         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
4191         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
4192
4193 2007-11-04  Bruno Haible  <bruno@clisp.org>
4194
4195         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
4196         precision handling.
4197         * tests/test-vasprintf-posix.c (test_function): Likewise.
4198         * tests/test-snprintf-posix.h (test_function): Likewise.
4199         * tests/test-sprintf-posix.h (test_function): Likewise.
4200
4201         Fix *printf behaviour for large precisions on mingw and BeOS.
4202         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
4203         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
4204         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
4205         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
4206         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
4207         gl_PRINTF_PRECISION and test its result. Invoke
4208         gl_PREREQ_VASNPRINTF_PRECISION.
4209         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
4210         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4211         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4212         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4213         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4214         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4215         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4216         * doc/functions/fprintf.texi: Update.
4217         * doc/functions/printf.texi: Update.
4218         * doc/functions/snprintf.texi: Update.
4219         * doc/functions/sprintf.texi: Update.
4220         * doc/functions/vfprintf.texi: Update.
4221         * doc/functions/vprintf.texi: Update.
4222         * doc/functions/vsnprintf.texi: Update.
4223         * doc/functions/vsprintf.texi: Update.
4224
4225 2007-11-04  Bruno Haible  <bruno@clisp.org>
4226
4227         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
4228
4229 2007-11-04  Bruno Haible  <bruno@clisp.org>
4230
4231         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
4232         Reported by Sylvain Beucler <beuc@gnu.org>.
4233
4234 2007-11-03  Bruno Haible  <bruno@clisp.org>
4235
4236         * tests/test-fprintf-posix2.sh: New file.
4237         * tests/test-fprintf-posix2.c: New file.
4238         * modules/fprintf-posix-tests (Files): Add them.
4239         (TESTS): Add test-fprintf-posix2.sh.
4240         (configure.ac): Check for getrlimit and setrlimit.
4241         (check_PROGRAMS): Add test-fprintf-posix2.
4242
4243         * tests/test-printf-posix2.sh: New file.
4244         * tests/test-printf-posix2.c: New file.
4245         * modules/printf-posix-tests (Files): Add them.
4246         (TESTS): Add test-printf-posix2.sh.
4247         (configure.ac): Check for getrlimit and setrlimit.
4248         (check_PROGRAMS): Add test-printf-posix2.
4249
4250         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
4251         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
4252         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
4253         (decode_double): New function, copied from decode_long_double.
4254         (scale10_round_decimal_decoded): New function, extracted from
4255         scale10_round_decimal_long_double.
4256         (scale10_round_decimal_long_double): Use it.
4257         (scale10_round_decimal_double): New function.
4258         (floorlog10): New function.
4259         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
4260         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
4261         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
4262         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
4263         gl_PRINTF_ENOMEM and test its result. Invoke
4264         gl_PREREQ_VASNPRINTF_ENOMEM.
4265         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
4266         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
4267         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
4268         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
4269         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
4270         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
4271         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
4272         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
4273         * modules/snprintf-posix (Depends-on): Likewise.
4274         * modules/sprintf-posix (Depends-on): Likewise.
4275         * modules/vasnprintf-posix (Depends-on): Likewise.
4276         * modules/vasprintf-posix (Depends-on): Likewise.
4277         * modules/vfprintf-posix (Depends-on): Likewise.
4278         * modules/vsnprintf-posix (Depends-on): Likewise.
4279         * modules/vsprintf-posix (Depends-on): Likewise.
4280         * doc/functions/fprintf.texi: Update.
4281         * doc/functions/printf.texi: Update.
4282         * doc/functions/snprintf.texi: Update.
4283         * doc/functions/sprintf.texi: Update.
4284         * doc/functions/vfprintf.texi: Update.
4285         * doc/functions/vprintf.texi: Update.
4286         * doc/functions/vsnprintf.texi: Update.
4287         * doc/functions/vsprintf.texi: Update.
4288
4289 2007-11-03  Bruno Haible  <bruno@clisp.org>
4290
4291         * modules/frexp-nolibm-tests: New file.
4292
4293         * modules/frexp-nolibm: New file.
4294         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
4295
4296 2007-11-03  Bruno Haible  <bruno@clisp.org>
4297
4298         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
4299         value is C99 compliant.
4300         Needed for OSF/1 5.1.
4301
4302 2007-11-03  Bruno Haible  <bruno@clisp.org>
4303
4304         Fix out-of-memory handling of vasnprintf.
4305         * lib/printf-parse.c: Include <errno.h>.
4306         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
4307         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
4308         is already set.
4309
4310 2007-11-02  Eric Blake  <ebb9@byu.net>
4311
4312         Fix tests on cygwin.
4313         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
4314
4315 2007-11-01  Bruno Haible  <bruno@clisp.org>
4316
4317         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
4318         warning.
4319         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
4320         needed for POSIX compatibility.
4321
4322 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
4323
4324         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
4325         for compatibility with GNU.
4326
4327 2007-11-01  Bruno Haible  <bruno@clisp.org>
4328
4329         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
4330         (putenv): Renamed from rpl_putenv. Change argument type from
4331         'const char *' to 'char *'.
4332         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
4333         of defining putenv in config.h, just set REPLACE_PUTENV.
4334         * modules/putenv (Depends-on): Add stdlib.
4335         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
4336         (Include): Use <stdlib.h>.
4337         * lib/stdlib.in.h (putenv): New declaration.
4338         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
4339         REPLACE_PUTENV.
4340         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
4341         REPLACE_PUTENV.
4342         Needed for MacOS X 10.5.0.
4343         Reported by Peter O'Gorman <peter@pogma.com>.
4344
4345 2007-11-01  Jim Meyering  <meyering@redhat.com>
4346
4347         Treat an empty date string exactly like "0".
4348         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
4349         if the remaining date string (to be parsed) is empty, use "0".
4350         Reported by Mischa Molhoek and discussed in this thread:
4351         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
4352
4353 2007-10-31  Bruno Haible  <bruno@clisp.org>
4354
4355         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
4356         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
4357         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
4358         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
4359         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
4360         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
4361
4362 2007-10-31  Bruno Haible  <bruno@clisp.org>
4363
4364         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
4365         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
4366         (AC_TYPE_LONG_LONG_INT): Use it.
4367         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
4368         it as well.
4369         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
4370         to m4/longlong.m4.
4371         * modules/stdint (Files): Remove m4/ulonglong.m4.
4372         * modules/strtoull (Files): Use m4/longlong.m4 instead of
4373         m4/ulonglong.m4.
4374         * modules/strtoumax (Files): Likewise.
4375
4376 2007-10-30  Bruno Haible  <bruno@clisp.org>
4377
4378         * modules/xvasprintf-posix: New file.
4379         Suggested by Eric Blake.
4380
4381 2007-10-30  Bruno Haible  <bruno@clisp.org>
4382
4383         * modules/xprintf-posix-tests: New file.
4384         * tests/test-xprintf-posix.sh: New file.
4385         * tests/test-xprintf-posix.c: New file.
4386         * tests/test-xfprintf-posix.c: New file.
4387
4388         * modules/xprintf-posix: New file.
4389
4390 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4391
4392         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
4393         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
4394         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
4395
4396 2007-10-29  Bruno Haible  <bruno@clisp.org>
4397
4398         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
4399         contain the special marker '_cv_'.
4400         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
4401         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
4402         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
4403         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
4404         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
4405         Reported by Ralf Wildenhues.
4406
4407 2007-10-29  Bruno Haible  <bruno@clisp.org>
4408
4409         * gnulib-tool (func_import): When --lgpl is not specified, set
4410         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
4411         GPLv3.
4412         Reported by Simon Josefsson.
4413
4414 2007-10-28  Bruno Haible  <bruno@clisp.org>
4415
4416         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
4417         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
4418         HAVE_DECL_ISFINITE.
4419         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
4420         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
4421         HAVE_DECL_ISFINITE.
4422
4423 2007-10-28  Bruno Haible  <bruno@clisp.org>
4424
4425         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
4426         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
4427
4428 2007-10-28  Bruno Haible  <bruno@clisp.org>
4429
4430         Fix link errors with Sun C 5.0 on Solaris 10.
4431         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
4432         function is declared but not present in the compiler's libm.
4433         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
4434         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
4435         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
4436         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
4437         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
4438         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
4439         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
4440         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
4441         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
4442         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
4443         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
4444         HAVE_DECL_FLOORL.
4445
4446 2007-10-28  Bruno Haible  <bruno@clisp.org>
4447
4448         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
4449         gl_FUNC_FLOORL. Cache the result.
4450         (gl_FUNC_FLOORL): Use it.
4451         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
4452         gl_FUNC_CEILL. Cache the result.
4453         (gl_FUNC_CEILL): Use it.
4454
4455         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
4456         gl_FUNC_FLOOR. Cache the result.
4457         (gl_FUNC_FLOOR): Use it.
4458         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
4459         gl_FUNC_CEIL. Cache the result.
4460         (gl_FUNC_CEIL): Use it.
4461
4462         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
4463         gl_FUNC_FLOORF. Cache the result.
4464         (gl_FUNC_FLOORF): Use it.
4465         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
4466         gl_FUNC_CEILF. Cache the result.
4467         (gl_FUNC_CEILF): Use it.
4468
4469 2007-10-28  Bruno Haible  <bruno@clisp.org>
4470
4471         * gnulib-tool: Allow specifying the LGPL version number through
4472         --lgpl=2 or --lgpl=3.
4473         (func_usage): Document --lgpl with argument.
4474         Handle --lgpl=... arguments.
4475         (func_import): Recognize also gl_LGPL calls with an argument. When
4476         --lgpl=2 is used and the module's license is just LGPL, report an
4477         error. Set sed_transform_lib_file according to the lgpl variable. In
4478         the generated files, use --lgpl or gl_LGPL invocations with argument,
4479         if necessary.
4480         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
4481         an LGPv2+ license.
4482         * doc/gnulib-tool.texi (Modified imports): Update explanation of
4483         gl_LGPL macro.
4484
4485 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4486             Bruno Haible  <bruno@clisp.org>
4487
4488         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
4489         (u16_uctomb_aux): Likewise.
4490         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
4491         !HAVE_INLINE.
4492         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
4493
4494 2007-10-28  Bruno Haible  <bruno@clisp.org>
4495
4496         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
4497         Invoke AM_GETTEXT_OPTION if it exists.
4498         * modules/vasprintf: Likewise.
4499         * modules/verror: Likewise.
4500         * modules/xprintf: Likewise.
4501         * modules/xvasprintf: Likewise.
4502
4503 2007-10-27  Ben Pfaff  <blp@gnu.org>
4504
4505         * lib/math.in.h: Define isfinite macro and prototypes for
4506         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
4507         implementations.
4508         * m4/math_h.m4: New substitutions for isfinite module.
4509         * lib/isfinite.c: New file.
4510         * m4/isfinite.m4: New file.
4511         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
4512         * modules/isfinite: New file.
4513         * modules/isfinite-tests: New file.
4514         * tests/tests-isfinite.c: New file.
4515         * doc/functions/isfinite.texi: Mention isfinite module.
4516         * MODULES.html.sh: Mention new module.
4517
4518 2007-10-27  Ben Pfaff  <blp@gnu.org>
4519
4520         Ralf Wildenhues reported that Tru64 4.0D declares the round
4521         functions but does not have definitions.
4522         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
4523         cannot be found in any library, set the output variable to
4524         "missing" instead of "".
4525         * m4/round.m4: Also use our substitute if we cannot find round in
4526         any library, even if it is declared.
4527         * m4/roundf.m4: Likewise for roundf.
4528         * m4/roundl.m4: Likewise for roundl.
4529         * lib/math.in.h: Undefine roundf, round, roundl before defining
4530         their replacements, to allow for hypothetical systems where these
4531         may be defined as macros but not available in libraries.
4532
4533 2007-10-27  Bruno Haible  <bruno@clisp.org>
4534
4535         * doc/gnulib.texi: Invoke @firstparagraphindent.
4536         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
4537         changes in gnulib.
4538         (Source changes): New section.
4539
4540 2007-10-26  Bruno Haible  <bruno@clisp.org>
4541
4542         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
4543         borrowed from autoconf.
4544
4545 2007-10-26  Bruno Haible  <bruno@clisp.org>
4546
4547         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
4548         strerror returned the empty string. Needed on HP-UX 11.00.
4549
4550 2007-10-24  Micah Cowan  <micah@cowan.name>
4551
4552         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
4553         * build-aux/bootstrap: Remove support for now-unnecessary option,
4554         --cvs-user, and envvars CVS_USER, CVS_RSH.
4555
4556 2007-10-24  Jim Meyering  <meyering@redhat.com>
4557
4558         Avoid diagnostics from sha1sum when there is no cached checksum.
4559         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
4560         if the po.s1 file hasn't been created yet.
4561
4562         * build-aux/bootstrap: Sync from coreutils:
4563         2007-10-24  Jim Meyering  <meyering@redhat.com>
4564         Get gnulib from the git repository, not from an obsolete cvs one.
4565         * build-aux/bootstrap: Suggestion from Micah Cowan.
4566         2007-10-04  Jim Meyering  <jim@meyering.net>
4567         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
4568         (update_po_files): Work also when there are no .po files in po/.
4569
4570 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
4571
4572         * README: Append ".git" to git and cg examples.
4573         Problem reported by Benoit Sigoure.
4574
4575 2007-10-23  Micah Cowan  <micah@cowan.name>
4576
4577         * users.txt: Add wget.
4578
4579 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4580
4581         Fix linking of some unistdio tests on FreeBSD.
4582         * modules/unistdio/u16-vsnprintf-tests
4583         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
4584         * modules/unistdio/u16-vsprintf-tests
4585         (test_u16_vsnprintf1_LDADD): Likewise.
4586         * modules/unistdio/u32-vsnprintf-tests
4587         (test_u32_vsnprintf1_LDADD): Likewise.
4588         * modules/unistdio/u32-vsprintf-tests
4589         (test_u32_vsprintf1_LDADD): Likewise.
4590         * modules/unistdio/u8-vsnprintf-tests
4591         (test_u8_vsnprintf1_LDADD): Likewise.
4592         * modules/unistdio/u8-vsprintf-tests
4593         (test_u8_vsprintf1_LDADD): Likewise.
4594         * modules/unistdio/ulc-vsnprintf-tests
4595         (test_ulc_vsnprintf1_LDADD): Likewise.
4596         * modules/unistdio/ulc-vsprintf-tests
4597         (test_ulc_vsprintf1_LDADD): Likewise.
4598
4599         Fix linking of some uniconv tests on FreeBSD.
4600         * modules/uniconv/u16-conv-from-enc-tests
4601         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
4602         * modules/uniconv/u16-conv-to-enc-tests
4603         (test_u16_conv_to_enc_LDADD): Likewise.
4604         * modules/uniconv/u16-strconv-from-enc-tests
4605         (test_u16_strconv_from_enc_LDADD): Likewise.
4606         * modules/uniconv/u16-strconv-to-enc-tests
4607         (test_u16_strconv_to_enc_LDADD): Likewise.
4608         * modules/uniconv/u32-conv-from-enc-tests
4609         (test_u32_conv_from_enc_LDADD): Likewise.
4610         * modules/uniconv/u32-conv-to-enc-tests
4611         (test_u32_conv_to_enc_LDADD): Likewise.
4612         * modules/uniconv/u32-strconv-from-enc-tests
4613         (test_u32_strconv_from_enc_LDADD): Likewise.
4614         * modules/uniconv/u32-strconv-to-enc-tests
4615         (test_u32_strconv_to_enc_LDADD): Likewise.
4616         * modules/uniconv/u8-conv-from-enc-tests
4617         (test_u8_conv_from_enc_LDADD): Likewise.
4618         * modules/uniconv/u8-conv-to-enc-tests
4619         (test_u8_conv_to_enc_LDADD): Likewise.
4620         * modules/uniconv/u8-strconv-from-enc-tests
4621         (test_u8_strconv_from_enc_LDADD): Likewise.
4622         * modules/uniconv/u8-strconv-to-enc-tests
4623         (test_u8_strconv_to_enc_LDADD): Likewise.
4624
4625 2007-10-22  Bruno Haible  <bruno@clisp.org>
4626
4627         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
4628         size.
4629
4630 2007-10-22  Eric Blake  <ebb9@byu.net>
4631
4632         Tweak x*printf documentation.
4633         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
4634         variable name and comments.
4635         Suggested by Bruno Haible.
4636
4637 2007-10-22  Bruno Haible  <bruno@clisp.org>
4638
4639         * lib/acl.c (copy_acl): Fix file name in comment.
4640
4641 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
4642
4643         Fix Tru64 problem with stdbool.h.
4644         * lib/stdbool.in.h (false, true):
4645         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
4646         Don't declare as an enum in this situation; it runs afoul of Tru64.
4647         Problem reported by Steven M. Schweda in
4648         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
4649
4650 2007-10-22  Eric Blake  <ebb9@byu.net>
4651
4652         Also wrap vf?printf.
4653         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
4654         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
4655         (xvprintf, xvfprintf): New functions.
4656
4657 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4658
4659         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
4660         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
4661
4662         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
4663         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
4664
4665 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
4666
4667         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
4668         by Bruno Haible.
4669
4670 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4671
4672         * lib/getloadavg.c
4673         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
4674         Undef `sys' after including sys/table.h, for Tru64 4.0D.
4675
4676         * tests/test-i-ring.c: Work for C89.
4677
4678 2007-10-22  Bruno Haible  <bruno@clisp.org>
4679
4680         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
4681         -1u, in preprocessor expression, so that we don't test for the bug
4682         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
4683         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
4684
4685 2007-10-22  Eric Blake  <ebb9@byu.net>
4686
4687         * tests/test-yesno.sh: Silence stderr during test.
4688
4689 2007-10-22  Simon Josefsson  <simon@josefsson.org>
4690
4691         * modules/crypto/gc-camellia: New file.
4692
4693         * m4/gc-camellia.m4: New file.
4694
4695         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
4696
4697         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
4698
4699 2007-10-22  Simon Josefsson  <simon@josefsson.org>
4700
4701         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
4702         --help to stdout.  Reported by sms@antinode.org (Steven
4703         M. Schweda).
4704
4705 2007-10-22  Simon Josefsson  <simon@josefsson.org>
4706
4707         * users.txt: Fix link to libksba.
4708
4709 2007-10-21  Ben Pfaff  <blp@gnu.org>
4710
4711         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
4712         round.c roundf implementation that depends on floorf and ceilf to
4713         be tested unconditionally.
4714
4715 2007-10-21  Ben Pfaff  <blp@gnu.org>
4716
4717         * m4/check-libm-func.m4: Removed.
4718         * m4/check-math-lib.m4: New file.
4719         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
4720         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
4721         definition and lack of AC_LIBOBJ([roundf]).
4722         * m4/roundl.m4: Ditto, and similarly for roundl.
4723         * modules/round: Reference new m4 file.
4724         * modules/roundf: Ditto.
4725         * modules/roundl: Ditto.
4726         * tests/test-round2.c (main): Use ROUND instead of round.
4727         Bug report from Bruno Haible.
4728
4729 2007-10-21  Bruno Haible  <bruno@clisp.org>
4730
4731         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
4732         context.
4733
4734 2007-10-21  Bruno Haible  <bruno@clisp.org>
4735
4736         * tests/test-wcwidth.c (main): Allow negative result for some control
4737         characters.
4738
4739         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
4740         Needed on OSF/1 5.1.
4741
4742 2007-10-21  Bruno Haible  <bruno@clisp.org>
4743
4744         * tests/test-floorf1.c: Include isnanf.h.
4745         (main): Use isnanf() instead of isnan().
4746         * tests/test-ceilf1.c: Include isnanf.h.
4747         (main): Use isnanf() instead of isnan().
4748         * tests/test-truncf1.c: Include isnanf.h.
4749         (main): Use isnanf() instead of isnan().
4750         * tests/test-roundf1.c: Include isnanf.h.
4751         (main): Use isnanf() instead of isnan().
4752
4753 2007-10-21  Eric Blake  <ebb9@byu.net>
4754
4755         * users.txt: Update URL for m4.
4756
4757 2007-10-21  Bruno Haible  <bruno@clisp.org>
4758
4759         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
4760
4761 2007-10-21  Bruno Haible  <bruno@clisp.org>
4762
4763         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
4764         Git's management files if the CVS files are not present.
4765
4766 2007-10-20  Bruno Haible  <bruno@clisp.org>
4767
4768         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
4769         gcc-3.4.x.
4770
4771 2007-10-20  Ben Pfaff  <blp@gnu.org>
4772
4773         * lib/math.in.h: Declare round, roundf, roundl if we are providing
4774         implementations.
4775         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
4776         * lib/round.c: New file.
4777         * lib/roundf.c: New file.
4778         * lib/roundl.c: New file.
4779         * m4/round.m4: New file.
4780         * m4/roundf.m4: New file.
4781         * m4/roundl.m4: New file.
4782         * m4/check-libm-func-m4: New file.
4783         * modules/math: Replace round, roundf, roundl related @VARS@ in
4784         math.in.h.
4785         * modules/round: New file.
4786         * modules/round-tests: New file.
4787         * modules/roundf: New file.
4788         * modules/roundf-tests: New file.
4789         * modules/roundl: New file.
4790         * modules/roundl-tests: New file.
4791         * tests/test-round1.c: New file.
4792         * tests/test-round2.c: New file.
4793         * tests/test-roundf1.c: New file.
4794         * tests/test-roundf2.c: New file.
4795         * tests/test-roundl.c: New file.
4796         * doc/functions/round.texi: Mention round module.
4797         * doc/functions/roundf.texi: Mention roundf module.
4798         * doc/functions/roundl.texi: Mention roundl module.
4799         * MODULES.html.sh: Mention new modules.
4800         Thanks to Bruno Haible for suggestions.
4801
4802 2007-10-20  Jim Meyering  <meyering@redhat.com>
4803
4804         * lib/xprintf.c: Include <config.h> unconditionally.
4805
4806         Change xprintf's license to GPL.
4807         * modules/xprintf (License): s/LGPL/GPL/, since this module
4808         depends on modules (exit and exitfail) which are GPL.
4809         Suggestion from Bruno Haible.
4810
4811         xprintf fixes.
4812         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
4813         Use a clearer diagnostic.
4814         Patch from Bruno Haible.
4815
4816 2007-10-20  Bruno Haible  <bruno@clisp.org>
4817
4818         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
4819         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
4820         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4821
4822 2007-10-20  Bruno Haible  <bruno@clisp.org>
4823
4824         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
4825         precision in the comparison result > x - 1 or similar.
4826         * tests/test-ceilf2.c (correct_result_p): Likewise.
4827         * tests/test-truncf2.c (correct_result_p): Likewise.
4828         * tests/test-trunc2.c (correct_result_p): Likewise.
4829         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
4830
4831 2007-10-20  Bruno Haible  <bruno@clisp.org>
4832
4833         * modules/ceil: New file.
4834         * m4/ceil.m4: New file.
4835         * doc/functions/ceil.texi: Mention the 'ceil' module.
4836
4837 2007-10-20  Bruno Haible  <bruno@clisp.org>
4838
4839         * modules/floor: New file.
4840         * m4/floor.m4: New file.
4841         * doc/functions/floor.texi: Mention the 'floor' module.
4842
4843 2007-10-20  Bruno Haible  <bruno@clisp.org>
4844
4845         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
4846         of %a.
4847         * modules/floorf-tests (Depends-on): Likewise.
4848         * modules/truncf-tests (Depends-on): Likewise.
4849         * modules/trunc-tests (Depends-on): Likewise.
4850         Reported by Ben Pfaff.
4851
4852 2007-10-19  Jim Meyering  <meyering@redhat.com>
4853
4854         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
4855         Don't bother testing specific errno values.  Just test ferror.
4856
4857         New module: xprintf
4858         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
4859
4860 2007-10-19  Bruno Haible  <bruno@clisp.org>
4861
4862         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
4863         syntax.
4864         * modules/javaexec (Makefile.am): Likewise.
4865         * modules/relocatable-prog (Makefile.am): Likewise.
4866         Suggested by Jim Meyering.
4867
4868 2007-10-18  Bruno Haible  <bruno@clisp.org>
4869
4870         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
4871         Reported by Jim Meyering.
4872
4873 2007-10-18  Eric Blake  <ebb9@byu.net>
4874
4875         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
4876
4877 2007-10-18  Bruno Haible  <bruno@clisp.org>
4878
4879         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
4880         the format string into writable memory. Needed in Fortify conditions.
4881
4882 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
4883             Bruno Haible  <bruno@clisp.org>
4884
4885         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
4886         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
4887         * modules/trim (Depends-on): Add mbchar.
4888         (configure.ac): Add gl_FUNC_MBRTOWC.
4889         (Makefile.am): Augment lib_SOURCES.
4890
4891 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
4892
4893         Modify glob.c to use fstatat and dirfd, to simplify it.
4894         Suggested by Eric Blake.
4895         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
4896         Don't include <stdbool.h>; not used.
4897         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
4898         (link_exists_p): Simplify implementation, since we can now assume
4899         dirfd and fstatat.
4900         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
4901
4902 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4903
4904         * gnulib-tool (func_get_dependencies): Fix sed script to
4905         match only tests.
4906
4907 2007-10-17  Bruno Haible  <bruno@clisp.org>
4908
4909         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
4910         allow locale names without encoding suffix.
4911         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
4912         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
4913
4914 2007-10-16  Bruno Haible  <bruno@clisp.org>
4915
4916         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
4917         * lib/getgroups.c (getgroups): Likewise.
4918         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
4919
4920 2007-10-16  Bruno Haible  <bruno@clisp.org>
4921
4922         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
4923         * modules/malloc-posix (License): Likewise.
4924         * modules/realloc-posix (License): Likewise.
4925         * modules/calloc-posix (License): Likewise.
4926         * modules/intprops (License): Change from GPL to LGPL, with
4927         Paul Eggert's approval.
4928
4929 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
4930
4931         Merge glibc changes into lib/glob.c.
4932
4933         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
4934         2007-10-15 04:59:03 UTC.  Here are the changes:
4935
4936         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
4937
4938         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
4939
4940         * lib/glob.c: Add some branch prediction throughout.
4941
4942         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
4943
4944         [BZ #5103]
4945         * lib/glob.c (glob): Recognize patterns starting \/.
4946
4947         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
4948
4949         [BZ #3996]
4950         * lib/glob.c (attribute_hidden): Define if not defined.
4951         (glob): Unescape dirname, filename or username when needed and not
4952         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
4953         is NULL.  Handle unescaped [ in pattern without closing ].
4954         Don't pass GLOB_CHECK down to recursive glob for directories.
4955         (__glob_pattern_type): New function.
4956         (__glob_pattern_p): Implement using __glob_pattern_type.
4957         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
4958         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
4959         Remove unreachable code.
4960
4961         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
4962
4963         * lib/glob.c (glob_in_dir): Add some comments and asserts to
4964         explain why there are no leaks.
4965
4966         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
4967
4968         [BZ #3253]
4969         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
4970         time, rather allocate increasingly bigger arrays of pointers, if
4971         possible with alloca, if too large with malloc.
4972
4973 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
4974
4975         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
4976         Problem reported by H.Merijn Brand in
4977         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
4978         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
4979         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
4980
4981 2007-10-15  Bruno Haible  <bruno@clisp.org>
4982
4983         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
4984         with explicit rpl_ prefix.
4985         * lib/fopen.c (fopen): Likewise.
4986         * lib/freopen.c (freopen): Likewise.
4987         * lib/iconv.c (iconv): Likewise.
4988         * lib/iconv_close.c (iconv_close): Likewise.
4989
4990 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4991
4992         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
4993
4994 2007-10-15  Bruno Haible  <bruno@clisp.org>
4995
4996         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
4997         <stddef.h> instead of <stdlib.h> since we only need NULL.
4998         Reported by Ben Pfaff <blp@cs.stanford.edu>.
4999
5000 2007-10-15  Bruno Haible  <bruno@clisp.org>
5001
5002         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
5003         Replace paragraph talking about LIBOBJS.
5004         Reported by Colin Watson <cjwatson@debian.org>.
5005
5006 2007-10-15  Bruno Haible  <bruno@clisp.org>
5007
5008         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
5009         <stdlib.h> before using NULL.
5010
5011 2007-10-15  Simon Josefsson  <simon@josefsson.org>
5012
5013         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
5014         Reported by Albert Chin <china@thewrittenword.com>.
5015
5016 2007-10-14  Bruno Haible  <bruno@clisp.org>
5017
5018         * modules/iconv_open-utf-tests: New file.
5019         * tests/test-iconv-utf.c: New file.
5020
5021         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
5022         * modules/iconv_open-utf: New file.
5023         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
5024         (iconv, iconv_close): New declarations.
5025         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
5026         be defined.
5027         (iconv_open): Add special handling of conversion between UTF-8 and
5028         UTF-{16,32}{BE,LE}.
5029         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
5030         * lib/iconv_close.c: New file.
5031         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
5032         gl_FUNC_ICONV_OPEN.
5033         (gl_FUNC_ICONV_OPEN): Use it.
5034         (gl_FUNC_ICONV_OPEN_UTF): New macro.
5035         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
5036         and REPLACE_ICONV_UTF.
5037         * modules/iconv_open (Depends-on): Add c-strcase.
5038         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
5039         ICONV_CONST.
5040         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
5041
5042 2007-10-13  Albert Chin  <china@thewrittenword.com>
5043             Bruno Haible  <bruno@clisp.org>
5044
5045         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
5046         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
5047
5048 2007-10-13  Bruno Haible  <bruno@clisp.org>
5049
5050         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
5051         defined, use the ISO C99 inline semantics.
5052         * lib/argp.h (ARGP_EI): Likewise.
5053
5054 2007-10-13  Bruno Haible  <bruno@clisp.org>
5055
5056         Handle 'inline' change in gcc 4.3.0.
5057         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
5058         argp_fmtstream_write, argp_fmtstream_set_lmargin,
5059         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
5060         argp_fmtstream_point): Disable 'extern' declaration if the function
5061         definition is going to be provided inline.
5062         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
5063         semantics, not the ISO C99 inline semantics.
5064         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
5065         'extern' declaration if the function definition is going to be provided
5066         inline.
5067         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
5068         the GNU C inline semantics, not the ISO C99 inline semantics. With
5069         GCC 4.2, avoid a warning.
5070
5071 2007-10-13  Bruno Haible  <bruno@clisp.org>
5072
5073         * lib/freading.h (freading): Enable the use of __freading for
5074         glibc >= 2.7.
5075         * lib/freading.c (freading): Likewise.
5076
5077 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
5078
5079         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
5080         "warning: C99 inline functions are not supported; using GNU89".
5081
5082 2007-10-12  Bruno Haible  <bruno@clisp.org>
5083
5084         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
5085         of 2.
5086         * tests/test-ceilf2.c: New file.
5087         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
5088
5089         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
5090         * modules/ceilf-tests: Update.
5091
5092 2007-10-12  Bruno Haible  <bruno@clisp.org>
5093
5094         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
5095         of 2.
5096         * tests/test-floorf2.c: New file.
5097         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
5098
5099         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
5100         * modules/floorf-tests: Update.
5101
5102 2007-10-12  Bruno Haible  <bruno@clisp.org>
5103
5104         * tests/test-trunc2.c: New file.
5105         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
5106
5107         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
5108         * modules/trunc-tests: Update.
5109
5110 2007-10-12  Bruno Haible  <bruno@clisp.org>
5111
5112         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
5113         of 2.
5114         * tests/test-truncf2.c: New file.
5115         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
5116
5117         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
5118         * modules/truncf-tests: Update.
5119
5120 2007-10-11  Eric Blake  <ebb9@byu.net>
5121
5122         Don't claim strerror is broken on Interix.
5123         * doc/functions/strerror.texi (strerror): Known broken systems are
5124         now Solaris 8, and not Interix.
5125         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
5126         Interix on cross-compile.
5127         Reported by Martin Koeppe in
5128         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
5129
5130 2007-10-11  Bruno Haible  <bruno@clisp.org>
5131
5132         * modules/i-ring-tests: New file.
5133         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
5134         instead of assert.
5135
5136 2007-10-11  Bruno Haible  <bruno@clisp.org>
5137
5138         * modules/filenamecat-tests: New file.
5139         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
5140         * lib/filenamecat.c: Remove test code.
5141
5142 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
5143
5144         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
5145
5146         * lib/strerror.c: Include <string.h> always, to test interface,
5147         and to remove the need for the dummy.
5148         Include intprops.h to compute width instead of doing it ourselves
5149         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
5150         (strerror): Define it to return NULL if there's no system strerror.
5151         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
5152         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
5153         ancient pre-strerror Unix systems well any more.  Saying "unknown
5154         system error" is enough.
5155         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
5156         simpler strerror.c implementation.
5157         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
5158         Simplify the tests to reflect the simpler strerror implementation.
5159         * modules/strerror (Depends-on): Add intprops.
5160
5161 2007-10-09  Eric Blake  <ebb9@byu.net>
5162
5163         Silence test-fpending.
5164         * modules/fpending-tests (Files): Add wrapper script.
5165         * tests/test-fpending.sh: New file.
5166
5167 2007-10-09  Bruno Haible  <bruno@clisp.org>
5168
5169         * MODULES.html.sh (func_module): Don't create a hyperlink for
5170         function names like 'printf_frexp'.
5171         (Misc): Add crc, memxor.
5172         (Characteristics of floating types): New section.
5173         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
5174         isnanf-nolibm, signbit, trunc, truncf, truncl.
5175         (Enhancements for ISO C 99 functions): New subsection Input/output.
5176         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
5177         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
5178         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
5179         (Compatibility checks for POSIX:2001 functions): Add clock-time.
5180         (Enhancements for POSIX:2001 functions): Add chdir-long.
5181         (File system functions): Add areadlink, chdir-safer, read-file.
5182         Remove cycle-check.
5183         (File system as inode set): New section.
5184         (Date and time): Add gethrxtime.
5185         (Multithreading): Add openmp.
5186         (Internationalization functions): Add localename.
5187         (Unicode string functions): Add unistr/u*-mbsnlen.
5188         (Support for maintaining and releasing projects): Add git-version-gen.
5189         (Lone files): Remove directories.
5190
5191 2007-10-08  Ben Pfaff  <blp@gnu.org>
5192
5193         * lib/xmalloca.h: Fix typo in comment.
5194
5195 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
5196
5197         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
5198         when avoiding problems with integer overflow.  Use a portable test
5199         instead.
5200
5201 2007-10-08  Simon Josefsson  <simon@josefsson.org>
5202
5203         * modules/dummy (License): Change to LGPLv2+.
5204         * modules/float (License): Likewise
5205         * modules/realloc (License): Likewise
5206         * modules/stdlib (License): Likewise
5207
5208 2007-10-07  Bruno Haible  <bruno@clisp.org>
5209
5210         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
5211         * floor.c (TWO_MANT_DIG): Likewise.
5212         * ceil.c (TWO_MANT_DIG): Likewise.
5213         Reported by Ben Pfaff.
5214
5215 2007-10-07  Bruno Haible  <bruno@clisp.org>
5216
5217         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
5218         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
5219         * lib/frexp.c (FUNC): Likewise.
5220         * lib/printf-frexp.h (printf_frexp): Likewise.
5221         * lib/printf-frexpl.h (printf_frexpl): Likewise.
5222         * lib/printf-frexp.c (FUNC): Likewise.
5223         Suggested by Jim Meyering.
5224
5225 2007-10-07  Jim Meyering  <meyering@redhat.com>
5226
5227         Make xnanosleep's integer overflow test more robust.
5228         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
5229         so that gcc-4.3.0 doesn't optimize away this test for overflow.
5230
5231 2007-10-07  Bruno Haible  <bruno@clisp.org>
5232
5233         * NEWS: Mention the license change.
5234
5235         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
5236         abbreviations in the modules files.
5237
5238         Change copyright notice from GPLv2+ to GPLv3+.
5239         * README: Change copyright notice.
5240         * MODULES.html.sh: Likewise.
5241         * build-aux/bootstrap.conf: Likewise.
5242         * build-aux/config.libpath: Likewise.
5243         * build-aux/csharpcomp.sh.in: Likewise.
5244         * build-aux/csharpexec.sh.in: Likewise.
5245         * build-aux/install-reloc: Likewise.
5246         * build-aux/javacomp.sh.in: Likewise.
5247         * build-aux/javaexec.sh.in: Likewise.
5248         * build-aux/ldd.sh.in: Likewise.
5249         * build-aux/reloc-ldflags: Likewise.
5250         * build-aux/relocatable.sh.in: Likewise.
5251         * build-aux/x-to-1.in: Likewise.
5252         * check-module: Likewise.
5253         * config/srclistvars.sh: Likewise.
5254         * gnulib-tool: Likewise.
5255         * lib/acl-internal.h: Likewise.
5256         * lib/acl.c: Likewise.
5257         * lib/acl.h: Likewise.
5258         * lib/acl_entries.c: Likewise.
5259         * lib/areadlink-with-size.c: Likewise.
5260         * lib/areadlink.c: Likewise.
5261         * lib/areadlink.h: Likewise.
5262         * lib/argmatch.c: Likewise.
5263         * lib/argmatch.h: Likewise.
5264         * lib/argp-ba.c: Likewise.
5265         * lib/argp-eexst.c: Likewise.
5266         * lib/argp-fmtstream.c: Likewise.
5267         * lib/argp-fmtstream.h: Likewise.
5268         * lib/argp-fs-xinl.c: Likewise.
5269         * lib/argp-help.c: Likewise.
5270         * lib/argp-namefrob.h: Likewise.
5271         * lib/argp-parse.c: Likewise.
5272         * lib/argp-pin.c: Likewise.
5273         * lib/argp-pv.c: Likewise.
5274         * lib/argp-pvh.c: Likewise.
5275         * lib/argp-xinl.c: Likewise.
5276         * lib/argp.h: Likewise.
5277         * lib/at-func.c: Likewise.
5278         * lib/atanl.c: Likewise.
5279         * lib/backupfile.c: Likewise.
5280         * lib/backupfile.h: Likewise.
5281         * lib/basename.c: Likewise.
5282         * lib/binary-io.h: Likewise.
5283         * lib/byteswap.in.h: Likewise.
5284         * lib/c-stack.c: Likewise.
5285         * lib/c-stack.h: Likewise.
5286         * lib/c-strcasestr.c: Likewise.
5287         * lib/c-strcasestr.h: Likewise.
5288         * lib/c-strstr.c: Likewise.
5289         * lib/c-strstr.h: Likewise.
5290         * lib/c-strtod.c: Likewise.
5291         * lib/calloc.c: Likewise.
5292         * lib/canon-host.c: Likewise.
5293         * lib/canon-host.h: Likewise.
5294         * lib/canonicalize-lgpl.c: Likewise.
5295         * lib/canonicalize.c: Likewise.
5296         * lib/canonicalize.h: Likewise.
5297         * lib/ceil.c: Likewise.
5298         * lib/ceilf.c: Likewise.
5299         * lib/ceill.c: Likewise.
5300         * lib/chdir-long.c: Likewise.
5301         * lib/chdir-long.h: Likewise.
5302         * lib/chdir-safer.c: Likewise.
5303         * lib/chdir-safer.h: Likewise.
5304         * lib/chown.c: Likewise.
5305         * lib/classpath.c: Likewise.
5306         * lib/classpath.h: Likewise.
5307         * lib/clean-temp.c: Likewise.
5308         * lib/clean-temp.h: Likewise.
5309         * lib/cloexec.c: Likewise.
5310         * lib/close-stream.c: Likewise.
5311         * lib/closein.c: Likewise.
5312         * lib/closein.h: Likewise.
5313         * lib/closeout.c: Likewise.
5314         * lib/closeout.h: Likewise.
5315         * lib/concat-filename.c: Likewise.
5316         * lib/copy-file.c: Likewise.
5317         * lib/copy-file.h: Likewise.
5318         * lib/count-one-bits.h: Likewise.
5319         * lib/crc.c: Likewise.
5320         * lib/crc.h: Likewise.
5321         * lib/creat-safer.c: Likewise.
5322         * lib/csharpcomp.c: Likewise.
5323         * lib/csharpcomp.h: Likewise.
5324         * lib/csharpexec.c: Likewise.
5325         * lib/csharpexec.h: Likewise.
5326         * lib/cycle-check.c: Likewise.
5327         * lib/cycle-check.h: Likewise.
5328         * lib/diacrit.c: Likewise.
5329         * lib/diacrit.h: Likewise.
5330         * lib/diffseq.h: Likewise.
5331         * lib/dirchownmod.c: Likewise.
5332         * lib/dirent.in.h: Likewise.
5333         * lib/dirfd.c: Likewise.
5334         * lib/dirfd.h: Likewise.
5335         * lib/dirname.c: Likewise.
5336         * lib/dirname.h: Likewise.
5337         * lib/dummy.c: Likewise.
5338         * lib/dup-safer.c: Likewise.
5339         * lib/dup2.c: Likewise.
5340         * lib/eealloc.h: Likewise.
5341         * lib/error.c: Likewise.
5342         * lib/error.h: Likewise.
5343         * lib/euidaccess.c: Likewise.
5344         * lib/exclude.c: Likewise.
5345         * lib/exclude.h: Likewise.
5346         * lib/execute.c: Likewise.
5347         * lib/execute.h: Likewise.
5348         * lib/exitfail.c: Likewise.
5349         * lib/exitfail.h: Likewise.
5350         * lib/expl.c: Likewise.
5351         * lib/fatal-signal.c: Likewise.
5352         * lib/fatal-signal.h: Likewise.
5353         * lib/fbufmode.c: Likewise.
5354         * lib/fbufmode.h: Likewise.
5355         * lib/fchdir.c: Likewise.
5356         * lib/fchmodat.c: Likewise.
5357         * lib/fchownat.c: Likewise.
5358         * lib/fcntl--.h: Likewise.
5359         * lib/fcntl-safer.h: Likewise.
5360         * lib/fcntl.in.h: Likewise.
5361         * lib/fd-safer.c: Likewise.
5362         * lib/fflush.c: Likewise.
5363         * lib/file-has-acl.c: Likewise.
5364         * lib/file-set.c: Likewise.
5365         * lib/file-type.c: Likewise.
5366         * lib/file-type.h: Likewise.
5367         * lib/fileblocks.c: Likewise.
5368         * lib/filemode.c: Likewise.
5369         * lib/filemode.h: Likewise.
5370         * lib/filename.h: Likewise.
5371         * lib/filenamecat.c: Likewise.
5372         * lib/filenamecat.h: Likewise.
5373         * lib/findprog.c: Likewise.
5374         * lib/findprog.h: Likewise.
5375         * lib/float.in.h: Likewise.
5376         * lib/floor.c: Likewise.
5377         * lib/floorf.c: Likewise.
5378         * lib/floorl.c: Likewise.
5379         * lib/fopen-safer.c: Likewise.
5380         * lib/fopen.c: Likewise.
5381         * lib/fpending.c: Likewise.
5382         * lib/fpending.h: Likewise.
5383         * lib/fprintf.c: Likewise.
5384         * lib/fprintftime.h: Likewise.
5385         * lib/fpucw.h: Likewise.
5386         * lib/fpurge.c: Likewise.
5387         * lib/fpurge.h: Likewise.
5388         * lib/freadable.c: Likewise.
5389         * lib/freadable.h: Likewise.
5390         * lib/freadahead.c: Likewise.
5391         * lib/freadahead.h: Likewise.
5392         * lib/freading.c: Likewise.
5393         * lib/freading.h: Likewise.
5394         * lib/free.c: Likewise.
5395         * lib/freopen.c: Likewise.
5396         * lib/frexp.c: Likewise.
5397         * lib/frexpl.c: Likewise.
5398         * lib/fseek.c: Likewise.
5399         * lib/fseterr.c: Likewise.
5400         * lib/fseterr.h: Likewise.
5401         * lib/fstatat.c: Likewise.
5402         * lib/fstrcmp.c: Likewise.
5403         * lib/fstrcmp.h: Likewise.
5404         * lib/fsusage.c: Likewise.
5405         * lib/fsusage.h: Likewise.
5406         * lib/ftell.c: Likewise.
5407         * lib/ftello.c: Likewise.
5408         * lib/fts-cycle.c: Likewise.
5409         * lib/fts.c: Likewise.
5410         * lib/fts_.h: Likewise.
5411         * lib/full-read.c: Likewise.
5412         * lib/full-read.h: Likewise.
5413         * lib/full-write.c: Likewise.
5414         * lib/full-write.h: Likewise.
5415         * lib/fwritable.c: Likewise.
5416         * lib/fwritable.h: Likewise.
5417         * lib/fwriteerror.c: Likewise.
5418         * lib/fwriteerror.h: Likewise.
5419         * lib/fwriting.c: Likewise.
5420         * lib/fwriting.h: Likewise.
5421         * lib/gcd.c: Likewise.
5422         * lib/gcd.h: Likewise.
5423         * lib/getcwd.c: Likewise.
5424         * lib/getdate.h: Likewise.
5425         * lib/getdate.y: Likewise.
5426         * lib/getdomainname.c: Likewise.
5427         * lib/getdomainname.h: Likewise.
5428         * lib/getgroups.c: Likewise.
5429         * lib/gethostname.c: Likewise.
5430         * lib/gethrxtime.c: Likewise.
5431         * lib/gethrxtime.h: Likewise.
5432         * lib/getloadavg.c: Likewise.
5433         * lib/getndelim2.c: Likewise.
5434         * lib/getndelim2.h: Likewise.
5435         * lib/getnline.c: Likewise.
5436         * lib/getnline.h: Likewise.
5437         * lib/getopt.c: Likewise.
5438         * lib/getopt.in.h: Likewise.
5439         * lib/getopt1.c: Likewise.
5440         * lib/getopt_int.h: Likewise.
5441         * lib/getpagesize.h: Likewise.
5442         * lib/getsubopt.c: Likewise.
5443         * lib/gettime.c: Likewise.
5444         * lib/getugroups.c: Likewise.
5445         * lib/getugroups.h: Likewise.
5446         * lib/getusershell.c: Likewise.
5447         * lib/gl_anyavltree_list1.h: Likewise.
5448         * lib/gl_anyavltree_list2.h: Likewise.
5449         * lib/gl_anyhash_list1.h: Likewise.
5450         * lib/gl_anyhash_list2.h: Likewise.
5451         * lib/gl_anylinked_list1.h: Likewise.
5452         * lib/gl_anylinked_list2.h: Likewise.
5453         * lib/gl_anyrbtree_list1.h: Likewise.
5454         * lib/gl_anyrbtree_list2.h: Likewise.
5455         * lib/gl_anytree_list1.h: Likewise.
5456         * lib/gl_anytree_list2.h: Likewise.
5457         * lib/gl_anytree_oset.h: Likewise.
5458         * lib/gl_anytreehash_list1.h: Likewise.
5459         * lib/gl_anytreehash_list2.h: Likewise.
5460         * lib/gl_array_list.c: Likewise.
5461         * lib/gl_array_list.h: Likewise.
5462         * lib/gl_array_oset.c: Likewise.
5463         * lib/gl_array_oset.h: Likewise.
5464         * lib/gl_avltree_list.c: Likewise.
5465         * lib/gl_avltree_list.h: Likewise.
5466         * lib/gl_avltree_oset.c: Likewise.
5467         * lib/gl_avltree_oset.h: Likewise.
5468         * lib/gl_avltreehash_list.c: Likewise.
5469         * lib/gl_avltreehash_list.h: Likewise.
5470         * lib/gl_carray_list.c: Likewise.
5471         * lib/gl_carray_list.h: Likewise.
5472         * lib/gl_linked_list.c: Likewise.
5473         * lib/gl_linked_list.h: Likewise.
5474         * lib/gl_linkedhash_list.c: Likewise.
5475         * lib/gl_linkedhash_list.h: Likewise.
5476         * lib/gl_list.c: Likewise.
5477         * lib/gl_list.h: Likewise.
5478         * lib/gl_oset.c: Likewise.
5479         * lib/gl_oset.h: Likewise.
5480         * lib/gl_rbtree_list.c: Likewise.
5481         * lib/gl_rbtree_list.h: Likewise.
5482         * lib/gl_rbtree_oset.c: Likewise.
5483         * lib/gl_rbtree_oset.h: Likewise.
5484         * lib/gl_rbtreehash_list.c: Likewise.
5485         * lib/gl_rbtreehash_list.h: Likewise.
5486         * lib/gl_sublist.c: Likewise.
5487         * lib/gl_sublist.h: Likewise.
5488         * lib/group-member.c: Likewise.
5489         * lib/group-member.h: Likewise.
5490         * lib/hard-locale.c: Likewise.
5491         * lib/hard-locale.h: Likewise.
5492         * lib/hash-pjw.c: Likewise.
5493         * lib/hash-pjw.h: Likewise.
5494         * lib/hash-triple.c: Likewise.
5495         * lib/hash.c: Likewise.
5496         * lib/hash.h: Likewise.
5497         * lib/human.c: Likewise.
5498         * lib/human.h: Likewise.
5499         * lib/i-ring.c: Likewise.
5500         * lib/i-ring.h: Likewise.
5501         * lib/idcache.c: Likewise.
5502         * lib/imaxabs.c: Likewise.
5503         * lib/imaxdiv.c: Likewise.
5504         * lib/inet_pton.c: Likewise.
5505         * lib/inet_pton.h: Likewise.
5506         * lib/intprops.h: Likewise.
5507         * lib/inttostr.c: Likewise.
5508         * lib/inttostr.h: Likewise.
5509         * lib/inttypes.in.h: Likewise.
5510         * lib/isapipe.c: Likewise.
5511         * lib/isdir.c: Likewise.
5512         * lib/isnan.c: Likewise.
5513         * lib/isnan.h: Likewise.
5514         * lib/isnanf.c: Likewise.
5515         * lib/isnanf.h: Likewise.
5516         * lib/isnanl-nolibm.h: Likewise.
5517         * lib/isnanl.c: Likewise.
5518         * lib/isnanl.h: Likewise.
5519         * lib/javacomp.c: Likewise.
5520         * lib/javacomp.h: Likewise.
5521         * lib/javaexec.c: Likewise.
5522         * lib/javaexec.h: Likewise.
5523         * lib/javaversion.c: Likewise.
5524         * lib/javaversion.h: Likewise.
5525         * lib/javaversion.java: Likewise.
5526         * lib/lbrkprop.h: Likewise.
5527         * lib/lchmod.h: Likewise.
5528         * lib/lchown.c: Likewise.
5529         * lib/ldexpl.c: Likewise.
5530         * lib/linebreak.c: Likewise.
5531         * lib/linebreak.h: Likewise.
5532         * lib/linebuffer.c: Likewise.
5533         * lib/linebuffer.h: Likewise.
5534         * lib/locale.in.h: Likewise.
5535         * lib/logl.c: Likewise.
5536         * lib/long-options.c: Likewise.
5537         * lib/long-options.h: Likewise.
5538         * lib/lstat.c: Likewise.
5539         * lib/lstat.h: Likewise.
5540         * lib/math.in.h: Likewise.
5541         * lib/mbchar.c: Likewise.
5542         * lib/mbchar.h: Likewise.
5543         * lib/mbfile.h: Likewise.
5544         * lib/mbiter.h: Likewise.
5545         * lib/mbscasecmp.c: Likewise.
5546         * lib/mbscasestr.c: Likewise.
5547         * lib/mbschr.c: Likewise.
5548         * lib/mbscspn.c: Likewise.
5549         * lib/mbslen.c: Likewise.
5550         * lib/mbsncasecmp.c: Likewise.
5551         * lib/mbsnlen.c: Likewise.
5552         * lib/mbspbrk.c: Likewise.
5553         * lib/mbspcasecmp.c: Likewise.
5554         * lib/mbsrchr.c: Likewise.
5555         * lib/mbssep.c: Likewise.
5556         * lib/mbsspn.c: Likewise.
5557         * lib/mbsstr.c: Likewise.
5558         * lib/mbstok_r.c: Likewise.
5559         * lib/mbswidth.c: Likewise.
5560         * lib/mbswidth.h: Likewise.
5561         * lib/mbuiter.h: Likewise.
5562         * lib/memcasecmp.c: Likewise.
5563         * lib/memcasecmp.h: Likewise.
5564         * lib/memchr.c: Likewise.
5565         * lib/memcmp.c: Likewise.
5566         * lib/memcoll.c: Likewise.
5567         * lib/memcoll.h: Likewise.
5568         * lib/memcpy.c: Likewise.
5569         * lib/memrchr.c: Likewise.
5570         * lib/mkancesdirs.c: Likewise.
5571         * lib/mkdir-p.c: Likewise.
5572         * lib/mkdir-p.h: Likewise.
5573         * lib/mkdir.c: Likewise.
5574         * lib/mkdirat.c: Likewise.
5575         * lib/mkdtemp.c: Likewise.
5576         * lib/mkstemp-safer.c: Likewise.
5577         * lib/mkstemp.c: Likewise.
5578         * lib/modechange.c: Likewise.
5579         * lib/modechange.h: Likewise.
5580         * lib/mountlist.c: Likewise.
5581         * lib/mountlist.h: Likewise.
5582         * lib/mpsort.c: Likewise.
5583         * lib/nanosleep.c: Likewise.
5584         * lib/obstack.c: Likewise.
5585         * lib/obstack.h: Likewise.
5586         * lib/open-safer.c: Likewise.
5587         * lib/open.c: Likewise.
5588         * lib/openat-die.c: Likewise.
5589         * lib/openat-priv.h: Likewise.
5590         * lib/openat-proc.c: Likewise.
5591         * lib/openat.c: Likewise.
5592         * lib/openat.h: Likewise.
5593         * lib/pagealign_alloc.c: Likewise.
5594         * lib/pagealign_alloc.h: Likewise.
5595         * lib/physmem.c: Likewise.
5596         * lib/physmem.h: Likewise.
5597         * lib/pipe-safer.c: Likewise.
5598         * lib/pipe.c: Likewise.
5599         * lib/pipe.h: Likewise.
5600         * lib/posixtm.c: Likewise.
5601         * lib/posixtm.h: Likewise.
5602         * lib/posixver.c: Likewise.
5603         * lib/printf-frexp.c: Likewise.
5604         * lib/printf-frexp.h: Likewise.
5605         * lib/printf-frexpl.c: Likewise.
5606         * lib/printf-frexpl.h: Likewise.
5607         * lib/printf.c: Likewise.
5608         * lib/progname.c: Likewise.
5609         * lib/progname.h: Likewise.
5610         * lib/progreloc.c: Likewise.
5611         * lib/putenv.c: Likewise.
5612         * lib/quote.c: Likewise.
5613         * lib/quote.h: Likewise.
5614         * lib/quotearg.c: Likewise.
5615         * lib/quotearg.h: Likewise.
5616         * lib/raise.c: Likewise.
5617         * lib/readline.c: Likewise.
5618         * lib/readline.h: Likewise.
5619         * lib/readlink.c: Likewise.
5620         * lib/readtokens.c: Likewise.
5621         * lib/readtokens.h: Likewise.
5622         * lib/readtokens0.c: Likewise.
5623         * lib/readtokens0.h: Likewise.
5624         * lib/readutmp.c: Likewise.
5625         * lib/readutmp.h: Likewise.
5626         * lib/realloc.c: Likewise.
5627         * lib/relocwrapper.c: Likewise.
5628         * lib/rename-dest-slash.c: Likewise.
5629         * lib/rename.c: Likewise.
5630         * lib/rmdir.c: Likewise.
5631         * lib/rpmatch.c: Likewise.
5632         * lib/safe-read.c: Likewise.
5633         * lib/safe-read.h: Likewise.
5634         * lib/safe-write.c: Likewise.
5635         * lib/safe-write.h: Likewise.
5636         * lib/same-inode.h: Likewise.
5637         * lib/same.c: Likewise.
5638         * lib/same.h: Likewise.
5639         * lib/save-cwd.c: Likewise.
5640         * lib/save-cwd.h: Likewise.
5641         * lib/savedir.c: Likewise.
5642         * lib/savedir.h: Likewise.
5643         * lib/savewd.c: Likewise.
5644         * lib/savewd.h: Likewise.
5645         * lib/search.in.h: Likewise.
5646         * lib/setenv.c: Likewise.
5647         * lib/setenv.h: Likewise.
5648         * lib/settime.c: Likewise.
5649         * lib/sh-quote.c: Likewise.
5650         * lib/sh-quote.h: Likewise.
5651         * lib/sig2str.c: Likewise.
5652         * lib/sig2str.h: Likewise.
5653         * lib/signal.in.h: Likewise.
5654         * lib/signbitd.c: Likewise.
5655         * lib/signbitf.c: Likewise.
5656         * lib/signbitl.c: Likewise.
5657         * lib/sigprocmask.c: Likewise.
5658         * lib/sincosl.c: Likewise.
5659         * lib/sleep.c: Likewise.
5660         * lib/sprintf.c: Likewise.
5661         * lib/sqrtl.c: Likewise.
5662         * lib/stat-time.h: Likewise.
5663         * lib/stdio--.h: Likewise.
5664         * lib/stdio-safer.h: Likewise.
5665         * lib/stdlib--.h: Likewise.
5666         * lib/stdlib-safer.h: Likewise.
5667         * lib/stdlib.in.h: Likewise.
5668         * lib/stpcpy.c: Likewise.
5669         * lib/stpncpy.c: Likewise.
5670         * lib/strchrnul.c: Likewise.
5671         * lib/strcspn.c: Likewise.
5672         * lib/strerror.c: Likewise.
5673         * lib/strftime.c: Likewise.
5674         * lib/strftime.h: Likewise.
5675         * lib/striconveh.c: Likewise.
5676         * lib/striconveh.h: Likewise.
5677         * lib/striconveha.c: Likewise.
5678         * lib/striconveha.h: Likewise.
5679         * lib/stripslash.c: Likewise.
5680         * lib/strnlen1.c: Likewise.
5681         * lib/strnlen1.h: Likewise.
5682         * lib/strtod.c: Likewise.
5683         * lib/strtoimax.c: Likewise.
5684         * lib/strtok_r.c: Likewise.
5685         * lib/strtol.c: Likewise.
5686         * lib/strtoll.c: Likewise.
5687         * lib/strtoul.c: Likewise.
5688         * lib/strtoull.c: Likewise.
5689         * lib/sysexits.in.h: Likewise.
5690         * lib/tempname.c: Likewise.
5691         * lib/tempname.h: Likewise.
5692         * lib/timespec.h: Likewise.
5693         * lib/tls.c: Likewise.
5694         * lib/tls.h: Likewise.
5695         * lib/tmpdir.c: Likewise.
5696         * lib/tmpdir.h: Likewise.
5697         * lib/tmpfile-safer.c: Likewise.
5698         * lib/tmpfile.c: Likewise.
5699         * lib/trigl.c: Likewise.
5700         * lib/trigl.h: Likewise.
5701         * lib/trim.c: Likewise.
5702         * lib/trim.h: Likewise.
5703         * lib/trunc.c: Likewise.
5704         * lib/truncf.c: Likewise.
5705         * lib/truncl.c: Likewise.
5706         * lib/tsearch.c: Likewise.
5707         * lib/unicodeio.c: Likewise.
5708         * lib/unicodeio.h: Likewise.
5709         * lib/unistd--.h: Likewise.
5710         * lib/unistd-safer.h: Likewise.
5711         * lib/unistdio/ulc-fprintf.c: Likewise.
5712         * lib/unistdio/ulc-vfprintf.c: Likewise.
5713         * lib/unlinkdir.c: Likewise.
5714         * lib/unlinkdir.h: Likewise.
5715         * lib/unlocked-io.h: Likewise.
5716         * lib/unsetenv.c: Likewise.
5717         * lib/userspec.c: Likewise.
5718         * lib/utime.c: Likewise.
5719         * lib/utimecmp.c: Likewise.
5720         * lib/utimecmp.h: Likewise.
5721         * lib/utimens.c: Likewise.
5722         * lib/verify.h: Likewise.
5723         * lib/verror.c: Likewise.
5724         * lib/verror.h: Likewise.
5725         * lib/version-etc-fsf.c: Likewise.
5726         * lib/version-etc.c: Likewise.
5727         * lib/version-etc.h: Likewise.
5728         * lib/vfprintf.c: Likewise.
5729         * lib/vprintf.c: Likewise.
5730         * lib/vsprintf.c: Likewise.
5731         * lib/w32spawn.h: Likewise.
5732         * lib/wait-process.c: Likewise.
5733         * lib/wait-process.h: Likewise.
5734         * lib/wcwidth.c: Likewise.
5735         * lib/write-any-file.c: Likewise.
5736         * lib/xalloc-die.c: Likewise.
5737         * lib/xalloc.h: Likewise.
5738         * lib/xasprintf.c: Likewise.
5739         * lib/xgetcwd.c: Likewise.
5740         * lib/xgetcwd.h: Likewise.
5741         * lib/xgetdomainname.c: Likewise.
5742         * lib/xgetdomainname.h: Likewise.
5743         * lib/xgethostname.c: Likewise.
5744         * lib/xmalloc.c: Likewise.
5745         * lib/xmalloca.c: Likewise.
5746         * lib/xmalloca.h: Likewise.
5747         * lib/xmemcoll.c: Likewise.
5748         * lib/xnanosleep.c: Likewise.
5749         * lib/xreadlink.c: Likewise.
5750         * lib/xreadlink.h: Likewise.
5751         * lib/xsetenv.c: Likewise.
5752         * lib/xsetenv.h: Likewise.
5753         * lib/xstriconv.c: Likewise.
5754         * lib/xstriconv.h: Likewise.
5755         * lib/xstrndup.c: Likewise.
5756         * lib/xstrndup.h: Likewise.
5757         * lib/xstrtod.c: Likewise.
5758         * lib/xstrtod.h: Likewise.
5759         * lib/xstrtol-error.c: Likewise.
5760         * lib/xstrtol.c: Likewise.
5761         * lib/xstrtol.h: Likewise.
5762         * lib/xtime.h: Likewise.
5763         * lib/xvasprintf.c: Likewise.
5764         * lib/xvasprintf.h: Likewise.
5765         * lib/yesno.c: Likewise.
5766         * lib/yesno.h: Likewise.
5767         * posix-modules: Likewise.
5768         * tests/test-alloca-opt.c: Likewise.
5769         * tests/test-arcfour.c: Likewise.
5770         * tests/test-arctwo.c: Likewise.
5771         * tests/test-argmatch.c: Likewise.
5772         * tests/test-argp-2.sh: Likewise.
5773         * tests/test-argp.c: Likewise.
5774         * tests/test-arpa_inet.c: Likewise.
5775         * tests/test-array_list.c: Likewise.
5776         * tests/test-array_oset.c: Likewise.
5777         * tests/test-atexit.c: Likewise.
5778         * tests/test-avltree_list.c: Likewise.
5779         * tests/test-avltree_oset.c: Likewise.
5780         * tests/test-avltreehash_list.c: Likewise.
5781         * tests/test-base64.c: Likewise.
5782         * tests/test-binary-io.c: Likewise.
5783         * tests/test-byteswap.c: Likewise.
5784         * tests/test-c-ctype.c: Likewise.
5785         * tests/test-c-strcasecmp.c: Likewise.
5786         * tests/test-c-strcasestr.c: Likewise.
5787         * tests/test-c-strncasecmp.c: Likewise.
5788         * tests/test-c-strstr.c: Likewise.
5789         * tests/test-canonicalize-lgpl.c: Likewise.
5790         * tests/test-canonicalize.c: Likewise.
5791         * tests/test-carray_list.c: Likewise.
5792         * tests/test-ceilf.c: Likewise.
5793         * tests/test-ceill.c: Likewise.
5794         * tests/test-count-one-bits.c: Likewise.
5795         * tests/test-crc.c: Likewise.
5796         * tests/test-dirname.c: Likewise.
5797         * tests/test-fbufmode.c: Likewise.
5798         * tests/test-fcntl.c: Likewise.
5799         * tests/test-fflush.c: Likewise.
5800         * tests/test-floorf.c: Likewise.
5801         * tests/test-floorl.c: Likewise.
5802         * tests/test-fopen.c: Likewise.
5803         * tests/test-fprintf-posix.c: Likewise.
5804         * tests/test-fprintf-posix.h: Likewise.
5805         * tests/test-fpurge.c: Likewise.
5806         * tests/test-freadable.c: Likewise.
5807         * tests/test-freadahead.c: Likewise.
5808         * tests/test-freading.c: Likewise.
5809         * tests/test-freopen.c: Likewise.
5810         * tests/test-frexp.c: Likewise.
5811         * tests/test-frexpl.c: Likewise.
5812         * tests/test-fseek.c: Likewise.
5813         * tests/test-fseeko.c: Likewise.
5814         * tests/test-fseterr.c: Likewise.
5815         * tests/test-fstrcmp.c: Likewise.
5816         * tests/test-ftell.c: Likewise.
5817         * tests/test-ftello.c: Likewise.
5818         * tests/test-fwritable.c: Likewise.
5819         * tests/test-fwriting.c: Likewise.
5820         * tests/test-getaddrinfo.c: Likewise.
5821         * tests/test-getpass.c: Likewise.
5822         * tests/test-gettimeofday.c: Likewise.
5823         * tests/test-hmac-md5.c: Likewise.
5824         * tests/test-hmac-sha1.c: Likewise.
5825         * tests/test-iconv.c: Likewise.
5826         * tests/test-iconvme.c: Likewise.
5827         * tests/test-inttypes.c: Likewise.
5828         * tests/test-isnan.c: Likewise.
5829         * tests/test-isnanf.c: Likewise.
5830         * tests/test-isnanl-nolibm.c: Likewise.
5831         * tests/test-isnanl.c: Likewise.
5832         * tests/test-isnanl.h: Likewise.
5833         * tests/test-ldexpl.c: Likewise.
5834         * tests/test-linked_list.c: Likewise.
5835         * tests/test-linkedhash_list.c: Likewise.
5836         * tests/test-locale.c: Likewise.
5837         * tests/test-localename.c: Likewise.
5838         * tests/test-lock.c: Likewise.
5839         * tests/test-lseek.c: Likewise.
5840         * tests/test-malloca.c: Likewise.
5841         * tests/test-math.c: Likewise.
5842         * tests/test-mbscasecmp.c: Likewise.
5843         * tests/test-mbscasestr1.c: Likewise.
5844         * tests/test-mbscasestr2.c: Likewise.
5845         * tests/test-mbscasestr3.c: Likewise.
5846         * tests/test-mbscasestr4.c: Likewise.
5847         * tests/test-mbschr.c: Likewise.
5848         * tests/test-mbscspn.c: Likewise.
5849         * tests/test-mbsncasecmp.c: Likewise.
5850         * tests/test-mbspbrk.c: Likewise.
5851         * tests/test-mbspcasecmp.c: Likewise.
5852         * tests/test-mbsrchr.c: Likewise.
5853         * tests/test-mbsspn.c: Likewise.
5854         * tests/test-mbsstr1.c: Likewise.
5855         * tests/test-mbsstr2.c: Likewise.
5856         * tests/test-mbsstr3.c: Likewise.
5857         * tests/test-md5.c: Likewise.
5858         * tests/test-memmem.c: Likewise.
5859         * tests/test-netinet_in.c: Likewise.
5860         * tests/test-open.c: Likewise.
5861         * tests/test-printf-frexp.c: Likewise.
5862         * tests/test-printf-frexpl.c: Likewise.
5863         * tests/test-printf-posix.c: Likewise.
5864         * tests/test-printf-posix.h: Likewise.
5865         * tests/test-rbtree_list.c: Likewise.
5866         * tests/test-rbtree_oset.c: Likewise.
5867         * tests/test-rbtreehash_list.c: Likewise.
5868         * tests/test-read-file.c: Likewise.
5869         * tests/test-rijndael.c: Likewise.
5870         * tests/test-search.c: Likewise.
5871         * tests/test-signbit.c: Likewise.
5872         * tests/test-sleep.c: Likewise.
5873         * tests/test-snprintf-posix.c: Likewise.
5874         * tests/test-snprintf-posix.h: Likewise.
5875         * tests/test-snprintf.c: Likewise.
5876         * tests/test-sprintf-posix.c: Likewise.
5877         * tests/test-sprintf-posix.h: Likewise.
5878         * tests/test-stat-time.c: Likewise.
5879         * tests/test-stdbool.c: Likewise.
5880         * tests/test-stdint.c: Likewise.
5881         * tests/test-stdio.c: Likewise.
5882         * tests/test-stdlib.c: Likewise.
5883         * tests/test-stpncpy.c: Likewise.
5884         * tests/test-strcasestr.c: Likewise.
5885         * tests/test-striconv.c: Likewise.
5886         * tests/test-striconveh.c: Likewise.
5887         * tests/test-striconveha.c: Likewise.
5888         * tests/test-string.c: Likewise.
5889         * tests/test-sys_select.c: Likewise.
5890         * tests/test-sys_socket.c: Likewise.
5891         * tests/test-sys_stat.c: Likewise.
5892         * tests/test-sys_time.c: Likewise.
5893         * tests/test-sysexits.c: Likewise.
5894         * tests/test-time.c: Likewise.
5895         * tests/test-tls.c: Likewise.
5896         * tests/test-trunc.c: Likewise.
5897         * tests/test-truncf.c: Likewise.
5898         * tests/test-truncl.c: Likewise.
5899         * tests/test-unistd.c: Likewise.
5900         * tests/test-vasnprintf-posix.c: Likewise.
5901         * tests/test-vasnprintf-posix2.c: Likewise.
5902         * tests/test-vasnprintf.c: Likewise.
5903         * tests/test-vasprintf-posix.c: Likewise.
5904         * tests/test-vasprintf.c: Likewise.
5905         * tests/test-verify.c: Likewise.
5906         * tests/test-vfprintf-posix.c: Likewise.
5907         * tests/test-vprintf-posix.c: Likewise.
5908         * tests/test-vsnprintf-posix.c: Likewise.
5909         * tests/test-vsnprintf.c: Likewise.
5910         * tests/test-vsprintf-posix.c: Likewise.
5911         * tests/test-wchar.c: Likewise.
5912         * tests/test-wctype.c: Likewise.
5913         * tests/test-wcwidth.c: Likewise.
5914         * tests/test-xstrtol.c: Likewise.
5915         * tests/test-xvasprintf.c: Likewise.
5916         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
5917         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
5918         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
5919         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
5920         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
5921         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
5922         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
5923         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
5924         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
5925         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
5926         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
5927         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
5928         * tests/uniname/test-uninames.c: Likewise.
5929         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
5930         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
5931         * tests/unistdio/test-u16-printf1.h: Likewise.
5932         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
5933         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
5934         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
5935         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
5936         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
5937         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
5938         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
5939         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
5940         * tests/unistdio/test-u32-printf1.h: Likewise.
5941         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
5942         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
5943         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
5944         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
5945         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
5946         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
5947         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
5948         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
5949         * tests/unistdio/test-u8-printf1.h: Likewise.
5950         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
5951         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
5952         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
5953         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
5954         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
5955         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
5956         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
5957         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
5958         * tests/unistdio/test-ulc-printf1.h: Likewise.
5959         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
5960         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
5961         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
5962         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
5963         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
5964         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
5965         * tests/uniwidth/test-u16-strwidth.c: Likewise.
5966         * tests/uniwidth/test-u16-width.c: Likewise.
5967         * tests/uniwidth/test-u32-strwidth.c: Likewise.
5968         * tests/uniwidth/test-u32-width.c: Likewise.
5969         * tests/uniwidth/test-u8-strwidth.c: Likewise.
5970         * tests/uniwidth/test-u8-width.c: Likewise.
5971         * tests/uniwidth/test-uc_width.c: Likewise.
5972         * config/srclist-update: Likewise.
5973         (fixlicense): Update to GPLv3+.
5974
5975         Change copyright notice from LGPLv2.1+ to LGPLv3+.
5976         * tests/test-tsearch.c: Change copyright notice.
5977
5978         Change copyright notice from LGPLv2.0+ to LGPLv3+.
5979         * lib/c-strcaseeq.h: Change copyright notice.
5980         * lib/streq.h: Likewise.
5981         * lib/uniconv.h: Likewise.
5982         * lib/uniconv/u-conv-from-enc.h: Likewise.
5983         * lib/uniconv/u-conv-to-enc.h: Likewise.
5984         * lib/uniconv/u-strconv-from-enc.h: Likewise.
5985         * lib/uniconv/u-strconv-to-enc.h: Likewise.
5986         * lib/uniconv/u16-conv-from-enc.c: Likewise.
5987         * lib/uniconv/u16-conv-to-enc.c: Likewise.
5988         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
5989         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
5990         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
5991         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
5992         * lib/uniconv/u32-conv-from-enc.c: Likewise.
5993         * lib/uniconv/u32-conv-to-enc.c: Likewise.
5994         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
5995         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
5996         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
5997         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
5998         * lib/uniconv/u8-conv-from-enc.c: Likewise.
5999         * lib/uniconv/u8-conv-to-enc.c: Likewise.
6000         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
6001         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
6002         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
6003         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
6004         * lib/uniname.h: Likewise.
6005         * lib/uniname/uniname.c: Likewise.
6006         * lib/unistdio.h: Likewise.
6007         * lib/unistdio/u-asnprintf.h: Likewise.
6008         * lib/unistdio/u-asprintf.h: Likewise.
6009         * lib/unistdio/u-printf-args.c: Likewise.
6010         * lib/unistdio/u-printf-args.h: Likewise.
6011         * lib/unistdio/u-printf-parse.h: Likewise.
6012         * lib/unistdio/u-snprintf.h: Likewise.
6013         * lib/unistdio/u-sprintf.h: Likewise.
6014         * lib/unistdio/u-vasprintf.h: Likewise.
6015         * lib/unistdio/u-vsnprintf.h: Likewise.
6016         * lib/unistdio/u-vsprintf.h: Likewise.
6017         * lib/unistdio/u16-asnprintf.c: Likewise.
6018         * lib/unistdio/u16-asprintf.c: Likewise.
6019         * lib/unistdio/u16-printf-parse.c: Likewise.
6020         * lib/unistdio/u16-snprintf.c: Likewise.
6021         * lib/unistdio/u16-sprintf.c: Likewise.
6022         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
6023         * lib/unistdio/u16-u16-asprintf.c: Likewise.
6024         * lib/unistdio/u16-u16-snprintf.c: Likewise.
6025         * lib/unistdio/u16-u16-sprintf.c: Likewise.
6026         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
6027         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
6028         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
6029         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
6030         * lib/unistdio/u16-vasnprintf.c: Likewise.
6031         * lib/unistdio/u16-vasprintf.c: Likewise.
6032         * lib/unistdio/u16-vsnprintf.c: Likewise.
6033         * lib/unistdio/u16-vsprintf.c: Likewise.
6034         * lib/unistdio/u32-asnprintf.c: Likewise.
6035         * lib/unistdio/u32-asprintf.c: Likewise.
6036         * lib/unistdio/u32-printf-parse.c: Likewise.
6037         * lib/unistdio/u32-snprintf.c: Likewise.
6038         * lib/unistdio/u32-sprintf.c: Likewise.
6039         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
6040         * lib/unistdio/u32-u32-asprintf.c: Likewise.
6041         * lib/unistdio/u32-u32-snprintf.c: Likewise.
6042         * lib/unistdio/u32-u32-sprintf.c: Likewise.
6043         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
6044         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
6045         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
6046         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
6047         * lib/unistdio/u32-vasnprintf.c: Likewise.
6048         * lib/unistdio/u32-vasprintf.c: Likewise.
6049         * lib/unistdio/u32-vsnprintf.c: Likewise.
6050         * lib/unistdio/u32-vsprintf.c: Likewise.
6051         * lib/unistdio/u8-asnprintf.c: Likewise.
6052         * lib/unistdio/u8-asprintf.c: Likewise.
6053         * lib/unistdio/u8-printf-parse.c: Likewise.
6054         * lib/unistdio/u8-snprintf.c: Likewise.
6055         * lib/unistdio/u8-sprintf.c: Likewise.
6056         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
6057         * lib/unistdio/u8-u8-asprintf.c: Likewise.
6058         * lib/unistdio/u8-u8-snprintf.c: Likewise.
6059         * lib/unistdio/u8-u8-sprintf.c: Likewise.
6060         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
6061         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
6062         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
6063         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
6064         * lib/unistdio/u8-vasnprintf.c: Likewise.
6065         * lib/unistdio/u8-vasprintf.c: Likewise.
6066         * lib/unistdio/u8-vsnprintf.c: Likewise.
6067         * lib/unistdio/u8-vsprintf.c: Likewise.
6068         * lib/unistdio/ulc-asnprintf.c: Likewise.
6069         * lib/unistdio/ulc-asprintf.c: Likewise.
6070         * lib/unistdio/ulc-printf-parse.c: Likewise.
6071         * lib/unistdio/ulc-snprintf.c: Likewise.
6072         * lib/unistdio/ulc-sprintf.c: Likewise.
6073         * lib/unistdio/ulc-vasnprintf.c: Likewise.
6074         * lib/unistdio/ulc-vasprintf.c: Likewise.
6075         * lib/unistdio/ulc-vsnprintf.c: Likewise.
6076         * lib/unistdio/ulc-vsprintf.c: Likewise.
6077         * lib/unistr.h: Likewise.
6078         * lib/unistr/u-cpy-alloc.h: Likewise.
6079         * lib/unistr/u-cpy.h: Likewise.
6080         * lib/unistr/u-endswith.h: Likewise.
6081         * lib/unistr/u-move.h: Likewise.
6082         * lib/unistr/u-set.h: Likewise.
6083         * lib/unistr/u-startswith.h: Likewise.
6084         * lib/unistr/u-stpcpy.h: Likewise.
6085         * lib/unistr/u-stpncpy.h: Likewise.
6086         * lib/unistr/u-strcat.h: Likewise.
6087         * lib/unistr/u-strcpy.h: Likewise.
6088         * lib/unistr/u-strcspn.h: Likewise.
6089         * lib/unistr/u-strdup.h: Likewise.
6090         * lib/unistr/u-strlen.h: Likewise.
6091         * lib/unistr/u-strncat.h: Likewise.
6092         * lib/unistr/u-strncpy.h: Likewise.
6093         * lib/unistr/u-strnlen.h: Likewise.
6094         * lib/unistr/u-strpbrk.h: Likewise.
6095         * lib/unistr/u-strspn.h: Likewise.
6096         * lib/unistr/u-strstr.h: Likewise.
6097         * lib/unistr/u-strtok.h: Likewise.
6098         * lib/unistr/u16-check.c: Likewise.
6099         * lib/unistr/u16-chr.c: Likewise.
6100         * lib/unistr/u16-cmp.c: Likewise.
6101         * lib/unistr/u16-cpy-alloc.c: Likewise.
6102         * lib/unistr/u16-cpy.c: Likewise.
6103         * lib/unistr/u16-endswith.c: Likewise.
6104         * lib/unistr/u16-mblen.c: Likewise.
6105         * lib/unistr/u16-mbsnlen.c: Likewise.
6106         * lib/unistr/u16-mbtouc-aux.c: Likewise.
6107         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
6108         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
6109         * lib/unistr/u16-mbtouc.c: Likewise.
6110         * lib/unistr/u16-mbtoucr.c: Likewise.
6111         * lib/unistr/u16-move.c: Likewise.
6112         * lib/unistr/u16-next.c: Likewise.
6113         * lib/unistr/u16-prev.c: Likewise.
6114         * lib/unistr/u16-set.c: Likewise.
6115         * lib/unistr/u16-startswith.c: Likewise.
6116         * lib/unistr/u16-stpcpy.c: Likewise.
6117         * lib/unistr/u16-stpncpy.c: Likewise.
6118         * lib/unistr/u16-strcat.c: Likewise.
6119         * lib/unistr/u16-strchr.c: Likewise.
6120         * lib/unistr/u16-strcmp.c: Likewise.
6121         * lib/unistr/u16-strcpy.c: Likewise.
6122         * lib/unistr/u16-strcspn.c: Likewise.
6123         * lib/unistr/u16-strdup.c: Likewise.
6124         * lib/unistr/u16-strlen.c: Likewise.
6125         * lib/unistr/u16-strmblen.c: Likewise.
6126         * lib/unistr/u16-strmbtouc.c: Likewise.
6127         * lib/unistr/u16-strncat.c: Likewise.
6128         * lib/unistr/u16-strncmp.c: Likewise.
6129         * lib/unistr/u16-strncpy.c: Likewise.
6130         * lib/unistr/u16-strnlen.c: Likewise.
6131         * lib/unistr/u16-strpbrk.c: Likewise.
6132         * lib/unistr/u16-strrchr.c: Likewise.
6133         * lib/unistr/u16-strspn.c: Likewise.
6134         * lib/unistr/u16-strstr.c: Likewise.
6135         * lib/unistr/u16-strtok.c: Likewise.
6136         * lib/unistr/u16-to-u32.c: Likewise.
6137         * lib/unistr/u16-to-u8.c: Likewise.
6138         * lib/unistr/u16-uctomb-aux.c: Likewise.
6139         * lib/unistr/u16-uctomb.c: Likewise.
6140         * lib/unistr/u32-check.c: Likewise.
6141         * lib/unistr/u32-chr.c: Likewise.
6142         * lib/unistr/u32-cmp.c: Likewise.
6143         * lib/unistr/u32-cpy-alloc.c: Likewise.
6144         * lib/unistr/u32-cpy.c: Likewise.
6145         * lib/unistr/u32-endswith.c: Likewise.
6146         * lib/unistr/u32-mblen.c: Likewise.
6147         * lib/unistr/u32-mbsnlen.c: Likewise.
6148         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
6149         * lib/unistr/u32-mbtouc.c: Likewise.
6150         * lib/unistr/u32-mbtoucr.c: Likewise.
6151         * lib/unistr/u32-move.c: Likewise.
6152         * lib/unistr/u32-next.c: Likewise.
6153         * lib/unistr/u32-prev.c: Likewise.
6154         * lib/unistr/u32-set.c: Likewise.
6155         * lib/unistr/u32-startswith.c: Likewise.
6156         * lib/unistr/u32-stpcpy.c: Likewise.
6157         * lib/unistr/u32-stpncpy.c: Likewise.
6158         * lib/unistr/u32-strcat.c: Likewise.
6159         * lib/unistr/u32-strchr.c: Likewise.
6160         * lib/unistr/u32-strcmp.c: Likewise.
6161         * lib/unistr/u32-strcpy.c: Likewise.
6162         * lib/unistr/u32-strcspn.c: Likewise.
6163         * lib/unistr/u32-strdup.c: Likewise.
6164         * lib/unistr/u32-strlen.c: Likewise.
6165         * lib/unistr/u32-strmblen.c: Likewise.
6166         * lib/unistr/u32-strmbtouc.c: Likewise.
6167         * lib/unistr/u32-strncat.c: Likewise.
6168         * lib/unistr/u32-strncmp.c: Likewise.
6169         * lib/unistr/u32-strncpy.c: Likewise.
6170         * lib/unistr/u32-strnlen.c: Likewise.
6171         * lib/unistr/u32-strpbrk.c: Likewise.
6172         * lib/unistr/u32-strrchr.c: Likewise.
6173         * lib/unistr/u32-strspn.c: Likewise.
6174         * lib/unistr/u32-strstr.c: Likewise.
6175         * lib/unistr/u32-strtok.c: Likewise.
6176         * lib/unistr/u32-to-u16.c: Likewise.
6177         * lib/unistr/u32-to-u8.c: Likewise.
6178         * lib/unistr/u32-uctomb.c: Likewise.
6179         * lib/unistr/u8-check.c: Likewise.
6180         * lib/unistr/u8-chr.c: Likewise.
6181         * lib/unistr/u8-cmp.c: Likewise.
6182         * lib/unistr/u8-cpy-alloc.c: Likewise.
6183         * lib/unistr/u8-cpy.c: Likewise.
6184         * lib/unistr/u8-endswith.c: Likewise.
6185         * lib/unistr/u8-mblen.c: Likewise.
6186         * lib/unistr/u8-mbsnlen.c: Likewise.
6187         * lib/unistr/u8-mbtouc-aux.c: Likewise.
6188         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
6189         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
6190         * lib/unistr/u8-mbtouc.c: Likewise.
6191         * lib/unistr/u8-mbtoucr.c: Likewise.
6192         * lib/unistr/u8-move.c: Likewise.
6193         * lib/unistr/u8-next.c: Likewise.
6194         * lib/unistr/u8-prev.c: Likewise.
6195         * lib/unistr/u8-set.c: Likewise.
6196         * lib/unistr/u8-startswith.c: Likewise.
6197         * lib/unistr/u8-stpcpy.c: Likewise.
6198         * lib/unistr/u8-stpncpy.c: Likewise.
6199         * lib/unistr/u8-strcat.c: Likewise.
6200         * lib/unistr/u8-strchr.c: Likewise.
6201         * lib/unistr/u8-strcmp.c: Likewise.
6202         * lib/unistr/u8-strcpy.c: Likewise.
6203         * lib/unistr/u8-strcspn.c: Likewise.
6204         * lib/unistr/u8-strdup.c: Likewise.
6205         * lib/unistr/u8-strlen.c: Likewise.
6206         * lib/unistr/u8-strmblen.c: Likewise.
6207         * lib/unistr/u8-strmbtouc.c: Likewise.
6208         * lib/unistr/u8-strncat.c: Likewise.
6209         * lib/unistr/u8-strncmp.c: Likewise.
6210         * lib/unistr/u8-strncpy.c: Likewise.
6211         * lib/unistr/u8-strnlen.c: Likewise.
6212         * lib/unistr/u8-strpbrk.c: Likewise.
6213         * lib/unistr/u8-strrchr.c: Likewise.
6214         * lib/unistr/u8-strspn.c: Likewise.
6215         * lib/unistr/u8-strstr.c: Likewise.
6216         * lib/unistr/u8-strtok.c: Likewise.
6217         * lib/unistr/u8-to-u16.c: Likewise.
6218         * lib/unistr/u8-to-u32.c: Likewise.
6219         * lib/unistr/u8-uctomb-aux.c: Likewise.
6220         * lib/unistr/u8-uctomb.c: Likewise.
6221         * lib/unitypes.h: Likewise.
6222         * lib/uniwidth.h: Likewise.
6223         * lib/uniwidth/cjk.h: Likewise.
6224         * lib/uniwidth/u16-strwidth.c: Likewise.
6225         * lib/uniwidth/u16-width.c: Likewise.
6226         * lib/uniwidth/u32-strwidth.c: Likewise.
6227         * lib/uniwidth/u32-width.c: Likewise.
6228         * lib/uniwidth/u8-strwidth.c: Likewise.
6229         * lib/uniwidth/u8-width.c: Likewise.
6230         * lib/uniwidth/width.c: Likewise.
6231
6232 2007-10-07  Bruno Haible  <bruno@clisp.org>
6233
6234         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
6235         The file is still under LGPL (see modules/inttypes).
6236
6237 2007-10-06  Bruno Haible  <bruno@clisp.org>
6238
6239         * modules/trunc (Dependencies): Add 'extensions'.
6240         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
6241         Reported by Ben Pfaff <blp@gnu.org>.
6242
6243 2007-10-06  Bruno Haible  <bruno@clisp.org>
6244
6245         * modules/freopen-tests: New file.
6246         * tests/test-freopen.c: New file.
6247
6248         * modules/fopen-tests: New file.
6249         * tests/test-fopen.c: New file.
6250
6251         * modules/fopen: New file.
6252         * lib/fopen.c: New file.
6253         * m4/fopen.m4: New file.
6254         * modules/freopen: New file.
6255         * lib/freopen.c: New file.
6256         * m4/freopen.m4: New file.
6257         * lib/stdio.in.h (fopen, freopen): New declarations.
6258         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
6259         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
6260         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
6261         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
6262         * doc/functions/fopen.texi: Mention the 'fopen' module.
6263         * doc/functions/freopen.texi: Mention the 'freopen' module.
6264
6265 2007-10-06  Bruno Haible  <bruno@clisp.org>
6266
6267         * modules/open-tests: New file.
6268         * tests/test-open.c: New file.
6269
6270         * modules/open: New file.
6271         * lib/open.c: New file.
6272         * m4/open.m4: New file.
6273         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
6274         lib/open.c does.
6275         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
6276         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
6277         macros.
6278         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
6279         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
6280         REPLACE_OPEN.
6281         * doc/functions/open.texi: Mention the 'open' module.
6282
6283 2007-10-04  Bruno Haible  <bruno@clisp.org>
6284
6285         * modules/ceill-tests: New file.
6286         * tests/test-ceill.c: New file.
6287
6288         * modules/ceill: New file.
6289         * lib/ceill.c: Replace entire file.
6290         * m4/ceill.m4: New file.
6291         * lib/math.in.h (ceill): Replace declaration.
6292         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
6293         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
6294         * doc/functions/ceill.texi: Mention the 'ceill' module.
6295         * modules/mathl (Files): Remove lib/ceill.c.
6296         (Depends-on): Add ceill.
6297
6298 2007-10-04  Bruno Haible  <bruno@clisp.org>
6299
6300         * modules/ceilf-tests: New file.
6301         * tests/test-ceilf.c: New file.
6302
6303         * modules/ceilf: New file.
6304         * lib/ceil.c: New file.
6305         * lib/ceilf.c: New file.
6306         * m4/ceilf.m4: New file.
6307         * lib/math.in.h (ceilf): New declaration.
6308         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
6309         HAVE_DECL_CEILF.
6310         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
6311         HAVE_DECL_CEILF.
6312         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
6313
6314 2007-10-04  Bruno Haible  <bruno@clisp.org>
6315
6316         * modules/floorl-tests: New file.
6317         * tests/test-floorl.c: New file.
6318
6319         * modules/floorl: New file.
6320         * lib/floorl.c: Replace entire file.
6321         * m4/floorl.m4: New file.
6322         * lib/math.in.h (floorl): Replace declaration.
6323         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
6324         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
6325         * doc/functions/floorl.texi: Mention the 'floorl' module.
6326         * modules/mathl (Files): Remove lib/floorl.c.
6327         (Depends-on): Add floorl.
6328
6329 2007-10-04  Bruno Haible  <bruno@clisp.org>
6330
6331         * modules/floorf-tests: New file.
6332         * tests/test-floorf.c: New file.
6333
6334         * modules/floorf: New file.
6335         * lib/floor.c: New file.
6336         * lib/floorf.c: New file.
6337         * m4/floorf.m4: New file.
6338         * lib/math.in.h (floorf): New declaration.
6339         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
6340         HAVE_DECL_FLOORF.
6341         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
6342         HAVE_DECL_FLOORF.
6343         * doc/functions/floorf.texi: Mention the 'floorf' module.
6344
6345 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
6346             Bruno Haible  <bruno@clisp.org>
6347
6348         Advertise for the Git server instead of the CVS server.
6349         * doc/gnulib-intro.texi (Steady Development): Mention the Git
6350         repository instead of the CVS one.
6351         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
6352         about all VCS systems generically.
6353         * doc/gnulib.texi (Introduction): Capitalize `Git'.
6354
6355 2007-10-04  Bruno Haible  <bruno@clisp.org>
6356
6357         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
6358         means.
6359         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
6360
6361 2007-10-04  Bruno Haible  <bruno@clisp.org>
6362
6363         * modules/truncl-tests: New file.
6364         * tests/test-truncl.c: New file.
6365
6366         * modules/truncl: New file.
6367         * lib/truncl.c: New file.
6368         * m4/truncl.m4: New file.
6369         * lib/math.in.h (truncl): New declaration.
6370         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
6371         HAVE_DECL_TRUNCL.
6372         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
6373         HAVE_DECL_TRUNCL.
6374         * doc/functions/truncl.texi: Mention the 'truncl' module.
6375
6376 2007-10-04  Bruno Haible  <bruno@clisp.org>
6377
6378         * modules/truncf-tests: New file.
6379         * tests/test-truncf.c: New file.
6380
6381         * modules/truncf: New file.
6382         * lib/trunc.c: Make paramerizable through USE_* macros.
6383         * lib/truncf.c: New file.
6384         * m4/truncf.m4: New file.
6385         * lib/math.in.h (truncf): New declaration.
6386         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
6387         HAVE_DECL_TRUNCF.
6388         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
6389         HAVE_DECL_TRUNCF.
6390         * doc/functions/truncf.texi: Mention the 'truncf' module.
6391
6392 2007-10-03  Bruno Haible  <bruno@clisp.org>
6393
6394         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
6395         augmentation also for tests modules.
6396         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
6397         * modules/atexit-tests (Makefile.am): Likewise.
6398         * modules/binary-io-tests (Makefile.am): Likewise.
6399         * modules/c-strcase-tests (Makefile.am): Likewise.
6400         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
6401         * modules/canonicalize-tests (Makefile.am): Likewise.
6402         * modules/closein-tests (Makefile.am): Likewise.
6403         * modules/fprintf-posix-tests (Makefile.am): Likewise.
6404         * modules/freadahead-tests (Makefile.am): Likewise.
6405         * modules/fseek-tests (Makefile.am): Likewise.
6406         * modules/fseeko-tests (Makefile.am): Likewise.
6407         * modules/ftell-tests (Makefile.am): Likewise.
6408         * modules/ftello-tests (Makefile.am): Likewise.
6409         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
6410         * modules/isnanl-tests (Makefile.am): Likewise.
6411         * modules/lseek-tests (Makefile.am): Likewise.
6412         * modules/mbscasecmp-tests (Makefile.am): Likewise.
6413         * modules/mbscasestr-tests (Makefile.am): Likewise.
6414         * modules/mbschr-tests (Makefile.am): Likewise.
6415         * modules/mbscspn-tests (Makefile.am): Likewise.
6416         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
6417         * modules/mbspbrk-tests (Makefile.am): Likewise.
6418         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
6419         * modules/mbsrchr-tests (Makefile.am): Likewise.
6420         * modules/mbsspn-tests (Makefile.am): Likewise.
6421         * modules/mbsstr-tests (Makefile.am): Likewise.
6422         * modules/printf-posix-tests (Makefile.am): Likewise.
6423         * modules/snprintf-posix-tests (Makefile.am): Likewise.
6424         * modules/sprintf-posix-tests (Makefile.am): Likewise.
6425         * modules/tsearch-tests (Makefile.am): Likewise.
6426         * modules/uniname/uniname-tests (Makefile.am): Likewise.
6427         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
6428         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
6429         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
6430         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
6431         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
6432         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
6433         * modules/vprintf-posix-tests (Makefile.am): Likewise.
6434         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
6435         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
6436         * modules/xstrtoimax-tests (Makefile.am): Likewise.
6437         * modules/xstrtol-tests (Makefile.am): Likewise.
6438         * modules/xstrtoumax-tests (Makefile.am): Likewise.
6439         * modules/yesno-tests (Makefile.am): Likewise.
6440
6441 2007-10-03  Bruno Haible  <bruno@clisp.org>
6442
6443         * modules/trunc-tests: New file.
6444         * tests/test-trunc.c: New file.
6445
6446         * modules/trunc: New file.
6447         * lib/trunc.c: New file.
6448         * m4/trunc.m4: New file.
6449         * lib/math.in.h (trunc): New declaration.
6450         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
6451         HAVE_DECL_TRUNC.
6452         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
6453         HAVE_DECL_TRUNC.
6454         * doc/functions/trunc.texi: Mention the 'trunc' module.
6455
6456 2007-10-03  Bruno Haible  <bruno@clisp.org>
6457
6458         * tests/test-fpending.c: New file, mostly copied
6459         from coreutils/lib/t-fpending.c.
6460         * modules/fpending-tests: New file.
6461
6462 2007-10-03  Bruno Haible  <bruno@clisp.org>
6463
6464         Port the stdio extensions to QNX (untested).
6465         * lib/fseterr.c (fseterr): Add support for QNX.
6466         * lib/fbufmode.c (fbufmode): Likewise.
6467         * lib/freadable.c (freadable): Likewise.
6468         * lib/fwritable.c (fwritable): Likewise.
6469         * lib/freading.c (freading): Likewise.
6470         * lib/fwriting.c (fwriting): Likewise.
6471         * lib/freadahead.c (freadahed): Likewise.
6472         * lib/fpurge.c (fpurge): Likewise.
6473         * lib/fseeko.c (rpl_fseeko): Likewise.
6474
6475 2007-10-03  Bruno Haible  <bruno@clisp.org>
6476             Jim Meyering  <jim@meyering.net>
6477             Eric Blake  <ebb9@byu.net>
6478
6479         * doc/relocatable.texi: Use @command instead of @program.
6480
6481 2007-10-02  Jim Meyering  <jim@meyering.net>
6482
6483         Perform one more "_.h" -> ".in.h" substitution.
6484         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
6485         instead of unistd_.h here, too.
6486
6487 2007-10-01  Bruno Haible  <bruno@clisp.org>
6488
6489         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
6490         Needed for the alloca-opt module.
6491
6492 2007-09-30  Bruno Haible  <bruno@clisp.org>
6493
6494         * lib/alloca.in.h: Renamed from lib/alloca_.h.
6495         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
6496         alloca_.h.
6497         * lib/argz.in.h: Renamed from lib/argz_.h.
6498         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
6499         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
6500         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
6501         byteswap_.h.
6502         * lib/dirent.in.h: Renamed from lib/dirent_.h.
6503         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
6504         dirent_.h.
6505         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
6506         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
6507         fcntl_.h.
6508         * lib/float.in.h: Renamed from lib/float_.h.
6509         * modules/float (Files, Makefile.am): Use float.in.h instead of
6510         float_.h.
6511         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
6512         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
6513         fnmatch_.h.
6514         * lib/getopt.in.h: Renamed from lib/getopt_.h.
6515         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
6516         getopt_.h.
6517         * lib/glob.in.h: Renamed from lib/glob_.h.
6518         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
6519         * lib/iconv.in.h: Renamed from lib/iconv_.h.
6520         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
6521         iconv_.h.
6522         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
6523         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
6524         inttypes_.h.
6525         * lib/locale.in.h: Renamed from lib/locale_.h.
6526         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
6527         locale_.h.
6528         * lib/math.in.h: Renamed from lib/math_.h.
6529         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
6530         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
6531         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
6532         of netinet_in_.h. Add dependency.
6533         * lib/poll.in.h: Renamed from lib/poll_.h.
6534         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
6535         * lib/search.in.h: Renamed from lib/search_.h.
6536         * modules/search (Files, Makefile.am): Use search.in.h instead of
6537         search_.h.
6538         * lib/signal.in.h: Renamed from lib/signal_.h.
6539         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
6540         _signal.h.
6541         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
6542         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
6543         stdbool_.h.
6544         * lib/stdint.in.h: Renamed from lib/stdint_.h.
6545         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
6546         stdint_.h.
6547         * lib/stdio.in.h: Renamed from lib/stdio_.h.
6548         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
6549         stdio_.h.
6550         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
6551         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
6552         stdlib_.h.
6553         * lib/string.in.h: Renamed from lib/string_.h.
6554         * modules/string (Files, Makefile.am): Use string.in.h instead of
6555         string_.h.
6556         * doc/gnulib-tool.texi (Initial import): Update.
6557         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
6558         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
6559         of sys_select_.h. Add dependency.
6560         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
6561         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
6562         of sys_socket_.h.
6563         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
6564         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
6565         sys_stat_.h.
6566         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
6567         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
6568         sys_time_.h.
6569         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
6570         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
6571         sysexits_.h.
6572         * lib/time.in.h: Renamed from lib/time_.h.
6573         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
6574         * lib/unistd.in.h: Renamed from lib/unistd_.h.
6575         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
6576         unistd_.h.
6577         * lib/wchar.in.h: Renamed from lib/wchar_.h.
6578         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
6579         wchar_.h.
6580         * lib/wctype.in.h: Renamed from lib/wctype_.h.
6581         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
6582         wctype_.h.
6583         * build-aux/bootstrap (slurp): Update.
6584         * lib/.cppi-disable: Update.
6585
6586 2007-09-30  Bruno Haible  <bruno@clisp.org>
6587
6588         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
6589         Needed on BeOS.
6590
6591 2007-09-30  Bruno Haible  <bruno@clisp.org>
6592
6593         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
6594
6595 2007-09-29  Bruno Haible  <bruno@clisp.org>
6596
6597         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
6598
6599 2007-09-29  Bruno Haible  <bruno@clisp.org>
6600
6601         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
6602         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
6603         * build-aux/install-reloc: Compile also areadlink.c.
6604         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
6605
6606 2007-09-29  Bruno Haible  <bruno@clisp.org>
6607
6608         * gnulib-tool (func_emit_initmacro_done): Indentation.
6609
6610 2007-09-29  Bruno Haible  <bruno@clisp.org>
6611
6612         * README: Add CVS checkout update instructions.
6613         Info from Bob Proulx <bob@proulx.com>.
6614
6615 2007-09-28  Eric Blake  <ebb9@byu.net>
6616
6617         Provide move-if-change.
6618         * build-aux/move-if-change: New file, based on best practice
6619         rather than any canonical upstream location.
6620
6621 2007-09-28  Jim Meyering  <jim@meyering.net>
6622
6623         Fix canonicalize loop-detection corner case.
6624         Do not attempt to stat the symlink values stored via seen_triple.
6625         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
6626         on linux-2.6.18, (but not 2.6.22).
6627         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
6628         triple_compare.  The former compares dev,ino,filename, while the latter
6629         would actually stat dirname(filename) when dev and ino were equal.
6630         * lib/hash-triple.c: Install <string.h>.
6631         (STREQ): Define.
6632         (triple_compare_ino_str): New function.
6633         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
6634
6635 2007-09-28  Eric Blake  <ebb9@byu.net>
6636
6637         Enforce that AC_REPLACE_FUNCS files exist.
6638         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
6639         override check for typos.
6640
6641         Fix test-closein on Solaris 10.
6642         * tests/test-closein.c (main): Don't assume stdin can be inherited
6643         closed on all systems.
6644         * tests/test-closein.sh: Likewise.
6645         Reported by Piotr Tarnowski.
6646
6647 2007-09-28  Jim Meyering  <jim@meyering.net>
6648
6649         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
6650
6651 2007-09-27  Jim Meyering  <jim@meyering.net>
6652
6653         canonicalize: Avoid a false-positive cycle failure.
6654         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
6655         Sort.  Remove cycle-check.
6656         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
6657         not cycle-check.h.
6658         (seen_triple): New function.
6659         (canonicalize_filename_mode): Use it instead of cycle-check.
6660         * tests/test-canonicalize.c: Add a test for this bug.
6661         * tests/test-canonicalize.sh: Set up and run the test.
6662
6663         New module, file-set, from coreutils.
6664         * modules/file-set: Define it.
6665         * lib/file-set.c, lib/file-set.h: Implement.
6666
6667         New module, hash-triple, from coreutils.
6668         * modules/hash-triple: Define it.
6669         * lib/hash-triple.c, lib/hash-triple.h: Implement.
6670
6671 2007-09-25  Eric Blake  <ebb9@byu.net>
6672
6673         Fix strerror on Interix.
6674         * lib/string_.h (strerror): Declare replacement.
6675         * doc/functions/strerror.texi (strerror): Document the Interix
6676         shortcoming.
6677         * modules/string (Makefile.am): Support new hooks.
6678         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
6679         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
6680         gl_FUNC_STRERROR_SEPARATE.
6681         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
6682         * lib/strerror.c (rpl_strerror): Provide replacement.
6683         * modules/strerror (Depends-on): Add string.
6684         (configure.ac): Detect use of module.
6685         * tests/test-strerror.c: New file.
6686         * modules/strerror-tests: New test module.
6687         * modules/argp (Depends-on): Add strerror.
6688         * modules/error (Depends-on): Likewise.
6689         Reported by Martin Koeppe.
6690
6691 2007-09-24  Bruno Haible  <bruno@clisp.org>
6692
6693         * README: Update git instructions.
6694
6695 2007-09-24  Eric Blake  <ebb9@byu.net>
6696
6697         Revert fpending breakage from 2007-09-08.
6698         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
6699         __fpending.c.
6700
6701 2007-09-24  Jim Meyering  <jim@meyering.net>
6702
6703         filenamecat.c: Add a test.
6704         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
6705         showing how the function works when DIR is the empty string.
6706
6707 2007-09-21  Simon Josefsson  <simon@josefsson.org>
6708
6709         * tests/test-canonicalize.sh: Turn on executable bit.
6710
6711 2007-09-19  Eric Blake  <ebb9@byu.net>
6712
6713         * README: Update CVS instructions.
6714
6715 2007-09-18  Bruno Haible  <bruno@clisp.org>
6716
6717         * modules/areadlink: New file.
6718         * lib/areadlink.h (areadlink): New declaration.
6719         * lib/areadlink.c: New file, based on lib/xreadlink.c.
6720
6721 2007-09-17  Jim Meyering  <jim@meyering.net>
6722
6723         * lib/savewd.c (ESTALE) [!defined]: Define.
6724         Reported to be required on Interix by Martin Koeppe.
6725
6726 2007-09-17  Bruno Haible  <bruno@clisp.org>
6727
6728         * gnulib-tool (func_version): Use $version.
6729
6730 2007-09-16  Bruno Haible  <bruno@clisp.org>
6731
6732         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
6733         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
6734         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
6735         Reported by Greg Schafer <gschafer@zip.com.au>.
6736
6737 2007-09-15  Bruno Haible  <bruno@clisp.org>
6738
6739         * gnulib-tool (sed): Try a little harder to make bash understand the
6740         alias.
6741         Reported by Bruce Korb <bruce.korb@gmail.com>.
6742
6743 2007-09-13  Eric Blake  <ebb9@byu.net>
6744
6745         * ChangeLog: Remove conflict markers.
6746
6747 2007-09-13  Simon Josefsson  <simon@josefsson.org>
6748
6749         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
6750         Reported by Bruno Haible <bruno@clisp.org>.
6751
6752 2007-09-12  Bruno Haible  <bruno@clisp.org>
6753
6754         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
6755         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
6756         is not defined.
6757
6758 2007-09-12  Eric Blake  <ebb9@byu.net>
6759
6760         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
6761         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
6762         Autoconf definition.
6763         * modules/euidaccess (Depends-on): Add extensions, for
6764         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
6765         * modules/fnmatch (Depends-on): Likewise.
6766         * modules/getaddrinfo (Depends-on): Likewise.
6767         * modules/getdelim (Depends-on): Likewise.
6768         * modules/getline (Depends-on): Likewise.
6769         * modules/getsubopt (Depends-on): Likewise.
6770         * modules/gettext (Depends-on): Likewise.
6771         * modules/group-member (Depends-on): Likewise.
6772         * modules/mbchar (Depends-on): Likewise.
6773         * modules/memmem (Depends-on): Likewise.
6774         * modules/mempcpy (Depends-on): Likewise.
6775         * modules/memrchr (Depends-on): Likewise.
6776         * modules/pagealign_alloc (Depends-on): Likewise.
6777         * modules/readutmp (Depends-on): Likewise.
6778         * modules/stpcpy (Depends-on): Likewise.
6779         * modules/stpncpy (Depends-on): Likewise.
6780         * modules/strchrnul (Depends-on): Likewise.
6781         * modules/strndup (Depends-on): Likewise.
6782         * modules/strsep (Depends-on): Likewise.
6783         * modules/strverscmp (Depends-on): Likewise.
6784         * modules/vasprintf (Depends-on): Likewise.
6785         * modules/wcwidth (Depends-on): Likewise.
6786         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
6787         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
6788         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
6789         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
6790         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
6791         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
6792         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
6793         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
6794         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
6795         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
6796         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
6797         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
6798         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
6799         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
6800         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
6801         * m4/readutmp.m4 (gl_READUTMP): Likewise.
6802         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
6803         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
6804         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
6805         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
6806         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
6807         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
6808         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
6809         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
6810         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
6811         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
6812         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
6813         so that lock.m4 can be used in gettext without extensions module.
6814
6815 2007-09-11  Bruno Haible  <bruno@clisp.org>
6816
6817         * m4/isc-posix.m4: Remove file.
6818         Suggested by Eric Blake.
6819
6820 2007-09-11  Eric Blake  <ebb9@byu.net>
6821
6822         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
6823
6824 2007-09-10  Bruno Haible  <bruno@clisp.org>
6825
6826         * posix-modules: Fix typo in error message.
6827         Reported by Matt <mkraai@beckman.com>.
6828
6829 2007-09-09  Bruno Haible  <bruno@clisp.org>
6830
6831         * doc/functions/getdelim.texi: Update list of platforms lacking the
6832         function.
6833         * doc/functions/getline.texi: Likewise.
6834
6835 2007-09-09  Jim Meyering  <jim@meyering.net>
6836
6837         * lib/hash.c (hash_initialize): Detect calloc failure.
6838         Reported by Bruno Haible.
6839
6840 2007-09-09  Bruno Haible  <bruno@clisp.org>
6841
6842         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
6843         malloc or realloc fails.
6844
6845 2007-09-09  Bruno Haible  <bruno@clisp.org>
6846
6847         * modules/getcwd (Depends-on): Add malloc-posix.
6848         * modules/glob (Depends-on): Likewise.
6849         * modules/putenv (Depends-on): Likewise.
6850         * modules/strdup (Depends-on): Likewise.
6851         * modules/getdelim (Depends-on): Add realloc-posix.
6852         * modules/read-file (Depends-on): Likewise.
6853
6854 2007-09-09  Bruno Haible  <bruno@clisp.org>
6855
6856         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
6857         (gl_FUNC_MALLOC_POSIX): Require it.
6858         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
6859         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
6860         * modules/realloc (Files): Add m4/malloc.m4.
6861         * modules/calloc (Files): Likewise.
6862
6863 2007-09-09  Bruno Haible  <bruno@clisp.org>
6864
6865         * modules/malloc-posix: New file.
6866         * modules/malloc (Depends-on): Add malloc-posix.
6867         * lib/malloc.c: Include errno.h.
6868         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
6869         and a POSIX-compatible malloc into a single function. Set ENOMEM
6870         when returning NULL.
6871         * m4/malloc.m4: New file.
6872         * doc/functions/malloc.texi: Mention the malloc-posix module.
6873         * lib/stdlib_.h (malloc): New declaration.
6874         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
6875         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
6876         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
6877         and HAVE_MALLOC_POSIX.
6878
6879 2007-09-09  Bruno Haible  <bruno@clisp.org>
6880
6881         * modules/realloc-posix: New file.
6882         * modules/realloc (Depends-on): Add realloc-posix.
6883         * lib/realloc.c: Include errno.h.
6884         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
6885         and a POSIX-compatible realloc into a single function. Set ENOMEM
6886         when returning NULL.
6887         * m4/realloc.m4: New file.
6888         * doc/functions/realloc.texi: Mention the realloc-posix module.
6889         * lib/stdlib_.h (realloc): New declaration.
6890         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
6891         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
6892         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
6893         and HAVE_REALLOC_POSIX.
6894
6895 2007-09-09  Bruno Haible  <bruno@clisp.org>
6896
6897         * modules/calloc-posix: New file.
6898         * modules/calloc (Depends-on): Add calloc-posix.
6899         * lib/calloc.c: Include errno.h.
6900         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
6901         and a POSIX-compatible calloc into a single function. Set ENOMEM
6902         when returning NULL.
6903         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
6904         * doc/functions/calloc.texi: Mention the calloc-posix module.
6905         * lib/stdlib_.h (calloc): New declaration.
6906         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
6907         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
6908         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
6909         and HAVE_CALLOC_POSIX.
6910
6911 2007-09-09  Bruno Haible  <bruno@clisp.org>
6912
6913         Allow for modules to show an arbitrary notice.
6914         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
6915         * gnulib-tool: New option --extract-notice.
6916         (func_usage): Document it.
6917         (sed_extract_prog): Update.
6918         (func_get_notice): New function.
6919         (func_modules_notice): New function.
6920         (func_import, func_create_testdir): Invoke it.
6921         Suggested by Jim Meyering.
6922
6923 2007-09-09  Bruno Haible  <bruno@clisp.org>
6924
6925         * gnulib-tool: New options --verbose, --quiet.
6926         (func_usage): Document them.
6927         (verbose): New variable.
6928         (func_execute_command): New function.
6929         (func_import): Don't show the module list and the file list if
6930         $verbose < 0.
6931         (func_create_testdir): Likewise. Use func_execute_command.
6932         (func_create_megatestdir): Use func_execute_command.
6933
6934 2007-09-08  Bruno Haible  <bruno@clisp.org>
6935
6936         * gnulib-tool (func_import): Prefer rsync over wget when available,
6937         for fetching the PO files.
6938
6939 2007-09-08  Bruno Haible  <bruno@clisp.org>
6940
6941         * posix-modules: New file. Portions copied from gnulib-tool.
6942         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
6943
6944 2007-09-08  Jim Meyering  <jim@meyering.net>
6945
6946         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
6947         * lib/fpending.h: Rename from __fpending.h.
6948         * lib/fpending.c: Rename from __fpending.c.
6949         Include "fpending.h", not "__fpending.h".
6950         * lib/__fpending.h, lib/__fpending.c: Remove files.
6951         * modules/fpending (Files): Reflect new file names.
6952         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
6953
6954 2007-09-08  Bruno Haible  <bruno@clisp.org>
6955
6956         * m4/inttypes-h.m4: Remove stub file.
6957
6958 2007-09-07  Simon Josefsson  <simon@josefsson.org>
6959
6960         * doc/headers/stdint.texi: Discuss #include_next issue.
6961
6962 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
6963
6964         * build-aux/bootstrap: Remove obsolete comment about wget --help.
6965
6966 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6967
6968         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
6969         in variable name.
6970
6971 2007-09-03  Jim Meyering  <jim@meyering.net>
6972
6973         New module: git-version-gen.
6974         * modules/git-version-gen: New file.
6975
6976         Import changes from coreutils for bootstrap script.
6977
6978         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
6979
6980         bootstrap: uses rsync to download the .po files
6981         * build-aux/bootstrap (po_download_command_format): New global.
6982         (download_po_files): Use rsync.
6983         (update_po_files): Don't remove .po files after download,
6984         so future rsync runs can take advantage of the copies.
6985
6986         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
6987
6988         Solve the unnecessary-.po-file-regeneration problem once and for all.
6989         * build-aux/bootstrap (download_po_files): New function, renamed from
6990         get_translations.  Now, downloads, but doesn't update LINGUAS.
6991         (update_po_files): New function.
6992
6993         bootstrap: Ignore more.
6994         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
6995         uniwidth to e.g., lib/.gitignore.
6996         (slurp): Handle the sys_stat_.h -> sys mapping, too.
6997
6998         * build-aux/bootstrap: New setting: vc_ignore.
6999         (insert_sorted_if_absent): Create $file if absent.
7000         Adapt to new, possibly empty, list: $vc_ignore.
7001
7002         bootstrap: generate more ignorable names
7003         * build-aux/bootstrap (slurp): When generating ignorable names,
7004         also map .sin to .sed, .gperf to .c, and .y to .c.
7005
7006 2007-09-03  Jim Meyering  <jim@meyering.net>
7007
7008         * build-aux/git-version-gen: New file, from coreutils.  For details, see
7009         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
7010
7011 2007-09-02  Bruno Haible  <bruno@clisp.org>
7012
7013         Fix mis-recognition of 'mcs' on QNX 6.
7014         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
7015         output contains the string "Mono".
7016         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
7017         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
7018
7019 2007-09-01  Bruno Haible  <bruno@clisp.org>
7020
7021         Fix collision between uniwidth/* and linebreak modules.
7022         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
7023         u32_width): Remove declarations.
7024         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
7025         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
7026         streq3, streq2, streq1, streq0): Remove functions.
7027         (STREQ): Remove macro.
7028         (is_cjk_encoding): Remove function.
7029         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
7030         (uc_width, u8_width, u16_width, u32_width): Remove functions.
7031         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
7032         * NEWS: Document the change.
7033
7034 2007-09-01  Bruno Haible  <bruno@clisp.org>
7035
7036         * lib/streq.h: Add double-inclusion guard.
7037
7038 2007-09-01  Karl Berry  <karl@gnu.org>
7039
7040         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
7041
7042 2007-08-28  Jim Meyering  <jim@meyering.net>
7043
7044         Rename mreadlink_with_size to areadlink_with_size.
7045         * NEWS: Document the change.
7046         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
7047         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
7048         * lib/mreadlink.h: Rename this to...
7049         * lib/areadlink.h: ...this.
7050         * modules/mreadlink-with-size: Rename this to...
7051         * modules/areadlink-with-size: ...this.
7052         * lib/canonicalize.c: Reflect the renaming.
7053         * modules/canonicalize: Likewise.
7054
7055 2007-08-26  Bruno Haible  <bruno@clisp.org>
7056
7057         * gnulib-tool (func_import): When deciding which files to remove,
7058         consider also dangling symbolic links.
7059         Reported by Eric Blake.
7060
7061 2007-08-26  Bruno Haible  <bruno@clisp.org>
7062
7063         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
7064
7065 2007-08-23  Simon Josefsson  <simon@josefsson.org>
7066
7067         * lib/readline.c: Don't include getline.h, the prototype is now
7068         found in stdio.h.
7069
7070 2007-08-23  Jim Meyering  <jim@meyering.net>
7071
7072         Getdelim touchup.
7073         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
7074         around the funlockfile call, since funlockfile never sets errno.
7075         Don't set errno upon failed realloc.
7076
7077 2007-08-22  Eric Blake  <ebb9@byu.net>
7078
7079         Getline touchups.
7080         * lib/getdelim.c (getdelim): Revert regression that required *n to
7081         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
7082         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
7083         getdelim, rather than whether implementation is missing.
7084         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
7085         * lib/stdio_.h (getline): Also declare if replacement is
7086         required.
7087         * doc/functions/getdelim.texi: New file.
7088         * doc/functions/getline.texi: Likewise.
7089         * doc/gnulib.texi (Function Substitutes): Add new files.
7090         Reported by Bruno Haible.
7091
7092 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
7093
7094         * users.txt: Add Guile.
7095
7096 2007-08-22  Eric Blake  <ebb9@byu.net>
7097
7098         * tests/test-getdelim.c (main): Use remove, not unlink.
7099         * tests/test-getline.c (main): Likewise.
7100
7101         Move getline and getdelim into stdio.h, per POSIX 200x.
7102         * modules/getline (Files): Remove getline.h.
7103         (Depends-on): Add stdio.
7104         (configure.ac): Add module indicator.
7105         * modules/getdelim (Files): Remove getdelim.h.
7106         (Depends-on): Add stdio.
7107         (configure.ac): Add module indicator.
7108         * modules/stdio (Makefile.am): Work with new indicators.
7109         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
7110         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
7111         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
7112         * lib/getdelim.h: Delete.
7113         * lib/getline.h: Delete.
7114         * lib/stdio_.h (getdelim, getline): Declare.
7115         * modules/getdelim-tests: New module.
7116         * modules/getline-tests: Likewise.
7117         * tests/test-getdelim.c: New file.
7118         * tests/test-getline.c: Likewise.
7119         * NEWS: Document the change.
7120         * lib/getline.c: Update choice of header.
7121         * lib/csharpcomp.c: Likewise.
7122         * lib/getpass.c: Likewise.
7123         * lib/javacomp.c: Likewise.
7124         * lib/javaversion.c: Likewise.
7125         * lib/yesno.c: Likewise.
7126         * lib/getdelim.c: Likewise.
7127         (getdelim): Set errno on failure, and avoid memory leak.
7128
7129 2007-08-19  Bruno Haible  <bruno@clisp.org>
7130
7131         * modules/closein (Depends-on): Add freadahead.
7132         * lib/closein.c: Include freadahead.h.
7133         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
7134         is zero.
7135
7136 2007-08-19  Bruno Haible  <bruno@clisp.org>
7137
7138         * modules/freadahead-tests: New file.
7139         * tests/test-freadahead.sh: New file.
7140         * tests/test-freadahead.c: New file.
7141
7142         * modules/freadahead: New file.
7143         * lib/freadahead.h: New file.
7144         * lib/freadahead.c: New file.
7145         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
7146         fbufmode, fpurge, freadable, fwritable.
7147
7148 2007-08-19  Eric Blake  <ebb9@byu.net>
7149
7150         Test yesno in combination with closein.
7151         * lib/yesno.c (yesno): Document use of stdin.
7152         * modules/yesno-tests (Files): New module.
7153         * tests/test-yesno.c (main): New file.
7154         * tests/test-yesno.sh: Likewise.
7155
7156 2007-08-19  Bruno Haible  <bruno@clisp.org>
7157
7158         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
7159         * lib/fseeko.c (rpl_fseeko): Likewise.
7160         * lib/fseterr.c (fseterr): Likewise.
7161
7162 2007-08-19  Bruno Haible  <bruno@clisp.org>
7163
7164         * tests/test-lseek.c (main): Disable a test for BeOS.
7165         * doc/functions/lseek.texi: Document the BeOS bug.
7166
7167 2007-08-19  Bruno Haible  <bruno@clisp.org>
7168             Eric Blake  <ebb9@byu.net>
7169
7170         * lib/lseek.c: Include <sys/stat.h>.
7171         (rpl_lseek): Add workaround code also for Unix platforms.
7172         Needed for BeOS.
7173         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
7174         * doc/functions/lseek.texi: Document BeOS definiency.
7175
7176 2007-08-18  Bruno Haible  <bruno@clisp.org>
7177
7178         * modules/fstrcmp-tests: New file.
7179         * tests/test-fstrcmp.c: New file.
7180
7181 2007-08-18  Bruno Haible  <bruno@clisp.org>
7182
7183         * modules/fstrcmp: New file, from GNU gettext with modifications.
7184         * lib/fstrcmp.h: New file, from GNU gettext.
7185         * lib/fstrcmp.c: New file, from GNU gettext.
7186         * MODULES.html.sh (String handling): Add fstrcmp.
7187
7188 2007-08-18  Bruno Haible  <bruno@clisp.org>
7189
7190         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
7191         'bool'.
7192         (diag, compareseq): Remove const from the ctxt argument.
7193         (USE_HEURISTIC): Undefine at the end.
7194
7195 2007-08-18  Jim Meyering  <jim@meyering.net>
7196
7197         New file: lib/idcache.h
7198         * NEWS: Mention the addition.
7199         * modules/idcache (Files): Add lib/idcache.h
7200         * lib/idcache.c: Include "idcache.h".
7201         Don't include <sys/types.h>.
7202         Add a FIXME comment.
7203         Move file-scoped "static" declarations to the top.
7204         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
7205
7206 2007-08-17  Bruno Haible  <bruno@clisp.org>
7207         and Paul Eggert  <eggert@cs.ucla.edu>
7208
7209         * MODULES.html.sh: Add diffseq.
7210         * modules/diffseq: New file.
7211         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
7212         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
7213
7214 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
7215
7216         Import changes from coreutils for bootstrap script.
7217
7218         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
7219
7220         * build-aux/bootstrap (slurp): Work even in environments where
7221         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
7222         current code does not slurp files whose names start with ".", and
7223         this looks like it might be a troublesome area.
7224
7225         2007-07-11  Jim Meyering  <jim@meyering.net>
7226
7227         If there's a GPL vN copyright comment, require that N == 3.
7228
7229         2007-07-08  Jim Meyering  <jim@meyering.net>
7230
7231         Run the coreutils-specific code only if tests/Makefile.am.in exists.
7232         * build-aux/bootstrap (mam_template): Move definition out of loop.
7233
7234         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
7235
7236         * build-aux/bootstrap (symlink_to_dir): Rename function from
7237         symlink_to_gnulib.  Add a directory parameter.  Update all
7238         callers.
7239         (cp_mark_as_generated): Also check for -- and link to -- files in
7240         gl/.
7241
7242         2007-07-08  Jim Meyering  <jim@meyering.net>
7243
7244         Adapt to deeper hierarchy in gnulib.
7245         * build-aux/bootstrap (symlink_to_dir): If the destination
7246         directory doesn't exist, create it. This is required at least for
7247         "lib/uniwidth/cjk.h".
7248
7249         2007-05-15  Jim Meyering  <jim@meyering.net>
7250
7251         * build-aux/bootstrap: Now that generated Makefile.am files
7252         are no longer under version control, they must be created at
7253         bootstrap time.
7254
7255 2007-08-14  Ben Pfaff  <blp@gnu.org>
7256
7257         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
7258
7259 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
7260
7261         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
7262         given the changes below.
7263         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
7264         even on hosts that have padding bits beyond the supported 64.
7265
7266 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
7267
7268         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
7269         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
7270         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
7271         depends on it.
7272         (xstrtol_error): Remove.
7273         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
7274         but with a different signature.
7275         (ATTRIBUTE_NORETURN, __attribute__): New macros.
7276         * lib/xstrtol-error.c: Include exitfail.h.
7277         (xstrtol_fatal): New function, with a different signature from the
7278         old xstrtol_error, so that the caller need not worry about passing
7279         in an exit status, or about storage management of the option argument.
7280         (xstrtol_error): Now a static function.  Redo signature to
7281         implement xstrtol_fatal.  Output the correct number of hyphens in
7282         front of the option so that the caller need not worry about
7283         storage management.
7284         (N_): New macro.
7285         (_): Remove; not used now.
7286         * modules/xstrtol: Depend on getopt.
7287         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
7288         of old STRTOL_FATAL_ERROR macro.
7289         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
7290         of test program.
7291         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
7292         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
7293
7294 2007-08-08  Eric Blake  <ebb9@byu.net>
7295
7296         * lib/xstrtol-error.c: Add missing include.
7297
7298         Move xstrtol messages into gnulib domain, when --pobase is used.
7299         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
7300         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
7301         * modules/xstrtol (Files): Distribute new file.
7302         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
7303         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
7304         * tests/test-xstrtol.c: ...into new file.
7305         * tests/test-xstrtoul.c: Also test xstrtoul.
7306         * tests/test-xstrtoimax.c: Also test xstrtoimax.
7307         * tests/test-xstrtoumax.c: Also test xstrtoumax.
7308         * tests/test-xstrtol.sh: Drive the tests.
7309         * tests/test-xstrtoimax.sh: Likewise.
7310         * tests/test-xstrtoumax.sh: Likewise.
7311         * modules/xstrtol-tests: New module.
7312         * modules/xstrtoimax-tests: Likewise.
7313         * modules/xstrtoumax-tests: Likewise.
7314
7315 2007-08-08  Jim Meyering  <jim@meyering.net>
7316
7317         New function: mfile_name_concat.
7318         * lib/filenamecat.c (mfile_name_concat): New function, just like
7319         file_name_concat, but return NULL upon failure rather than exiting
7320         with a diagnostic.
7321         * lib/filenamecat.h: Declare it.
7322
7323 2007-08-07  Bruno Haible  <bruno@clisp.org>
7324
7325         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
7326         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
7327         warning from gcc.
7328         Reported by Eric Blake.
7329
7330 2007-08-07  Simon Josefsson  <simon@josefsson.org>
7331
7332         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
7333         * modules/crypto/arcfour (License): Likewise.
7334         * modules/crypto/des-tests (License): Likewise.
7335         * modules/crypto/gc-arctwo-tests (License): Likewise.
7336         * modules/crypto/gc-des-tests (License): Likewise.
7337         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
7338         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
7339         * modules/crypto/gc-md2-tests (License): Likewise.
7340         * modules/crypto/gc-md4-tests (License): Likewise.
7341         * modules/crypto/gc-md5-tests (License): Likewise.
7342         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
7343         * modules/crypto/gc-rijndael-tests (License): Likewise.
7344         * modules/crypto/gc-sha1-tests (License): Likewise.
7345         * modules/crypto/gc-tests (License): Likewise.
7346         * modules/crypto/hmac-md5 (License): Likewise.
7347         * modules/crypto/hmac-sha1 (License): Likewise.
7348         * modules/crypto/md2-tests (License): Likewise.
7349         * modules/crypto/md4-tests (License): Likewise.
7350         * modules/crypto/md5 (License): Likewise.
7351         * modules/crypto/rijndael (License): Likewise.
7352         * modules/crypto/sha1 (License): Likewise.
7353         * modules/memxor (License): Likewise.
7354
7355 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
7356         and Bruno Haible  <bruno@clisp.org>
7357
7358         * NEWS: Describe interface changes to human, xstrtol.
7359         * lib/human.h: Include <xstrtol.h>.
7360         (human_options): Return enum strtol_error, not int.  Remove
7361         bool arg; take int * instead.
7362         * lib/human.c: Don't include "gettext.h".
7363         (_): Remove; no longer used.
7364         Don't include <xstrtol.h>, since human.h does it.
7365         (human_options): Adjust to abovementioned interface changes.
7366         Do not report error to stderr; that's now the caller's
7367         responsibility.
7368         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
7369         interface change.
7370         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
7371         Str, Argument_type_string.  All uses changed.  Put " argument"
7372         in diagnostics to make them clearer.  Change wording of suffix
7373         message for clarity.
7374         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
7375         Argument_type_string.
7376         (STRTOL_FATAL_WARN): Remove; no longer used.
7377         * modules/human (Depends-on): Remove gettext-h.
7378
7379 2007-08-06  Simon Josefsson  <simon@josefsson.org>
7380
7381         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
7382
7383 2007-07-31  Bruno Haible  <bruno@clisp.org>
7384
7385         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
7386         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
7387         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
7388
7389 2007-07-31  Bruno Haible  <bruno@clisp.org>
7390
7391         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
7392         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
7393
7394 2007-07-30  Bruno Haible  <bruno@clisp.org>
7395
7396         * modules/base64 (License): Use the synonymous term "LGPLv2+".
7397         * modules/c-ctype (License): Likewise.
7398         * modules/c-strcase (License): Likewise.
7399         * modules/check-version (License): Likewise.
7400         * modules/iconv (License): Likewise.
7401         * modules/iconv_open (License): Likewise.
7402         * modules/read-file (License): Likewise.
7403         * modules/striconv (License): Likewise.
7404         * modules/strverscmp (License): Likewise.
7405         * modules/vasprintf (License): Likewise.
7406         * modules/crypto/des (License): Likewise.
7407         * modules/crypto/gc (License): Likewise.
7408         * modules/crypto/gc-arcfour (License): Likewise.
7409         * modules/crypto/gc-arctwo (License): Likewise.
7410         * modules/crypto/gc-des (License): Likewise.
7411         * modules/crypto/gc-hmac-md5 (License): Likewise.
7412         * modules/crypto/gc-hmac-sha1 (License): Likewise.
7413         * modules/crypto/gc-md2 (License): Likewise.
7414         * modules/crypto/gc-md4 (License): Likewise.
7415         * modules/crypto/gc-md5 (License): Likewise.
7416         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
7417         * modules/crypto/gc-random (License): Likewise.
7418         * modules/crypto/gc-rijndael (License): Likewise.
7419         * modules/crypto/gc-sha1 (License): Likewise.
7420         * modules/crypto/md2 (License): Likewise.
7421         * modules/crypto/md4 (License): Likewise.
7422
7423 2007-07-30  Jim Meyering  <jim@meyering.net>
7424
7425         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
7426         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
7427         it has valid stat data.  This bug would cause du not to count the
7428         sizes of inaccessible directories.
7429         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
7430         in <http://bugzilla.redhat.com/250077>.
7431
7432 2007-07-25  Peter O'Gorman  <peter@pogma.com>
7433             Bruno Haible  <bruno@clisp.org>
7434
7435         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
7436         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
7437         #include_next, gives a diagnostic about it, but reports no error in
7438         the exit code.
7439         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
7440
7441 2007-07-24  Ben Pfaff  <blp@gnu.org>
7442
7443         Improve name: "count-one-bits" is better than "popcount".
7444         * MODULES.html.sh: Update name.
7445         * lib/popcount.h: Renamed lib/count-one-bits.h.
7446         (popcount): Renamed count_one_bits.
7447         (popcountl): Renamed count_one_bits_l.
7448         (popcountll): Renamed count_one_bits_ll.
7449         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
7450         * modules/popcount: Renamed module/count-one-bits.
7451         * modules/popcount-tests: Renamed module/count-one-bits-tests.
7452         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
7453
7454 2007-07-23  Ben Pfaff  <blp@gnu.org>
7455
7456         * lib/popcount.h (popcount32): Reduce size of constants, to allow
7457         better code generation, and add U to large constants to avoid
7458         warnings, in non-GCC case.
7459         Suggested by Bruno Haible.
7460
7461 2007-07-23  Ben Pfaff  <blp@gnu.org>
7462
7463         * lib/popcount.h: Use verify_true instead of if...abort.
7464         * modules/popcount: Depend on verify module.
7465         Suggested by Jim Meyering.
7466
7467 2007-07-23  Bruno Haible  <bruno@clisp.org>
7468
7469         * gnulib-tool (func_import): Create a .cvsignore file also when the
7470         directory is not yet in CVS but the toplevel directory is. When
7471         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
7472         Reported by Karl Berry.
7473
7474 2007-07-22  Ben Pfaff  <blp@gnu.org>
7475
7476         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
7477         case.
7478         Suggested by Eric Blake.
7479
7480 2007-07-22  Ben Pfaff  <blp@gnu.org>
7481
7482         New module: popcount.
7483         * MODULES.html.sh: Add popcount.
7484         * modules/popcount: New file.
7485         * modules/popcount-tests: New file.
7486         * tests/test-popcount.c: New file.
7487         * lib/popcount.h: New file.
7488         * m4/popcount.m4: New file.
7489
7490 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
7491
7492         * build-aux/announce-gen: Update to GPLv3.
7493
7494         * build-aux/config.guess: Update from config.
7495
7496 2007-07-21  Bruno Haible  <bruno@clisp.org>
7497
7498         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
7499         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
7500
7501 2007-07-20  Jim Meyering  <jim@meyering.net>
7502
7503         * check-module: Diagnose a self-dependency.
7504
7505 2007-07-19  Bruno Haible  <bruno@clisp.org>
7506
7507         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
7508         empty.
7509         Reported by Eric Blake.
7510
7511 2007-07-18  Bruno Haible  <bruno@clisp.org>
7512
7513         * gnulib-tool: New options --po-base, --po-domain.
7514         (func_usage): Document them.
7515         (pobase, po_domain): New variables.
7516         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
7517         DEFAULT_TEXT_DOMAIN.
7518         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
7519         (func_import): Consider pobase and po_domain. Create a po/ directory.
7520         (func_create_testdir): Set pobase and po_domain to empty.
7521         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
7522         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
7523
7524 2007-07-18  Bruno Haible  <bruno@clisp.org>
7525
7526         * gnulib-tool (func_get_automake_snippet): Synthesize also an
7527         EXTRA_DIST augmentation for files in build-aux/.
7528
7529 2007-07-16  Bruno Haible  <bruno@clisp.org>
7530
7531         * modules/lseek (License): Use the synonymous term "LGPLv2+".
7532         * modules/getdelim (License): Likewise.
7533
7534 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7535
7536         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
7537         * modules/d-type (License): Likewise.
7538         * modules/extensions (License): Likewise.
7539         * modules/fnmatch (License): Likewise.
7540         * modules/fseeko (License): Likewise.
7541         * modules/getaddrinfo (License): Likewise.
7542         * modules/getline (License): Likewise.
7543         * modules/getlogin_r (License): Likewise.
7544         * modules/getpass (License): Likewise.
7545         * modules/gettimeofday (License): Likewise.
7546         * modules/glob (License): Likewise.
7547         * modules/inet_ntop (License): Likewise.
7548         * modules/malloc (License): Likewise.
7549         * modules/malloca (License): Likewise.
7550         * modules/memmem (License): Likewise.
7551         * modules/mempcpy (License): Likewise.
7552         * modules/memset (License): Likewise.
7553         * modules/minmax (License): Likewise.
7554         * modules/mktime (License): Likewise.
7555         * modules/netinet_in (License): Likewise.
7556         * modules/pathmax (License): Likewise.
7557         * modules/poll (License): Likewise.
7558         * modules/regex (License): Likewise.
7559         * modules/snprintf (License): Likewise.
7560         * modules/stdbool (License): Likewise.
7561         * modules/stdint (License): Likewise.
7562         * modules/stdio (License): Likewise.
7563         * modules/strcase (License): Likewise.
7564         * modules/strcasestr (License): Likewise.
7565         * modules/strdup (License): Likewise.
7566         * modules/string (License): Likewise.
7567         * modules/strndup (License): Likewise.
7568         * modules/strnlen (License): Likewise.
7569         * modules/strpbrk (License): Likewise.
7570         * modules/strptime (License): Likewise.
7571         * modules/strsep (License): Likewise.
7572         * modules/sys_select (License): Likewise.
7573         * modules/sys_socket (License): Likewise.
7574         * modules/sys_stat (License): Likewise.
7575         * modules/sys_time (License): Likewise.
7576         * modules/time (License): Likewise.
7577         * modules/time_r (License): Likewise.
7578         * modules/timegm (License): Likewise.
7579         * modules/unistd (License): Likewise.
7580         * modules/vsnprintf (License): Likewise.
7581         * modules/wctype (License): Likewise.
7582
7583 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7584
7585         * modules/argz (License): LGPLv2+.
7586
7587 2007-07-15  Karl Berry  <karl@gnu.org>
7588
7589         * doc/gnulib.texi: revise node structure per new fdl.texi.
7590
7591 2007-07-14  Bruno Haible  <bruno@clisp.org>
7592
7593         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
7594         the output file.
7595         * lib/uniname/uninames.h: Regenerated.
7596
7597 2007-07-14  Karl Berry  <karl@gnu.org>
7598
7599         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
7600         omitting sectioning and index commands.
7601
7602 2007-07-13  Bruno Haible  <bruno@clisp.org>
7603
7604         New gnulib-tool option --more-symlinks.
7605         * gnulib-tool (func_usage): Document --more-symlinks.
7606         (do_copyrights): New variable.
7607         Recognize option --more-symlinks.
7608         (func_import): Don't add a copyright notice transform to
7609         sed_transform_lib_file if do_copyrights is empty.
7610
7611 2007-07-13  Bruno Haible  <bruno@clisp.org>
7612
7613         * lib/vasnprintf.c (decimal_point_char): Define also if
7614         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
7615         && !NEED_PRINTF_DIRECTIVE_A.
7616         Reported by Clemens Koller <clemens.koller@anagramm.de> via
7617         Gary V. Vaughan <gary@gnu.org>.
7618
7619 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
7620
7621         * lib/inttypes_.h: Undo previous change, since it was fixed
7622         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
7623
7624 2007-07-13  Bruno Haible  <bruno@clisp.org>
7625
7626         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
7627         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
7628
7629 2007-07-13  Jim Meyering  <jim@meyering.net>
7630
7631         df: Don't fail for Tru64's "file-on-file mount".
7632         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
7633         so we fall through and use statfs instead.  Details here:
7634         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
7635         Reported by Albert Chin.
7636
7637 2007-07-13  Bruno Haible  <bruno@clisp.org>
7638
7639         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
7640         * modules/configmake (License): Likewise.
7641         * modules/gettext (License): Likewise.
7642         * modules/gettext-h (License): Likewise.
7643         * modules/include_next (License): Likewise.
7644         * modules/link-warning (License): Likewise.
7645         * modules/localcharset (License): Likewise.
7646         * modules/localename (License): Likewise.
7647         * modules/lock (License): Likewise.
7648         * modules/relocatable-lib-lgpl (License): Likewise.
7649         * modules/size_max (License): Likewise.
7650         * modules/vasnprintf (License): Likewise.
7651         * modules/wchar (License): Likewise.
7652         * modules/xsize (License): Likewise.
7653
7654 2007-07-13  Bruno Haible  <bruno@clisp.org>
7655
7656         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
7657         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
7658
7659 2007-07-12  Bruno Haible  <bruno@clisp.org>
7660
7661         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
7662         in the modules files.
7663
7664 2007-07-11  Karl Berry  <karl@gnu.org>
7665
7666         * MODULES.html.sh (func_module): use
7667          sed -e '\|^'"${includefile}"'$|d'
7668          instead of /.../d, to avoid errors on $includefile's containing /.
7669
7670 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
7671
7672         * gnulib-tool (func_import): Avoid duplication of --avoid
7673         statements
7674         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
7675         names to `_' in variable names.
7676
7677 2007-07-10  Eric Blake  <ebb9@byu.net>
7678
7679         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
7680         * NEWS: Document this change.
7681
7682 2007-07-08  Bruno Haible  <bruno@clisp.org>
7683
7684         Update to Unicode 5.0.
7685         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
7686         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
7687         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
7688         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
7689         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
7690         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
7691         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
7692         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
7693         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
7694         U+10A3F, U+1D242..U+1D244.
7695         (nonspacing_table_ind): Update.
7696         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
7697         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
7698
7699 2007-07-08  Bruno Haible  <bruno@clisp.org>
7700
7701         Update to Unicode 5.0.
7702         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
7703         code transform. Extend the name index field of unicode_name_to_code and
7704         unicode_code_to_name from 16 to 24 bits.
7705         * lib/uniname/uniname.c (unicode_character_name,
7706         unicode_name_character): Add the range 0x12xxx to the code transform.
7707         * lib/uniname/uninames.h: Regenerated.
7708         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
7709
7710 2007-07-07  Bruno Haible  <bruno@clisp.org>
7711
7712         * modules/wcwidth-tests: New file.
7713         * tests/test-wcwidth.c: New file.
7714
7715         Work around MacOS X wcwidth() bug.
7716         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
7717         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
7718         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
7719         original wcwidth in non-UTF-8 locales.
7720         * modules/wcwidth (Depends-on): Add localcharset, streq,
7721         uniwidth/width.
7722         * doc/functions/wcwidth.texi: Update.
7723
7724 2007-07-07  Bruno Haible  <bruno@clisp.org>
7725
7726         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
7727         (wcwidth): New declaration.
7728         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
7729         macros.
7730         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
7731         here. Prepare for creating <wchar.h> unconditionally.
7732         * modules/wchar (Depends-on): Add link-warning.
7733         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
7734         REPLACE_WCWIDTH, and GL_LINK_WARNING.
7735         * lib/wcwidth.h: Remove file.
7736         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
7737         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
7738         * modules/wcwidth (Files): Remove lib/wcwidth.h.
7739         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
7740         (Include): Replace wcwidth.h with <wchar.h>.
7741         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
7742         * lib/mbchar.h: Don't include wcwidth.h.
7743         * lib/mbswidth.c: Likewise.
7744         * NEWS: Mention the change.
7745
7746 2007-07-07  Bruno Haible  <bruno@clisp.org>
7747
7748         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
7749         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
7750         definition with an external declaration.
7751         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
7752         defined as a function. Remove AC_C_INLINE requirement.
7753         * modules/wcwidth (Files): Add lib/wcwidth.c.
7754         (Makefile.am): Remove redundant statement.
7755
7756 2007-07-07  Bruno Haible  <bruno@clisp.org>
7757
7758         * MODULES.html.sh (Unicode string functions): Add the new modules.
7759
7760         * tests/uniwidth/test-u32-strwidth.c: New file.
7761         * modules/uniwidth/u32-strwidth-tests: New file.
7762
7763         * lib/uniwidth/u32-strwidth.c: New file.
7764         * modules/uniwidth/u32-strwidth: New file.
7765
7766         * tests/uniwidth/test-u16-strwidth.c: New file.
7767         * modules/uniwidth/u16-strwidth-tests: New file.
7768
7769         * lib/uniwidth/u16-strwidth.c: New file.
7770         * modules/uniwidth/u16-strwidth: New file.
7771
7772         * tests/uniwidth/test-u8-strwidth.c: New file.
7773         * modules/uniwidth/u8-strwidth-tests: New file.
7774
7775         * lib/uniwidth/u8-strwidth.c: New file.
7776         * modules/uniwidth/u8-strwidth: New file.
7777
7778         * tests/uniwidth/test-u32-width.c: New file.
7779         * modules/uniwidth/u32-width-tests: New file.
7780
7781         * lib/uniwidth/u32-width.c: New file.
7782         * modules/uniwidth/u32-width: New file.
7783
7784         * tests/uniwidth/test-u16-width.c: New file.
7785         * modules/uniwidth/u16-width-tests: New file.
7786
7787         * lib/uniwidth/u16-width.c: New file.
7788         * modules/uniwidth/u16-width: New file.
7789
7790         * tests/uniwidth/test-u8-width.c: New file.
7791         * modules/uniwidth/u8-width-tests: New file.
7792
7793         * lib/uniwidth/u8-width.c: New file.
7794         * modules/uniwidth/u8-width: New file.
7795
7796         * tests/uniwidth/test-uc_width.c: New file.
7797         * modules/uniwidth/width-tests: New file.
7798
7799         * lib/uniwidth/width.c: New file, from GNU libiconv.
7800         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
7801         * modules/uniwidth/width: New file.
7802
7803         * lib/uniwidth.h: New file, from GNU libiconv.
7804         * modules/uniwidth/base: New file.
7805
7806 2007-07-07  Bruno Haible  <bruno@clisp.org>
7807
7808         * lib/uniname.h: New file, from GNU gettext.
7809         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
7810         * lib/uniname/uninames.h: New file, from GNU gettext.
7811         * lib/uniname/uniname.c: New file, from GNU gettext.
7812         * tests/uniname/test-uninames.sh: New file.
7813         * tests/uniname/test-uninames.c: New file, from GNU gettext.
7814         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
7815         * modules/uniname/base: New file.
7816         * modules/uniname/uniname: New file.
7817         * modules/uniname/uniname-tests: New file.
7818         * MODULES.html.sh (Unicode string functions): Add the new modules.
7819
7820 2007-07-06  Bruno Haible  <bruno@clisp.org>
7821
7822         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
7823
7824 2007-07-06  Bruno Haible  <bruno@clisp.org>
7825
7826         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
7827         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
7828         includes <cygwin/sys_time.h> which includes <sys/select.h> which
7829         include <sys/time.h>.
7830         Reported by Eric Blake.
7831
7832 2007-07-06  Eric Blake  <ebb9@byu.net>
7833
7834         Fix testing canonicalize on cygwin.
7835         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
7836         Revert patch from 2007-06-19.
7837         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
7838         canonicalize module is also in use.
7839         * tests/test-canonicalize.c: New file.
7840         * tests/test-canonicalize.sh: Likewise.
7841         * modules/canonicalize-tests: Likewise.
7842
7843 2007-07-06  Jim Meyering  <jim@meyering.net>
7844
7845         * lib/getugroups.c (getugroups): Detect getgrent failure.
7846         Adjust comment to reflect reality: this function may return -1.
7847
7848 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
7849
7850         * build-aux/bootstrap (TP_URL,get_translations): Update to use
7851         the new TP address.
7852         (usage): Fix typo
7853         (gnulib_mk): New variable.
7854
7855 2007-07-05  Jim Meyering  <jim@meyering.net>
7856
7857         Don't let endgrent clobber errno, no matter how improbable.
7858         * lib/getugroups.c (getugroups): Save and restore errno around
7859         endgrent call.
7860
7861         Close the group DB even when failing with 2^31 or more members.
7862         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
7863
7864 2007-07-04  Jim Meyering  <jim@meyering.net>
7865
7866         * lib/getugroups.h: New file.
7867         * lib/getugroups.c: Include "getugroups.h".
7868         Remove uses of "register" keyword.
7869         Move local variable, "cp", down into scope where used.
7870         Give "username" parameter the "const" attribute.
7871         * modules/getugroups (Files): Add lib/getugroups.h
7872
7873 2007-07-04  Karl Berry  <karl@gnu.org>
7874
7875         * MODULES.html.sh (func_all_modules): Complete rename of
7876         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
7877
7878 2007-07-02  Bruno Haible  <bruno@clisp.org>
7879
7880         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
7881         mode, when inttypes.h comes from gnulib.
7882         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
7883
7884 2007-07-02  Simon Josefsson  <simon@josefsson.org>
7885
7886         * NEWS: Mention lgpl module name change.
7887
7888         * modules/lgpl-2.1: Renamed from lgpl.
7889
7890         * NEWS: Mention gpl module name change.
7891
7892         * modules/gpl-3.0: New file, based on gpl-2.0.
7893
7894         * modules/gpl-2.0: Renamed from gpl.
7895
7896         * modules/gpl: Fix filename, doc/gpl.texi is now found at
7897         doc/gpl-2.0.texi.
7898
7899 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
7900
7901         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
7902         #define __STDC_LIMIT_MACROS temporarily while including
7903         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
7904         Problem reported by Joel E. Denny in
7905         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
7906
7907 2007-07-01  Bruno Haible  <bruno@clisp.org>
7908
7909         * lib/unistdio.h: New file.
7910         * lib/unistdio/u-asnprintf.h: New file.
7911         * lib/unistdio/u-asprintf.h: New file.
7912         * lib/unistdio/u-printf-args.c: New file.
7913         * lib/unistdio/u-printf-args.h: New file.
7914         * lib/unistdio/u-printf-parse.h: New file.
7915         * lib/unistdio/u-snprintf.h: New file.
7916         * lib/unistdio/u-sprintf.h: New file.
7917         * lib/unistdio/u-vasprintf.h: New file.
7918         * lib/unistdio/u-vsnprintf.h: New file.
7919         * lib/unistdio/u-vsprintf.h: New file.
7920         * lib/unistdio/ulc-asnprintf.c: New file.
7921         * lib/unistdio/ulc-asprintf.c: New file.
7922         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
7923         * lib/unistdio/ulc-printf-parse.c: New file.
7924         * lib/unistdio/ulc-snprintf.c: New file.
7925         * lib/unistdio/ulc-sprintf.c: New file.
7926         * lib/unistdio/ulc-vasnprintf.c: New file.
7927         * lib/unistdio/ulc-vasprintf.c: New file.
7928         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
7929         * lib/unistdio/ulc-vsnprintf.c: New file.
7930         * lib/unistdio/ulc-vsprintf.c: New file.
7931         * lib/unistdio/u8-asnprintf.c: New file.
7932         * lib/unistdio/u8-asprintf.c: New file.
7933         * lib/unistdio/u8-printf-parse.c: New file.
7934         * lib/unistdio/u8-snprintf.c: New file.
7935         * lib/unistdio/u8-sprintf.c: New file.
7936         * lib/unistdio/u8-vasnprintf.c: New file.
7937         * lib/unistdio/u8-vasprintf.c: New file.
7938         * lib/unistdio/u8-vsnprintf.c: New file.
7939         * lib/unistdio/u8-vsprintf.c: New file.
7940         * lib/unistdio/u8-u8-asnprintf.c: New file.
7941         * lib/unistdio/u8-u8-asprintf.c: New file.
7942         * lib/unistdio/u8-u8-snprintf.c: New file.
7943         * lib/unistdio/u8-u8-sprintf.c: New file.
7944         * lib/unistdio/u8-u8-vasnprintf.c: New file.
7945         * lib/unistdio/u8-u8-vasprintf.c: New file.
7946         * lib/unistdio/u8-u8-vsnprintf.c: New file.
7947         * lib/unistdio/u8-u8-vsprintf.c: New file.
7948         * lib/unistdio/u16-asnprintf.c: New file.
7949         * lib/unistdio/u16-asprintf.c: New file.
7950         * lib/unistdio/u16-printf-parse.c: New file.
7951         * lib/unistdio/u16-snprintf.c: New file.
7952         * lib/unistdio/u16-sprintf.c: New file.
7953         * lib/unistdio/u16-vasnprintf.c: New file.
7954         * lib/unistdio/u16-vasprintf.c: New file.
7955         * lib/unistdio/u16-vsnprintf.c: New file.
7956         * lib/unistdio/u16-vsprintf.c: New file.
7957         * lib/unistdio/u16-u16-asnprintf.c: New file.
7958         * lib/unistdio/u16-u16-asprintf.c: New file.
7959         * lib/unistdio/u16-u16-snprintf.c: New file.
7960         * lib/unistdio/u16-u16-sprintf.c: New file.
7961         * lib/unistdio/u16-u16-vasnprintf.c: New file.
7962         * lib/unistdio/u16-u16-vasprintf.c: New file.
7963         * lib/unistdio/u16-u16-vsnprintf.c: New file.
7964         * lib/unistdio/u16-u16-vsprintf.c: New file.
7965         * lib/unistdio/u32-asnprintf.c: New file.
7966         * lib/unistdio/u32-asprintf.c: New file.
7967         * lib/unistdio/u32-printf-parse.c: New file.
7968         * lib/unistdio/u32-snprintf.c: New file.
7969         * lib/unistdio/u32-sprintf.c: New file.
7970         * lib/unistdio/u32-vasnprintf.c: New file.
7971         * lib/unistdio/u32-vasprintf.c: New file.
7972         * lib/unistdio/u32-vsnprintf.c: New file.
7973         * lib/unistdio/u32-vsprintf.c: New file.
7974         * lib/unistdio/u32-u32-asnprintf.c: New file.
7975         * lib/unistdio/u32-u32-asprintf.c: New file.
7976         * lib/unistdio/u32-u32-snprintf.c: New file.
7977         * lib/unistdio/u32-u32-sprintf.c: New file.
7978         * lib/unistdio/u32-u32-vasnprintf.c: New file.
7979         * lib/unistdio/u32-u32-vasprintf.c: New file.
7980         * lib/unistdio/u32-u32-vsnprintf.c: New file.
7981         * lib/unistdio/u32-u32-vsprintf.c: New file.
7982         * tests/unistdio/test-ulc-asnprintf1.c: New file.
7983         * tests/unistdio/test-ulc-asnprintf1.h: New file.
7984         * tests/unistdio/test-ulc-printf1.h: New file.
7985         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
7986         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
7987         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
7988         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
7989         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
7990         * tests/unistdio/test-ulc-vasprintf1.c: New file.
7991         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
7992         * tests/unistdio/test-ulc-vsprintf1.c: New file.
7993         * tests/unistdio/test-u8-asnprintf1.c: New file.
7994         * tests/unistdio/test-u8-asnprintf1.h: New file.
7995         * tests/unistdio/test-u8-printf1.h: New file.
7996         * tests/unistdio/test-u8-vasnprintf1.c: New file.
7997         * tests/unistdio/test-u8-vasnprintf2.c: New file.
7998         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
7999         * tests/unistdio/test-u8-vasnprintf3.c: New file.
8000         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
8001         * tests/unistdio/test-u8-vasprintf1.c: New file.
8002         * tests/unistdio/test-u8-vsnprintf1.c: New file.
8003         * tests/unistdio/test-u8-vsprintf1.c: New file.
8004         * tests/unistdio/test-u16-asnprintf1.c: New file.
8005         * tests/unistdio/test-u16-asnprintf1.h: New file.
8006         * tests/unistdio/test-u16-printf1.h: New file.
8007         * tests/unistdio/test-u16-vasnprintf1.c: New file.
8008         * tests/unistdio/test-u16-vasnprintf2.c: New file.
8009         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
8010         * tests/unistdio/test-u16-vasnprintf3.c: New file.
8011         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
8012         * tests/unistdio/test-u16-vasprintf1.c: New file.
8013         * tests/unistdio/test-u16-vsnprintf1.c: New file.
8014         * tests/unistdio/test-u16-vsprintf1.c: New file.
8015         * tests/unistdio/test-u32-asnprintf1.c: New file.
8016         * tests/unistdio/test-u32-asnprintf1.h: New file.
8017         * tests/unistdio/test-u32-printf1.h: New file.
8018         * tests/unistdio/test-u32-vasnprintf1.c: New file.
8019         * tests/unistdio/test-u32-vasnprintf2.c: New file.
8020         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
8021         * tests/unistdio/test-u32-vasnprintf3.c: New file.
8022         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
8023         * tests/unistdio/test-u32-vasprintf1.c: New file.
8024         * tests/unistdio/test-u32-vsnprintf1.c: New file.
8025         * tests/unistdio/test-u32-vsprintf1.c: New file.
8026         * modules/unistdio/base: New file.
8027         * modules/unistdio/u-printf-args: New file.
8028         * modules/unistdio/ulc-asnprintf: New file.
8029         * modules/unistdio/ulc-asprintf: New file.
8030         * modules/unistdio/ulc-fprintf: New file.
8031         * modules/unistdio/ulc-printf-parse: New file.
8032         * modules/unistdio/ulc-snprintf: New file.
8033         * modules/unistdio/ulc-sprintf: New file.
8034         * modules/unistdio/ulc-vasnprintf: New file.
8035         * modules/unistdio/ulc-vasprintf: New file.
8036         * modules/unistdio/ulc-vfprintf: New file.
8037         * modules/unistdio/ulc-vsnprintf: New file.
8038         * modules/unistdio/ulc-vsprintf: New file.
8039         * modules/unistdio/u8-asnprintf: New file.
8040         * modules/unistdio/u8-asprintf: New file.
8041         * modules/unistdio/u8-printf-parse: New file.
8042         * modules/unistdio/u8-snprintf: New file.
8043         * modules/unistdio/u8-sprintf: New file.
8044         * modules/unistdio/u8-vasnprintf: New file.
8045         * modules/unistdio/u8-vasprintf: New file.
8046         * modules/unistdio/u8-vsnprintf: New file.
8047         * modules/unistdio/u8-vsprintf: New file.
8048         * modules/unistdio/u8-u8-asnprintf: New file.
8049         * modules/unistdio/u8-u8-asprintf: New file.
8050         * modules/unistdio/u8-u8-snprintf: New file.
8051         * modules/unistdio/u8-u8-sprintf: New file.
8052         * modules/unistdio/u8-u8-vasnprintf: New file.
8053         * modules/unistdio/u8-u8-vasprintf: New file.
8054         * modules/unistdio/u8-u8-vsnprintf: New file.
8055         * modules/unistdio/u8-u8-vsprintf: New file.
8056         * modules/unistdio/u16-asnprintf: New file.
8057         * modules/unistdio/u16-asprintf: New file.
8058         * modules/unistdio/u16-printf-parse: New file.
8059         * modules/unistdio/u16-snprintf: New file.
8060         * modules/unistdio/u16-sprintf: New file.
8061         * modules/unistdio/u16-vasnprintf: New file.
8062         * modules/unistdio/u16-vasprintf: New file.
8063         * modules/unistdio/u16-vsnprintf: New file.
8064         * modules/unistdio/u16-vsprintf: New file.
8065         * modules/unistdio/u16-u16-asnprintf: New file.
8066         * modules/unistdio/u16-u16-asprintf: New file.
8067         * modules/unistdio/u16-u16-snprintf: New file.
8068         * modules/unistdio/u16-u16-sprintf: New file.
8069         * modules/unistdio/u16-u16-vasnprintf: New file.
8070         * modules/unistdio/u16-u16-vasprintf: New file.
8071         * modules/unistdio/u16-u16-vsnprintf: New file.
8072         * modules/unistdio/u16-u16-vsprintf: New file.
8073         * modules/unistdio/u32-asnprintf: New file.
8074         * modules/unistdio/u32-asprintf: New file.
8075         * modules/unistdio/u32-printf-parse: New file.
8076         * modules/unistdio/u32-snprintf: New file.
8077         * modules/unistdio/u32-sprintf: New file.
8078         * modules/unistdio/u32-vasnprintf: New file.
8079         * modules/unistdio/u32-vasprintf: New file.
8080         * modules/unistdio/u32-vsnprintf: New file.
8081         * modules/unistdio/u32-vsprintf: New file.
8082         * modules/unistdio/u32-u32-asnprintf: New file.
8083         * modules/unistdio/u32-u32-asprintf: New file.
8084         * modules/unistdio/u32-u32-snprintf: New file.
8085         * modules/unistdio/u32-u32-sprintf: New file.
8086         * modules/unistdio/u32-u32-vasnprintf: New file.
8087         * modules/unistdio/u32-u32-vasprintf: New file.
8088         * modules/unistdio/u32-u32-vsnprintf: New file.
8089         * modules/unistdio/u32-u32-vsprintf: New file.
8090         * modules/unistdio/ulc-asnprintf-tests: New file.
8091         * modules/unistdio/ulc-vasnprintf-tests: New file.
8092         * modules/unistdio/ulc-vasprintf-tests: New file.
8093         * modules/unistdio/ulc-vsnprintf-tests: New file.
8094         * modules/unistdio/ulc-vsprintf-tests: New file.
8095         * modules/unistdio/u8-asnprintf-tests: New file.
8096         * modules/unistdio/u8-vasnprintf-tests: New file.
8097         * modules/unistdio/u8-vasprintf-tests: New file.
8098         * modules/unistdio/u8-vsnprintf-tests: New file.
8099         * modules/unistdio/u8-vsprintf-tests: New file.
8100         * modules/unistdio/u16-asnprintf-tests: New file.
8101         * modules/unistdio/u16-vasnprintf-tests: New file.
8102         * modules/unistdio/u16-vasprintf-tests: New file.
8103         * modules/unistdio/u16-vsnprintf-tests: New file.
8104         * modules/unistdio/u16-vsprintf-tests: New file.
8105         * modules/unistdio/u32-asnprintf-tests: New file.
8106         * modules/unistdio/u32-vasnprintf-tests: New file.
8107         * modules/unistdio/u32-vasprintf-tests: New file.
8108         * modules/unistdio/u32-vsnprintf-tests: New file.
8109         * modules/unistdio/u32-vsprintf-tests: New file.
8110         * MODULES.html.sh (Unicode string functions): Add the new modules.
8111
8112 2007-07-01  Bruno Haible  <bruno@clisp.org>
8113
8114         * lib/sprintf.c (sprintf): Limit the available length estimation,
8115         to avoid address wraparound.
8116         * lib/vsprintf.c (vsprintf): Likewise.
8117         * modules/sprintf-posix (Dependencies): Add stdint.
8118         * modules/vsprintf-posix (Dependencies): Likewise.
8119
8120 2007-07-01  Bruno Haible  <bruno@clisp.org>
8121
8122         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
8123         Windows PATH as well. Conservative double-quoting. Comments.
8124
8125 2007-07-01  Bruno Haible  <bruno@clisp.org>
8126             Eric Blake  <ebb9@byu.net>
8127             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8128
8129         * gnulib-tool (self_abspathname): Fix algorithm to cope with
8130         empty components in $PATH, denoting '.'.
8131
8132 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8133
8134         * gnulib-tool: Fix indentation.
8135         (func_create_megatestdir): Likewise.
8136         Report by Bruno Haible.
8137
8138 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8139
8140         Sync from Automake.
8141         * build-aux/gnupload: Fix shell portability issues with for loops.
8142         Report by Karl Berry.
8143
8144 2007-06-29  Simon Josefsson  <simon@josefsson.org>
8145
8146         * build-aux/maint.mk (POURL): Use translationproject.org.
8147
8148 2007-06-27  Simon Josefsson  <simon@josefsson.org>
8149             Bruno Haible  <bruno@clisp.org>
8150
8151         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
8152         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
8153         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
8154         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
8155         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
8156
8157 2007-06-27  Bruno Haible  <bruno@clisp.org>
8158
8159         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
8160         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
8161
8162 2007-06-26  Karl Berry  <karl@gnu.org>
8163
8164         * MODULES.html.sh: remove xreadlink-with-size.
8165
8166 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
8167
8168         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
8169         method that I hope also handles the double-include problem noted
8170         by Bruno Haible in
8171         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
8172
8173 2007-06-23  Bruno Haible  <bruno@clisp.org>
8174
8175         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8176         Don't let the 'mostlyclean' target fail if the last subdirectory could
8177         not be removed.
8178         Reported by Karl Berry.
8179
8180 2007-06-23  Bruno Haible  <bruno@clisp.org>
8181
8182         * gnulib-tool (echo): Add a speedier workaround for ksh.
8183         * tests/test-echo.sh: Likewise.
8184
8185 2007-06-23  Bruno Haible  <bruno@clisp.org>
8186
8187         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
8188         * tests/test-echo.sh: Likewise.
8189
8190 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8191
8192         * gnulib-tool (IFS): Initialize early, so we don't set it to
8193         empty later.
8194         (self_abspathname): Rewrite algorithm to set it, reindent.
8195         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
8196         (func_create_megatestdir): Merge some sed scripts.
8197
8198 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
8199
8200         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
8201         exposed by Sun Studio 11 cc on Solaris 8.
8202
8203 2007-06-22  Bruno Haible  <bruno@clisp.org>
8204
8205         * gnulib-tool (echo): Ensure the echo primitive does not interpret
8206         backslashes.
8207         * tests/test-echo.sh: New file.
8208
8209 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8210
8211         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
8212         simplify `sed_replace_build_aux' scripts, they are portable but
8213         echoing them with `echo' is not.
8214         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
8215
8216 2007-06-21  Karl Berry  <karl@gnu.org>
8217
8218         * config/srclist.txt: guess we can't handle the licenses via
8219         srclist at the moment.
8220
8221 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
8222
8223         * MODULES.html.sh: Add include_next.
8224         * modules/include_next: New file.
8225
8226 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
8227
8228         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
8229         INCLUDE_NEXT.
8230         (gl_CHECK_NEXT_HEADERS): New macro.
8231         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
8232         the obsolescent gl_ABSOLUTE_HEADER.
8233         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
8234         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
8235         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
8236         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
8237         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
8238         * m4/math_h.m4 (gl_MATH_H): Likewise.
8239         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
8240         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
8241         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
8242         * m4/stdint.m4 (gl_STDINT_H): Likewise.
8243         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
8244         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
8245         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
8246         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
8247         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
8248         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
8249         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
8250         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
8251         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
8252         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
8253         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
8254         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
8255         * m4/inttypes.m4 (gl_INTTYPES_H): Define
8256         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
8257         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
8258         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
8259         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
8260         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
8261         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
8262         * lib/float_.h: Likewise.
8263         * lib/inttypes_.h: Likewise.
8264         * lib/math_.h: Likewise.
8265         * lib/search_.h: Likewise.
8266         * lib/signal_.h: Likewise.
8267         * lib/stdint_.h: Likewise.
8268         * lib/stdio_.h: Likewise.
8269         * lib/stdlib_.h: Likewise.
8270         * lib/string_.h: Likewise.
8271         * lib/sys_stat_.h: Likewise.
8272         * lib/sys_time_.h: Likewise.
8273         * lib/time_.h: Likewise.
8274         * lib/unistd_.h: Likewise.
8275         * lib/wchar_.h: Likewise.
8276         * lib/wctype_.h: Likewise.
8277         * lib/dirent_.h: Likewise.
8278         * lib/iconv_.h: Likewise.
8279         * lib/locale_.h: Likewise.
8280         * lib/netinet_in_.h: Likewise.
8281         * lib/sys_select_.h: Likewise.
8282         * lib/sys_socket_.h: Likewise.
8283         * lib/sysexits_.h: Likewise.
8284         * modules/fcntl (Depends-on): Depend on include_next, not
8285         absolute_header.
8286         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
8287         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
8288         * modules/fchdir: Likewise.
8289         * modules/float: Likewise.
8290         * modules/iconv_open: Likewise.
8291         * modules/inttypes: Likewise.
8292         * modules/locale: Likewise.
8293         * modules/math: Likewise.
8294         * modules/netinet_in: Likewise.
8295         * modules/search: Likewise.
8296         * modules/signal: Likewise.
8297         * modules/stdint: Likewise.
8298         * modules/stdio: Likewise.
8299         * modules/stdlib: Likewise.
8300         * modules/string: Likewise.
8301         * modules/sys_select: Likewise.
8302         * modules/sys_socket: Likewise.
8303         * modules/sys_stat: Likewise.
8304         * modules/sys_time: Likewise.
8305         * modules/sysexits: Likewise.
8306         * modules/time: Likewise.
8307         * modules/unistd: Likewise.
8308         * modules/wchar: Likewise.
8309         * modules/wctype: Likewise.
8310         * modules/sys_stat: Change maintainer to "all".
8311         * modules/unistd: Likewise.
8312
8313 2007-06-20  Karl Berry  <karl@gnu.org>
8314
8315         * config/srclist.txt: track www changes in license files.
8316
8317 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
8318
8319         * build-aux/bootstrap: Remove stray dot.
8320         Make sure build_aux settings are honored when linking
8321         gnulib_extra_files.
8322
8323 2007-06-19  Eric Blake  <ebb9@byu.net>
8324
8325         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
8326         Allow compilation on cygwin.
8327
8328 2007-06-19  Jim Meyering  <jim@meyering.net>
8329
8330         xreadlink-with-size: Remove module.  No longer used.
8331         Ex-callers now use xreadlink or mreadlink-with-size.
8332         * modules/xreadlink-with-size: Remove module.
8333         * lib/xreadlink-with-size.c: Remove file.
8334         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
8335         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
8336         just before the function definition *is* accurate.
8337
8338         Eliminate one way canonicalize_filename_mode could exit.
8339         * lib/canonicalize.c (canonicalize_filename_mode):
8340         Use mreadlink_with_size, not xreadlink_with_size.
8341
8342 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
8343
8344         Detect porting problems to FreeBSD/arm, which has time_t wider than
8345         long int.  Original problem reported for GNU diff by Xin Li in
8346         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
8347         * modules/getdate (Depends-on): Add intprops, verify.
8348         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
8349         is an integer type no wider than long int.
8350
8351 2007-06-18  Jim Meyering  <jim@meyering.net>
8352
8353         New module: mreadlink-with-size.
8354         * MODULES.html.sh: Add mreadlink-with-size.
8355         * modules/mreadlink-with-size: New module
8356         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
8357         not xreadlink-with-size.
8358         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
8359
8360 2007-06-16  Bruno Haible  <bruno@clisp.org>
8361
8362         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
8363         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
8364         Reported by Gary V. Vaughan <gary@gnu.org>.
8365
8366 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
8367
8368         Revamp lchown so that it lives in unistd.h where it belongs.
8369         * lib/lchown.h: Remove.
8370         * lib/dirchownmod.c: Don't include lib/lchown.h.
8371         * lib/fchownat.c: Likewise.
8372         * lib/openat.c: Likewise.
8373         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
8374         does not follow symlinks.
8375         (EOPNOTSUPP): Define if not defined.
8376         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
8377         is defined to 0.
8378         (lchown): New decl.
8379         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
8380         Do not check for lchown decl.
8381         Set REPLACE_LCHOWN.
8382         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
8383         REPLACE_LCHOWN.
8384         * modules/chown: Make it clear it follows symlinks.
8385         * modules/lchown: Make it clear it doesn't follow symlinks.
8386         (Files): Remove lib/lchown.h
8387         (Depends-on): Add unistd.
8388         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
8389         (Include): Include <unistd.h>, not "lchown.h".
8390         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
8391         REPLACE_LCHOWN.
8392
8393 2007-06-15  Jim Meyering  <jim@meyering.net>
8394
8395         Change license (GPL to LGPL) of fsusage and dependents.
8396         * modules/fsusage (License): Change to LGPL.
8397         * modules/full-read (License): Likewise.
8398         * modules/full-write (License): Likewise.
8399         * modules/safe-read (License): Likewise.
8400         * modules/safe-write (License): Likewise.
8401
8402 2007-06-14  Ben Pfaff  <blp@gnu.org>
8403
8404         Missing part of allocsa -> malloca transition.
8405         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
8406         gl_MALLOCA.
8407
8408 2007-06-12  Bruno Haible  <bruno@clisp.org>
8409
8410         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
8411         to ia64, x86_64, i386.
8412         Reported by Eric Blake.
8413
8414 2007-06-12  Bruno Haible  <bruno@clisp.org>
8415
8416         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
8417         cross-compiling to x86_64.
8418
8419 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
8420
8421         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
8422         glitch reported by Ralf Wildenhues in
8423         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
8424
8425         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
8426         Vin Shelton.
8427
8428 2007-06-11  Bruno Haible  <bruno@clisp.org>
8429
8430         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
8431         replacement string.
8432         Reported by Eric Blake.
8433
8434 2007-06-10  Bruno Haible  <bruno@clisp.org>
8435
8436         Prepare vasnprintf code for use with Unicode strings.
8437         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
8438         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
8439         TYPE_U32_STRING.
8440         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
8441         a_u32_string variants.
8442         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
8443         * lib/printf-args.c: Don't include config.h and the specification
8444         header if PRINTF_FETCHARGS is already defined.
8445         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
8446         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
8447         TYPE_U16_STRING, TYPE_U32_STRING.
8448         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
8449         u16_directive, u16_directives, u32_directive, u32_directives): New
8450         types.
8451         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
8452         New declarations.
8453         * lib/printf-parse.c: Don't include config.h and the specification
8454         header if PRINTF_PARSE is already defined. Eliminate the set of
8455         parameters for WIDE_CHAR_VERSION; the user of this file must provide
8456         them now. Include c-ctype.h.
8457         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
8458         directive and CHAR_T_ONLY_ASCII.
8459         * lib/vasnprintf.c: Don't include config.h and the specification header
8460         if VASNPRINTF is already defined.
8461         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
8462         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
8463         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
8464         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
8465         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
8466         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
8467         code accordingly.
8468         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
8469         pad_ourselves also in this case, with the 'c' and 's' directives, and
8470         with a different notion of "width".
8471         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
8472
8473 2007-06-10  Bruno Haible  <bruno@clisp.org>
8474
8475         * modules/unistr/u32-mbsnlen: New file.
8476         * lib/unistr/u32-mbsnlen.c: New file.
8477
8478         * modules/unistr/u16-mbsnlen: New file.
8479         * lib/unistr/u16-mbsnlen.c: New file.
8480
8481         * modules/unistr/u8-mbsnlen: New file.
8482         * lib/unistr/u8-mbsnlen.c: New file.
8483
8484         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
8485         declarations.
8486
8487 2007-06-10  Bruno Haible  <bruno@clisp.org>
8488
8489         * lib/string_.h (mbsnlen): New declaration.
8490         * lib/mbsnlen.c: New file.
8491         * m4/mbsnlen.m4: New file.
8492         * modules/mbsnlen: New file.
8493         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
8494         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
8495         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
8496
8497 2007-06-10  Bruno Haible  <bruno@clisp.org>
8498
8499         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
8500
8501 2007-06-10  Bruno Haible  <bruno@clisp.org>
8502
8503         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
8504         * lib/mbuiter.h: Likewise.
8505
8506 2007-06-10  Bruno Haible  <bruno@clisp.org>
8507
8508         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
8509         declaration.
8510
8511 2007-06-10  Karl Berry  <karl@gnu.org>
8512
8513         * config/srclist.txt: remove gettext entries, Bruno prefers
8514         to update individually.
8515
8516 2007-06-10  Bruno Haible  <bruno@clisp.org>
8517
8518         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
8519         'maxlen'. Ensure only length + width bytes are allocated, not
8520         length + 1 + width.
8521
8522 2007-06-09  Bruno Haible  <bruno@clisp.org>
8523
8524         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
8525         (CHAR_T): Remove macro.
8526         (VASNPRINTF): Update.
8527
8528 2007-06-09  Bruno Haible  <bruno@clisp.org>
8529
8530         * MODULES.html.sh (Unicode string functions): Add the new modules.
8531
8532         * modules/uniconv/u32-conv-to-enc: New file.
8533         * lib/uniconv/u32-conv-to-enc.c: New file.
8534         * modules/uniconv/u32-conv-to-enc-tests: New file.
8535         * tests/uniconv/test-u32-conv-to-enc.c: New file.
8536
8537         * modules/uniconv/u16-conv-to-enc: New file.
8538         * lib/uniconv/u16-conv-to-enc.c: New file.
8539         * lib/uniconv/u-conv-to-enc.h: New file.
8540         * modules/uniconv/u16-conv-to-enc-tests: New file.
8541         * tests/uniconv/test-u16-conv-to-enc.c: New file.
8542
8543         * modules/uniconv/u8-conv-to-enc: New file.
8544         * lib/uniconv/u8-conv-to-enc.c: New file.
8545         * modules/uniconv/u8-conv-to-enc-tests: New file.
8546         * tests/uniconv/test-u8-conv-to-enc.c: New file.
8547
8548         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
8549         u32_conv_to_encoding): New declarations.
8550
8551 2007-06-09  Bruno Haible  <bruno@clisp.org>
8552
8553         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
8554
8555 2007-06-09  Bruno Haible  <bruno@clisp.org>
8556
8557         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
8558         * modules/malloca: Renamed from modules/allocsa, updated.
8559         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
8560         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
8561         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
8562         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
8563         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
8564         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
8565         * modules/xmalloca: Renamed from modules/xallocsa, updated.
8566         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
8567         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
8568         * modules/c-strcasestr (Depends-on): Update.
8569         * lib/c-strcasestr.c: Update.
8570         * modules/c-strstr (Depends-on): Update.
8571         * lib/c-strstr.c: Update.
8572         * modules/canonicalize-lgpl (Depends-on): Update.
8573         * lib/canonicalize-lgpl.c: Update.
8574         * modules/clean-temp (Depends-on): Update.
8575         * lib/clean-temp.c: Update.
8576         * modules/csharpcomp (Depends-on): Update.
8577         * lib/csharpcomp.c: Update.
8578         * modules/csharpexec (Depends-on): Update.
8579         * lib/csharpexec.c: Update.
8580         * modules/javacomp (Depends-on): Update.
8581         * lib/javacomp.c: Update.
8582         * modules/javaexec (Depends-on): Update.
8583         * lib/javaexec.c: Update.
8584         * modules/mbscasestr (Depends-on): Update.
8585         * lib/mbscasestr.c: Update.
8586         * modules/mbsstr (Depends-on): Update.
8587         * lib/mbsstr.c: Update.
8588         * modules/setenv (Depends-on): Update.
8589         * lib/setenv.c: Update.
8590         * modules/strcasestr (Depends-on): Update.
8591         * lib/strcasestr.c: Update.
8592         * modules/striconveha (Depends-on): Update.
8593         * lib/striconveha.c: Update.
8594         * modules/relocatable-prog-wrapper (Files): Update.
8595         * lib/relocwrapper.c: Update.
8596         * build-aux/install-reloc: Update.
8597         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
8598
8599 2007-06-08  Bruno Haible  <bruno@clisp.org>
8600
8601         Port to uClibc.
8602         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
8603         * lib/fpurge.c (fpurge): Likewise.
8604         * lib/freading.c (freading): Likewise.
8605         * lib/fseeko.c (rpl_fseeko): Likewise.
8606         * lib/fseterr.c (fseterr): Likewise.
8607         * lib/fwriting.c (fwriting): Likewise.
8608         * tests/test-fflush.c (main): Avoid a failure on uClibc.
8609
8610 2007-06-08  Bruno Haible  <bruno@clisp.org>
8611
8612         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
8613         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
8614         * modules/gettext (Files): Add m4/intlmacosx.m4.
8615
8616 2007-06-07  Bruno Haible  <bruno@clisp.org>
8617
8618         * modules/localename-tests: New file.
8619         * tests/test-localename.c: New file.
8620
8621         New module 'localename'.
8622         * lib/localename.h: New file.
8623         * lib/localename.c: New file, from GNU gettext.
8624         * m4/localename.m4: New file.
8625         * modules/localename: New file.
8626
8627 2007-06-07  Bruno Haible  <bruno@clisp.org>
8628
8629         Work around the lack of <wchar.h> on some builds of uClibc.
8630         * doc/headers/wchar.texi: Update.
8631         * lib/wchar_.h: Include <wchar.h> only if it exists.
8632         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
8633         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
8634         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
8635         doesn't exist.
8636         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
8637         * modules/mbfile (Depends-on): Add wchar.
8638         * modules/mbiter (Depends-on): Likewise.
8639         * modules/mbuiter (Depends-on): Likewise.
8640         Reported by Simon Josefsson.
8641
8642 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
8643
8644         Work around problem reported by Steven M. Schweda in
8645         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
8646         Tru64 5.1B with the Compaq compiler environment installed declares
8647         an 'isblank' function but does not define it in the C library.
8648         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
8649         * lib/regex_internal.h (isblank): Likewise.
8650         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
8651         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
8652
8653 2007-06-05  Bruno Haible  <bruno@clisp.org>
8654
8655         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
8656         ia64.
8657         * modules/printf-safe: New file.
8658         * modules/fprintf-posix (Depends-on): Add printf-safe.
8659         * modules/printf-posix (Depends-on): Likewise.
8660         * modules/snprintf-posix (Depends-on): Likewise.
8661         * modules/sprintf-posix (Depends-on): Likewise.
8662         * modules/vasnprintf-posix (Depends-on): Likewise.
8663         * modules/vasprintf-posix (Depends-on): Likewise.
8664         * modules/vfprintf-posix (Depends-on): Likewise.
8665         * modules/vprintf-posix (Depends-on): Likewise.
8666         * modules/vsnprintf-posix (Depends-on): Likewise.
8667         * modules/vsprintf-posix (Depends-on): Likewise.
8668         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
8669         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
8670         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
8671         "no" on i386, x86_64, ia64.
8672         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
8673         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
8674         on i386, x86_64, ia64.
8675         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
8676         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
8677         on i386, x86_64, ia64.
8678         * tests/test-vasnprintf-posix.c: Include float.h.
8679         (LDBL80_WORDS): New macro.
8680         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
8681         on i386, x86_64, ia64.
8682         * tests/test-vasprintf-posix.c: Include float.h.
8683         (LDBL80_WORDS): New macro.
8684         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
8685         on i386, x86_64, ia64.
8686         * tests/test-snprintf-posix.c: Include float.h.
8687         * tests/test-sprintf-posix.c: Likewise.
8688         * tests/test-vsnprintf-posix.c: Likewise.
8689         * tests/test-vsprintf-posix.c: Likewise.
8690
8691 2007-06-05  Bruno Haible  <bruno@clisp.org>
8692
8693         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
8694         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
8695         non-IEEE numbers on i386, x86_64, ia64.
8696         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
8697         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
8698         * tests/test-isnanl.h: Include float.h.
8699         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
8700
8701 2007-06-05  Bruno Haible  <bruno@clisp.org>
8702
8703         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
8704         also the %a / %A. Handle the %a / %A code before this extra handling.
8705
8706 2007-06-05  Bruno Haible  <bruno@clisp.org>
8707
8708         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
8709         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
8710
8711 2007-06-05  Bruno Haible  <bruno@clisp.org>
8712
8713         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
8714         typo in variable name.
8715
8716 2007-06-05  Eric Blake  <ebb9@byu.net>
8717
8718         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
8719         Reported by Simon Josefsson.
8720
8721 2007-06-04  Bruno Haible  <bruno@clisp.org>
8722
8723         Avoid test failures on some PowerPC platforms.
8724         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
8725         Define differently for PowerPC.
8726         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
8727         Reported by Gary V. Vaughan <gary@gnu.org>.
8728
8729 2007-06-02  Bruno Haible  <bruno@clisp.org>
8730
8731         Fix test-stdint failure on FreeBSD/ia64.
8732         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
8733         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
8734         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
8735         * doc/headers/stdint.texi: Update.
8736
8737 2007-06-01  Bruno Haible  <bruno@clisp.org>
8738
8739         * tests/test-binary-io.c (main): Pass a third argument to open().
8740         Reported by Gary V. Vaughan <gary@gnu.org>.
8741
8742 2007-06-01  Bruno Haible  <bruno@clisp.org>
8743
8744         * doc/functions/frexpl.texi: Update for mingw.
8745
8746 2007-06-01  Bruno Haible  <bruno@clisp.org>
8747
8748         * tests/test-lseek.c (main): Disable test of errno for invalid third
8749         argument.
8750         * doc/functions/lseek.texi: Update.
8751         Reported by Gary V. Vaughan <gary@gnu.org>.
8752
8753 2007-05-28  Bruno Haible  <bruno@clisp.org>
8754
8755         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
8756
8757 2007-05-31  Eric Blake  <ebb9@byu.net>
8758
8759         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
8760         cross compiling.
8761
8762 2007-05-30  Eric Blake  <ebb9@byu.net>
8763         and Bruno Haible  <bruno@clisp.org>
8764
8765         Work around mingw test failures exposed by m4-1.4.9b.
8766         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
8767         * tests/test-unistd.c: Disable uid_t and git_t tests for the
8768         moment.
8769
8770 2007-05-30  Bruno Haible  <bruno@clisp.org>
8771
8772         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
8773         assuming that they are closed. Needed on HP-UX 11.
8774
8775 2007-05-29  Bruno Haible  <bruno@clisp.org>
8776
8777         Fix a problem with #include_next.
8778         * lib/dirent_.h: Split the double-inclusion guard.
8779         * lib/fcntl_.h: Likewise.
8780         * lib/float_.h: Likewise.
8781         * lib/iconv_.h: Likewise.
8782         * lib/inttypes_.h: Likewise.
8783         * lib/locale_.h: Likewise.
8784         * lib/math_.h: Likewise.
8785         * lib/netinet_in_.h: Likewise.
8786         * lib/search_.h: Likewise.
8787         * lib/signal_.h: Likewise.
8788         * lib/stdint_.h: Likewise.
8789         * lib/stdio_.h: Likewise.
8790         * lib/stdlib_.h: Likewise.
8791         * lib/string_.h: Likewise.
8792         * lib/sys_select_.h: Likewise.
8793         * lib/sys_socket_.h: Likewise.
8794         * lib/sys_stat_.h: Likewise.
8795         * lib/sys_time_.h: Likewise.
8796         * lib/sysexits_.h: Likewise.
8797         * lib/time_.h: Likewise.
8798         * lib/unistd_.h: Likewise.
8799         * lib/wchar_.h: Likewise.
8800         * lib/wctype_.h: Likewise.
8801
8802 2007-05-29  Bruno Haible  <bruno@clisp.org>
8803
8804         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
8805         for the moment.
8806
8807 2007-05-29  Bruno Haible  <bruno@clisp.org>
8808
8809         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
8810         invocation.
8811         Reported by Eric Blake.
8812
8813 2007-05-29  Bruno Haible  <bruno@clisp.org>
8814
8815         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
8816         compiling case.
8817
8818 2007-05-29  Eric Blake  <ebb9@byu.net>
8819             Bruno Haible  <bruno@clisp.org>
8820
8821         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
8822         cross compiles.
8823
8824 2007-05-28  Eric Blake  <ebb9@byu.net>
8825
8826         * modules/closein-tests (test_closein_LDADD): Support test on
8827         cygwin with libtool.
8828
8829 2007-05-28  Bruno Haible  <bruno@clisp.org>
8830
8831         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
8832         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
8833         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
8834         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
8835         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
8836         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
8837         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
8838         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
8839         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
8840
8841 2007-05-28  Eric Blake  <ebb9@byu.net>
8842
8843         Unconditionally include <config.h> in unit tests.
8844         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
8845         * tests/test-allocsa.c, tests/test-arcfour.c,
8846         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
8847         tests/test-array_list.c, tests/test-array_oset.c,
8848         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
8849         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
8850         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
8851         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
8852         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
8853         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
8854         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
8855         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
8856         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
8857         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
8858         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
8859         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
8860         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
8861         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
8862         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
8863         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
8864         test-md5.c, test-memmem.c, test-printf-posix.c,
8865         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
8866         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
8867         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
8868         test-strcasestr.c, test-striconv.c, test-striconveh.c,
8869         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
8870         test-vasnprintf-posix2.c, test-vasnprintf.c,
8871         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
8872         test-vfprintf-posix.c, test-vprintf-posix.c,
8873         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
8874         test-xvasprintf.c: Likewise.
8875
8876 2007-05-28  Bruno Haible  <bruno@clisp.org>
8877
8878         * gnulib-tool (func_import): Remember the --with-tests command-line
8879         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
8880         Reported by Eric Blake.
8881
8882 2007-05-28  Bruno Haible  <bruno@clisp.org>
8883
8884         * modules/ftell-tests: New file.
8885         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
8886         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
8887
8888         * lib/ftell.c: New file.
8889         * modules/ftell: New file.
8890         * m4/ftell.m4: New file.
8891         * doc/functions/ftell.texi: Update.
8892         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
8893         REPLACE_FTELL.
8894         * lib/stdio_.h (rpl_ftell): New declaration.
8895         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
8896         REPLACE_FTELL.
8897
8898 2007-05-28  Eric Blake  <ebb9@byu.net>
8899
8900         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
8901
8902 2007-05-28  Bruno Haible  <bruno@clisp.org>
8903
8904         * modules/fseek-tests: New file.
8905         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
8906         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
8907
8908         * lib/fseek.c: New file.
8909         * modules/fseek: New file.
8910         * m4/fseek.m4: New file.
8911         * doc/functions/fseek.texi: Update.
8912         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
8913         REPLACE_FSEEK.
8914         * lib/stdio_.h (rpl_fseek): New declaration.
8915         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
8916         REPLACE_FSEEK.
8917
8918 2007-05-28  Bruno Haible  <bruno@clisp.org>
8919
8920         * lib/stdio_.h (fflush): More comments.
8921
8922 2007-05-28  Bruno Haible  <bruno@clisp.org>
8923
8924         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
8925         runtime test.
8926
8927 2007-05-28  Eric Blake  <ebb9@byu.net>
8928
8929         Improve lseek module.
8930         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
8931         * lib/unistd_.h (lseek): Scale back link warning message.
8932         * tests/test-lseek.c: Beef up test.
8933         * tests/test-lseek.sh: Exercise more facets of lseek.
8934         Reported by Bruno Haible.
8935
8936 2007-05-28  Bruno Haible  <bruno@clisp.org>
8937
8938         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
8939         to define.
8940
8941 2007-05-27  Bruno Haible  <bruno@clisp.org>
8942
8943         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
8944
8945 2007-05-27  Bruno Haible  <bruno@clisp.org>
8946
8947         * modules/openmp: New file.
8948         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
8949         Noah Misch.
8950
8951 2007-05-26  Bruno Haible  <bruno@clisp.org>
8952
8953         * modules/chdir-long (Depends-on): Add fchdir.
8954         * modules/chdir-safer (Depends-on): Likewise.
8955         * modules/fts (Depends-on): Likewise.
8956         * modules/fts-lgpl (Depends-on): Likewise.
8957         * modules/openat (Depends-on): Likewise.
8958         * modules/savewd (Depends-on): Likewise.
8959
8960 2007-05-24  Eric Blake  <ebb9@byu.net>
8961
8962         Fix lseek on mingw.
8963         * modules/lseek: New module.
8964         * m4/lseek.m4: New file.
8965         * lib/lseek.c: New file.
8966         * modules/lseek-tests: New file.
8967         * tests/test-lseek.c: New file.
8968         * tests/test-lseek.sh: New file.
8969         * MODULES.html.sh: Document lseek module.
8970         * modules/fflush (Depends-on): Add lseek, fseeko.
8971         * modules/fseeko (Depends-on): Likewise.
8972         * modules/ftello (Depends-on): Likewise.
8973         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
8974         broken.
8975         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
8976         broken.
8977         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
8978         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
8979         * lib/ftello.c (rpl_ftello): Likewise.
8980         * tests/test-fseeko.c (main): Test this.
8981         * tests/test-fseeko.sh: Likewise.
8982         * tests/test-ftello.c (main): Likewise.
8983         * tests/test-ftello.sh: Likewise.
8984         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
8985         implies replacing fseek.
8986         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
8987         HAVE_FTELLO.
8988         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
8989         * modules/unistd (Makefile.am): Likewise.
8990         * lib/unistd_.h (lseek): Declare a replacement.
8991         * doc/functions/lseek.texi (lseek): Document this fix.
8992         * doc/functions/fseek.texi (fseek): Likewise.
8993         * doc/functions/ftell.texi (ftell): Likewise.
8994
8995 2007-05-24  Bruno Haible  <bruno@clisp.org>
8996
8997         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
8998         in the printed representation of a NaN.
8999         * tests/test-vasprintf-posix.c (test_function): Likewise.
9000         * tests/test-snprintf-posix.h (test_function): Likewise.
9001         * tests/test-sprintf-posix.h (test_function): Likewise.
9002         Reported by Eric Blake.
9003
9004 2007-05-23  Eric Blake  <ebb9@byu.net>
9005
9006         Fix fseeko/ftello on cygwin 1.5.24.
9007         * doc/functions/fseeko.texi (fseeko): Document the fix.
9008         * doc/functions/ftello.texi (ftello): Document the fix.
9009         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
9010         * doc/functions/stdout.text (stdout): New file.
9011         * doc/functions/stderr.text (stderr): New file.
9012         * doc/gnulib.texi (Function Substitutes): Use new files.
9013         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
9014         prior to 1.7.0.
9015         * tests/test-ftello.c (main): Likewise for ftello.
9016         * tests/test-fseeko.sh: New file.
9017         * tests/test-ftello.sh: New file.
9018         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
9019         with seekable stdin.
9020         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
9021         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
9022         (gl_REPLACE_FSEEKO): New macro.
9023         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
9024         * modules/fseeko (Files): Distribute fseeko.c.
9025         * modules/ftello (Files): Distribute ftello.c.
9026         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
9027         mode.
9028         * lib/ftello.c (rpl_ftello): New file.
9029         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
9030         fseeko, ftello.
9031         (gl_STDIN_LARGE_OFFSET): New macro.
9032         * modules/stdio (Makefile.am): Perform the replacement.
9033         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
9034
9035 2007-05-23  Bruno Haible  <bruno@clisp.org>
9036
9037         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
9038         GNULIB_POSIXCHECK is defined.
9039
9040 2007-05-21  Bruno Haible  <bruno@clisp.org>
9041
9042         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
9043         Check also the output for NaN arguments. When cross-compiling, guess
9044         no on IRIX.
9045         * lib/vasnprintf.c: Update comments.
9046         * tests/test-vasnprintf-posix.c (strisnan): New function.
9047         (test_function): Use it.
9048         * tests/test-vasprintf-posix.c (strisnan): New function.
9049         (test_function): Use it.
9050         * tests/test-snprintf-posix.h (strisnan): New function.
9051         (test_function): Use it.
9052         * tests/test-sprintf-posix.h (strisnan): New function.
9053         (test_function): Use it.
9054         Reported by Eric Blake.
9055
9056 2007-05-20  Bruno Haible  <bruno@clisp.org>
9057
9058         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
9059         numbers that fails on BeOS.
9060         * doc/functions/frexpl.texi: Update.
9061
9062 2007-05-20  Jim Meyering  <jim@meyering.net>
9063
9064         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
9065         forced upon us by glibc-2.6.
9066
9067 2007-05-20  Bruno Haible  <bruno@clisp.org>
9068
9069         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
9070         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
9071         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
9072         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
9073         NEED_PRINTF_INFINITE.
9074         (is_infinitel): New function.
9075         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
9076         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
9077         gl_PREREQ_VASNPRINTF_INFINITE.
9078         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
9079         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9080         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
9081         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
9082         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
9083         gl_PREREQ_VASNPRINTF_INFINITE.
9084         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9085         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9086         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9087         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9088         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9089         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9090         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9091         * doc/functions/fprintf.texi: Update.
9092         * doc/functions/printf.texi: Update.
9093         * doc/functions/snprintf.texi: Update.
9094         * doc/functions/sprintf.texi: Update.
9095         * doc/functions/vfprintf.texi: Update.
9096         * doc/functions/vprintf.texi: Update.
9097         * doc/functions/vsnprintf.texi: Update.
9098         * doc/functions/vsprintf.texi: Update.
9099
9100 2007-05-20  Bruno Haible  <bruno@clisp.org>
9101
9102         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
9103         was not found in libc.
9104         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
9105
9106 2007-05-20  Bruno Haible  <bruno@clisp.org>
9107
9108         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
9109         printed as "-nan" instead of "nan".
9110         * tests/test-vasprintf-posix.c (test_function): Likewise.
9111         * tests/test-snprintf-posix.h (test_function): Likewise.
9112         * tests/test-sprintf-posix.h (test_function): Likewise.
9113         Needed for HP-UX 11.
9114
9115 2007-05-20  Jim Meyering  <jim@meyering.net>
9116
9117         Fix buggy test for the fchownat-deref bug.
9118         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
9119         symlink required for the run-test.  Without it, this test would
9120         always declare that fchownat doesn't work, and client code would
9121         unnecessarily use the replacement function with fixed libc.
9122         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
9123         Reported by Greg Schafer.
9124
9125 2007-05-19  Bruno Haible  <bruno@clisp.org>
9126
9127         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
9128         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
9129         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
9130         Needed for IRIX 6.5 and Solaris 2.5.1.
9131
9132 2007-05-19  Bruno Haible  <bruno@clisp.org>
9133
9134         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
9135         (test_function): Skip tests involving -0.0 on platforms where
9136         -0.0 = 0.0.
9137         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
9138         (test_function): Skip tests involving -0.0 on platforms where
9139         -0.0 = 0.0.
9140         * tests/test-snprintf-posix.h (have_minus_zero): New function.
9141         (test_function): Skip tests involving -0.0 on platforms where
9142         -0.0 = 0.0.
9143         * tests/test-sprintf-posix.h (have_minus_zero): New function.
9144         (test_function): Skip tests involving -0.0 on platforms where
9145         -0.0 = 0.0.
9146         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
9147         tests.
9148         * tests/test-printf-posix.h (test_function): Likewise.
9149         * tests/test-printf-posix.output: Remove all -0.0 related results.
9150         Needed for IRIX 6.5.
9151
9152 2007-05-19  Bruno Haible  <bruno@clisp.org>
9153
9154         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
9155         printed as "nan0x7fffffff" instead of "nan".
9156         * tests/test-vasprintf-posix.c (test_function): Likewise.
9157         * tests/test-snprintf-posix.h (test_function): Likewise.
9158         * tests/test-sprintf-posix.h (test_function): Likewise.
9159         * tests/test-fprintf-posix.h (NaN): Remove macro.
9160         (test_function): Remove all NaN related tests.
9161         * tests/test-printf-posix.h (NaN): Remove macro.
9162         (test_function): Remove all NaN related tests.
9163         * tests/test-printf-posix.output: Remove all NaN related results.
9164         Needed for IRIX 6.5.
9165
9166 2007-05-19  Bruno Haible  <bruno@clisp.org>
9167
9168         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
9169         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
9170
9171 2007-05-19  Bruno Haible  <bruno@clisp.org>
9172
9173         * lib/float_.h: New file.
9174         * m4/float_h.m4: New file.
9175         * modules/float: New file.
9176         * modules/isnanl (Dependencies): Add float.
9177         * modules/isnanl-nolibm (Dependencies): Likewise.
9178         * modules/mathl (Dependencies): Likewise.
9179         * modules/printf-frexpl (Dependencies): Likewise.
9180         * modules/signbit (Dependencies): Likewise.
9181         * modules/vasnprintf (Dependencies): Likewise.
9182         * doc/headers/float.texi: Update.
9183
9184 2007-05-19  Jim Meyering  <jim@meyering.net>
9185
9186         * lib/utimens.c (gl_futimens): Rename from futimens,
9187         now that glibc-2.6 declares futimens.
9188         * lib/utimens.h: Likewise.
9189
9190 2007-05-19  Bruno Haible  <bruno@clisp.org>
9191
9192         Avoid test failures on mingw.
9193         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
9194         * tests/test-printf-posix.sh: Likewise.
9195         * tests/test-vfprintf-posix.sh: Likewise.
9196         * tests/test-vprintf-posix.sh: Likewise.
9197
9198 2007-05-19  Bruno Haible  <bruno@clisp.org>
9199
9200         Fix *printf result for NaN, Inf, -0.0 on mingw.
9201         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
9202         * lib/vasnprintf.c: Include math.h and isnan.h.
9203         (is_infinite_or_zero): New function.
9204         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
9205         values in the %f, %F, %e, %E, %g, %G directives.
9206         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
9207         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9208         gl_PRINTF_INFINITE and test its result. Invoke
9209         gl_PREREQ_VASNPRINTF_INFINITE.
9210         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9211         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9212         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9213         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9214         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9215         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9216         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9217         * doc/functions/fprintf.texi: Update.
9218         * doc/functions/printf.texi: Update.
9219         * doc/functions/snprintf.texi: Update.
9220         * doc/functions/sprintf.texi: Update.
9221         * doc/functions/vfprintf.texi: Update.
9222         * doc/functions/vprintf.texi: Update.
9223         * doc/functions/vsnprintf.texi: Update.
9224         * doc/functions/vsprintf.texi: Update.
9225
9226 2007-05-19  Bruno Haible  <bruno@clisp.org>
9227
9228         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
9229         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
9230         Instead of multiplying with 10^k, set extra_zeroes to k.
9231         (scale10_round_long_double): Remove function.
9232
9233 2007-05-18  Bruno Haible  <bruno@clisp.org>
9234
9235         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
9236         introduced on 2007-05-06.
9237
9238 2007-05-18  Bruno Haible  <bruno@clisp.org>
9239
9240         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
9241         %g directives.
9242         * tests/test-vasprintf-posix.c (test_function): Likewise.
9243         * tests/test-snprintf-posix.h (test_function): Likewise.
9244         * tests/test-sprintf-posix.h (test_function): Likewise.
9245
9246 2007-05-18  Bruno Haible  <bruno@clisp.org>
9247
9248         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
9249         (strmatch): New function.
9250         (test_function): Test the %f directive on numbers of various exponents.
9251         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
9252         (strmatch): New function.
9253         (test_function): Test the %f directive on numbers of various exponents.
9254         * tests/test-snprintf-posix.h (strmatch): New function.
9255         (test_function): Test the %f directive on numbers of various exponents.
9256         * tests/test-sprintf-posix.h (strmatch): New function.
9257         (test_function): Test the %f directive on numbers of various exponents.
9258         * tests/test-snprintf-posix.c (SIZEOF): New macro.
9259         * tests/test-sprintf-posix.c (SIZEOF): New macro.
9260         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
9261         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
9262
9263 2007-05-18  Bruno Haible  <bruno@clisp.org>
9264
9265         Add support for 'long double' number output.
9266         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
9267         * lib/vasnprintf.c: Include math.h and float+.h.
9268         (mp_limb_t): New type.
9269         (GMP_LIMB_BITS): New macro.
9270         (mp_twolimb_t): New type.
9271         (GMP_TWOLIMB_BITS): New macro.
9272         (mpn_t): New type.
9273         (multiply, divide, convert_to_decimal, decode_long_double,
9274         scale10_round_long_double, scale10_round_decimal_long_double,
9275         floorlog10l): New functions.
9276         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
9277         for the %f, %F, %e, %E, %g, %G directives.
9278         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
9279         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9280         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
9281         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
9282         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9283         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9284         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9285         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9286         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9287         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9288         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9289         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
9290         * modules/snprintf-posix (Depends-on): Likewise.
9291         * modules/sprintf-posix (Depends-on): Likewise.
9292         * modules/vasnprintf-posix (Depends-on): Likewise.
9293         * modules/vasprintf-posix (Depends-on): Likewise.
9294         * modules/vfprintf-posix (Depends-on): Likewise.
9295         * modules/vsnprintf-posix (Depends-on): Likewise.
9296         * modules/vsprintf-posix (Depends-on): Likewise.
9297         * modules/vasnprintf (Files): Add lib/float+.h.
9298         * doc/functions/fprintf.texi: Update.
9299         * doc/functions/printf.texi: Update.
9300         * doc/functions/snprintf.texi: Update.
9301         * doc/functions/sprintf.texi: Update.
9302         * doc/functions/vfprintf.texi: Update.
9303         * doc/functions/vprintf.texi: Update.
9304         * doc/functions/vsnprintf.texi: Update.
9305         * doc/functions/vsprintf.texi: Update.
9306
9307 2007-05-18  Bruno Haible  <bruno@clisp.org>
9308
9309         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
9310
9311 2007-05-18  Bruno Haible  <bruno@clisp.org>
9312
9313         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
9314         for printing 64-bit integers. Needed for mingw.
9315
9316 2007-05-18  Bruno Haible  <bruno@clisp.org>
9317
9318         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
9319         gl_FUNC_FREXPL_WORKS.
9320         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
9321
9322 2007-05-18  Bruno Haible  <bruno@clisp.org>
9323
9324         * modules/frexpl-nolibm-tests: New file.
9325
9326         * modules/frexpl-nolibm: New file.
9327         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
9328
9329 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
9330
9331         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
9332         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
9333         GCC 4.2, which otherwise issues a lot of warnings.
9334         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
9335         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
9336         Likewise.
9337         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
9338         * modules/iconv_open (iconv.h): Likewise.
9339         * modules/locale (locale.h): Likewise.
9340         * modules/netinet_in (netinet/in.h): Likewise.
9341         * modules/sys_select (sys_select.h): Likewise.
9342         * modules/sys_socket (sys/socket.h): Likewise.
9343         * modules/sys_stat (sys/stat.h): Likewise.
9344         * modules/sysexits (sysexits.h): Likewise.
9345         * modules/unistd (unistd.h): Likewise.
9346
9347 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9348
9349         * modules/closein-tests (Makefile.am): Distribute
9350         `test-closein.sh'.
9351
9352 2007-05-17  Bruno Haible  <bruno@clisp.org>
9353
9354         * tests/test-printf-posix.output: Renamed from
9355         tests/test-fprintf-posix.out.
9356         * modules/fprintf-posix-tests: Update.
9357         * modules/printf-posix-tests: Update.
9358         * modules/vfprintf-posix-tests: Update.
9359         * modules/vprintf-posix-tests: Update.
9360         * tests/test-fprintf-posix.sh: Update.
9361         * tests/test-printf-posix.sh: Update.
9362         * tests/test-vfprintf-posix.sh: Update.
9363         * tests/test-vprintf-posix.sh: Update.
9364         Reported by Ralf Wildenhues.
9365
9366 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
9367
9368         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
9369         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
9370         GCC 4.2, which otherwise issues a lot of warnings.
9371         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
9372         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
9373         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
9374         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
9375         it should no longer be needed.
9376         * lib/string_.h: Likewise.
9377         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
9378         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
9379         * modules/inttypes (inttypes.h): Likewise.
9380         * modules/math (math.h): Likewise.
9381         * modules/search (search.h): Likewise.
9382         * modules/signal (signal.h): Likewise.
9383         * modules/stdint (stdint.h): Likewise.
9384         * modules/stdio (stdio.h): Likewise.
9385         * modules/stdlib (stdlib.h): Likewise.
9386         * modules/string (string.h): Likewise.
9387         * modules/sys_time (sys/time.h): Likewise.
9388         * modules/time (time.h): Likewise.
9389         * modules/wchar (wchar.h): Likewise.
9390         * modules/wctype (wtype.h): Likewise.
9391
9392 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
9393
9394         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
9395
9396 2007-05-13  Bruno Haible  <bruno@clisp.org>
9397
9398         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
9399         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
9400         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
9401         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
9402         (gl_PREREQ_STRTOK_R): Don't require it here.
9403
9404 2007-05-13  Bruno Haible  <bruno@clisp.org>
9405
9406         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
9407         when used in C++ mode.
9408
9409 2007-05-12  Bruno Haible  <bruno@clisp.org>
9410
9411         * lib/linebuffer.h: Tweak doc.
9412         * lib/linebuffer.c: Likewise.
9413
9414 2007-05-12  James Youngman  <jay@gnu.org>
9415
9416         * lib/linebuffer.c (readlinebuffer_delim): New function,
9417         like readlinebuffer, but use a caller-specified delimiter.
9418         (readlinebuffer): Just call readlinebuffer_delim with '\n'
9419         as the delimiter.
9420         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
9421
9422 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
9423
9424         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
9425         * modules/openat (Files): Remove openat-die.c.
9426         (Depends-on): Add openat-die.
9427         * modules/openat-die: New module.
9428
9429 2007-05-06  Bruno Haible  <bruno@clisp.org>
9430
9431         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
9432         Update with info about Cygwin.
9433         * doc/functions/fprintf.texi: Update.
9434         * doc/functions/printf.texi: Update.
9435         * doc/functions/snprintf.texi: Update.
9436         * doc/functions/sprintf.texi: Update.
9437         * doc/functions/vfprintf.texi: Update.
9438         * doc/functions/vprintf.texi: Update.
9439         * doc/functions/vsnprintf.texi: Update.
9440         * doc/functions/vsprintf.texi: Update.
9441         Reported by Eric Blake.
9442
9443 2007-05-06  Bruno Haible  <bruno@clisp.org>
9444
9445         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
9446         padding ourselves for the floating-point directives.
9447         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
9448         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
9449         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
9450         gl_PRINTF_FLAG_ZERO and test its result. Invoke
9451         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
9452         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9453         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
9454         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9455         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9456         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9457         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9458         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9459         * tests/test-snprintf-posix.h (test_function): Also check the width
9460         and some flags in the %f directive.
9461         * tests/test-sprintf-posix.h (test_function): Likewise.
9462         * tests/test-vasnprintf-posix.c (test_function): Likewise.
9463         * tests/test-vasprintf-posix.c (test_function): Likewise.
9464         * doc/functions/fprintf.texi: Update.
9465         * doc/functions/printf.texi: Update.
9466         * doc/functions/snprintf.texi: Update.
9467         * doc/functions/sprintf.texi: Update.
9468         * doc/functions/vfprintf.texi: Update.
9469         * doc/functions/vprintf.texi: Update.
9470         * doc/functions/vsnprintf.texi: Update.
9471         * doc/functions/vsprintf.texi: Update.
9472
9473 2007-05-06  Bruno Haible  <bruno@clisp.org>
9474
9475         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
9476         pass the ' flag character to sprintf or snprintf.
9477         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
9478         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
9479         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
9480         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
9481         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
9482         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9483         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
9484         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9485         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9486         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9487         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9488         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9489         * tests/test-snprintf-posix.h (test_function): Also check the grouping
9490         flag.
9491         * tests/test-sprintf-posix.h (test_function): Likewise.
9492         * tests/test-vasnprintf-posix.c (test_function): Likewise.
9493         * tests/test-vasprintf-posix.c (test_function): Likewise.
9494         * doc/functions/fprintf.texi: Update.
9495         * doc/functions/printf.texi: Update.
9496         * doc/functions/snprintf.texi: Update.
9497         * doc/functions/sprintf.texi: Update.
9498         * doc/functions/vfprintf.texi: Update.
9499         * doc/functions/vprintf.texi: Update.
9500         * doc/functions/vsnprintf.texi: Update.
9501         * doc/functions/vsprintf.texi: Update.
9502
9503 2007-05-01  Bruno Haible  <bruno@clisp.org>
9504
9505         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
9506
9507 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
9508
9509         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
9510         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
9511
9512 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
9513
9514         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
9515         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
9516         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
9517
9518 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
9519
9520         * lib/argp-help.c (struct hol_entry): New member `ord'.
9521         (HOL_ENTRY_PTRCMP): Use ord for comparison
9522         (hol_sort): Initialize ord.
9523
9524 2007-05-01  Bruno Haible  <bruno@clisp.org>
9525
9526         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
9527         Reported by Eric Blake.
9528         * doc/gnulib.texi (Function Substitutes): Update.
9529
9530 2007-05-01  Bruno Haible  <bruno@clisp.org>
9531
9532         * doc/functions.texi: Remove file, now redundant through
9533         doc/functions/*.texi.
9534
9535 2007-05-01  Bruno Haible  <bruno@clisp.org>
9536
9537         * modules/argp (Depends-on): Add sleep.
9538
9539 2007-05-01  Bruno Haible  <bruno@clisp.org>
9540
9541         * modules/sleep-tests: New file.
9542         * tests/test-sleep.c: New file.
9543
9544         * modules/sleep: New file.
9545         * lib/sleep.c: New file.
9546         * m4/sleep.m4: New file.
9547         * lib/unistd_.h (sleep): New declaration.
9548         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
9549         HAVE_SLEEP.
9550         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
9551         * doc/functions/sleep.texi: Document the sleep module.
9552
9553 2007-05-01  Bruno Haible  <bruno@clisp.org>
9554
9555         * lib/sigprocmask.h: Remove file.
9556         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
9557         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
9558         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
9559         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
9560         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
9561         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
9562         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
9563         HAVE_SIGSET_T as a shell variable.
9564         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
9565         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
9566         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
9567         (Depends-on): Add signal. Remove verify.
9568         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
9569         (Include): Mention <signal.h> instead of sigprocmask.h.
9570         * NEWS: Mention the change.
9571         * lib/fatal-signal.c: Don't include sigprocmask.h.
9572
9573 2007-05-01  Bruno Haible  <bruno@clisp.org>
9574
9575         * modules/signal: New file.
9576         * lib/signal_.h: New file.
9577         * m4/signal_h.m4: New file.
9578
9579 2007-05-01  Bruno Haible  <bruno@clisp.org>
9580
9581         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
9582         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
9583         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
9584         HAVE_WCTYPE_CTMP_BUG into wctype.h.
9585
9586 2007-05-01  Bruno Haible  <bruno@clisp.org>
9587
9588         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
9589         configure time.
9590         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
9591         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
9592         * modules/sys_stat (Makefile.am): Substitute their values into
9593         sys/stat.h.
9594
9595 2007-05-01  Bruno Haible  <bruno@clisp.org>
9596
9597         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
9598         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
9599         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
9600
9601 2007-05-01  Bruno Haible  <bruno@clisp.org>
9602
9603         * doc/header/assert.texi: Undo last change: don't mention the gnulib
9604         'assert' module here.
9605
9606 2007-05-01  Bruno Haible  <bruno@clisp.org>
9607
9608         * doc/functions/*.texi: New files.
9609         * doc/functions/google-ranking.txt: New file.
9610         * doc/gnulib.texi (Function Substitutes): New chapter.
9611         (ctime, inet_ntoa): Remove sections.
9612         * doc/ctime.texi: Remove file.
9613         * doc/inet_ntoa.texi: Remove file.
9614         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
9615         dependencies.
9616         (%.info): New rule, specifying a --reference-limit.
9617
9618 2007-05-01  Bruno Haible  <bruno@clisp.org>
9619
9620         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
9621
9622 2007-05-01  Bruno Haible  <bruno@clisp.org>
9623
9624         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
9625         the portability of 'mkdir' to mingw systems.
9626
9627 2007-05-01  Bruno Haible  <bruno@clisp.org>
9628
9629         * doc/headers/google-ranking.txt: New file.
9630
9631 2007-04-30  Eric Blake  <ebb9@byu.net>
9632
9633         Prefer fseeko to fseek.
9634         * modules/getpass (Depends-on): Add fseeko.
9635         * lib/getpass.c (getpass): Use fseeko, not fseek.
9636
9637 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
9638
9639         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
9640         assumes the sorting is stable, while most qsort implementations
9641         are not.  Use argument addresses to ensure they never compare as
9642         equal.
9643
9644         * tests/test-argp-2.sh (usage-indent test): Fix output
9645         (func_compare): Restore diff options
9646         * tests/test-argp.c: Restore #include "progname.h"
9647
9648 2007-04-29  Bruno Haible  <bruno@clisp.org>
9649
9650         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
9651         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
9652         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
9653         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9654         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
9655         (configure.ac): Define CHECK_SNPRINTF_POSIX.
9656         (TESTS, check_PROGRAMS): Add test-snprintf.
9657         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
9658         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
9659         (TESTS, check_PROGRAMS): Add test-vsnprintf.
9660         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
9661         assertions that fail on HP-UX, OSF/1, or IRIX.
9662         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
9663
9664 2007-04-29  Bruno Haible  <bruno@clisp.org>
9665
9666         * MODULES.html.sh (posix_functions): Remove 'contents'.
9667
9668 2007-04-29  Karl Berry  <karl@gnu.org>
9669
9670         * config/srclist.txt (gendocs_template_min): new entry.
9671
9672 2007-04-29  Bruno Haible  <bruno@clisp.org>
9673
9674         Work around fpurge bug on BSD systems.
9675         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
9676         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
9677         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
9678         fpurge to rpl_fpurge if the system already has this function.
9679         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
9680         the case where the system already has this function. Correct invariants
9681         on BSD systems.
9682         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
9683         BSD systems.
9684
9685 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
9686
9687         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
9688         proposed by Sven Verdoolaege.
9689
9690         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
9691         options.
9692         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
9693         (usage and help tests): Update
9694
9695 2007-04-29  Bruno Haible  <bruno@clisp.org>
9696
9697         * tests/test-fflush.c (main): Use a file of size 17, not 10.
9698         Print more information in case of failure. Disable a test on BeOS.
9699
9700 2007-04-29  Bruno Haible  <bruno@clisp.org>
9701
9702         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
9703         This helps debugging on systems on which no gdb is available.
9704
9705 2007-04-29  Bruno Haible  <bruno@clisp.org>
9706
9707         * lib/freading.h: Improve comments.
9708         * lib/fwriting.h: Likewise.
9709         * tests/test-freading.c (main): Don't check freading immediately after
9710         repositioning. Needed for glibc.
9711
9712 2007-04-29  Bruno Haible  <bruno@clisp.org>
9713
9714         * lib/freading.c (freading): Trivial simplification.
9715
9716 2007-04-28  Bruno Haible  <bruno@clisp.org>
9717
9718         * tests/test-fwriting.c (main): Also test the interaction between
9719         fflush and fwriting.
9720         * modules/fwriting-tests (Depends-on): Add fflush.
9721
9722         * tests/test-freading.c (main): Also test the interaction between
9723         fflush and freading.
9724         * modules/freading-tests (Depends-on): Add fflush.
9725
9726 2007-04-28  Bruno Haible  <bruno@clisp.org>
9727
9728         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
9729         fseeko and ftello.
9730         Suggested by Eric Blake.
9731
9732 2007-04-28  Jim Meyering  <jim@meyering.net>
9733
9734         Avoid false-negative in gl_STDINT_H's C99 conformance test.
9735         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
9736         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
9737
9738 2007-04-27  Eric Blake  <ebb9@byu.net>
9739
9740         * doc/headers/assert.texi (assert.h): Document assert module use.
9741
9742 2007-04-27  Bruno Haible  <bruno@clisp.org>
9743
9744         * doc/headers/*.texi: New files.
9745         * doc/gnulib.texi (Header File Substitutes): New chapter.
9746         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
9747         dependencies.
9748         (standards.info ,standards.html, standards.dvi): Update dependencies.
9749         (mostlyclean, clean): New targets.
9750
9751 2007-04-27  Bruno Haible  <bruno@clisp.org>
9752
9753         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
9754         * modules/sysexits (Files, Makefile.am): Update.
9755
9756         * lib/sys_socket_.h: Renamed from lib/socket_.h.
9757         * modules/sys_socket (Files, Makefile.am): Update.
9758
9759         * lib/sys_stat_.h: Renamed from lib/stat_.h.
9760         * modules/sys_stat (Files, Makefile.am): Update.
9761
9762 2007-04-27  Eric Blake  <ebb9@byu.net>
9763
9764         * lib/freading.h: Improve comments.
9765         * lib/fwriting.h: Likewise.
9766         * lib/fflush.c: Likewise.
9767
9768         Fix closein for mingw.
9769         * modules/closein-tests: Add tests for closein.
9770         * tests/test-closein.c: New file.
9771         * tests/test-closein.sh: Likewise.
9772         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
9773         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
9774
9775 2007-04-27  Bruno Haible  <bruno@clisp.org>
9776
9777         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
9778         version is < 6.
9779         * lib/math_.h [__DECC]: Likewise.
9780         * lib/stdio_.h [__DECC]: Likewise.
9781         * lib/stdlib_.h [__DECC]: Likewise.
9782         * lib/string_.h [__DECC]: Likewise.
9783         * lib/time_.h [__DECC]: Likewise.
9784         * lib/wchar_.h [__DECC]: Likewise.
9785         * lib/wctype_.h [__DECC]: Likewise.
9786
9787 2007-04-27  Bruno Haible  <bruno@clisp.org>
9788
9789         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
9790
9791 2007-04-27  Bruno Haible  <bruno@clisp.org>
9792
9793         * lib/fflush.c: Add comments.
9794         * modules/fpurge-tests (Depends-on): Add fflush.
9795         * modules/freadable-tests (Depends-on): Likewise.
9796         * modules/fwritable-tests (Depends-on): Likewise.
9797
9798 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
9799
9800         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
9801         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
9802         Report by Bruno Haible <bruno@clisp.org>.
9803
9804 2007-04-26  Eric Blake  <ebb9@byu.net>
9805
9806         Fix fflush on mingw.
9807         * modules/fflush (Depends-on): Add freading.
9808         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
9809         but unread data.
9810
9811 2007-04-26  Eric Blake  <ebb9@byu.net>
9812         and Bruno Haible  <bruno@clisp.org>
9813
9814         Implement freading and fwriting.
9815         * lib/freading.c: New file.
9816         * lib/freading.h: Likewise.
9817         * m4/freading.m4: Likewise.
9818         * modules/freading: Likewise.
9819         * modules/freading-tests: Likewise.
9820         * tests/test-freading.c: Likewise.
9821         * lib/fwriting.c: New file.
9822         * lib/fwriting.h: Likewise.
9823         * m4/fwriting.m4: Likewise.
9824         * modules/fwriting: Likewise.
9825         * modules/fwriting-tests: Likewise.
9826         * tests/test-fwriting.c: Likewise.
9827         * MODULES.html.sh (File stream based Input/Output): Mention them.
9828
9829 2007-04-26  Bruno Haible  <bruno@clisp.org>
9830
9831         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
9832         'long' when we assume it.
9833         Suggested by Eric Blake.
9834
9835 2007-04-26  Bruno Haible  <bruno@clisp.org>
9836
9837         Ensure fseeko, ftello are declared on glibc systems.
9838         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
9839         * modules/fseeko (configure.ac-early): Likewise.
9840         * modules/ftello (configure.ac-early): Likewise.
9841         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
9842         AC_FUNC_FSEEKO for this.
9843         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
9844         (gl_CHECK_FSEEKO): Remove macro.
9845
9846 2007-04-26  Bruno Haible  <bruno@clisp.org>
9847
9848         * tests/test-fflush.c (main): Also check the ftell result after
9849         fflush and fseek/fseeko.
9850         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
9851         file descriptor position cache in the stream.
9852         * lib/fseeko.c (rpl_fseeko): Likewise.
9853
9854 2007-04-26  Bruno Haible  <bruno@clisp.org>
9855
9856         * modules/fflush-tests (Depends-on): Add fseeko.
9857
9858 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
9859             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9860
9861         * lib/argz_.h: ensure error_t definition is obtained in same
9862         mechanism system argz.h would have.
9863         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
9864         argz facilities are known bad.  Err on the side of caution if
9865         cross-compiling.
9866
9867 2007-04-25  Eric Blake  <ebb9@byu.net>
9868
9869         * lib/fpurge.c (includes): Use stdlib.h for free.
9870         * tests/test-fflush.c (main): Also test fflush-fseeko.
9871
9872 2007-04-25  Bruno Haible  <bruno@clisp.org>
9873
9874         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
9875         * lib/fseeko.c: New file.
9876         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
9877         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
9878         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
9879         gl_FUNC_FSEEKO.
9880         (gl_FUNC_FSEEKO): Invoke it.
9881         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
9882         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
9883         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
9884
9885 2007-04-25  Bruno Haible  <bruno@clisp.org>
9886
9887         * modules/fflush (Depends-on): Add ftello.
9888
9889 2007-04-25  Bruno Haible  <bruno@clisp.org>
9890
9891         * modules/ftello-tests: New file.
9892         * tests/test-ftello.c: New file.
9893
9894         * modules/ftello: New file.
9895         * m4/ftello.m4: New file.
9896         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
9897         HAVE_FTELLO.
9898         * lib/stdio_.h (ftello): New declaration.
9899         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
9900         HAVE_FTELLO.
9901
9902 2007-04-25  Bruno Haible  <bruno@clisp.org>
9903
9904         * modules/fseeko-tests: New file.
9905         * tests/test-fseeko.c: New file.
9906
9907         * modules/fseeko: New file.
9908         * m4/fseeko.m4: New file.
9909         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
9910         HAVE_FSEEKO.
9911         * lib/stdio_.h (fseeko): New declaration.
9912         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
9913         HAVE_FSEEKO.
9914
9915 2007-04-25  Bruno Haible  <bruno@clisp.org>
9916
9917         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
9918
9919 2007-04-25  Bruno Haible  <bruno@clisp.org>
9920
9921         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
9922         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
9923         * tests/test-unistd.c: Likewise.
9924         * tests/test-fcntl.c: Likewise.
9925
9926 2007-04-23  Eric Blake  <ebb9@byu.net>
9927
9928         * lib/fflush.c: Fix missing include.
9929         Reported by Bruno Haible.
9930
9931 2007-04-23  Bruno Haible  <bruno@clisp.org>
9932
9933         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
9934         Reported by Eric Blake.
9935
9936 2007-04-23  Bruno Haible  <bruno@clisp.org>
9937
9938         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
9939
9940 2007-04-23  Bruno Haible  <bruno@clisp.org>
9941
9942         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
9943
9944 2007-04-23  Bruno Haible  <bruno@clisp.org>
9945
9946         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
9947         Needed on HP-UX 11.
9948
9949 2007-04-16  Eric Blake  <ebb9@byu.net>
9950
9951         Make fflush rely on fpurge.
9952         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
9953         open coding all variants.
9954         * modules/fflush (Depends-on): Add fpurge and unistd.
9955         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
9956         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
9957
9958         Fix --with-tests compilation on cygwin.
9959         * modules/argmatch-tests (Makefile.am): List gnulib library first
9960         in LDADD.
9961         * modules/argp-tests (Makefile.am): Likewise.
9962         * modules/array-list-tests (Makefile.am): Likewise.
9963         * modules/array-oset-tests (Makefile.am): Likewise.
9964         * modules/avltree-list-tests (Makefile.am): Likewise.
9965         * modules/avltree-oset-tests (Makefile.am): Likewise.
9966         * modules/avltreehash-list-tests (Makefile.am): Likewise.
9967         * modules/carray-list-tests (Makefile.am): Likewise.
9968         * modules/dirname-tests (Makefile.am): Likewise.
9969         * modules/frexp-tests (Makefile.am): Likewise.
9970         * modules/isnanl-tests (Makefile.am): Likewise.
9971         * modules/linked-list-tests (Makefile.am): Likewise.
9972         * modules/linkedhash-list-tests (Makefile.am): Likewise.
9973         * modules/lock-tests (Makefile.am): Likewise.
9974         * modules/rbtree-list-tests (Makefile.am): Likewise.
9975         * modules/rbtree-oset-tests (Makefile.am): Likewise.
9976         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
9977         * modules/tls-tests (Makefile.am): Likewise.
9978         * modules/tsearch-tests (Makefile.am): Likewise.
9979         * modules/xvasprintf-tests (Makefile.am): Likewise.
9980
9981         Fix fpurge for cygwin.
9982         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
9983         value.
9984         * modules/fpurge-tests (Depends-on): Clean up trash.
9985
9986 2007-04-16  Simon Josefsson  <simon@josefsson.org>
9987
9988         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
9989
9990         * m4/autobuild.m4: Re-indent.
9991
9992 2007-04-13  Bruno Haible  <bruno@clisp.org>
9993
9994         * modules/fpurge-tests: New file.
9995         * tests/test-fpurge.c: New file.
9996
9997         * modules/fpurge: New file.
9998         * lib/fpurge.h: New file.
9999         * lib/fpurge.c: New file.
10000         * m4/fpurge.m4: New file.
10001
10002 2007-04-13  Bruno Haible  <bruno@clisp.org>
10003
10004         * modules/fbufmode-tests: New file.
10005         * tests/test-fbufmode.c: New file.
10006
10007         * modules/fbufmode: New file.
10008         * lib/fbufmode.h: New file.
10009         * lib/fbufmode.c: New file.
10010         * m4/fbufmode.m4: New file.
10011
10012 2007-04-13  Bruno Haible  <bruno@clisp.org>
10013
10014         * modules/fwritable-tests: New file.
10015         * tests/test-fwritable.c: New file.
10016
10017         * modules/fwritable: New file.
10018         * lib/fwritable.h: New file.
10019         * lib/fwritable.c: New file.
10020         * m4/fwritable.m4: New file.
10021
10022 2007-04-13  Bruno Haible  <bruno@clisp.org>
10023
10024         * modules/freadable-tests: New file.
10025         * tests/test-freadable.c: New file.
10026
10027         * modules/freadable: New file.
10028         * lib/freadable.h: New file.
10029         * lib/freadable.c: New file.
10030         * m4/freadable.m4: New file.
10031
10032 2007-04-13  Bruno Haible  <bruno@clisp.org>
10033
10034         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
10035         MOSTLYCLEANFILES.
10036
10037 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
10038
10039         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
10040         gzip bootstrap.conf to avoid dragging in i18n machinery.
10041         (gnulib_tool_option): Use it.
10042
10043 2007-04-13  Bruno Haible  <bruno@clisp.org>
10044
10045         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
10046         %F directives.
10047         * tests/test-vasprintf-posix.c (test_function): Likewise.
10048         * tests/test-snprintf-posix.h (test_function): Likewise.
10049         * tests/test-sprintf-posix.h (test_function): Likewise.
10050         * tests/test-fprintf-posix.h (test_function): Likewise.
10051         * tests/test-printf-posix.h (test_function): Likewise.
10052         * tests/test-fprintf-posix.out: Likewise.
10053
10054 2007-04-13  Bruno Haible  <bruno@clisp.org>
10055
10056         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
10057         * modules/tls-tests (configure.ac): Likewise.
10058         Reported by Arto C. Nirkko <anirkko@insel.ch>.
10059
10060 2007-04-13  Bruno Haible  <bruno@clisp.org>
10061
10062         * lib/tls.c (glthread_tls_get): Fix return type.
10063         Patch by Arto C. Nirkko <anirkko@insel.ch>.
10064
10065 2007-04-12  Eric Blake  <ebb9@byu.net>
10066
10067         * modules/gettime (Depends-on): Remove gettime.
10068         Reported by Dmitry V. Levin.
10069
10070 2007-04-12  Bruno Haible  <bruno@clisp.org>
10071
10072         * modules/fflush (Include): Mention <stdio.h>.
10073         * modules/strtoimax (Include): Mention <inttypes.h>.
10074         * modules/strtoumax (Include): Likewise.
10075
10076 2007-04-12  Eric Blake  <ebb9@byu.net>
10077
10078         * .cvsignore: New file.
10079         * .gitignore: Likewise.
10080
10081 2007-04-12  Bruno Haible  <bruno@clisp.org>
10082
10083         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
10084         not before, since $(LDADD) often contains libgnu.a.
10085         * modules/striconv-tests (test_striconv_LDADD): Likewise.
10086         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
10087         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
10088         Needed on Cygwin.
10089
10090 2007-04-12  Eric Blake  <ebb9@byu.net>
10091
10092         Work around glibc's failure to flush stdin on fclose.
10093         * lib/closein.c (close_stdin): Flush stdin before closing.
10094
10095         Work around glibc's failure to reset seekable stdin on exit.
10096         * modules/closein: New module.
10097         * lib/closein.c: New file.
10098         * lib/closein.h: Likewise.
10099         * m4/closein.m4: Likewise.
10100         * MODULES.html.sh (File stream based Input/Output): Document it.
10101
10102 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10103
10104         * gnulib-tool: Rename generated 'autobuild' script to
10105         'do-autobuild' in --create-megatestdir output.
10106
10107         * doc/gnulib.texi (Build robot for gnulib): Fix.
10108
10109 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10110
10111         * modules/sysexits (Depends-on): Add absolute-header.
10112
10113 2007-04-12  Eric Blake  <ebb9@byu.net>
10114
10115         No need to preserve errno on success.
10116         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
10117         Reported by Bruno Haible.
10118
10119 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10120
10121         * MODULES.html.sh (Support for maintaining and releasing
10122         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
10123
10124 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10125
10126         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
10127
10128 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10129
10130         * modules/autobuild: New module.
10131
10132         * m4/autobuild.m4: New file.
10133
10134 2007-04-11  Bruno Haible  <bruno@clisp.org>
10135
10136         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
10137         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
10138         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
10139         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
10140         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
10141         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10142         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10143         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
10144         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10145         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10146         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
10147         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10148         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10149         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
10150         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10151         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10152         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
10153         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10154         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10155         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
10156         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10157         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10158         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
10159         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10160         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10161         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
10162         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10163         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10164         Reported by Eric Blake.
10165
10166 2007-04-11  Bruno Haible  <bruno@clisp.org>
10167
10168         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
10169
10170 2007-04-10  Bruno Haible  <bruno@clisp.org>
10171
10172         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
10173         for NaN and Infinity. Needed on FreeBSD 6.1.
10174         * tests/test-vasnprintf-posix.c (test_function): Undo last change
10175         regarding results for "%010a" of Infinity and NaN.
10176         * tests/test-vasprintf-posix.c (test_function): Likewise.
10177         * tests/test-snprintf-posix.h (test_function): Likewise.
10178         * tests/test-sprintf-posix.h (test_function): Likewise.
10179         * tests/test-fprintf-posix.h (test_function): Likewise.
10180         * tests/test-printf-posix.h (test_function): Likewise.
10181         * tests/test-fprintf-posix.out: Likewise.
10182
10183 2007-04-10  Bruno Haible  <bruno@clisp.org>
10184
10185         * modules/locale-tests: New file.
10186         * tests/test-locale.c: New file.
10187
10188         * modules/locale: New file.
10189         * lib/locale_.h: New file.
10190         * m4/locale_h.m4: New file.
10191
10192 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
10193             Bruno Haible  <bruno@clisp.org>
10194
10195         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
10196         be determined, test for availability of the copysignf, copysign,
10197         copysignl functions.
10198         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
10199         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
10200         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
10201
10202 2007-04-09  Eric Blake  <ebb9@byu.net>
10203
10204         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
10205         * modules/stdio (Makefile.am): Support fflush.
10206         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
10207         * modules/fflush: New file.
10208         * lib/fflush.c: Likewise.
10209         * m4/fflush.m4: Likewise.
10210         * modules/fflush-tests: New test.
10211         * tests/test-fflush.c: Likewise.
10212         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
10213
10214 2007-04-06  Bruno Haible  <bruno@clisp.org>
10215
10216         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
10217         (VASNPRINTF): Use signbit for faster determination whether to print a
10218         minus sign.
10219         * modules/vasnprintf (Files): Remove lib/float+.h.
10220         * modules/fprintf-posix (Depends-on): Add signbit.
10221         * modules/snprintf-posix (Depends-on): Likewise.
10222         * modules/sprintf-posix (Depends-on): Likewise.
10223         * modules/vasnprintf-posix (Depends-on): Likewise.
10224         * modules/vasprintf-posix (Depends-on): Likewise.
10225         * modules/vfprintf-posix (Depends-on): Likewise.
10226         * modules/vsnprintf-posix (Depends-on): Likewise.
10227         * modules/vsprintf-posix (Depends-on): Likewise.
10228
10229 2007-04-06  Bruno Haible  <bruno@clisp.org>
10230
10231         * tests/test-frexp.c (main): Test also the sign bit of zero results.
10232         * tests/test-frexpl.c (main): Likewise.
10233         * tests/test-ldexpl.c (main): Likewise.
10234         * modules/frexp-tests (Depends-on): Add signbit.
10235         * modules/frexpl-tests (Depdends-on): Likewise.
10236         * modules/ldexpl-tests (Depdends-on): Likewise.
10237
10238 2007-04-06  Bruno Haible  <bruno@clisp.org>
10239
10240         * modules/signbit-tests: New file.
10241         * tests/test-signbit.c: New file.
10242
10243         * modules/signbit: New file.
10244         * lib/signbitf.c: New file.
10245         * lib/signbitd.c: New file.
10246         * lib/signbitl.c: New file.
10247         * m4/signbit.m4: New file.
10248         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
10249         (signbit): New macro.
10250         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
10251         REPLACE_SIGNBIT.
10252         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
10253         REPLACE_FREXPL into math.h.
10254
10255 2007-04-06  Bruno Haible  <bruno@clisp.org>
10256
10257         * modules/isnanf-nolibm-tests: New file.
10258         * tests/test-isnanf.c: New file.
10259
10260         * modules/isnanf-nolibm: New file.
10261         * lib/isnanf.h: New file.
10262         * lib/isnanf.c: New file.
10263         * lib/isnan.c: Consider the USE_FLOAT macro.
10264         * m4/isnanf.m4: New file.
10265
10266 2007-04-06  Bruno Haible  <bruno@clisp.org>
10267
10268         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
10269         (Link): New section.
10270
10271         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
10272
10273 2007-04-06  Bruno Haible  <bruno@clisp.org>
10274
10275         Assume the 'long double' type.
10276         * m4/longdouble.m4: Remove file.
10277         * config/srclist.txt: Don't mention longdouble.m4.
10278         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
10279         * lib/float+.h: Likewise.
10280         * lib/frexp.c: Likewise.
10281         * lib/printf-args.h: Likewise.
10282         * lib/printf-args.c: Likewise.
10283         * lib/printf-frexp.c: Likewise.
10284         * lib/printf-parse.c: Likewise.
10285         * lib/vasnprintf.c: Likewise.
10286         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
10287         * m4/intl.m4: Likewise.
10288         * m4/isnanl.m4: Likewise.
10289         * m4/printf.m4: Likewise.
10290         * m4/printf-frexpl.m4: Likewise.
10291         * m4/vasnprintf.m4: Likewise.
10292         * modules/allocsa (Files): Remove m4/longdouble.m4.
10293         * modules/gettext (Files): Likewise.
10294         * modules/relocatable-prog-wrapper (Files): Likewise.
10295         * modules/vasnprintf (Files): Likewise.
10296         * modules/isnanl (Files): Likewise.
10297         (Include): Simplify.
10298         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
10299         (Include): Simplify.
10300         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
10301         (Include): Simplify.
10302         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
10303         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10304         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
10305         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10306         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
10307         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10308         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
10309         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10310         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
10311         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10312         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
10313         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
10314         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
10315         * tests/test-isnanl.c: Likewise.
10316         * tests/test-snprintf-posix.h: Likewise.
10317         * tests/test-sprintf-posix.h: Likewise.
10318         * tests/test-vasnprintf-posix.c: Likewise.
10319         * tests/test-vasnprintf-posix2.c: Likewise.
10320         * tests/test-vasprintf-posix.c: Likewise.
10321
10322 2007-04-06  Bruno Haible  <bruno@clisp.org>
10323
10324         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
10325         * lib/math_.h [__DECC]: Include the overridden include file through
10326         #include_next, outside the double-inclusion guard.
10327         * lib/stdio_.h [__DECC]: Likewise.
10328         * lib/stdlib_.h [__DECC]: Likewise.
10329         * lib/string_.h [__DECC]: Likewise.
10330         * lib/time_.h [__DECC]: Likewise.
10331         * lib/wchar_.h [__DECC]: Likewise.
10332         * lib/wctype_.h [__DECC]: Likewise.
10333         * lib/inttypes_.h [__DECC]: Likewise.
10334         Reported by Albert Chin <china@thewrittenword.com> in
10335         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
10336
10337 2007-04-04  Eric Blake  <ebb9@byu.net>
10338
10339         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
10340         1.5.x.
10341
10342 2007-04-04  Bruno Haible  <bruno@clisp.org>
10343
10344         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
10345         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
10346
10347 2007-04-04  Bruno Haible  <bruno@clisp.org>
10348
10349         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
10350         results for "%010a" of Infinity and NaN.
10351         * tests/test-vasprintf-posix.c (test_function): Likewise.
10352         * tests/test-snprintf-posix.h (test_function): Likewise.
10353         * tests/test-sprintf-posix.h (test_function): Likewise.
10354         * tests/test-fprintf-posix.h (test_function): Remove these tests.
10355         * tests/test-printf-posix.h (test_function): Likewise.
10356         * tests/test-fprintf-posix.out: Update.
10357         Needed for FreeBSD 6.1.
10358
10359 2007-04-04  Bruno Haible  <bruno@clisp.org>
10360
10361         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
10362         directly used by the gnulib modules nor by gnulib-tool.
10363
10364 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
10365
10366         * DEPENDENCIES: Give overall description of version dependency
10367         desirability.  Use more-typical names for apps.
10368         Add shell, coreutils, diffutils, grep, tar, gzip.
10369
10370 2007-04-04  Simon Josefsson  <simon@josefsson.org>
10371
10372         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
10373
10374 2007-04-04  Karl Berry  <karl@gnu.org>
10375
10376         * MODULES.html.sh (func_module): missing '.
10377
10378 2007-04-03  Bruno Haible  <bruno@clisp.org>
10379
10380         * modules/argmatch-tests (Makefile.am): New variable
10381         test_argmatch_LDADD.
10382         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
10383         * modules/array-list-tests (Makefile.am): New variable
10384         test_array_list_LDADD.
10385         * modules/array-oset-tests (Makefile.am): New variable
10386         test_array_oset_LDADD.
10387         * modules/avltree-list-tests (Makefile.am): New variable
10388         test_avltree_list_LDADD.
10389         * modules/avltree-oset-tests (Makefile.am): New variable
10390         test_avltree_oset_LDADD.
10391         * modules/avltreehash-list-tests (Makefile.am): New variable
10392         test_avltreehash_list_LDADD.
10393         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
10394         test_canonicalize_lgpl_LDADD.
10395         * modules/carray-list-tests (Makefile.am): New variable
10396         test_carray_list_LDADD.
10397         * modules/dirname-tests (Makefile.am): New variable
10398         test_dirname_LDADD.
10399         * modules/linked-list-tests (Makefile.am): New variable
10400         test_linked_list_LDADD.
10401         * modules/linkedhash-list-tests (Makefile.am): New variable
10402         test_linkedhash_list_LDADD.
10403         * modules/rbtree-list-tests (Makefile.am): New variable
10404         test_rbtree_list_LDADD.
10405         * modules/rbtree-oset-tests (Makefile.am): New variable
10406         test_rbtree_oset_LDADD.
10407         * modules/rbtreehash-list-tests (Makefile.am): New variable
10408         test_rbtreehash_list_LDADD.
10409         * modules/xvasprintf-tests (Makefile.am): New variable
10410         test_xvasprintf_LDADD.
10411         Reported by Eric Blake.
10412
10413 2007-04-03  Eric Blake  <ebb9@byu.net>
10414
10415         * DEPENDENCIES: Weaken m4 requirements.
10416
10417 2007-04-03  Bruno Haible  <bruno@clisp.org>
10418
10419         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
10420         * modules/isnanl-tests (configure.ac): Likewise.
10421
10422 2007-04-03  Ben Pfaff  <blp@gnu.org>
10423
10424         * modules/iconv_open: Add $(srcdir)/ to source directory
10425         references in Makefile fragments that call gperf, to fix VPATH
10426         builds.
10427
10428 2007-04-03  Bruno Haible  <bruno@clisp.org>
10429
10430         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
10431         * lib/ldexpl.c: Undo last change.
10432
10433 2007-04-03  Bruno Haible  <bruno@clisp.org>
10434
10435         * modules/printf-frexpl (Depends-on): Undo last change.
10436         (Files): Add m4/ldexpl.m4.
10437
10438 2007-04-03  Bruno Haible  <bruno@clisp.org>
10439
10440         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
10441         * modules/isnanl (Link): New section.
10442
10443         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
10444         * modules/frexp (Link): New section.
10445
10446         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
10447         * modules/frexpl (Link): New section.
10448
10449         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
10450         * modules/ldexpl (Link): New section.
10451
10452 2007-04-03  Bruno Haible  <bruno@clisp.org>
10453
10454         * modules/TEMPLATE-EXTENDED: New file.
10455         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
10456
10457 2007-04-03  Bruno Haible  <bruno@clisp.org>
10458
10459         * DEPENDENCIES: New file.
10460         Suggested by Simon Josefsson.
10461
10462 2007-04-03  Bruno Haible  <bruno@clisp.org>
10463
10464         * doc/gnulib.texi: Escape @.
10465
10466 2007-04-03  James Youngman  <jay@gnu.org>
10467         and Paul Eggert  <eggert@cs.ucla.edu>
10468
10469         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
10470         birthtime on all systems that have birthtime, not just those which
10471         use st_birthtimensec rather than st_birthtim.  Putting zero in
10472         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
10473         that the birth time is not available for files on an NFS mount.
10474
10475 2007-04-03  Simon Josefsson  <simon@josefsson.org>
10476
10477         * modules/memxor: Move back from crypto/, suggested by Bruno.
10478         * modules/crypto/hmac-sha1: Fix memxor dependency.
10479
10480         * modules/crypto/gc: Moved from ../.
10481
10482 2007-04-02  Eric Blake  <ebb9@byu.net>
10483
10484         * lib/ldexpl.c (includes): Avoid libm.
10485
10486         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
10487
10488 2007-04-02  Bruno Haible  <bruno@clisp.org>
10489
10490         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
10491         on IRIX.
10492
10493 2007-04-02  Bruno Haible  <bruno@clisp.org>
10494
10495         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
10496         x86 or x86_64 platforms running MacOS X.
10497         Reported by Ryan Schmidt <@ryandesign.com>.
10498
10499 2007-04-02  Bruno Haible  <bruno@clisp.org>
10500
10501         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
10502         i386.
10503
10504 2007-04-01  Simon Josefsson  <simon@josefsson.org>
10505
10506         * modules/crypto/arcfour: Moved from ../.
10507         * modules/crypto/arcfour-tests: Moved from ../.
10508         * modules/crypto/arctwo: Moved from ../.
10509         * modules/crypto/arctwo-tests: Moved from ../.
10510         * modules/crypto/des: Moved from ../.
10511         * modules/crypto/des-tests: Moved from ../.
10512         * modules/crypto/gc-arcfour: Moved from ../.
10513         * modules/crypto/gc-arcfour-tests: Moved from ../.
10514         * modules/crypto/gc-arctwo: Moved from ../.
10515         * modules/crypto/gc-arctwo-tests: Moved from ../.
10516         * modules/crypto/gc-des: Moved from ../.
10517         * modules/crypto/gc-des-tests: Moved from ../.
10518         * modules/crypto/gc-hmac-md5: Moved from ../.
10519         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
10520         * modules/crypto/gc-hmac-sha1: Moved from ../.
10521         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
10522         * modules/crypto/gc-md2: Moved from ../.
10523         * modules/crypto/gc-md2-tests: Moved from ../.
10524         * modules/crypto/gc-md4: Moved from ../.
10525         * modules/crypto/gc-md4-tests: Moved from ../.
10526         * modules/crypto/gc-md5: Moved from ../.
10527         * modules/crypto/gc-md5-tests: Moved from ../.
10528         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
10529         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
10530         * modules/crypto/gc-random: Moved from ../.
10531         * modules/crypto/gc-rijndael: Moved from ../.
10532         * modules/crypto/gc-rijndael-tests: Moved from ../.
10533         * modules/crypto/gc-sha1: Moved from ../.
10534         * modules/crypto/gc-sha1-tests: Moved from ../.
10535         * modules/crypto/gc-tests: Moved from ../.
10536         * modules/crypto/hmac-md5: Moved from ../.
10537         * modules/crypto/hmac-md5-tests: Moved from ../.
10538         * modules/crypto/hmac-sha1: Moved from ../.
10539         * modules/crypto/hmac-sha1-tests: Moved from ../.
10540         * modules/crypto/md2: Moved from ../.
10541         * modules/crypto/md2-tests: Moved from ../.
10542         * modules/crypto/md4: Moved from ../.
10543         * modules/crypto/md4-tests: Moved from ../.
10544         * modules/crypto/md5: Moved from ../.
10545         * modules/crypto/md5-tests: Moved from ../.
10546         * modules/crypto/memxor: Moved from ../.
10547         * modules/crypto/rijndael: Moved from ../.
10548         * modules/crypto/rijndael-tests: Moved from ../.
10549         * modules/crypto/sha1: Moved from ../.
10550
10551 2007-03-30  James Youngman  <jay@gnu.org>
10552
10553         * tests/test-stat-time.c (prepare_test): use chmod() rather than
10554         rename() to change the ctime of a file (because ctime is unaffected
10555         by rename on jfs2 on AIX 5.1).
10556         (main): Start by doing cleanup, in case a previous run failed leaving
10557         test files behind.
10558
10559 2007-03-31  Bruno Haible  <bruno@clisp.org>
10560
10561         Support old proprietary implementations of iconv.
10562         * modules/iconv_open: New file.
10563         * lib/iconv_.h: New file.
10564         * m4/iconv_h.m4: New file.
10565         * lib/iconv_open.c: New file.
10566         * lib/iconv_open-aix.gperf: New file.
10567         * lib/iconv_open-hpux.gperf: New file.
10568         * lib/iconv_open-irix.gperf: New file.
10569         * lib/iconv_open-osf.gperf: New file.
10570         * m4/iconv_open.m4: New file.
10571         * modules/linebreak (Depends-on): Add iconv_open.
10572         * modules/striconv (Depends-on): Likewise.
10573         * modules/striconveh (Depends-on): Likewise.
10574         * modules/unicodeio (Depends-on): Likewise.
10575         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
10576         (iconv_t)(-1).
10577         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
10578         conversion if cd is (iconv_t)(-1).
10579         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
10580         is not possible.
10581
10582 2007-03-31  Bruno Haible  <bruno@clisp.org>
10583
10584         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
10585         work on Solaris either. Protect also second use of "autodetect_jp".
10586
10587 2007-03-31  Bruno Haible  <bruno@clisp.org>
10588
10589         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
10590         the function is not present.
10591
10592 2007-03-31  Bruno Haible  <bruno@clisp.org>
10593
10594         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
10595         the function is not present.
10596
10597 2007-03-31  Bruno Haible  <bruno@clisp.org>
10598
10599         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
10600         a bug in HP-UX iconv_open().
10601
10602 2007-03-31  Bruno Haible  <bruno@clisp.org>
10603
10604         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
10605         (Mathematics <math.h>): New section, add fpieee.
10606         (Input/output <stdio.h>): Add fseterr.
10607         (Mathematics <math.h>): New section, add printf-frexp.
10608         (Container data structures): Add sublist.
10609         (Core language properties): Add fpucw, inline.
10610         (Functions for greatest-width integer types <inttypes.h>): Add
10611         imaxabs, imaxdiv, inttypes.
10612         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
10613         isnanl-nolibm, ldexp.
10614         (Mathematics <math.h>): New section, add printf-frexpl.
10615         (Support for systems lacking POSIX:2001): Add fprintf-posix,
10616         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
10617         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
10618         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
10619         (Unicode string functions): Add unistr/u*-mbtoucr.
10620         (Java): Add javacomp-script, javaexec-script.
10621         (C#): Add csharpcomp-script, csharpexec-script.
10622         (Support for building libraries and executables): Add havelib,
10623         relocatable-*.
10624         (Support for maintaining and releasing projects): Renamed from
10625         'Support for maintaining and release projects'. Add announce-gen.
10626
10627 2007-03-31  Bruno Haible  <bruno@clisp.org>
10628
10629         * README: Talk primarily about git.
10630         (git and CVS): Renamed from CVS.
10631         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
10632         gnulib is available through git.
10633         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
10634
10635 2007-03-30  Bruno Haible  <bruno@clisp.org>
10636
10637         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
10638         * lib/poll_.h: Likewise.
10639         * lib/stat_.h: Likewise.
10640         * lib/sys_time_.h: Likewise.
10641         * lib/sysexit_.h: Likewise.
10642         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
10643         * lib/stdbool_.h: Likewise.
10644         * lib/byteswap_.h: Add double-inclusion guard.
10645
10646 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
10647
10648         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
10649
10650 2007-03-30  Karl Berry  <karl@gnu.org>
10651
10652         * config/srclist-update: double space after USA in the license
10653         substitution, since that's how it's usually (?) written.
10654
10655 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
10656
10657         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
10658         reported by Bruno Haible.
10659
10660 2007-03-29  Bruno Haible  <bruno@clisp.org>
10661
10662         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
10663         a bug in AIX iconv().
10664
10665 2007-03-29  Bruno Haible  <bruno@clisp.org>
10666
10667         * modules/ldexpl-tests: New file.
10668         * tests/test-ldexpl.c: New file.
10669
10670 2007-03-29  Bruno Haible  <bruno@clisp.org>
10671
10672         * lib/ldexpl.c: Include fpucw.h.
10673         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
10674         multiplication.
10675         * modules/ldexpl (Depends-on): Add fpucw.
10676
10677 2007-03-29  Bruno Haible  <bruno@clisp.org>
10678
10679         * modules/ldexpl: New file.
10680         * m4/ldexpl.m4: New file.
10681         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
10682         set.
10683         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
10684         REPLACE_LDEXPL.
10685         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
10686         REPLACE_LDEXPL.
10687         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
10688         gl_FUNC_LDEXPL_WORKS.
10689         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
10690         * modules/mathl (Files): Remove lib/ldexpl.c.
10691         (Depends-on): Add ldexpl.
10692
10693 2007-03-29  Bruno Haible  <bruno@clisp.org>
10694
10695         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
10696
10697 2007-03-29  Bruno Haible  <bruno@clisp.org>
10698
10699         * tests/test-striconveh.c (main): Don't assume that a direct conversion
10700         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
10701         and possibly also HP-UX.
10702         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
10703         work on AIX, IRIX, HP-UX, OSF/1.
10704         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
10705         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
10706         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
10707         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
10708         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
10709         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
10710
10711 2007-03-29  Bruno Haible  <bruno@clisp.org>
10712
10713         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
10714
10715 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
10716
10717         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
10718         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
10719
10720 2007-03-29  Eric Blake  <ebb9@byu.net>
10721
10722         * lib/acl-internal.h: Remove redundant include.
10723         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
10724         Cygwin when a file is locked.
10725
10726 2007-03-29  Bruno Haible  <bruno@clisp.org>
10727
10728         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
10729         file.
10730         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
10731
10732 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
10733
10734         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
10735         try to remove a parent directory if the child couldn't be removed
10736         (except for the first rmdir, which could fail because the child
10737         doesn't exist).  Problem reported by Jeff Blaine in
10738         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
10739
10740 2007-03-28  Bruno Haible  <bruno@clisp.org>
10741
10742         * lib/striconveh.c (utf8conv_carefully): New function.
10743         (mem_cd_iconveh_internal): Invoke it.
10744
10745 2007-03-28  Bruno Haible  <bruno@clisp.org>
10746
10747         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
10748         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
10749         input.
10750         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
10751         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
10752         unistr/u8-uctomb.
10753
10754 2007-03-28  Bruno Haible  <bruno@clisp.org>
10755
10756         * modules/unistr/u8-mbtoucr: New file.
10757         * lib/unistr/u8-mbtoucr.c: New file.
10758         * modules/unistr/u16-mbtoucr: New file.
10759         * lib/unistr/u16-mbtoucr.c: New file.
10760         * modules/unistr/u16-mbtoucr: New file.
10761         * lib/unistr/u16-mbtoucr.c: New file.
10762         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
10763
10764 2007-03-27  Simon Josefsson  <simon@josefsson.org>
10765             Bruno Haible  <bruno@clisp.org>
10766
10767         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
10768         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
10769         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
10770
10771         * m4/stdio_h.m4: Add stubs for vasprintf too.
10772
10773         * modules/stdio: Support vasprintf in sed command.
10774
10775         * modules/vasprintf: Depend on stdio for prototypes.  Remove
10776         vasprintf.h.  Add stdio module indicator.
10777
10778         * lib/stdio_.h: Declare asprintf and vasprintf, based on
10779         vasprintf.h.
10780
10781         * lib/vasprintf.h: File removed.
10782
10783         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
10784         * lib/vasprintf.c: Ditto.
10785         * lib/xvasprintf.c: Ditto.
10786         * tests/test-vasprintf-posix.c: Ditto.
10787         * tests/test-vasprintf.c: Ditto.
10788
10789 2007-03-27  Bruno Haible  <bruno@clisp.org>
10790
10791         Make vasnprintf multithread-safe.
10792         * lib/vasnprintf.c (decimal_point_char): New function.
10793         (VASNPRINTF): Use it.
10794         Suggested by Simon Josefsson.
10795
10796 2007-03-27  Eric Blake  <ebb9@byu.net>
10797
10798         Support sub-second birthtime on cygwin.
10799         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
10800         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
10801         (get_stat_birthtime): Also work with st_birthtim.
10802
10803 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
10804
10805         * lib/stat-time.h (USE_BIRTHTIME): Remove.
10806         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
10807         (get_stat_birthtime_ns): Do not try to use "spare" fields.
10808         (get_stat_birthtime_ns): Simplify compile-time tests.
10809         (get_stat_birthtime): Change the API to look like
10810         get_stat_mtime etc., except return a negative tv_nsec on error.
10811         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
10812         Don't check for "spare" fields.
10813         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
10814         or for struct stat.st_birthtime, as these tests aren't used.
10815         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
10816
10817 2007-03-27  Bruno Haible  <bruno@clisp.org>
10818
10819         * lib/stat-time.h: Include <sys/stat.h>.
10820
10821 2007-03-27  James Youngman  <jay@gnu.org>
10822
10823         * lib/stat-time.h (get_stat_birthtime): New function for
10824           retrieving st_birthtime as provided by UFS2 (hence *BSD).
10825         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
10826           and its variants.
10827         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
10828         * modules/stat-time-test: New file.
10829         * tests/test-stat-time.c: New test, devised by Bruno Haible.
10830
10831 2007-03-26  Bruno Haible  <bruno@clisp.org>
10832
10833         Better support of signalling NaNs.
10834         * lib/atanl.c: Include isnanl.h.
10835         (atanl): Perform test for NaN at the beginning of the function and
10836         through a call to isnanl.
10837         * lib/cosl.c: Include isnanl.h.
10838         (cosl): Perform test for NaN at the beginning of the function and
10839         through a call to isnanl.
10840         * lib/ldexpl.c: Include isnanl.h.
10841         (ldexpl): Perform test for NaN through a call to isnanl.
10842         * lib/logl.c: Include isnanl.h.
10843         (logl): Perform test for NaN at the beginning of the function and
10844         through a call to isnanl.
10845         * lib/sinl.c: Include isnanl.h.
10846         (sinl): Perform test for NaN at the beginning of the function and
10847         through a call to isnanl.
10848         * lib/sqrtl.c: Include isnanl.h.
10849         (sqrtl): Perform test for NaN at the beginning of the function and
10850         through a call to isnanl.
10851         * lib/tanl.c: Include isnanl.h.
10852         (tanl): Perform test for NaN at the beginning of the function and
10853         through a call to isnanl.
10854         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
10855         * modules/mathl (Depends-on): Add isnanl.
10856
10857 2007-03-26  Eric Blake  <ebb9@byu.net>
10858
10859         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
10860         regression in logic sense of previous patch.
10861
10862 2007-03-26  Bruno Haible  <bruno@clisp.org>
10863
10864         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
10865         unportable shell command "if ! ...".
10866         Reported by Ralf Wildenhues.
10867
10868 2007-03-25  Bruno Haible  <bruno@clisp.org>
10869
10870         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
10871         <sysexits.h> file, and only add EX_CONFIG.
10872         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
10873         absolute file name and whether it is sufficient. Substitute also
10874         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
10875         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
10876         ABSOLUTE_SYSEXITS_H into sysexits.h.
10877
10878 2007-03-25  Bruno Haible  <bruno@clisp.org>
10879
10880         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
10881         hints is NULL.
10882
10883 2007-03-25  Bruno Haible  <bruno@clisp.org>
10884
10885         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
10886         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
10887
10888 2007-03-25  Bruno Haible  <bruno@clisp.org>
10889
10890         * lib/vasnprintf.c: Include langinfo.h.
10891         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
10892         multithread-safe.
10893         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
10894         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
10895         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
10896         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
10897         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
10898         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
10899         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
10900         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
10901         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
10902         Reported by Simon Josefsson.
10903
10904 2007-03-25  Bruno Haible  <bruno@clisp.org>
10905
10906         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
10907         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
10908         * modules/vasnprintf (Depends-on): Add stdint.
10909
10910 2007-03-25  Bruno Haible  <bruno@clisp.org>
10911
10912         * modules/fpieee: New file.
10913         * m4/fpieee.m4: New file.
10914         * modules/isnan-nolibm (Depends-on): Add fpieee.
10915         * modules/isnanl-nolibm (Depends-on): Add fpieee.
10916         * modules/isnanl (Depends-on): Add fpieee.
10917
10918 2007-03-25  Bruno Haible  <bruno@clisp.org>
10919
10920         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
10921
10922 2007-03-25  Bruno Haible  <bruno@clisp.org>
10923
10924         Avoid test failures on IRIX 6.5.
10925         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
10926         (main): Use it.
10927         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
10928         macros.
10929         (main): Use them.
10930
10931 2007-03-25  Bruno Haible  <bruno@clisp.org>
10932
10933         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
10934         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
10935         exists but doesn't work.
10936         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
10937         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
10938         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
10939         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
10940
10941 2007-03-25  Bruno Haible  <bruno@clisp.org>
10942
10943         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
10944         returns inf. Needed on IRIX 6.5.
10945
10946 2007-03-25  Bruno Haible  <bruno@clisp.org>
10947
10948         * tests/test-frexpl.c: Include isnanl-nolibm.h.
10949         (main): Use isnanl instead of x != x idiom.
10950         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
10951
10952         * tests/test-frexp.c: Include isnan.h.
10953         (main): Use isnan instead of x != x idiom.
10954         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
10955
10956 2007-03-25  Bruno Haible  <bruno@clisp.org>
10957
10958         * tests/test-frexp.c (NaN): New function/macro.
10959         (main): Use it instead of 0.0 / 0.0.
10960         * tests/test-isnan.c (NaN): New function/macro.
10961         (main): Use it instead of 0.0 / 0.0.
10962         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
10963         (test_function): Use it instead of 0.0 / 0.0.
10964         * tests/test-vasprintf-posix.c (NaN): New function/macro.
10965         (test_function): Use it instead of 0.0 / 0.0.
10966         * tests/test-snprintf-posix.h (NaN): New function/macro.
10967         (test_function): Use it instead of 0.0 / 0.0.
10968         * tests/test-sprintf-posix.h (NaN): New function/macro.
10969         (test_function): Use it instead of 0.0 / 0.0.
10970         * tests/test-fprintf-posix.h (NaN): New function/macro.
10971         (test_function): Use it instead of 0.0 / 0.0.
10972         * tests/test-printf-posix.h (NaN): New function/macro.
10973         (test_function): Use it instead of 0.0 / 0.0.
10974
10975         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
10976
10977 2007-03-25  Bruno Haible  <bruno@clisp.org>
10978
10979         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
10980
10981 2007-03-25  Bruno Haible  <bruno@clisp.org>
10982
10983         * lib/regexec.c (merge_state_with_log): Make static.
10984
10985 2007-03-25  Bruno Haible  <bruno@clisp.org>
10986
10987         * lib/trigl.c (kernel_rem_pio2): Make static.
10988
10989 2007-03-25  Bruno Haible  <bruno@clisp.org>
10990
10991         * lib/sincosl.c (sincosl_table): Make static.
10992
10993 2007-03-25  Bruno Haible  <bruno@clisp.org>
10994
10995         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
10996         if the compiler does not support C99.
10997
10998 2007-03-25  Bruno Haible  <bruno@clisp.org>
10999
11000         * modules/time (Makefile.am): Ensure all rule action lines start with a
11001         tab.
11002
11003 2007-03-24  Bruno Haible  <bruno@clisp.org>
11004
11005         * modules/tsearch-tests: New file.
11006         * tests/test-tsearch.sh: New file.
11007         * tests/test-tsearch.c: New file, mostly copied from glibc.
11008
11009         * modules/search-tests: New file.
11010         * tests/test-search.c: New file.
11011
11012         * modules/search: New file.
11013         * lib/search_.h: New file, incorporating lib/tsearch.h.
11014         * m4/search_h.m4: New file.
11015         * lib/tsearch.h: Remove file.
11016         * lib/tsearch.c: Include search.h instead of tsearch.h.
11017         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
11018         HAVE_TSEARCH.
11019         * modules/tsearch (Files): Remove lib/tsearch.h.
11020         (Depends-on): Add search.
11021         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
11022         (Include): Change tsearch.h into search.h.
11023
11024 2007-03-24  Bruno Haible  <bruno@clisp.org>
11025
11026         * modules/fpucw: New file.
11027         * lib/fpucw.h: New file.
11028         * lib/frexp.c: Include fpucw.h.
11029         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
11030         (FUNC): Use them.
11031         * lib/printf-frexp.c: Include fpucw.h.
11032         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
11033         (FUNC): Use them.
11034         * lib/vasnprintf.c: Include fpucw.h.
11035         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
11036         'long double' calculations.
11037         * tests/test-frexpl.c: Include fpucw.h.
11038         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
11039         * tests/test-printf-frexpl.c: Include fpucw.h.
11040         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
11041         * modules/frexpl (Depends-on): Add fpucw.
11042         * modules/printf-frexpl (Depends-on): Likewise.
11043         * modules/fprintf-posix (Depends-on): Likewise.
11044         * modules/snprintf-posix (Depends-on): Likewise.
11045         * modules/sprintf-posix (Depends-on): Likewise.
11046         * modules/vasnprintf-posix (Depends-on): Likewise.
11047         * modules/vasprintf-posix (Depends-on): Likewise.
11048         * modules/vfprintf-posix (Depends-on): Likewise.
11049         * modules/vsnprintf-posix (Depends-on): Likewise.
11050         * modules/vsprintf-posix (Depends-on): Likewise.
11051         * modules/frexpl-tests (Depends-on): Likewise.
11052         * modules/printf-frexpl-tests (Depends-on): Likewise.
11053
11054 2007-03-24  Bruno Haible  <bruno@clisp.org>
11055
11056         * lib/float+.h: New file.
11057         * lib/isnan.c: Include float+.h.
11058         (SIZE): New macro.
11059         (FUNC): Compare only SIZE bytes of the value.
11060         * lib/vasnprintf.c: Include float+.h.
11061         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
11062         SIZEOF_LDBL or SIZEOF_DBL bytes.
11063         * modules/isnan-nolibm (Files): Add lib/float+.h.
11064         * modules/isnanl-nolibm (Files): Add lib/float+.h.
11065         * modules/isnanl (Files): Add lib/float+.h.
11066         * modules/vasnprintf (Files): Add lib/float+.h.
11067
11068 2007-03-24  Bruno Haible  <bruno@clisp.org>
11069
11070         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
11071         include isnanl-nolibm.h.
11072
11073 2007-03-24  Bruno Haible  <bruno@clisp.org>
11074
11075         * tests/test-read-file.c (main): Don't produce spurious output for
11076         expected situations. Make the test fail if it encountered unexpected
11077         results.
11078
11079 2007-03-24  Bruno Haible  <bruno@clisp.org>
11080
11081         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
11082         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
11083
11084 2007-03-24  Bruno Haible  <bruno@clisp.org>
11085
11086         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
11087
11088 2007-03-24  Bruno Haible  <bruno@clisp.org>
11089
11090         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
11091         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
11092
11093         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
11094         * modules/utf8-ucs4: Turn into a symbolic link to module
11095         unistr/u8-mbtouc.
11096
11097         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
11098         utf8-ucs4-unsafe.
11099         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
11100         unistr/u8-mbtouc-unsafe.
11101
11102         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
11103         * modules/utf16-ucs4: Turn into a symbolic link to module
11104         unistr/u16-mbtouc.
11105
11106         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
11107         utf16-ucs4-unsafe.
11108         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
11109         unistr/u16-mbtouc-unsafe.
11110
11111         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
11112         * modules/ucs4-utf8: Turn into a symbolic link to module
11113         unistr/u8-ubtomb.
11114
11115         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
11116         * modules/ucs4-utf16: Turn into a symbolic link to module
11117         unistr/u16-ubtomb.
11118
11119 2007-03-24  Bruno Haible  <bruno@clisp.org>
11120
11121         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
11122         Enable the function only if HAVE_INLINE.
11123         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
11124         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
11125         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
11126         Enable the function only if HAVE_INLINE.
11127         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
11128         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
11129         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
11130         Enable the function only if HAVE_INLINE.
11131         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
11132         Enable the function only if HAVE_INLINE.
11133         * modules/utf8-ucs4: Update.
11134         * modules/utf8-ucs4-unsafe: Update.
11135         * modules/utf16-ucs4: Update.
11136         * modules/utf16-ucs4-unsafe: Update.
11137         * modules/ucs4-utf8: Update.
11138         * modules/ucs4-utf16: Update.
11139
11140 2007-03-24  Bruno Haible  <bruno@clisp.org>
11141
11142         * lib/utf8-ucs4.h: Remove file.
11143         * lib/utf8-ucs4-unsafe.h: Remove file.
11144         * lib/utf16-ucs4.h: Remove file.
11145         * lib/utf16-ucs4-unsafe.h: Remove file.
11146         * lib/ucs4-utf8.h: Remove file.
11147         * lib/ucs4-utf16.h: Remove file.
11148         * lib/unistr.h: Include their previous contents.
11149         * m4/utf-ucs4.m4: Remove file.
11150         * m4/ucs4-utf.m4: Remove file.
11151         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
11152         (Depends-on): Add unistr/base.
11153         (configure.ac): Remove gl_UTF_UCS4.
11154         (Makefile.am): Update.
11155         (Include): Change to unistr.h.
11156         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
11157         (Depends-on): Add unistr/base.
11158         (configure.ac): Remove gl_UTF_UCS4.
11159         (Makefile.am): Update.
11160         (Include): Change to unistr.h.
11161         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
11162         (Depends-on): Add unistr/base.
11163         (configure.ac): Remove gl_UTF_UCS4.
11164         (Makefile.am): Update.
11165         (Include): Change to unistr.h.
11166         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
11167         (Depends-on): Add unistr/base.
11168         (configure.ac): Remove gl_UTF_UCS4.
11169         (Makefile.am): Update.
11170         (Include): Change to unistr.h.
11171         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
11172         (Depends-on): Add unistr/base.
11173         (configure.ac): Remove gl_UCS4_UTF.
11174         (Makefile.am): Update.
11175         (Include): Change to unistr.h.
11176         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
11177         (Depends-on): Add unistr/base.
11178         (configure.ac): Remove gl_UCS4_UTF.
11179         (Makefile.am): Update.
11180         (Include): Change to unistr.h.
11181         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
11182         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
11183         utf8-ucs4-unsafe.h.
11184         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
11185         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
11186         utf16-ucs4-unsafe.h.
11187         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
11188         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
11189         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
11190         * lib/unistr/u8-strchr.c: Likewise.
11191         * lib/unistr/u8-strrchr.c: Likewise.
11192         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
11193         * lib/unistr/u16-strchr.c: Likewise.
11194         * lib/unistr/u16-strrchr.c: Likewise.
11195         * lib/striconveh.c: Update.
11196         * lib/linebreak.c: Update.
11197
11198 2007-03-24  Bruno Haible  <bruno@clisp.org>
11199
11200         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
11201         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
11202
11203 2007-03-22  Bruno Haible  <bruno@clisp.org>
11204
11205         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
11206
11207 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
11208
11209         * MODULES.html.sh (File system functions): New module write-any-file.
11210         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
11211         * m4/write-any-file.m4: New files.
11212
11213 2007-03-23  Eric Blake  <ebb9@byu.net>
11214
11215         * gnulib-tool: Rearrange space-tab sequences, since some editors
11216         like to eat them.
11217
11218 2007-03-23  Eric Blake  <ebb9@byu.net>
11219
11220         * lib/version-etc.c (version_etc_va): Update license wording to
11221         be more concise.  Recommended by Richard Stallman.
11222
11223 2007-03-22  Bruno Haible  <bruno@clisp.org>
11224
11225         * lib/poll.c (MSG_PEEK): New fallback definition.
11226
11227 2007-03-22  Bruno Haible  <bruno@clisp.org>
11228
11229         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
11230         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
11231         (main): Update.
11232         Fixes a compilation error on BeOS.
11233
11234 2007-03-22  Bruno Haible  <bruno@clisp.org>
11235
11236         * modules/frexpl-tests: New file.
11237         * tests/test-frexpl.c: New file.
11238
11239         * modules/frexpl: New file.
11240         * m4/frexpl.m4: New file.
11241         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
11242         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
11243         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
11244         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
11245         (Depends-on): Add frexpl. Remove isnanl-nolibm.
11246         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
11247
11248 2007-03-22  Bruno Haible  <bruno@clisp.org>
11249
11250         * lib/frexpl.c: Share code with lib/frexp.c.
11251         * modules/mathl (Files): Add lib/frexp.c.
11252         (Depends-on): Add isnanl-nolibm.
11253
11254 2007-03-22  Bruno Haible  <bruno@clisp.org>
11255
11256         * modules/printf-frexp (Files): Add m4/frexp.m4.
11257         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
11258         only if the found frexp function actually works.
11259
11260 2007-03-22  Bruno Haible  <bruno@clisp.org>
11261
11262         * lib/frexp.c: Remove older implementation that uses divisions.
11263
11264 2007-03-21  Bruno Haible  <bruno@clisp.org>
11265
11266         * modules/frexp-tests: New file.
11267         * tests/test-frexp.c: New file.
11268
11269         * modules/frexp: New file.
11270         * lib/frexp.c: New file.
11271         * m4/frexp.m4: New file.
11272         * lib/math_.h (frexp): New declaration.
11273         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
11274         REPLACE_FREXP.
11275         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
11276
11277 2007-03-21  Bruno Haible  <bruno@clisp.org>
11278
11279         * modules/isnanl-tests: New file.
11280         * tests/test-isnanl.c: New file.
11281
11282         * modules/isnanl: New file.
11283         * lib/isnanl.h: New file.
11284         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
11285         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
11286         gl_FUNC_ISNANL_WORKS.
11287         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
11288         New macros.
11289
11290 2007-03-21  Bruno Haible  <bruno@clisp.org>
11291
11292         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
11293         lib/isnanl.h.
11294         (Include): Update.
11295         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
11296         * lib/vasnprintf.c: Update.
11297         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
11298         tests/test-isnanl.h, remove tests/test-isnanl.c.
11299         (Makefile.am): Update.
11300         * tests/test-isnanl-nolibm.c: New file.
11301         * tests/test-isnanl.h: New file.
11302         * tests/test-isnanl.c: Remove file.
11303
11304 2007-03-21  Jim Meyering  <jim@meyering.net>
11305
11306         When trying to open ".", treat ESTALE like EACCES.
11307         * lib/savewd.c (savewd_save): Resort to forking not just upon
11308         failure with EACCES, but also when errno is ESTALE.
11309
11310 2007-03-20  Bruno Haible  <bruno@clisp.org>
11311
11312         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
11313         Needed on AIX 5.1. Reported by Matthew Woehlke.
11314
11315 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
11316
11317         Suggestions by Bruno Haible:
11318         * lib/acl-internal.h: Include "gettext.h" rather than rolling
11319         our own.
11320         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
11321         * modules/acl (Depends-on): Add gettext.
11322
11323 2007-03-19  Bruno Haible  <bruno@clisp.org>
11324
11325         * modules/iconvme: Remove file.
11326         * lib/iconvme.h: Remove file.
11327         * lib/iconvme.c: Remove file.
11328         * m4/iconvme.m4: Remove file.
11329
11330 2007-03-19  Bruno Haible  <bruno@clisp.org>
11331
11332         * doc/relocatable-maint.texi: Break long shell script line.
11333         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
11334
11335 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
11336
11337         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
11338         handle file_has_acl.
11339         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
11340         * lib/acl.c: Move header inclusions and related macro defns into
11341         lib/acl-internal.h.
11342         (S_ISLNK): Remove defn, since that's now done for us.
11343         (file_has_acl): Move to lib/file-has-acl.c.
11344         Call acl_trivial if available.  This is the crucial part of the fix.
11345         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
11346         shared within the library.  Rewrite a bit, partly to make it compatible
11347         with the GNU coding style.
11348         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
11349         Remove unnecessary double-quotes.
11350         Don't test for acl_to_text; the build will catch that.
11351         Replace acl_entries if it doesn't exist and it is needed.
11352         Check for -lsec and acl_trivial (as used on Solaris 10).
11353         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
11354         lib/file-has-acl.c.
11355         (Depends-on): Add sys_stat, for S_ISLNK.
11356
11357 2007-03-19  Ben Pfaff  <blp@gnu.org>
11358
11359         * doc/gnulib.texi: Fix typos.
11360         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
11361
11362 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
11363
11364         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
11365         If size is zero here, buf must be zero.
11366
11367 2007-03-19  Simon Josefsson  <simon@josefsson.org>
11368
11369         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
11370         <bruno@clisp.org>.
11371
11372 2007-03-18  Bruno Haible  <bruno@clisp.org>
11373
11374         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
11375         Suggested by Eric Blake.
11376
11377 2007-03-18  Ben Pfaff  <blp@gnu.org>
11378
11379         * doc/relocatable.texi: Recommend using as prefix a directory
11380         that does not exist and will never be created.  Based on
11381         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
11382         and others.
11383
11384 2007-03-17  Bruno Haible  <bruno@clisp.org>
11385
11386         * lib/fchownat.c: Include lchown.h.
11387
11388 2007-03-17  Bruno Haible  <bruno@clisp.org>
11389
11390         Fix endless loop when the given allocated size was > INT_MAX.
11391         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
11392         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
11393         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
11394         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
11395         * lib/sprintf.c (sprintf): Likewise.
11396
11397 2007-03-17  Bruno Haible  <bruno@clisp.org>
11398
11399         * tests/test-argp-2.sh (func_compare): Output a context diff.
11400
11401 2007-03-17  Bruno Haible  <bruno@clisp.org>
11402
11403         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
11404         locale's decimal-point character.
11405
11406 2007-03-17  Bruno Haible  <bruno@clisp.org>
11407
11408         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
11409         before comparing it. Needed because on some platforms (e.g. x86) a
11410         'long double' occupies less bytes than sizeof (long double).
11411
11412 2007-03-17  Bruno Haible  <bruno@clisp.org>
11413
11414         * tests/test-crc.c (main): Make printf statements 64-bit clean.
11415         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
11416         * tests/test-getaddrinfo.c (simple): Likewise.
11417         * tests/test-read-file.c (main): Likewise.
11418
11419 2007-03-17  Bruno Haible  <bruno@clisp.org>
11420
11421         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
11422
11423 2007-03-17  Bruno Haible  <bruno@clisp.org>
11424
11425         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
11426         unused variable.
11427
11428 2007-03-17  Bruno Haible  <bruno@clisp.org>
11429
11430         * tests/test-c-strcasecmp.c: Include c-strcase.h.
11431         * tests/test-c-strncasecmp.c: Likewise.
11432
11433 2007-03-17  Bruno Haible  <bruno@clisp.org>
11434
11435         * modules/stdlib (Depends-on): Add unistd.
11436         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
11437         Needed for MacOS X 10.3.
11438
11439 2007-03-17  Bruno Haible  <bruno@clisp.org>
11440
11441         * lib/unistr/u-strdup.h: Include <stdlib.h>.
11442
11443 2007-03-17  Bruno Haible  <bruno@clisp.org>
11444
11445         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
11446
11447 2007-03-17  Bruno Haible  <bruno@clisp.org>
11448
11449         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
11450         to reflect files copied from gnulib (with or without modifications).
11451         Suggested by Jim Meyering.
11452
11453 2007-03-17  Eric Blake  <ebb9@byu.net>
11454
11455         * NEWS: Document stdlib change from 2007-02-18.
11456
11457 2007-03-17  Jim Meyering  <jim@meyering.net>
11458
11459         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
11460         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
11461         someone uses a name containing shell meta-characters.
11462         Reported by Alfred M. Szmidt.
11463
11464         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
11465
11466 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
11467
11468         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
11469         and copy gettext configuration files only if configure.ac contains
11470         a use of AM_GNU_GETTEXT_VERSION.
11471
11472 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
11473
11474         * build-aux/bootstrap (gnulib_name): New variable.
11475         (gnulib_tool_options): Use it.
11476
11477 2007-03-13  Simon Josefsson  <simon@josefsson.org>
11478
11479         * tests/test-des.c: Use new namespace.
11480
11481 2007-03-15  Bruno Haible  <bruno@clisp.org>
11482
11483         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
11484         Reported by James Youngman <jay@gnu.org>.
11485
11486 2007-03-15  Bruno Haible  <bruno@clisp.org>
11487
11488         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
11489         declared prototype. Needed with cc on OSF/1 5.1.
11490
11491 2007-03-15  Bruno Haible  <bruno@clisp.org>
11492
11493         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
11494         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
11495         (struct gl_list_implementation): Add dispose_fn argument to the
11496         'create_empty', 'create' methods.
11497         (struct gl_list_impl_base): Add field 'dispose_fn'.
11498         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
11499         argument.
11500         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
11501         dispose_fn argument.
11502         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
11503         dispose_fn on the dropped values.
11504         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
11505         dispose_fn argument.
11506         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
11507         dropped values.
11508         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
11509         (gl_tree_remove_node): Call dispose_fn on the dropped value.
11510         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
11511         (gl_tree_remove_node): Call dispose_fn on the dropped value.
11512         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
11513         argument.
11514         (gl_tree_list_free): Call dispose_fn on the dropped values.
11515         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
11516         the dropped values.
11517         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
11518         Add dispose_fn argument.
11519         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
11520         Call dispose_fn on the dropped values.
11521         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
11522         Add dispose_fn argument.
11523         (gl_sublist_create): Initialize the 'dispose_fn' field.
11524         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
11525         * tests/test-array_list.c (main): Update.
11526         * tests/test-carray_list.c (main): Update.
11527         * tests/test-avltree_list.c (main): Update.
11528         * tests/test-rbtree_list.c (main): Update.
11529         * tests/test-avltreehash_list.c (main): Update.
11530         * tests/test-rbtreehash_list.c (main): Update.
11531         * tests/test-linked_list.c (main): Update.
11532         * tests/test-linkedhash_list.c (main): Update.
11533         * tests/test-array_oset.c (main): Update.
11534
11535 2007-03-15  Bruno Haible  <bruno@clisp.org>
11536
11537         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
11538         (gl_oset_create_empty): Add dispose_fn argument.
11539         (struct gl_oset_implementation): Add dispose_fn argument to
11540         'create_empty' method.
11541         (struct gl_oset_impl_base): Add dispose_fn field.
11542         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
11543         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
11544         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
11545         values.
11546         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
11547         (gl_tree_oset_free): Call dispose_fn on the dropped values.
11548         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
11549         dropped value.
11550         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
11551         dropped value.
11552         * tests/test-array_oset.c (main): Update.
11553         * tests/test-avltree_oset.c (main): Update.
11554         * tests/test-rbtree_oset.c (main): Update.
11555         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
11556
11557 2007-03-13  Bruno Haible  <bruno@clisp.org>
11558
11559         * tests/test-stdbool.c (i): Update after last patch.
11560
11561 2007-03-12  Bruno Haible  <bruno@clisp.org>
11562
11563         * lib/quotearg.c: Include <wctype.h> early, before the definition of
11564         the iswprint macro. Needed on Solaris 2.5.1.
11565
11566 2007-03-12  Bruno Haible  <bruno@clisp.org>
11567
11568         * tests/test-printf-frexp.c (main): Declare x as volatile.
11569
11570 2007-03-12  Simon Josefsson  <simon@josefsson.org>
11571
11572         * doc/gnulib.texi (Build robot for gnulib): New section.
11573
11574 2007-03-12  Jim Meyering  <jim@meyering.net>
11575
11576         * build-aux/bootstrap: New file.
11577         * build-aux/bootstrap.conf: New file, from coreutils.
11578
11579 2007-03-11  Bruno Haible  <bruno@clisp.org>
11580
11581         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
11582
11583 2007-03-12  Simon Josefsson  <simon@josefsson.org>
11584
11585         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
11586         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
11587         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
11588
11589 2007-03-11  Bruno Haible  <bruno@clisp.org>
11590
11591         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
11592         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
11593
11594 2007-03-11  Bruno Haible  <bruno@clisp.org>
11595
11596         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
11597         formula. Needed for SunPRO C 5.0.
11598
11599 2007-03-11  Bruno Haible  <bruno@clisp.org>
11600
11601         * modules/long-options (Depends-on): Add getopt.
11602
11603 2007-03-11  Bruno Haible  <bruno@clisp.org>
11604
11605         * modules/modechange (Depends-on): Add stdbool.
11606
11607 2007-03-11  Bruno Haible  <bruno@clisp.org>
11608
11609         * modules/i-ring (Depends-on): Add stdbool.
11610
11611 2007-03-11  Bruno Haible  <bruno@clisp.org>
11612
11613         * modules/gc-des (Depends-on): Add stdbool.
11614
11615 2007-03-11  Bruno Haible  <bruno@clisp.org>
11616
11617         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
11618
11619 2007-03-11  Bruno Haible  <bruno@clisp.org>
11620
11621         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
11622
11623 2007-03-11  Bruno Haible  <bruno@clisp.org>
11624
11625         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
11626
11627 2007-03-11  Bruno Haible  <bruno@clisp.org>
11628
11629         * lib/vasnprintf.c (sprintf): Undefine.
11630
11631 2007-03-11  Bruno Haible  <bruno@clisp.org>
11632
11633         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
11634         initializers in SunPRO C and Compaq C compilers.
11635
11636 2007-03-11  Bruno Haible  <bruno@clisp.org>
11637
11638         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
11639         decrementing code ANSI C compliant.
11640
11641 2007-03-11  Bruno Haible  <bruno@clisp.org>
11642
11643         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
11644         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
11645
11646 2007-03-11  Bruno Haible  <bruno@clisp.org>
11647
11648         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
11649         <stdbool.h> substitute doesn't pass.
11650
11651 2007-03-11  Bruno Haible  <bruno@clisp.org>
11652
11653         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
11654
11655 2007-03-11  Bruno Haible  <bruno@clisp.org>
11656
11657         * gnulib-tool (func_create_megatestdir): Create also an autobuild
11658         script, for submission to autobuild.josefsson.org.
11659
11660 2007-03-10  Bruno Haible  <bruno@clisp.org>
11661
11662         * modules/canonicalize-lgpl-tests: New file.
11663         * tests/test-canonicalize-lgpl.sh: New file.
11664         * tests/test-canonicalize-lgpl.c: New file.
11665
11666         * modules/c-strcase-tests: New file.
11667         * tests/test-c-strcase.sh: New file.
11668         * tests/test-c-strcasecmp.c: New file.
11669         * tests/test-c-strncasecmp.c: New file.
11670
11671         * modules/atexit-tests: New file.
11672         * tests/test-atexit.sh: New file.
11673         * tests/test-atexit.c: New file.
11674
11675 2007-03-10  Bruno Haible  <bruno@clisp.org>
11676
11677         * tests/test-binary-io.sh: Use temporary filenames that are not so
11678         likely to clash with those of other tests (in a parallel make).
11679         * tests/test-binary-io.c: Likewise.
11680
11681 2007-03-10  Bruno Haible  <bruno@clisp.org>
11682
11683         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
11684         fallback; use #error instead.
11685         Suggested by Simon Josefsson.
11686
11687 2007-03-10  Bruno Haible  <bruno@clisp.org>
11688
11689         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
11690         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
11691         first and the last.
11692
11693 2007-03-10  Bruno Haible  <bruno@clisp.org>
11694
11695         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
11696
11697 2007-03-10  Bruno Haible  <bruno@clisp.org>
11698
11699         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
11700         "make distcheck".
11701         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
11702         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
11703         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
11704
11705 2007-03-10  Bruno Haible  <bruno@clisp.org>
11706
11707         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
11708         variable.
11709         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
11710         variable.
11711
11712 2007-03-09  Eric Blake  <ebb9@byu.net>
11713         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
11714
11715         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
11716         types are not being provided by gnulib.
11717         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
11718         types are supported.
11719
11720 2007-03-10  Bruno Haible  <bruno@clisp.org>
11721
11722         * lib/stdio_.h (__attribute__): New macro.
11723         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
11724         vsprintf): Specify __attribute__ __format__ for GCC.
11725         Suggested by Eric Blake.
11726
11727 2007-03-09  Bruno Haible  <bruno@clisp.org>
11728
11729         * modules/printf-posix-tests: New file.
11730         * tests/test-printf-posix.sh: New file.
11731         * tests/test-printf-posix.c: New file.
11732
11733         * modules/printf-posix: New file.
11734         * lib/printf.c: New file.
11735         * m4/printf-posix-rpl.m4: New file.
11736         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
11737         REPLACE_PRINTF.
11738         * lib/stdio_.h (printf): New declaration.
11739         (format, __format__, ____printf____, ____scanf____, ____strftime____,
11740         ____strfmon____): New macros.
11741         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
11742         REPLACE_PRINTF.
11743
11744 2007-03-09  Bruno Haible  <bruno@clisp.org>
11745
11746         * tests/test-vasnprintf-posix2.sh: New file.
11747         * tests/test-vasnprintf-posix2.c: New file.
11748         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
11749         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
11750         (Makefile.am): Activate test-vasnprintf-posix2.sh.
11751
11752         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
11753         a locale dependent decimal point, rather than always '.'.
11754
11755 2007-03-09  Eric Blake  <ebb9@byu.net>
11756
11757         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
11758         spite of platforms like Tandem/NSK that define it to -1.
11759
11760 2007-03-08  Bruno Haible  <bruno@clisp.org>
11761
11762         * modules/vprintf-posix-tests: New file.
11763         * tests/test-vprintf-posix.sh: New file.
11764         * tests/test-vprintf-posix.c: New file.
11765         * tests/test-printf-posix.h: New file.
11766
11767         * modules/vprintf-posix: New file.
11768         * lib/vprintf.c: New file.
11769         * m4/vprintf-posix.m4: New file.
11770         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
11771         REPLACE_VPRINTF.
11772         * lib/stdio_.h (vprintf): New declaration.
11773         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
11774         REPLACE_VPRINTF.
11775
11776 2007-03-08  Bruno Haible  <bruno@clisp.org>
11777
11778         * modules/fprintf-posix-tests: New file.
11779         * tests/test-fprintf-posix.sh: New file.
11780         * tests/test-fprintf-posix.c: New file.
11781
11782         * modules/fprintf-posix: New file.
11783         * lib/fprintf.c: New file.
11784         * m4/fprintf-posix.m4: New file.
11785         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
11786         REPLACE_FPRINTF.
11787         * lib/stdio_.h (fprintf): New declaration.
11788         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
11789         REPLACE_FPRINTF.
11790
11791 2007-03-08  Bruno Haible  <bruno@clisp.org>
11792
11793         * modules/vfprintf-posix-tests: New file.
11794         * tests/test-vfprintf-posix.sh: New file.
11795         * tests/test-vfprintf-posix.c: New file.
11796         * tests/test-fprintf-posix.h: New file.
11797         * tests/test-fprintf-posix.out: New file.
11798
11799         * modules/vfprintf-posix: New file.
11800         * lib/vfprintf.c: New file.
11801         * m4/vfprintf-posix.m4: New file.
11802         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
11803         REPLACE_VFPRINTF.
11804         * lib/stdio_.h (vfprintf): New declaration.
11805         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
11806         REPLACE_VFPRINTF.
11807
11808 2007-03-08  Bruno Haible  <bruno@clisp.org>
11809
11810         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
11811
11812 2007-03-08  Bruno Haible  <bruno@clisp.org>
11813
11814         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
11815         instead of 'expr' invocations.
11816         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11817         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11818         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11819         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
11820         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
11821         Suggested by Paul Eggert.
11822
11823 2007-03-08  Bruno Haible  <bruno@clisp.org>
11824
11825         * modules/fseterr-tests: New file.
11826         * tests/test-fseterr.c: New file.
11827
11828         * modules/fseterr: New file.
11829         * lib/fseterr.h: New file.
11830         * lib/fseterr.c: New file.
11831
11832 2007-03-08  Bruno Haible  <bruno@clisp.org>
11833
11834         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
11835         * lib/getopt_.h: Likewise.
11836         * lib/mbswidth.h: Likewise.
11837         * lib/setenv.h: Likewise.
11838         * lib/vasnprintf.h: Likewise.
11839         * lib/vasprintf.h: Likewise.
11840         * lib/verror.h: Likewise.
11841         * lib/xsetenv.h: Likewise.
11842         * lib/xvasprintf.h: Likewise.
11843
11844 2007-03-08  Jim Meyering  <jim@meyering.net>
11845
11846         * users.txt: Add parted.
11847
11848         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
11849
11850 2007-03-07  Bruno Haible  <bruno@clisp.org>
11851
11852         * m4/printf.m4: Make the shell script snippets copy&pastable.
11853
11854 2007-03-02  Bruno Haible  <bruno@clisp.org>
11855
11856         * lib/netinet_in_.h: New file.
11857         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
11858         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
11859         * modules/netinet_in (Files): Add lib/netinet_in_.h.
11860         (Depends-on): Add absolute-header.
11861         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
11862         into netinet/in.h.
11863
11864 2007-03-03  Bruno Haible  <bruno@clisp.org>
11865
11866         * lib/sys_select_.h: New file.
11867         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
11868         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
11869         * modules/sys_select (Files): Add lib/sys_select_.h.
11870         (Depends-on): Add absolute-header.
11871         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
11872         into sys/select.h.
11873
11874 2007-03-02  Bruno Haible  <bruno@clisp.org>
11875
11876         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
11877         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
11878         values.
11879         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
11880         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
11881         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
11882         * modules/sys_socket (Depends-on): Add absolute-header.
11883         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
11884         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
11885         (Include): Remove requirement of inclusion of <sys/types.h>.
11886
11887 2007-03-02  Bruno Haible  <bruno@clisp.org>
11888
11889         * lib/byteswap_.h (bswap_32): Fix formula.
11890
11891 2007-03-06  Bruno Haible  <bruno@clisp.org>
11892
11893         * modules/sprintf-posix-tests: New file.
11894         * tests/test-sprintf-posix.c: New file.
11895
11896         * modules/sprintf-posix: New file.
11897         * lib/sprintf.c: New file.
11898         * m4/sprintf-posix.m4: New file.
11899         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
11900         REPLACE_SPRINTF.
11901         * lib/stdio_.h (sprintf): New declaration.
11902         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
11903         REPLACE_SPRINTF.
11904
11905 2007-03-06  Bruno Haible  <bruno@clisp.org>
11906
11907         * modules/vsprintf-posix-tests: New file.
11908         * tests/test-vsprintf-posix.c: New file.
11909         * tests/test-sprintf-posix.h: New file.
11910
11911         * modules/vsprintf-posix: New file.
11912         * lib/vsprintf.c: New file.
11913         * m4/vsprintf-posix.m4: New file.
11914         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
11915         REPLACE_VSPRINTF.
11916         * lib/stdio_.h (vsprintf): New declaration.
11917         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
11918         REPLACE_VSPRINTF.
11919
11920 2007-03-06  Bruno Haible  <bruno@clisp.org>
11921
11922         * modules/vsnprintf (Depend-on): Remove minmax.
11923
11924 2007-03-06  Bruno Haible  <bruno@clisp.org>
11925
11926         * modules/snprintf-posix-tests: New file.
11927         * tests/test-snprintf-posix.c: New file.
11928
11929         * modules/snprintf-posix: New file.
11930         * m4/snprintf-posix.m4: New file.
11931         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
11932         gl_FUNC_SNPRINTF.
11933         (gl_FUNC_SNPRINTF): Invoke it.
11934         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
11935         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
11936         is set.
11937         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
11938
11939 2007-03-06  Bruno Haible  <bruno@clisp.org>
11940
11941         * modules/vsnprintf-posix-tests: New file.
11942         * tests/test-vsnprintf-posix.c: New file.
11943         * tests/test-snprintf-posix.h: New file.
11944
11945         * modules/vsnprintf-posix: New file.
11946         * m4/vsnprintf-posix.m4: New file.
11947         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
11948         gl_FUNC_VSNPRINTF.
11949         (gl_FUNC_VSNPRINTF): Invoke it.
11950         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
11951         * lib/stdio_.h (vsnprintf): Define as a replacement if
11952         REPLACE_VSNPRINTF is set.
11953         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
11954
11955 2007-03-06  Bruno Haible  <bruno@clisp.org>
11956
11957         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
11958         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
11959
11960 2007-03-06  Bruno Haible  <bruno@clisp.org>
11961
11962         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
11963         (asinl): Declare also if HAVE_DECL_ASINL is set.
11964         (atanl): Declare also if HAVE_DECL_ATANL is set.
11965         (ceill): Declare also if HAVE_DECL_CEILL is set.
11966         (cosl): Declare also if HAVE_DECL_COSL is set.
11967         (expl): Declare also if HAVE_DECL_EXPL is set.
11968         (floorl): Declare also if HAVE_DECL_FLOORL is set.
11969         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
11970         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
11971         (logl): Declare also if HAVE_DECL_LOGL is set.
11972         (sinl): Declare also if HAVE_DECL_SINL is set.
11973         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
11974         (tanl): Declare also if HAVE_DECL_TANL is set.
11975         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
11976         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
11977         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
11978         declaration of frexpl, ldexpl.
11979         * modules/printf-frexpl (Depends-on): Add math.
11980         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
11981
11982 2007-03-05  Bruno Haible  <bruno@clisp.org>
11983
11984         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
11985         frexpl and ldexpl are declared.
11986         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
11987
11988 2007-03-05  Bruno Haible  <bruno@clisp.org>
11989
11990         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
11991         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
11992
11993 2007-03-05  Bruno Haible  <bruno@clisp.org>
11994
11995         * lib/stdio_.h: Include <stddef.h>.
11996
11997 2007-03-05  Bruno Haible  <bruno@clisp.org>
11998
11999         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
12000
12001 2007-03-05  Bruno Haible  <bruno@clisp.org>
12002
12003         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
12004         NetBSD 4, from Ralf Wildenhues.
12005
12006 2007-03-04  Bruno Haible  <bruno@clisp.org>
12007
12008         * lib/vasprintf.h: Update #if logic for the case when the functions
12009         exist but are overridden.
12010
12011 2007-03-04  Bruno Haible  <bruno@clisp.org>
12012
12013         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
12014         implementations: glibc-2.4 and MacOS X 10.3.
12015         * tests/test-vasnprintf-posix.c (test_function): Test also the case
12016         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
12017         * tests/test-vasprintf-posix.c (test_function): Likewise.
12018
12019 2007-03-04  Bruno Haible  <bruno@clisp.org>
12020
12021         * modules/vasprintf-posix-tests: New file.
12022         * tests/test-vasprintf-posix.c: New file.
12023
12024         * modules/vasprintf-posix: New file.
12025         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
12026         defined.
12027         * m4/vasprintf-posix.m4: New file.
12028         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
12029         gl_FUNC_VASPRINTF.
12030         (gl_FUNC_VASPRINTF): Invoke it.
12031         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
12032         here.
12033         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
12034
12035 2007-03-04  Bruno Haible  <bruno@clisp.org>
12036
12037         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
12038         REPLACE_GETTIMEOFDAY.
12039         * modules/sys_time (Makefile.am): Likewise.
12040         * m4/sys_time_h.m4: Likewise.
12041         * m4/gettimeofday.m4: Likewise.
12042
12043 2007-03-04  Bruno Haible  <bruno@clisp.org>
12044
12045         * modules/vasnprintf-posix-tests: New file.
12046         * tests/test-vasnprintf-posix.c: New file.
12047
12048         * modules/vasnprintf-posix: New file.
12049         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
12050         printf-frexpl.h.
12051         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
12052         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
12053         REPLACE_VASNPRINTF is defined.
12054         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
12055         gl_FUNC_VASNPRINTF.
12056         (gl_FUNC_VASNPRINTF): Invoke it.
12057         * m4/vasnprintf-posix.m4: New file.
12058         * m4/printf.m4: New file.
12059
12060 2007-03-04  Bruno Haible  <bruno@clisp.org>
12061
12062         Compile progreloc.c only if --enable-relocatable is specified.
12063         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
12064         if --enable-relocatable was specified.
12065         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
12066         lib_SOURCES.
12067
12068 2007-03-04  Jim Meyering  <jim@meyering.net>
12069
12070         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
12071         Use it consistently, rather than enumerating errno constants.
12072
12073 2007-03-04  Bruno Haible  <bruno@clisp.org>
12074
12075         * modules/xvasprintf-tests: New file.
12076         * tests/test-xvasprintf.c: New file.
12077
12078         * modules/vasprintf-tests: New file.
12079         * tests/test-vasprintf.c: New file.
12080
12081         * modules/vasnprintf-tests: New file.
12082         * tests/test-vasnprintf.c: New file.
12083
12084         * modules/vsnprintf-tests: New file.
12085         * tests/test-vsnprintf.c: New file.
12086
12087         * modules/snprintf-tests: New file.
12088         * tests/test-snprintf.c: New file.
12089
12090 2007-03-04  Bruno Haible  <bruno@clisp.org>
12091
12092         Compile relocatable.c only if --enable-relocatable is specified.
12093         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
12094         gl_RELOCATABLE_LIBRARY.
12095         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
12096         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
12097         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
12098         gl_RELOCATABLE_LIBRARY.
12099         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
12100         (Makefile.am): Remove lib_SOURCES.
12101         * modules/relocatable-lib-lgpl (configure.ac): Invoke
12102         gl_RELOCATABLE_LIBRARY.
12103         (Makefile.am): Remove lib_SOURCES.
12104         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
12105         always.
12106         * modules/relocatable-prog-wrapper (configure.ac): Invoke
12107         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
12108
12109 2007-03-04  Bruno Haible  <bruno@clisp.org>
12110
12111         * modules/argmatch-tests: New file.
12112         * tests/test-argmatch.c: New file.
12113
12114         * tests/test-allocsa.c (main): Halve the number of loop runs.
12115
12116         * modules/alloca-opt-tests: New file.
12117         * tests/test-alloca-opt.c: New file.
12118
12119 2007-03-04  Jim Meyering  <jim@meyering.net>
12120
12121         Work around difference between Linux ACLs and Solaris 10 ZFS.
12122         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
12123         for EINVAL.
12124
12125 2007-03-03  Bruno Haible  <bruno@clisp.org>
12126
12127         * modules/relocatable-prog (Depends-on): Add back progreloc's
12128         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
12129
12130 2007-03-03  Bruno Haible  <bruno@clisp.org>
12131
12132         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
12133         * modules/relocatable-lib: New file.
12134
12135 2007-03-03  Bruno Haible  <bruno@clisp.org>
12136
12137         * modules/relocatable-prog: Renamed from modules/relocatable.
12138         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
12139
12140 2007-03-03  Bruno Haible  <bruno@clisp.org>
12141
12142         * modules/relocatable-script (Files): Add doc/relocatable.texi,
12143         m4/relocatable-lib.m4.
12144         (Depends-on): Remove 'relocatable'.
12145         (configure.ac): Add gl_RELOCATABLE_NOP.
12146
12147 2007-03-03  Bruno Haible  <bruno@clisp.org>
12148
12149         * modules/relocatable-prog-wrapper: New file.
12150         * modules/relocatable (Depends-on): Add it. Remove all other
12151         dependencies except progname.
12152         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
12153
12154         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
12155         (gl_FUNC_STRERROR): Nop.
12156         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
12157
12158         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
12159         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
12160
12161         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
12162         (gl_FUNC_READLINK): Update.
12163
12164         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
12165
12166 2007-03-03  Bruno Haible  <bruno@clisp.org>
12167
12168         * lib/xreadlink.c: Include <unistd.h> unconditionally.
12169         * modules/xreadlink (Depends-on): Add unistd.
12170         * modules/xreadlink-with-size (Depends-on): Likewise.
12171
12172 2007-03-03  Bruno Haible  <bruno@clisp.org>
12173
12174         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
12175         extracted from gt_FUNC_SETENV.
12176         (gt_FUNC_SETENV): Remove macro.
12177         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
12178         remove gt_FUNC_SETENV.
12179
12180 2007-03-03  Bruno Haible  <bruno@clisp.org>
12181
12182         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
12183         ENABLE_RELOCATABLE here.
12184         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
12185
12186 2007-03-03  Bruno Haible  <bruno@clisp.org>
12187
12188         * modules/rbtreehash-list-tests (Depends-on): Add progname.
12189         * tests/test-rbtreehash_list.c: Include progname.h.
12190         (main): Call set_program_name.
12191
12192         * modules/rbtree-oset-tests (Depends-on): Add progname.
12193         * tests/test-rbtree_oset.c: Include progname.h.
12194         (main): Call set_program_name.
12195
12196         * modules/rbtree-list-tests (Depends-on): Add progname.
12197         * tests/test-rbtree_list.c: Include progname.h.
12198         (main): Call set_program_name.
12199
12200         * modules/linked-list-tests (Depends-on): Add progname.
12201         * tests/test-linked_list.c: Include progname.h.
12202         (main): Call set_program_name.
12203
12204 2007-03-03  Bruno Haible  <bruno@clisp.org>
12205
12206         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
12207         All uses of __restrict changed to _Restrict_.
12208         * lib/glob_.h (__restrict): Remove macro.
12209
12210 2007-03-02  Bruno Haible  <bruno@clisp.org>
12211
12212         * modules/gettext (configure.ac): Require gettext infrastructure
12213         from version 0.16.1.
12214
12215 2007-03-02  Bruno Haible  <bruno@clisp.org>
12216
12217         * modules/linkedhash-list-tests (Depends-on): Add progname.
12218         * tests/test-linkedhash_list.c: Include progname.h.
12219         (main): Call set_program_name.
12220
12221         * modules/carray-list-tests (Depends-on): Add progname.
12222         * tests/test-carray_list.c: Include progname.h.
12223         (main): Call set_program_name.
12224
12225         * modules/avltreehash-list-tests (Depends-on): Add progname.
12226         * tests/test-avltreehash_list.c: Include progname.h.
12227         (main): Call set_program_name.
12228
12229         * modules/avltree-oset-tests (Depends-on): Add progname.
12230         * tests/test-avltree_oset.c: Include progname.h.
12231         (main): Call set_program_name.
12232
12233         * modules/avltree-list-tests (Depends-on): Add progname.
12234         * tests/test-avltree_list.c: Include progname.h.
12235         (main): Call set_program_name.
12236
12237         * modules/array-oset-tests (Depends-on): Add progname.
12238         * tests/test-array_oset.c: Include progname.h.
12239         (main): Call set_program_name.
12240
12241         * modules/array-list-tests (Depends-on): Add progname.
12242         * tests/test-array_list.c: Include progname.h.
12243         (main): Call set_program_name.
12244
12245         * modules/argp-tests (Depends-on): Add progname.
12246         * tests/test-argp.c: Include argp.h first. Include progname.h.
12247         (main): Call set_program_name.
12248
12249 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
12250
12251         * doc/gnulib-tool.texi (Initial import): Reword description of
12252         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
12253         limited effect even if defined after the first system include.
12254
12255 2007-03-01  Bruno Haible  <bruno@clisp.org>
12256
12257         * build-aux/config.libpath: Update to libtool-1.5.22.
12258         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
12259
12260 2007-03-01  Bruno Haible  <bruno@clisp.org>
12261
12262         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
12263         foo_CFLAGS.
12264         Reported by Ralf Wildenhues.
12265
12266 2007-03-01  Bruno Haible  <bruno@clisp.org>
12267
12268         * build-aux/install-reloc: Remove object files left over by some
12269         compilers.
12270         Reported by Ralf Wildenhues.
12271
12272 2007-03-01  Bruno Haible  <bruno@clisp.org>
12273
12274         * build-aux/install-reloc: Break long lines.
12275
12276 2007-03-01  Bruno Haible  <bruno@clisp.org>
12277
12278         * doc/relocatable.texi: Document that it may not work on OpenBSD.
12279         Reported by Ralf Wildenhues.
12280
12281 2007-03-01  Bruno Haible  <bruno@clisp.org>
12282
12283         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
12284         include ordering constraints.
12285
12286 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
12287
12288         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
12289         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
12290         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
12291         as another example.
12292         * lib/time_.h: Fix misspelling.
12293         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
12294         Require gl_HEADER_TIME_H_DEFAULTS.
12295         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
12296         * m4/time_r.m4 (gl_TIME_R): Likewise.
12297         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
12298
12299 2007-03-01  Bruno Haible  <bruno@clisp.org>
12300
12301         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
12302         * m4/utimens.m4 (gl_UTIMENS): Likewise.
12303
12304 2007-03-01  Jim Meyering  <jim@meyering.net>
12305
12306         * modules/xreadlink (Maintainer): Add my name.
12307         * modules/xreadlink-with-size (Depends-on): Alphabetize.
12308
12309 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
12310             Bruno Haible  <bruno@clisp.org>
12311
12312         * build-aux/install-reloc: Compile also c-ctype.c.
12313         * build-aux/relocatable.sh.in: New file.
12314         * doc/relocatable.texi: New file.
12315         * doc/relocatable-maint.texi: New file.
12316         * doc/gnulib.texi: Include relocatable-maint.texi.
12317         * lib/progreloc.c: Include unistd.h unconditionally.
12318         * lib/relocwrapper.c: Include unistd.h unconditionally.
12319         Include c-ctype.h.
12320         (add_dotbin): Use c_tolower.
12321         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
12322         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
12323         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
12324         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
12325         to m4/relocatable-lib.m4.
12326         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
12327         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
12328         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
12329         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
12330         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
12331         * modules/relocatable: New file.
12332         * modules/relocatable-lib: New file.
12333         * modules/relocatable-script: New file.
12334
12335 2007-02-28  Bruno Haible  <bruno@clisp.org>
12336
12337         Import --enable-relocatable infrastructure.
12338         * build-aux/config.libpath: New file, from GNU gettext.
12339         * build-aux/install-reloc: New file, from GNU gettext.
12340         * build-aux/reloc-ldflags: New file, from GNU gettext.
12341         * lib/relocatable.h: New file, from GNU gettext.
12342         * lib/relocatable.c: New file, from GNU gettext.
12343         * lib/relocwrapper.c: New file, from GNU gettext.
12344         * m4/relocatable.m4: New file, from GNU gettext.
12345
12346 2007-02-28  Bruno Haible  <bruno@clisp.org>
12347
12348         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
12349
12350         * modules/xreadlink: New file, from GNU gettext with modifications.
12351         * lib/xreadlink.c: New file, from GNU gettext.
12352         * lib/xreadlink.h: Add comments.
12353         (xreadlink): New declaration.
12354
12355         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
12356         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
12357         lib/xreadlink-with-size.c.
12358         (configure.ac): Remove gl_XREADLINK invocation.
12359         (Makefile.am): Augment lib_SOURCES.
12360         * m4/xreadlink.m4: Remove file.
12361         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
12362         (xreadlink_with_size): Renamed from xreadink.
12363         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
12364         * modules/canonicalize (Depends-on): Replace xreadlink with
12365         xreadlink-with-size.
12366         * lib/canonicalize.c (canonicalize_filename_mode): Update.
12367
12368 2007-02-25  Jim Meyering  <jim@meyering.net>
12369
12370         * build-aux/announce-gen: When complaining about excess arguments,
12371         list them.
12372
12373 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
12374
12375         * README: Document signed integer overflow situation more
12376         accurately.
12377
12378 2007-02-25  Bruno Haible  <bruno@clisp.org>
12379
12380         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
12381         'a' or 'A' conversion.
12382
12383 2007-02-25  Bruno Haible  <bruno@clisp.org>
12384
12385         * modules/filename: Renamed from modules/pathname.
12386         (Files): Replace lib/pathname.h with lib/filename.h. Replace
12387         lib/concatpath.c with lib/concat-filename.c.
12388         (Makefile.am): Update.
12389         (Include): Replace pathname.h with filename.h.
12390         * lib/filename.h: Renamed from lib/pathname.h.
12391         (concatenated_filename): Renamed from concatenated_pathname.
12392         * lib/concat-filename.c: Renamed from lib/concatpath.c.
12393         (concatenated_filename): Renamed from concatenated_pathname.
12394         * lib/findprog.c: Include filename.h instead of pathname.h.
12395         (find_in_path): Update.
12396         * lib/javacomp.c: Include filename.h instead of pathname.h.
12397         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
12398         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
12399         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
12400         is_oldgcj_14_13_usable, is_javac_usable): Update.
12401         * lib/javaexec.c: Include filename.h instead of pathname.h.
12402         (execute_java_class): Update.
12403         * modules/findprog: Update.
12404         * modules/javacomp: Update.
12405         * modules/javaexec: Update.
12406         * MODULES.html.sh (File system functions): Add 'filename', remove
12407         'pathname'.
12408
12409 2007-02-25  Bruno Haible  <bruno@clisp.org>
12410
12411         * modules/printf-frexpl-tests: New file.
12412         * tests/test-printf-frexpl.c: New file.
12413
12414         * modules/printf-frexpl: New file.
12415         * lib/printf-frexpl.h: New file.
12416         * lib/printf-frexpl.c: New file.
12417         * m4/printf-frexpl.m4: New file.
12418
12419 2007-02-25  Bruno Haible  <bruno@clisp.org>
12420
12421         * modules/printf-frexp-tests: New file.
12422         * tests/test-printf-frexp.c: New file.
12423
12424         * modules/printf-frexp: New file.
12425         * lib/printf-frexp.h: New file.
12426         * lib/printf-frexp.c: New file.
12427         * m4/printf-frexp.m4: New file.
12428
12429 2007-02-25  Bruno Haible  <bruno@clisp.org>
12430
12431         Assume automake >= 1.10 for the tests.
12432         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
12433         * modules/arctwo-tests: Likewise.
12434         * modules/argp-tests: Likewise.
12435         * modules/avltree-list-tests: Likewise.
12436         * modules/avltree-oset-tests: Likewise.
12437         * modules/avltreehash-list-tests: Likewise.
12438         * modules/carray-list-tests: Likewise.
12439         * modules/crc-tests: Likewise.
12440         * modules/des-tests: Likewise.
12441         * modules/gc-arcfour-tests: Likewise.
12442         * modules/gc-arctwo-tests: Likewise.
12443         * modules/gc-des-tests: Likewise.
12444         * modules/gc-hmac-md5-tests: Likewise.
12445         * modules/gc-hmac-sha1-tests: Likewise.
12446         * modules/gc-md2-tests: Likewise.
12447         * modules/gc-md4-tests: Likewise.
12448         * modules/gc-md5-tests: Likewise.
12449         * modules/gc-pbkdf2-sha1-tests: Likewise.
12450         * modules/gc-rijndael-tests: Likewise.
12451         * modules/gc-sha1-tests: Likewise.
12452         * modules/gc-tests: Likewise.
12453         * modules/getaddrinfo-tests: Likewise.
12454         * modules/hmac-md5-tests: Likewise.
12455         * modules/hmac-sha1-tests: Likewise.
12456         * modules/linked-list-tests: Likewise.
12457         * modules/linkedhash-list-tests: Likewise.
12458         * modules/lock-tests: Likewise.
12459         * modules/md2-tests: Likewise.
12460         * modules/md4-tests: Likewise.
12461         * modules/md5-tests: Likewise.
12462         * modules/rbtree-list-tests: Likewise.
12463         * modules/rbtree-oset-tests: Likewise.
12464         * modules/rbtreehash-list-tests: Likewise.
12465         * modules/read-file-tests: Likewise.
12466         * modules/rijndael-tests: Likewise.
12467         * modules/stdint-tests: Likewise.
12468         * modules/tls-tests: Likewise.
12469
12470 2007-02-24  Bruno Haible  <bruno@clisp.org>
12471
12472         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
12473         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
12474         function; instead check whether isnan with a double argument links.
12475         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
12476         function; instead check whether isnan with a 'long double' argument
12477         links.
12478         Reported by Eric Blake <ebb9@byu.net>.
12479
12480 2007-02-24  Bruno Haible  <bruno@clisp.org>
12481
12482         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
12483         defined.
12484         * lib/isnanl.c: Remove all code. Just include isnan.c.
12485         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
12486
12487 2007-02-25  Jim Meyering  <jim@meyering.net>
12488
12489         Avoid conflicting types for 'unsetenv' on FreeBSD.
12490         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
12491         conflicting with FreeBSD's (5.0 and 6.1) function declaration
12492         in stdlib.h.
12493
12494 2007-02-24  Bruno Haible  <bruno@clisp.org>
12495
12496         * modules/isnanl-nolibm-tests: New file.
12497         * tests/test-isnanl.c: New file.
12498
12499         * modules/isnanl-nolibm: New file.
12500         * lib/isnanl.h: New file.
12501         * lib/isnanl.c: New file.
12502         * m4/isnanl.m4: New file.
12503
12504 2007-02-24  Bruno Haible  <bruno@clisp.org>
12505
12506         * modules/isnan-nolibm-tests: New file.
12507         * tests/test-isnan.c: New file.
12508
12509         * modules/isnan-nolibm: New file.
12510         * lib/isnan.h: New file.
12511         * lib/isnan.c: New file.
12512         * m4/isnan.m4: New file.
12513
12514 2007-02-24  Bruno Haible  <bruno@clisp.org>
12515
12516         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
12517         assume that an exponent fits in 20 bits.
12518
12519 2007-02-24  Jim Meyering  <jim@meyering.net>
12520
12521         * m4/regex.m4: Update the description of the configure-time option,
12522         --without-included-regex, to state accurately what the defaults are,
12523         and perhaps to give people an idea why using this option is risky.
12524
12525 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
12526
12527         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
12528         loops on small arguments.  This attempts to avoid the problem
12529         Bruno Haible reported for AIX 4.3.2 in
12530         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
12531
12532 2007-02-23  Bruno Haible  <bruno@clisp.org>
12533
12534         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
12535         Needed for help2man.
12536
12537 2007-02-23  Karl Berry  <karl@gnu.org>
12538
12539         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
12540         exists, foo.h should be cvs-ignored, not committed.
12541
12542 2007-02-23  Eric Blake  <ebb9@byu.net>
12543
12544         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
12545         * lib/stat-time.h (includes): Likewise.
12546         * lib/utimecmp.c (includes): Likewise.
12547         * lib/utimens.h (includes): Likewise.
12548         * lib/getdate.y (includes): Also include "timespec.h" for use
12549         internal to the module.
12550         * modules/utimens (Depends-on): Revert yesterday's patch.
12551         * modules/nanosleep (Depends-on): Add missing dependency.
12552
12553 2007-02-22  Bruno Haible  <bruno@clisp.org>
12554
12555         * lib/glob.c: Don't include getlogin_r.h.
12556
12557 2007-02-22  Jim Meyering  <jim@meyering.net>
12558
12559         * modules/utimens (Depends-on): Add timespec, required for
12560         utimens.h's inclusion of timespec.h.
12561
12562 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
12563
12564         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
12565         long unreadable paths in GNU/Linux.  Problem reported by Andreas
12566         Schwab in
12567         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
12568         I'll try to think of a better way to fix the Solaris problem.
12569
12570         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
12571         like glibc; on Solaris 10, it fails with errno == EINVAL.
12572         POSIX says the behavior is unspecified if the first argument is NULL,
12573         so play it safe and never pass NULL to the system getcwd.
12574
12575 2007-02-21  Jim Meyering  <jim@meyering.net>
12576
12577         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
12578         of gettimeofday.  It would conflict with the one now always
12579         provided via sys_time_.h.  Reported by Matthew Woehlke, as
12580         an IRIX 6.5 build failure.
12581
12582 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
12583
12584         Minor fixups to port to Solaris 10 with Sun C 5.8.
12585         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
12586         * modules/getcwd (Depends-on): Add dirfd.
12587         * lib/putenv.c (putenv): #undef it.
12588         (rpl_putenv): New decl.
12589         (malloc, free): Include <stdlib.h> rather than prototyping separately.
12590
12591 2007-02-20  Bruno Haible  <bruno@clisp.org>
12592
12593         * modules/stdio-tests: New file.
12594         * tests/test-stdio.c: New file.
12595
12596         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
12597         (Depends-on): Add stdio.
12598         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
12599         (Include): Use <stdio.h> instead of vsnprintf.h.
12600         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
12601         HAVE_DECL_VSNPRINTF.
12602         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
12603
12604         * modules/snprintf (Files): Remove lib/snprintf.h.
12605         (Depends-on): Add stdio.
12606         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
12607         (Include): Use <stdio.h> instead of snprintf.h.
12608         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
12609         HAVE_DECL_SNPRINTF.
12610         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
12611         * lib/getaddrinfo.c: Likewise.
12612
12613         * modules/stdio: New file.
12614         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
12615         * lib/snprintf.h: Remove file.
12616         * lib/vsnprintf.h: Remove file.
12617         * lib/.cppi-disable: Remove snprintf.h.
12618         * m4/stdio_h.m4: New file.
12619         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
12620
12621 2007-02-20  Jim Meyering  <jim@meyering.net>
12622
12623         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
12624         used by e.g., mingw.  From Bruno Haible.
12625
12626 2007-02-19  Bruno Haible  <bruno@clisp.org>
12627
12628         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
12629         warnings.
12630         Reported by Ben Pfaff <blp@cs.stanford.edu>.
12631
12632 2007-02-19  Bruno Haible  <bruno@clisp.org>
12633
12634         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
12635         from mingw users.
12636
12637 2007-02-19  Bruno Haible  <bruno@clisp.org>
12638
12639         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
12640         warnings.
12641         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
12642
12643 2007-02-19  Jim Meyering  <jim@meyering.net>
12644
12645         Don't use FD after a successful "fdopendir (fd)".
12646         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
12647         Reset it by calling dirfd on the just-obtained DIR*.
12648
12649         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
12650         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
12651
12652 2007-02-18  Bruno Haible  <bruno@clisp.org>
12653
12654         * lib/readlink.c: Include <unistd.h>.
12655         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
12656         HAVE_READLINK.
12657         * modules/readlink (Depends-on): Add unistd.
12658         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12659         (Include): Add <unistd.h>.
12660
12661         * lib/getlogin_r.h: Remove file.
12662         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
12663         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
12664         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
12665         HAVE_DECL_GETLOGIN_R.
12666         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
12667         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12668         (Include): Use <unistd.h> instead of getlogin_r.h.
12669
12670         * lib/getcwd.h: Remove file.
12671         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
12672         * lib/xgetcwd.c: Likewise.
12673         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
12674         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
12675         * modules/getcwd (Files): Remove lib/getcwd.h.
12676         (Depends-on): Add unistd.
12677         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12678         (Include): Use <unistd.h> instad of getcwd.h.
12679
12680         * lib/ftruncate.c: Include <unistd.h> first.
12681         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
12682         Set HAVE_FTRUNCATE.
12683         * modules/ftruncate (Depends-on): Add unistd.
12684         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12685
12686         * lib/fchdir.c: Include <unistd.h> first.
12687         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
12688         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
12689         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
12690         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12691         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
12692
12693         * lib/dup2.c: Include <unistd.h> first.
12694         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
12695         HAVE_DUP2.
12696         * modules/dup2 (Depends-on): Add unistd.
12697         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12698
12699         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
12700         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
12701         REPLACE_CHOWN. Don't define chown as a macro here.
12702         * modules/chown (Depends-on): Add unistd.
12703         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12704
12705         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
12706         Add definition for GL_LINK_WARNING.
12707         (chown, dup2): New declarations.
12708         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
12709         link warning.
12710         (ftruncate): New declaration.
12711         (getcwd): New declaration, taken from old getcwd.h.
12712         (getlogin_r): New declaration, taken from old getlogin_r.h.
12713         (readlink): New declaration.
12714         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
12715         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
12716         (gl_PREREQ_UNISTD): Remove macro.
12717         (gl_UNISTD_MODULE_INDICATOR): New macro.
12718         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
12719         many new variables. Don't set UNISTD_H.
12720         * modules/unistd (Description): Change.
12721         (Depends-on): Add link-warning.
12722         (configure.ac): Update.
12723         (Makefile.am): Create unistd.h always. Substitute many new variables
12724         into it.
12725
12726 2007-02-18  Bruno Haible  <bruno@clisp.org>
12727
12728         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
12729         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
12730         HAVE_GETSUBOPT.
12731         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
12732         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
12733         * lib/getsubopt.h: Remove file.
12734         * modules/getsubopt (Files): Remove lib/getsubopt.h.
12735         (Depends-on): Add stdlib.
12736         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12737         (Includes): Use <stdlib.h> instead of getsubopt.h.
12738         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
12739         Set HAVE_GETSUBOPT.
12740         * lib/getsubopt.c: Don't include getsubopt.h.
12741
12742 2007-02-18  Bruno Haible  <bruno@clisp.org>
12743
12744         * modules/fchdir (Depends-on): Add dup2.
12745
12746 2007-02-18  Bruno Haible  <bruno@clisp.org>
12747
12748         * lib/stdlib_.h: Handle glibc's special invocation convention
12749         specially.
12750
12751 2007-02-18  Bruno Haible  <bruno@clisp.org>
12752
12753         * modules/stdlib-tests: New file.
12754         * tests/test-stdlib.c: New file.
12755
12756         * modules/mkstemp (Files): Remove lib/mkstemp.h.
12757         (Depends-on): Add stdlib.
12758         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12759         (Includes): Use <stdlib.h> instead of mkstemp.h.
12760         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
12761         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
12762         * lib/mkstemp.c: Don't include mkstemp.h.
12763         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
12764         * lib/stdlib--.h: Don't include mkstemp.h.
12765
12766         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
12767         (Depends-on): Add stdlib.
12768         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12769         (Includes): Use <stdlib.h> instead of mkdtemp.h.
12770         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
12771         HAVE_MKDTEMP.
12772         * lib/mkdtemp.c: Don't include mkdtemp.h.
12773         * lib/clean-temp.c: Don't include mkdtemp.h.
12774
12775         * modules/exit (Files): Remove lib/exit.h.
12776         (Depends-on): Add stdlib.
12777         (Makefile.am): Remove lib_SOURCES.
12778         (Include): Use <stdlib.h> instead of exit.h.
12779         * lib/argmatch.c: Don't include exit.h.
12780         * lib/execute.c: Likewise.
12781         * lib/pagealign_alloc.c: Likewise.
12782         * lib/pipe.c: Likewise.
12783         * lib/wait-process.c: Likewise.
12784         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
12785         * lib/exitfail.c: Likewise.
12786         * lib/savewd.c: Likewise.
12787         * lib/xsetenv.c: Likewise.
12788
12789         * modules/stdlib: New file.
12790         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
12791         and extra comments about mkstemp().
12792         * lib/exit.h: Remove file.
12793         * lib/mkdtemp.h: Remove file.
12794         * lib/mkstemp.h: Remove file.
12795         * m4/stdlib_h.m4: New file.
12796         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
12797
12798 2007-02-18  Bruno Haible  <bruno@clisp.org>
12799
12800         * modules/math-tests: New file.
12801         * tests/test-math.c: New file.
12802
12803         * modules/math: New file.
12804         * modules/mathl (Files): Remove lib/mathl.h.
12805         (Depends-on): Add math.
12806         (Makefile.am): Don't mention mathl.h.
12807         (Include): Use <math.h> instead of mathl.h.
12808         * lib/math_.h: New file.
12809         * lib/mathl.h: Remove file.
12810         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
12811         mathl.h.
12812         * lib/asinl.c: Likewise.
12813         * lib/atanl.c: Likewise.
12814         * lib/ceill.c: Likewise.
12815         * lib/cosl.c: Likewise.
12816         * lib/expl.c: Likewise.
12817         * lib/floorl.c: Likewise.
12818         * lib/frexpl.c: Likewise.
12819         * lib/ldexpl.c: Likewise.
12820         * lib/logl.c: Likewise.
12821         * lib/sincosl.c: Likewise.
12822         * lib/sinl.c: Likewise.
12823         * lib/sqrtl.c: Likewise.
12824         * lib/tanl.c: Likewise.
12825         * lib/trigl.c: Likewise.
12826         * m4/math_h.m4: New file.
12827         * MODULES.html.sh (Mathematics): Add math.
12828
12829 2007-02-17  Bruno Haible  <bruno@clisp.org>
12830
12831         * modules/wctype-tests: New file.
12832         * tests/test-wctype.c: New file.
12833
12834         * modules/wchar-tests: New file.
12835         * tests/test-wchar.c: New file.
12836
12837         * modules/unistd-tests: New file.
12838         * tests/test-unistd.c: New file.
12839
12840         * modules/time-tests: New file.
12841         * tests/test-time.c: New file.
12842
12843         * modules/sysexits-tests: New file.
12844         * tests/test-sysexits.c: New file.
12845
12846         * modules/sys_time-tests: New file.
12847         * tests/test-sys_time.c: New file.
12848
12849         * modules/sys_stat-tests: New file.
12850         * tests/test-sys_stat.c: New file.
12851
12852         * modules/sys_socket-tests: New file.
12853         * tests/test-sys_socket.c: New file.
12854
12855         * modules/sys_select-tests: New file.
12856         * tests/test-sys_select.c: New file.
12857
12858         * modules/string-tests: New file.
12859         * tests/test-string.c: New file.
12860
12861         * modules/stdbool-tests: New file.
12862         * tests/test-stdbool.c: New file.
12863
12864         * modules/netinet_in-tests: New file.
12865         * tests/test-netinet_in.c: New file.
12866
12867         * modules/inttypes-tests: New file.
12868         * tests/test-inttypes.c: New file.
12869
12870         * modules/fcntl-tests: New file.
12871         * tests/test-fcntl.c: New file.
12872
12873         * modules/byteswap-tests: New file.
12874         * tests/test-byteswap.c: New file.
12875
12876         * modules/arpa_inet-tests: New file.
12877         * tests/test-arpa_inet.c: New file.
12878
12879 2007-02-17  Bruno Haible  <bruno@clisp.org>
12880
12881         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
12882         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
12883         if the corresponding module is not enabled. Emit link warnings if
12884         the function is used nevertheless.
12885         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
12886         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
12887         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
12888         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
12889         * modules/inttypes (Depends-on): Add link-warning.
12890         (Makefile.am): Copy the contents of build-aux/link-warning.h into
12891         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
12892         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
12893         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
12894         * modules/imaxdiv (configure.ac): Likewise.
12895         * modules/strtoimax (configure.ac): Likewise.
12896         * modules/strtoumax (configure.ac): Likewise.
12897
12898 2007-02-17  Bruno Haible  <bruno@clisp.org>
12899
12900         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
12901         gl_STRING_MODULE_INDICATOR_DEFAULTS.
12902         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
12903         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
12904
12905 2007-02-17  Bruno Haible  <bruno@clisp.org>
12906
12907         * modules/link-warning: New file.
12908         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
12909         * lib/string_.h (GL_LINK_WARNING): Remove definition.
12910         * modules/string (Depends-on): Add link-warning.
12911         (Makefile.am): Copy the contents of build-aux/link-warning.h into
12912         string.h.
12913         * MODULES.html.sh (Support for building libraries and executables): Add
12914         link-warning.
12915
12916 2007-02-17  Bruno Haible  <bruno@clisp.org>
12917
12918         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
12919         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
12920         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
12921         long lines.
12922
12923 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
12924             Bruno Haible  <bruno@clisp.org>
12925
12926         * modules/tmpfile: New file.
12927         * lib/tmpfile.c: New file.
12928         * m4/tmpfile.m4: New file.
12929         * MODULES.html.sh (func_all_modules): New section "Input/output".
12930
12931 2007-02-15  Bruno Haible  <bruno@clisp.org>
12932
12933         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
12934         (supports_delete_on_close): New function.
12935         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
12936
12937 2007-02-14  Bruno Haible  <bruno@clisp.org>
12938
12939         * modules/mbspcasecmp-tests: New file.
12940         * tests/test-mbspcasecmp.sh: New file.
12941         * tests/test-mbspcasecmp.c: New file.
12942
12943         New module mbspcasecmp.
12944         * modules/mbspcasecmp: New file.
12945         * lib/mbspcasecmp.c: New file.
12946         * lib/string_.h (strncasecmp): Change warning message.
12947         (mbspcasecmp): New declaration.
12948         * m4/mbspcasecmp.m4: New file.
12949         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
12950         GNULIB_MBSPCASECMP.
12951         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
12952         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
12953
12954 2007-02-14  Bruno Haible  <bruno@clisp.org>
12955
12956         * modules/mbsncasecmp-tests: New file.
12957         * tests/test-mbsncasecmp.sh: New file.
12958         * tests/test-mbsncasecmp.c: New file.
12959
12960         New module mbsncasecmp.
12961         * modules/mbsncasecmp: New file.
12962         * lib/mbsncasecmp.c: New file.
12963         * lib/string_.h (mbsncasecmp): New declaration.
12964         * m4/mbsncasecmp.m4: New file.
12965         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
12966         GNULIB_MBSNCASECMP.
12967         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
12968         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
12969
12970 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
12971
12972         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
12973         Verify that it doesn't overlap with our flags.
12974         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
12975         do not have the desired effect in multibyte locales; instead, use
12976         mbscasecmp.
12977         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
12978         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
12979         we don't require GNU fnmatch ourselves (if our users require it, they
12980         should do so explicitly).
12981
12982         Fix regex code so it doesn't rely on strcasecmp.
12983         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
12984         Otherwise, include gnulib's langinfo.h.
12985         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
12986         undesirable behavior in non-C locales.  Instead, rely on localecharset.
12987         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
12988         * modules/regex (FILES): Remove m4/codeset.m4.
12989         (Depends-on): Add localcharset.  Remove strcase.
12990
12991 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12992
12993         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
12994         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
12995
12996 2007-02-13  Bruno Haible  <bruno@clisp.org>
12997
12998         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
12999         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13000
13001 2007-02-12  Bruno Haible  <bruno@clisp.org>
13002
13003         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
13004         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
13005         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
13006         time warning rather than a link error.
13007
13008 2007-02-12  Bruno Haible  <bruno@clisp.org>
13009
13010         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
13011         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
13012         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13013
13014 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
13015
13016         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
13017         args, not 2.
13018
13019 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
13020
13021         New module 'time', so that apps can include <time.h> as per
13022         POSIX and GNU instead of separate include files like time_r.h
13023         and timegm.h.  This implementation tries out a simpler approach
13024         for replacing decls in standard include files (as compared to
13025         the string module), somewhat as an experiment.
13026
13027         * config/srclist.txt: Comment out mktime.c for now.
13028         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
13029         since it doesn't apply any more.  Use generic wording instead.
13030         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
13031         'time'.
13032         * lib/time_.h, m4/time_h.m4, modules/time: New files.
13033         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
13034         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
13035         Don't include <sys/types.h>; no longer needed since we assume C89.
13036         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
13037         * lib/strftime.c: Likewise.
13038         * lib/time_r.c: Likewise.
13039         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
13040         * lib/nanosleep.c: Include <time.h> first, to check interface.
13041         * lib/strptime.c: Likewise.
13042         * lib/time_r.c: Likewise.
13043         * lib/timegm.c: Likewise.
13044         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
13045         needed.
13046         * lib/timegm.c: Don't include timegm.h; no longer needed.
13047         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
13048         time.h now handles any problems in that area.
13049         (struct timespec, nanosleep): Remove; time.h now arranges for these.
13050         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
13051         that time.h defines struct timespec.
13052         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
13053         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
13054         handles that.
13055         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
13056         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
13057         needed.  Set REPLACE_LOCALTIME.
13058         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
13059         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
13060         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
13061         nanosleep; time_h.m4 now does that.  Don't require
13062         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
13063         module handles this now.
13064         * modules/getdate (Depends-on): Remove timespec.  Add time.
13065         * modules/nanosleep (Depends-on): Likewise.
13066         * modules/stat-time (Depends-on): Likewise.
13067         * modules/nanosleep (Include): Include time.h, not timespec.h.
13068         * modules/strptime (Files): Remove lib/strptime.h.
13069         (Depends-on): Add extensions, time.
13070         (Include): Include time.h, not strptime.h.
13071         * modules/time_r (Files): Remove lib/time_r.h.
13072         (Depends-on): Add time.
13073         (Include): Include time.h, not time_r.h.
13074         * modules/timegm: Likewise.
13075         * modules/timespec (Description): Now does timespec-related decls
13076         of our own, instead of struct timespec itself.
13077         (Depends-on): Add time; remove extensions.
13078         (Maintainer): Add self.
13079         * modules/utimecmp (Depends-on): Add time; remove timespec.
13080         * modules/utimens (Depends-on): Likewise.
13081         * modules/xnanosleep (Depends-on): Likewise.
13082
13083 2007-02-11  Bruno Haible  <bruno@clisp.org>
13084
13085         * lib/c-strstr.c: Include allocsa.h.
13086         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13087         * lib/c-strcasestr.c: Include allocsa.h.
13088         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13089         * lib/strcasestr.c: Include allocsa.h.
13090         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13091         * lib/mbsstr.c: Include allocsa.h.
13092         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
13093         allocsa/freesa instead of malloc/free.
13094         * lib/mbscasestr.c: Include allocsa.h.
13095         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
13096         allocsa/freesa instead of malloc/free.
13097         * modules/c-strstr (Depends-on): Add allocsa.
13098         * modules/c-strcasestr (Depends-on): Likewise.
13099         * modules/strcasestr (Depends-on): Likewise.
13100         * modules/mbsstr (Depends-on): Likewise.
13101         * modules/mbscasestr (Depends-on): Likewise.
13102
13103 2007-02-11  Bruno Haible  <bruno@clisp.org>
13104
13105         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
13106
13107         * modules/mbsspn-tests: New file.
13108         * tests/test-mbsspn.sh: New file.
13109         * tests/test-mbsspn.c: New file.
13110
13111 2007-02-11  Bruno Haible  <bruno@clisp.org>
13112
13113         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
13114
13115         * modules/mbspbrk-tests: New file.
13116         * tests/test-mbspbrk.sh: New file.
13117         * tests/test-mbspbrk.c: New file.
13118
13119 2007-02-11  Bruno Haible  <bruno@clisp.org>
13120
13121         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
13122         unneeded cast.
13123
13124         * modules/mbscspn-tests: New file.
13125         * tests/test-mbscspn.sh: New file.
13126         * tests/test-mbscspn.c: New file.
13127
13128 2007-02-11  Bruno Haible  <bruno@clisp.org>
13129
13130         * modules/mbscasecmp-tests: New file.
13131         * tests/test-mbscasecmp.sh: New file.
13132         * tests/test-mbscasecmp.c: New file.
13133
13134 2007-02-11  Bruno Haible  <bruno@clisp.org>
13135
13136         Ensure O(n) worst-case complexity of mbscasestr.
13137         * lib/mbscasestr.c: Include stdbool.h.
13138         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
13139         functions.
13140         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
13141         the bookkeeping indicates that it's worth it.
13142         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
13143
13144         * modules/mbscasestr-tests: New file.
13145         * tests/test-mbscasestr1.c: New file.
13146         * tests/test-mbscasestr2.sh: New file.
13147         * tests/test-mbscasestr2.c: New file.
13148         * tests/test-mbscasestr3.sh: New file.
13149         * tests/test-mbscasestr3.c: New file.
13150         * tests/test-mbscasestr4.sh: New file.
13151         * tests/test-mbscasestr4.c: New file.
13152         * m4/locale-tr.m4: New file.
13153
13154 2007-02-11  Bruno Haible  <bruno@clisp.org>
13155
13156         Ensure O(n) worst-case complexity of mbsstr.
13157         * lib/mbsstr.c: Include stdbool.h.
13158         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
13159         functions.
13160         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
13161         bookkeeping indicates that it's worth it.
13162         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
13163
13164         * modules/mbsstr-tests: New file.
13165         * tests/test-mbsstr1.c: New file.
13166         * tests/test-mbsstr2.sh: New file.
13167         * tests/test-mbsstr2.c: New file.
13168         * tests/test-mbsstr3.sh: New file.
13169         * tests/test-mbsstr3.c: New file.
13170         * m4/locale-fr.m4: New file.
13171
13172 2007-02-11  Bruno Haible  <bruno@clisp.org>
13173
13174         * lib/mbsrchr.c (mbsrchr): Fix bug.
13175
13176         * modules/mbsrchr-tests: New file.
13177         * tests/test-mbsrchr.sh: New file.
13178         * tests/test-mbsrchr.c: New file.
13179
13180 2007-02-11  Bruno Haible  <bruno@clisp.org>
13181
13182         * lib/mbschr.c (mbschr): Fix bug.
13183
13184         * modules/mbschr-tests: New file.
13185         * tests/test-mbschr.sh: New file.
13186         * tests/test-mbschr.c: New file.
13187         * m4/locale-zh.m4: New file.
13188
13189 2007-02-11  Bruno Haible  <bruno@clisp.org>
13190
13191         Support for copying multibyte string iterators.
13192         * lib/mbiter.h: Include <string.h>.
13193         (mbiter_multi_copy): New function.
13194         (mbi_copy): New macro.
13195         * lib/mbuiter.h: Include <string.h>.
13196         (mbuiter_multi_copy): New function.
13197         (mbui_copy): New macro.
13198
13199 2007-02-11  Bruno Haible  <bruno@clisp.org>
13200
13201         New module mbslen.
13202         * modules/mbslen: New file.
13203         * lib/mbslen.c: New file.
13204         * lib/string_.h (mbslen): New declaration.
13205         * m4/mbslen.m4: New file.
13206         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13207         GNULIB_MBSLEN.
13208         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
13209         * MODULES.html.sh (Internationalization functions): Add mbslen.
13210
13211 2007-02-11  Bruno Haible  <bruno@clisp.org>
13212
13213         Ensure O(n) worst-case complexity of strcasestr substitute.
13214         * lib/strcasestr.c: Include stdbool.h.
13215         (knuth_morris_pratt): New function.
13216         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
13217         bookkeeping indicates that it's worth it.
13218         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
13219
13220         * modules/strcasestr-tests: New file.
13221         * tests/test-strcasestr.c: New file.
13222
13223 2007-02-11  Bruno Haible  <bruno@clisp.org>
13224
13225         Ensure O(n) worst-case complexity of c_strcasestr.
13226         * lib/c-strcasestr.c: Include stdbool.h, string.h.
13227         (knuth_morris_pratt): New function.
13228         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
13229         the bookkeeping indicates that it's worth it.
13230         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
13231
13232         * modules/c-strcasestr-tests: New file.
13233         * tests/test-c-strcasestr.c: New file.
13234
13235 2007-02-11  Bruno Haible  <bruno@clisp.org>
13236
13237         Ensure O(n) worst-case complexity of c_strstr.
13238         * lib/c-strstr.c: Include stdbool.h, string.h.
13239         (knuth_morris_pratt): New function.
13240         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
13241         bookkeeping indicates that it's worth it.
13242         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
13243
13244         * lib/c-strstr.c: Complete rewrite for maintainability.
13245
13246         * modules/c-strstr-tests: New file.
13247         * tests/test-c-strstr.c: New file.
13248
13249 2007-02-11  Bruno Haible  <bruno@clisp.org>
13250
13251         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
13252         5.2.1 and earlier, whereby \055 was treated just like the range
13253         delimiter '-'.
13254         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
13255
13256 2007-02-08  Bruno Haible  <bruno@clisp.org>
13257
13258         * modules/regex (Depends-on): Add stdbool.
13259         Reported by Dalibor Topic <robilad@kaffe.org>.
13260
13261 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
13262
13263         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
13264         Prefer returning from main to exiting from it.
13265         Remove unnecessary parens after sizeof.
13266
13267 2007-02-05  Bruno Haible  <bruno@clisp.org>
13268
13269         New module mbssep.
13270         * modules/mbssep: New file.
13271         * lib/mbssep.c: New file.
13272         * lib/string_.h (strsep): Add a conditional link warning.
13273         (mbssep): New declaration.
13274         * m4/mbssep.m4: New file.
13275         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13276         GNULIB_MBSSEP.
13277         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
13278         * MODULES.html.sh (Internationalization functions): Add mbssep.
13279
13280 2007-02-05  Bruno Haible  <bruno@clisp.org>
13281
13282         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
13283         Optimize search in case of 1 delimiter.
13284
13285 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
13286
13287         * lib/acl.h: Include sys/types.h before sys/acl.h.
13288
13289 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
13290
13291         Merge upstream fix for glibc bugzilla #3957:
13292
13293         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
13294
13295         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
13296         bit for RE_HAT_LISTS_NOT_NEWLINE.
13297         (build_charclass_op): Remove bogus comment.
13298
13299 2007-02-05  Simon Josefsson  <simon@josefsson.org>
13300
13301         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
13302
13303 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
13304
13305         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
13306         * lib/memmem.c [!defined _LIBC]: Include config.h.
13307
13308 2007-02-04  Bruno Haible  <bruno@clisp.org>
13309
13310         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
13311         warning message.
13312
13313 2007-02-04  Bruno Haible  <bruno@clisp.org>
13314
13315         New module mbstok_r.
13316         * modules/mbstok_r: New file.
13317         * lib/mbstok_r.c: New file.
13318         * lib/string_.h (strtok_r): Change argument names to match the
13319         comments. Add a conditional link warning.
13320         (mbstok_r): New declaration.
13321         * m4/mbstok_r.m4: New file.
13322         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13323         GNULIB_MBSTOK_R.
13324         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
13325         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
13326
13327 2007-02-04  Bruno Haible  <bruno@clisp.org>
13328
13329         New module mbsspn.
13330         * modules/mbsspn: New file.
13331         * lib/mbsspn.c: New file.
13332         * lib/string_.h (strspn): Add a conditional link warning.
13333         (mbsspn): New declaration.
13334         * m4/mbsspn.m4: New file.
13335         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13336         GNULIB_MBSSPN.
13337         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
13338         * MODULES.html.sh (Internationalization functions): Add mbsspn.
13339
13340 2007-02-04  Bruno Haible  <bruno@clisp.org>
13341
13342         New module mbspbrk.
13343         * modules/mbspbrk: New file.
13344         * lib/mbspbrk.c: New file.
13345         * lib/string_.h (strpbrk): Add a conditional link warning.
13346         (mbspbrk): New declaration.
13347         * m4/mbspbrk.m4: New file.
13348         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13349         GNULIB_MBSPBRK.
13350         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
13351         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
13352
13353 2007-02-04  Bruno Haible  <bruno@clisp.org>
13354
13355         New module mbscspn.
13356         * modules/mbscspn: New file.
13357         * lib/mbscspn.c: New file.
13358         * lib/string_.h (strcspn): Add a conditional link warning.
13359         (mbscspn): New declaration.
13360         * m4/mbscspn.m4: New file.
13361         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13362         GNULIB_MBSCSPN.
13363         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
13364         * MODULES.html.sh (Internationalization functions): Add mbscspn.
13365
13366 2007-02-04  Bruno Haible  <bruno@clisp.org>
13367
13368         New module mbscasestr, reduced goal of strcasestr.
13369         * modules/mbscasestr: New file.
13370         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
13371         (mbscasestr): Renamed from strcasestr.
13372         * lib/strcasestr.c: Don't include mbuiter.h.
13373         (strcasestr): Remove support for multibyte locales.
13374         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
13375         Change the conditional link warning.
13376         (mbscasestr): New declaration.
13377         * m4/mbscasestr.m4: New file.
13378         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
13379         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
13380         REPLACE_STRCASESTR.
13381         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
13382         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
13383         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
13384         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
13385         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
13386         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
13387         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
13388         (Depends-on): Remove mbuiter.
13389         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
13390
13391 2007-02-04  Bruno Haible  <bruno@clisp.org>
13392
13393         Simplify handling of strncasecmp.
13394         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
13395         the conditional link warning.
13396         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
13397         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
13398         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
13399         * modules/strcase (configure.ac): Don't invoke
13400         gl_STRING_MODULE_INDICATOR.
13401         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
13402
13403 2007-02-04  Bruno Haible  <bruno@clisp.org>
13404
13405         New module mbscasecmp, reduced goal of strcasecmp.
13406         * modules/mbscasecmp: New file.
13407         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
13408         (mbscasecmp): Renamed from strcasecmp.
13409         * lib/strcasecmp.c: Don't include mbuiter.h.
13410         (strcasecmp): Remove support for multibyte locales.
13411         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
13412         Change the conditional link warning.
13413         (mbscasecmp): New declaration.
13414         * m4/mbscasecmp.m4: New file.
13415         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
13416         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
13417         REPLACE_STRCASECMP.
13418         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
13419         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13420         GNULIB_MBSCASECMP.
13421         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
13422         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
13423         * modules/strcase (Files): Remove m4/mbrtowc.m4.
13424         (Depends-on): Remove mbuiter.
13425         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
13426
13427 2007-02-04  Bruno Haible  <bruno@clisp.org>
13428
13429         New module mbsstr. Remove module strstr.
13430         * modules/mbsstr: New file.
13431         * modules/strstr: Remove file.
13432         * lib/mbsstr.c: Renamed from lib/strstr.c.
13433         (mbsstr): Renamed from strstr.
13434         * lib/string_.h (strstr): Remove declaration. Change the conditional
13435         link warning.
13436         (mbsstr): New declaration.
13437         * m4/mbsstr.m4: New file.
13438         * m4/strstr.m4: Remove file.
13439         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
13440         REPLACE_STRSTR.
13441         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
13442         Don't initialize GNULIB_STRSTR.
13443         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
13444         substitute GNULIB_STRSTR and REPLACE_STRSTR.
13445         * MODULES.html.sh (Internationalization functions): Add mbsstr.
13446         (Support for systems lacking ANSI C 89): Remove strstr.
13447
13448 2007-02-04  Bruno Haible  <bruno@clisp.org>
13449
13450         New module mbsrchr.
13451         * modules/mbsrchr: New file.
13452         * lib/mbsrchr.c: New file.
13453         * lib/string_.h (strrchr): Add a conditional link warning.
13454         (mbsrchr): New declaration.
13455         * m4/mbsrchr.m4: New file.
13456         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13457         GNULIB_MBSRCHR.
13458         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
13459         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
13460
13461 2007-02-04  Bruno Haible  <bruno@clisp.org>
13462
13463         New module mbschr.
13464         * modules/mbschr: New file.
13465         * lib/mbschr.c: New file.
13466         * lib/string_.h (strchr): Add a conditional link warning.
13467         (mbschr): New declaration.
13468         * m4/mbschr.m4: New file.
13469         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13470         GNULIB_MBSCHR.
13471         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
13472         * MODULES.html.sh (Internationalization functions): Add mbschr.
13473
13474 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
13475
13476         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
13477
13478         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
13479
13480 2007-02-04  Bruno Haible  <bruno@clisp.org>
13481
13482         New module description section 'configure.ac-early'.
13483         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
13484         (func_get_autoconf_early_snippet): New function.
13485         (func_import, func_create_testdir): Use it. Remove special cases for
13486         modules 'extensions' and 'lock'.
13487         * modules/extensions (configure.ac-early): Require
13488         gl_USE_SYSTEM_EXTENSIONS.
13489         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
13490
13491 2007-02-04  Bruno Haible  <bruno@clisp.org>
13492
13493         Make use of gcj-4.3's -fsource and -ftarget option.
13494         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
13495         and if so try the options -fsource and -ftarget.
13496         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
13497         source_version, ftarget_option, target_version arguments.
13498         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
13499         (is_envjavac_oldgcj_14_14_usable): Renamed from
13500         is_envjavac_gcj_14_14_usable.
13501         (is_envjavac_oldgcj_14_13_usable): Renamed from
13502         is_envjavac_gcj_14_13_usable.
13503         (is_gcj_present): Update.
13504         (is_gcj_43, is_gcj43_usable): New functions.
13505         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
13506         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
13507         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
13508         try the options -fsource and -ftarget.
13509
13510 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
13511
13512         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
13513         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
13514         larger value.
13515
13516 2007-02-03  Jim Meyering  <jim@meyering.net>
13517
13518         Give tools a better chance to allocate space for very large buffers.
13519         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
13520
13521         Make pwd and readlink work also when run with an unreadable parent dir
13522         on systems with openat support.
13523         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
13524         provided getcwd function, even when we have openat support.
13525         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
13526
13527 2007-02-02  Bruno Haible  <bruno@clisp.org>
13528
13529         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
13530         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
13531         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
13532         portability problems if one of these functions is only used on specific
13533         platforms.
13534         Reported by Paul Eggert.
13535
13536 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
13537
13538         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
13539         is causing more trouble than it's curing.
13540         * lib/regex_internal.h (__mempcpy): Remove.
13541         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
13542         (and make the code a tad smaller to boot).
13543         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
13544
13545 2007-02-02  Jim Meyering  <jim@meyering.net>
13546
13547         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
13548         section, not in the Makefile.am: one.
13549
13550 2007-02-02  Eric Blake  <ebb9@byu.net>
13551
13552         * lib/strchrnul.c: Always include config.h first.
13553
13554         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
13555         gnulib strstr is not necessary here.
13556
13557 2007-02-02  Simon Josefsson  <simon@josefsson.org>
13558
13559         * m4/socklen.m4: Fix typo.
13560
13561 2007-02-02  Eric Blake  <ebb9@byu.net>
13562
13563         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
13564         * modules/netinet_in (Makefile.am): Likewise.
13565
13566 2007-02-01  Bruno Haible  <bruno@clisp.org>
13567
13568         * lib/string_.h (GL_LINK_WARNING): New macro.
13569         (strcasecmp, strstr, strcasestr): If provided by the system,
13570         conditionally define as a macro that leads to a warning instead of to
13571         an error.
13572         (strncasecmp): Conditionally define as a macro that leads to a warning.
13573
13574 2007-02-01  Karl Berry  <karl@gnu.org>
13575
13576         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
13577
13578 2007-02-01  Bruno Haible  <bruno@clisp.org>
13579
13580         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
13581         renamings.
13582
13583 2007-02-01  Eric Blake  <ebb9@byu.net>
13584
13585         * modules/regex (Depends-on): Revert dependence on mempcpy.
13586         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
13587         module's definition of mempcpy.
13588         Reported by Paul Eggert.
13589
13590 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
13591
13592         * lib/string_.h: If the gnulib module XYZ is not present, undefine
13593         the symbol XYZ before redefining it.  This fixes a problem with
13594         programs that don't use XYZ, when compiled on systems that define
13595         XYZ to something else.
13596
13597 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
13598
13599         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
13600         occurs when "mkdir -m foo" creates a setgid directory that is (1)
13601         writeable to group or other and (2) is intended to have a special
13602         mode bit that is set or cleared.  In such a case, the directory
13603         should be neither group- nor other-writeable until the special
13604         mode bits are right.
13605
13606 2007-01-31  Eric Blake  <ebb9@byu.net>
13607
13608         * modules/mountlist (Depends-on): Add strstr.
13609
13610         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
13611         bug.
13612         * modules/string (Makefile.am): Remove redundant replacement.
13613         * modules/regex (Depends-on): Add mempcpy.
13614
13615 2007-01-31  Bruno Haible  <bruno@clisp.org>
13616
13617         New module description field 'Link'.
13618         * gnulib-tool (func_usage): Document --extract-link-directive.
13619         (sed_extract_prog): Recognize 'Link' directive.
13620         (func_get_link_directive): New function.
13621         (func_import): Show summary of link directives.
13622         Handle --extract-link-directive option.
13623         * modules/acl (Link): New section.
13624         * modules/clock-time (Link): New section.
13625         * modules/euidaccess (Link): New section.
13626         * modules/gettext (Link): New section.
13627         * modules/iconv (Link): New section.
13628         * modules/lock (Link): New section.
13629         * modules/nanosleep (Link): New section.
13630         * modules/readline (Link): New section.
13631
13632 2007-01-27  Bruno Haible  <bruno@clisp.org>
13633
13634         Enforce the use of gnulib modules for unportable <string.h> functions.
13635         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
13636         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
13637         (gl_HEADER_STRING_H_BODY): Require it.
13638         * lib/string_.h: If the gnulib module XYZ is not present, redefine
13639         the symbol XYZ to one that gives a link error.
13640         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
13641         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
13642         * modules/mempcpy (configure.ac): Likewise.
13643         * modules/memrchr (configure.ac): Likewise.
13644         * modules/stpcpy (configure.ac): Likewise.
13645         * modules/stpncpy (configure.ac): Likewise.
13646         * modules/strcase (configure.ac): Likewise.
13647         * modules/strcasestr (configure.ac): Likewise.
13648         * modules/strchrnul (configure.ac): Likewise.
13649         * modules/strdup (configure.ac): Likewise.
13650         * modules/strndup (configure.ac): Likewise.
13651         * modules/strnlen (configure.ac): Likewise.
13652         * modules/strpbrk (configure.ac): Likewise.
13653         * modules/strsep (configure.ac): Likewise.
13654         * modules/strstr (configure.ac): Likewise.
13655         * modules/strtok_r (configure.ac): Likewise.
13656
13657 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
13658
13659         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
13660
13661 2007-01-30  Jim Meyering  <jim@meyering.net>
13662
13663         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
13664
13665 2007-01-29  Bruno Haible  <bruno@clisp.org>
13666
13667         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
13668         * lib/execute.c: Likewise.
13669         * lib/pipe.c: Likewise.
13670         * lib/printf-args.h: Likewise.
13671         * lib/printf-args.c: Likewise.
13672         * lib/printf-parse.c: Likewise.
13673         * lib/vasnprintf.c: Likewise.
13674
13675 2007-01-29  Eric Blake  <ebb9@byu.net>
13676
13677         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
13678         declaration.
13679
13680 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
13681
13682         * lib/strptime.h (strptime): Use 'restrict' for args where
13683         POSIX requires this.
13684         * lib/strptime.c (strptime): Likewise.
13685         Change license notice from LGPL to GPL, since gnulib-tool will
13686         change this as needed.
13687         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
13688         defined.
13689         Include "strptime.h" first, to check interface.
13690         Do not #undef _LIBC and _NL_CURRENT.
13691         Do not include <stdlib.h>; no longer needed.
13692         Include "time_r.h" and declare ptime_locale_status
13693         only if _LIBC is not defined.
13694         (__P): Remove unused macro.
13695         (match_string): Bring back glibc version, but use it only if _LIBC
13696         is defined.
13697         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
13698         Remove unnecessary assertion and abort() call.
13699         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
13700         * m4/strptime.m4: Fix serial number comment.
13701         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
13702         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
13703         (Depends-on): Add time_r.
13704
13705 2007-01-29  Bruno Haible  <bruno@clisp.org>
13706
13707         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13708         strptime.
13709         * modules/strptime (Depends-on): Add stdbool.
13710         * lib/strptime.h: Include <time.h> always. Add comments.
13711
13712 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13713
13714         * modules/strptime: New file.
13715         * lib/strptime.h: New file.
13716         * lib/strptime.c: New file.
13717         * m4/strptime.m4: New file.
13718
13719 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
13720
13721         * MODULES.html.sh: New module mpsort.
13722         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
13723
13724         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
13725         a circularity problem with HP-UX ia64 reported by Bob Proulx in
13726         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
13727         All uses changed.
13728         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
13729         All uses changed.
13730         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
13731         to _Restrict_.
13732         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
13733         the parameter matches the prototype.
13734
13735 2007-01-28  Jim Meyering  <jim@meyering.net>
13736
13737         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
13738         sys/time.h here, reverting that part of the previous patch:
13739         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
13740
13741 2007-01-28  Bruno Haible  <bruno@clisp.org>
13742
13743         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
13744         value of $(SYS_TIME_H).
13745         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
13746         remove it conditionally, too. [added by Jim Meyering]
13747         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
13748         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
13749         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
13750         GETTIMEOFDAY_REPLACEMENT to 1.
13751
13752 2007-01-28  Bruno Haible  <bruno@clisp.org>
13753
13754         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
13755         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
13756         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
13757         Set UNISTD_H instead of UNISTD_H2.
13758         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
13759
13760 2007-01-28  Bruno Haible  <bruno@clisp.org>
13761
13762         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
13763         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
13764
13765 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13766
13767         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
13768         (func_create_testdir): Ensure C locale for `grep' and `tr'
13769         character ranges.
13770         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
13771         ACLOCAL_AMFLAGS parsing state machine.
13772
13773 2007-01-27  Bruno Haible  <bruno@clisp.org>
13774
13775         * modules/unistr/base: Update.
13776
13777 2007-01-27  Bruno Haible  <bruno@clisp.org>
13778
13779         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
13780         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
13781         * modules/unistr/u32-mbtouc-unsafe: Renamed from
13782         modules/unistr/u32-mbtouc.
13783         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
13784         * lib/unistr.h: Update.
13785         * lib/linebreak.c: Update.
13786         * modules/unistr/u32-mbtouc: Renamed from
13787         modules/unistr/u32-mbtouc-safe.
13788         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
13789         * lib/unistr.h: Update.
13790         * lib/unistr/u32-to-u8.c: Update.
13791         * lib/unistr/u32-to-u16.c: Update.
13792
13793 2007-01-27  Bruno Haible  <bruno@clisp.org>
13794
13795         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
13796         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
13797         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
13798         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
13799         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
13800         * modules/unistr/u16-mbtouc-unsafe: Renamed from
13801         modules/unistr/u16-mbtouc.
13802         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
13803         * lib/unistr.h: Update.
13804         * lib/linebreak.c: Update.
13805         * modules/linebreak: Update.
13806         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
13807         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
13808         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
13809         * modules/unistr/u16-mbtouc: Renamed from
13810         modules/unistr/u16-mbtouc-safe.
13811         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
13812         * lib/unistr.h: Update.
13813         * lib/unistr/u16-to-u8.c: Update.
13814         * modules/unistr/u16-to-u8: Update.
13815         * lib/unistr/u16-to-u32.c: Update.
13816         * modules/unistr/u16-to-u32: Update.
13817
13818 2007-01-27  Bruno Haible  <bruno@clisp.org>
13819
13820         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
13821         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
13822         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
13823         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
13824         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
13825         * modules/unistr/u8-mbtouc-unsafe: Renamed from
13826         modules/unistr/u8-mbtouc.
13827         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
13828         * lib/unistr.h: Update.
13829         * lib/striconveh.c: Update.
13830         * modules/striconveh: Update.
13831         * lib/linebreak.c: Update.
13832         * modules/linebreak: Update.
13833         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
13834         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
13835         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
13836         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
13837         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
13838         * lib/unistr.h: Update.
13839         * lib/striconveh.c: Update.
13840         * modules/striconveh: Update.
13841         * lib/unistr/u8-to-u16.c: Update.
13842         * modules/unistr/u8-to-u16: Update.
13843         * lib/unistr/u8-to-u32.c: Update.
13844         * modules/unistr/u8-to-u32: Update.
13845
13846 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13847
13848         Sync from Libtool.
13849         * lib/argz.c: Do not include strings.h nor memory.h, include
13850         string.h unconditionally.  Patch by Simon Josefsson.
13851
13852 2007-01-27  Bruno Haible  <bruno@clisp.org>
13853
13854         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
13855         from gl_HEADER_STRING_H_BODY.
13856         (gl_HEADER_STRING_H_BODY): Require it.
13857         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
13858         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
13859         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
13860         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
13861         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
13862         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
13863         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
13864         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
13865         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
13866         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
13867         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
13868         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
13869         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
13870         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
13871         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
13872
13873 2007-01-27  Bruno Haible  <bruno@clisp.org>
13874
13875         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
13876         check_PROGRAMS into noinst_PROGRAMS.
13877         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
13878         check_PROGRAMS in this case.
13879         (func_import): Set for_test to false.
13880         (func_create_testdir): Set for_test to true.
13881
13882 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
13883             Bruno Haible  <bruno@clisp.org>
13884
13885         * modules/strcasestr (Files): Remove lib/strcasestr.h.
13886         (Depends-on): Add string.
13887         (Includes): Use <string.h> instead of strcasestr.h.
13888         * modules/string (Makefile.am): Also substitute the value of
13889         REPLACE_STRCASESTR.
13890         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
13891         assume strcasestr is declared in <string.h> not <strings.h>. Also
13892         set REPLACE_STRCASESTR.
13893         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
13894         REPLACE_STRCASESTR.
13895         * lib/strcasestr.h: Remove file.
13896         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
13897         * lib/string_.h (strcasestr): New declaration.
13898
13899 2007-01-27  Bruno Haible  <bruno@clisp.org>
13900
13901         * lib/string_.h: Use 'extern'.
13902
13903 2007-01-27  Jim Meyering  <jim@meyering.net>
13904
13905         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
13906         of set-but-not-used local, "q".
13907
13908         * lib/mempcpy.c: Include <config.h> before <string.h>.
13909         This fixes a compilation error on HP-UX, due to the system's
13910         "restrict"-using mempcpy prototype.
13911
13912 2007-01-26  Bruno Haible  <bruno@clisp.org>
13913
13914         Small optimization.
13915         * lib/javacomp.c: Include c-strstr.h.
13916          (is_envjavac_gcj): Use c_strstr instead of strstr.
13917         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
13918
13919 2007-01-26  Bruno Haible  <bruno@clisp.org>
13920
13921         * MODULES.html.sh (Unicode string functions): Add the new modules.
13922
13923         * modules/uniconv/u32-strconv-to-locale: New file.
13924         * lib/uniconv/u32-strconv-to-locale.c: New file.
13925
13926         * modules/uniconv/u16-strconv-to-locale: New file.
13927         * lib/uniconv/u16-strconv-to-locale.c: New file.
13928
13929         * modules/uniconv/u8-strconv-to-locale: New file.
13930         * lib/uniconv/u8-strconv-to-locale.c: New file.
13931
13932         * modules/uniconv/u32-strconv-from-locale: New file.
13933         * lib/uniconv/u32-strconv-from-locale.c: New file.
13934
13935         * modules/uniconv/u16-strconv-from-locale: New file.
13936         * lib/uniconv/u16-strconv-from-locale.c: New file.
13937
13938         * modules/uniconv/u8-strconv-from-locale: New file.
13939         * lib/uniconv/u8-strconv-from-locale.c: New file.
13940
13941         * modules/uniconv/u32-strconv-to-enc: New file.
13942         * lib/uniconv/u32-strconv-to-enc.c: New file.
13943         * modules/uniconv/u32-strconv-to-enc-tests: New file.
13944         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
13945
13946         * modules/uniconv/u16-strconv-to-enc: New file.
13947         * lib/uniconv/u16-strconv-to-enc.c: New file.
13948         * lib/uniconv/u-strconv-to-enc.h: New file.
13949         * modules/uniconv/u16-strconv-to-enc-tests: New file.
13950         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
13951
13952         * modules/uniconv/u8-strconv-to-enc: New file.
13953         * lib/uniconv/u8-strconv-to-enc.c: New file.
13954         * modules/uniconv/u8-strconv-to-enc-tests: New file.
13955         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
13956
13957         * modules/uniconv/u32-strconv-from-enc: New file.
13958         * lib/uniconv/u32-strconv-from-enc.c: New file.
13959         * modules/uniconv/u32-strconv-from-enc-tests: New file.
13960         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
13961
13962         * modules/uniconv/u16-strconv-from-enc: New file.
13963         * lib/uniconv/u16-strconv-from-enc.c: New file.
13964         * modules/uniconv/u16-strconv-from-enc-tests: New file.
13965         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
13966
13967         * modules/uniconv/u8-strconv-from-enc: New file.
13968         * lib/uniconv/u8-strconv-from-enc.c: New file.
13969         * lib/uniconv/u-strconv-from-enc.h: New file.
13970         * modules/uniconv/u8-strconv-from-enc-tests: New file.
13971         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
13972
13973         * modules/uniconv/u32-conv-from-enc: New file.
13974         * lib/uniconv/u32-conv-from-enc.c: New file.
13975         * modules/uniconv/u32-conv-from-enc-tests: New file.
13976         * tests/uniconv/test-u32-conv-from-enc.c: New file.
13977
13978         * modules/uniconv/u16-conv-from-enc: New file.
13979         * lib/uniconv/u16-conv-from-enc.c: New file.
13980         * lib/uniconv/u-conv-from-enc.h: New file.
13981         * modules/uniconv/u16-conv-from-enc-tests: New file.
13982         * tests/uniconv/test-u16-conv-from-enc.c: New file.
13983
13984         * modules/uniconv/u8-conv-from-enc: New file.
13985         * lib/uniconv/u8-conv-from-enc.c: New file.
13986         * modules/uniconv/u8-conv-from-enc-tests: New file.
13987         * tests/uniconv/test-u8-conv-from-enc.c: New file.
13988
13989         * modules/uniconv/base: New file.
13990         * lib/uniconv.h: New file.
13991
13992 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
13993
13994         * doc/gnulib-tool.texi (Initial import): Update to match current
13995         behavior with strdup module.
13996         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
13997         * lib/memmem.h: Remove; all uses removed.  This is now done
13998         by <string.h>.
13999         * lib/mempcpy.h: Likewise.
14000         * lib/memrchr.h: Likewise.
14001         * lib/stpcpy.h: Likewise.
14002         * lib/stpncpy.h: Likewise.
14003         * lib/strcase.h: Likewise.
14004         * lib/strchrnul.h: Likewise.
14005         * lib/strdup.h: Likewise.
14006         * lib/strndup.h: Likewise.
14007         * lib/strnlen.h: Likewise.
14008         * lib/strpbrk.h: Likewise.
14009         * lib/strsep.h: Likewise.
14010         * lib/strstr.h: Likewise.
14011         * lib/strtok_r.h: Likewise.
14012         * lib/string_.h: New file.
14013         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
14014         Rely on <string.h> instead.
14015         * lib/canon-host.c: Likewise.
14016         * lib/chdir-long.c: Likewise.
14017         * lib/concatpath.c: Likewise.
14018         * lib/exclude.c: Likewise.
14019         * lib/fchdir.c: Likewise.
14020         * lib/getaddrinfo.c: Likewise.
14021         * lib/getcwd.c: Likewise.
14022         * lib/getsubopt.c: Likewise.
14023         * lib/glob.c: Likewise.
14024         * lib/hard-locale.c: Likewise.
14025         * lib/iconvme.c: Likewise.
14026         * lib/javacomp.c: Likewise.
14027         * lib/mempcpy.c: Likewise.
14028         * lib/memrchr.c: Likewise.
14029         * lib/regex_internal.h: Likewise.
14030         * lib/stpncpy.c: Likewise.
14031         * lib/strcasecmp.c: Likewise.
14032         * lib/strchrnul.c: Likewise.
14033         * lib/strdup.c: Likewise.
14034         * lib/striconv.c: Likewise.
14035         * lib/striconveh.c: Likewise.
14036         * lib/striconveha.c: Likewise.
14037         * lib/strncasecmp.c: Likewise.
14038         * lib/strndup.c: Likewise.
14039         * lib/strnlen.c: Likewise.
14040         * lib/strsep.c: Likewise.
14041         * lib/strstr.c: Likewise.
14042         * lib/strtok_r.c: Likewise.
14043         * lib/userspec.c: Likewise.
14044         * lib/w32spawn.h: Likewise.
14045         * lib/xstrndup.c: Likewise.
14046         * lib/mountlist.c (strstr): Remove decl.
14047         * m4/string_h.m4: New file.
14048         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
14049         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
14050         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
14051         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
14052         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
14053         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
14054         Set REPLACE_STRCASECMP if necessary.
14055         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
14056         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
14057         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
14058         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
14059         HAVE_DECL_STRDUP if necessary.
14060         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
14061         since gl_FUNC_STRNDUP does that now.
14062         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
14063         Check for decl here...
14064         (gl_PREREQ_STRNLEN): ... not here.
14065         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
14066         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
14067         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
14068         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
14069         necessary.
14070         * modules/string: New file.
14071         * modules/memmem (Files): Remove special-purpose include file.
14072         (Depends-on): Add string.
14073         (Include): Include <string.h>, not the removed file.
14074         * modules/mempcpy: Likewise.
14075         * modules/memrchr: Likewise.
14076         * modules/stpcpy: Likewise.
14077         * modules/stpncpy: Likewise.
14078         * modules/strcase: Likewise.
14079         * modules/strchrnul: Likewise.
14080         * modules/strdup: Likewise.
14081         * modules/strndup: Likewise.
14082         * modules/strnlen: Likewise.
14083         * modules/strpbrk: Likewise.
14084         * modules/strsep: Likewise.
14085         * modules/strstr: Likewise.
14086         * modules/strtok_r: Likewise.
14087         * tests/test-dirname.c: Don't include "strdup.h", since
14088         <string.h> now suffices.
14089         * tests/test-memmem.c: Don't include "memmem.h", since
14090         <string.h> now suffices.
14091
14092 2007-01-25  Bruno Haible  <bruno@clisp.org>
14093
14094         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
14095         *resultp is 0.
14096
14097         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
14098         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
14099         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
14100         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
14101
14102         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
14103         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
14104         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
14105         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
14106         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
14107         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
14108
14109 2007-01-24  Bruno Haible  <bruno@clisp.org>
14110
14111         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
14112         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
14113         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
14114         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
14115         gl_FUNC_FTS_CORE.
14116         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
14117         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
14118         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
14119         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
14120         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
14121         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
14122         gl_FUNC_FCHOWNAT.
14123         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
14124         gl_FUNC_STRFTIME.
14125         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
14126         Reported by Ralf Wildenhues.
14127
14128 2007-01-24  Bruno Haible  <bruno@clisp.org>
14129
14130         Drop AC_REQUIRE calls that are redundant with the module dependencies.
14131         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
14132         gl_GETADDRINFO.
14133         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
14134         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
14135         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
14136
14137 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
14138
14139         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
14140         Don't use 'exit'; just return from 'main'.
14141         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
14142
14143         * lib/fnmatch_.h: Readjust white space and comments to match
14144         glibc, to avoid spurious diffs.
14145
14146 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14147
14148         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
14149         2004-12-01 change by Jakub Jelinek, since this code won't compile
14150         if !LIBC.  Problem reported by Bob Proulx.
14151
14152 2007-01-23  Bruno Haible  <bruno@clisp.org>
14153
14154         * lib/striconveh.c: Include c-strcaseeq.h.
14155         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
14156         * modules/striconveh (Depends-on): Add c-strcaseeq.
14157
14158 2007-01-23  Bruno Haible  <bruno@clisp.org>
14159
14160         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
14161
14162         * modules/c-strcaseeq: New file.
14163         * lib/c-strcaseeq.h: New file.
14164
14165         * modules/streq: New file.
14166         * lib/streq.h: New file.
14167
14168 2007-01-23  Bruno Haible  <bruno@clisp.org>
14169
14170         * modules/striconveha-tests: New file.
14171         * tests/test-striconveha.c: New file.
14172
14173         * lib/striconveha.h: Include <stdbool.h>.
14174         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
14175         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
14176         (mem_iconveha_notranslit): Renamed from mem_iconveha.
14177         (mem_iconveha): New function.
14178         (str_iconveha_notranslit): Renamed from str_iconveha.
14179         (str_iconveha): New function.
14180         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
14181         c-strcase.
14182
14183 2007-01-23  Bruno Haible  <bruno@clisp.org>
14184
14185         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
14186         encodings without forgiving before trying any encoding with handler.
14187         (str_iconveha): Try all encodings without forgiving before trying any
14188         encoding with handler.
14189
14190 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14191
14192         Import the following changes from libc.
14193
14194         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
14195
14196         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
14197
14198         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
14199
14200         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
14201         normal_bracket label.
14202
14203         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
14204
14205         [BZ #361]
14206         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
14207         to normal_bracket after fetching the next character.
14208
14209 2007-01-22  Bruno Haible  <bruno@clisp.org>
14210
14211         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
14212         argument.
14213         * lib/striconveh.c (iconv_carefully_1): New function.
14214         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
14215         argument.
14216         (str_cd_iconveh): Update.
14217         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
14218         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
14219         * tests/test-striconveh.c (MAGIC): New macro.
14220         (new_offsets): New function.
14221         (main): Test call with and without offsets.
14222
14223 2007-01-22  Bruno Haible  <bruno@clisp.org>
14224
14225         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
14226         * modules/sys_select (Makefile.am): Likewise.
14227         * modules/sys_socket (Makefile.am): Likewise.
14228         * modules/sys_time (Makefile.am): Likewise.
14229
14230 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
14231
14232         * modules/gettimeofday (License): Change from GPL to LGPL, since
14233         gettimeofday is a library function.
14234
14235 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14236
14237         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
14238
14239 2007-01-21  Bruno Haible  <bruno@clisp.org>
14240
14241         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
14242
14243 2007-01-21  Bruno Haible  <bruno@clisp.org>
14244
14245         * modules/striconveha: New file.
14246         * lib/striconveha.h: New file.
14247         * lib/striconveha.c: New file.
14248         * MODULES.html.sh (Internationalization functions): Add striconveha.
14249         * lib/striconv.c (str_iconv): Optimize the case of an empty input
14250         string.
14251         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
14252
14253 2007-01-21  Bruno Haible  <bruno@clisp.org>
14254
14255         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
14256         * lib/striconveh.c (str_iconveh): Likewise.
14257
14258 2007-01-21  Bruno Haible  <bruno@clisp.org>
14259
14260         * lib/striconveh.h (mem_iconveh): New declaration.
14261         * lib/striconveh.c (mem_iconveh): New function.
14262         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
14263
14264 2007-01-21  Bruno Haible  <bruno@clisp.org>
14265
14266         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
14267
14268         * lib/striconveh.h (mem_cd_iconveh): Change specification.
14269         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
14270         original result buffer.
14271         (str_cd_iconveh): Update.
14272         * tests/test-striconveh.c (main): Update.
14273
14274         * lib/striconv.h (mem_cd_iconv): Change specification.
14275         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
14276         result buffer.
14277         (str_cd_iconv): Update.
14278         * tests/test-striconv.c (main): Update.
14279
14280 2007-01-21  Bruno Haible  <bruno@clisp.org>
14281
14282         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
14283
14284 2007-01-20  Jim Meyering  <jim@meyering.net>
14285
14286         * lib/userspec.c (parse_with_separator): If a user or group string
14287         starts with "+", skip the corresponding name-to-ID look-up, since
14288         such a look-up must fail: user and group names may not include "+".
14289
14290 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
14291
14292         * lib/poll.c: Include sys/time.h and time.h unconditionally,
14293         since we now assume the sys_time module.
14294         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
14295         check for sys/time.h; no longer needed.
14296         * modules/poll (Depends-on): Depend on sys_time.
14297
14298 2007-01-18  Bruno Haible  <bruno@clisp.org>
14299
14300         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
14301         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
14302
14303         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
14304         gettimeofday.
14305
14306         * tests/test-gettimeofday.c: Include <time.h>.
14307         (dummy): Remove variable.
14308
14309         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
14310         gl_HEADER_SYS_TIME_H.
14311         (gl_HEADER_SYS_TIME_H): New macro.
14312
14313         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
14314         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14315         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
14316         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
14317         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14318         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
14319         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
14320         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14321         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
14322         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
14323         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14324
14325         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
14326         last change; it caused a compilation error when cross-compiling to
14327         Cygwin.
14328
14329 2007-01-18  Jim Meyering  <jim@meyering.net>
14330
14331         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
14332         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
14333         than the race-prone "test -d sys || mkdir sys".
14334         (configure.ac): Use AC_PROG_MKDIR_P.
14335         * modules/sys_select: Likewise.
14336         * modules/sys_socket: Likewise.
14337         * modules/sys_time: Likewise.
14338
14339 2007-01-18  Eric Blake  <ebb9@byu.net>
14340
14341         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
14342         replace gettimeofday.
14343         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
14344         name, to avoid infinite recursion.
14345
14346 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
14347
14348         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
14349         module sys_time.
14350         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
14351         assume timespec.h defines struct timeval.
14352         * lib/settime.c: Likewise.
14353         * lib/utimens.c: Likewise.
14354         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
14355         since we now assume the gettimeofday module.
14356         * lib/tempname.c (__gen_tempname): Likewise.
14357         * lib/gettimeofday.h: Remove.
14358         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
14359         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
14360         Include <time.h>, for 'time()'.
14361         (localtime_buffer_addr): Also use this workaround if
14362         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
14363         to simplify the uses.  All uses changed.
14364         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
14365         that #undef is inside {}, and 'const' follows type name consistently.
14366         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
14367         (gettimeofday): Do not use the maximum possible value for
14368         tv->tv_usec, since that might break usages other than ls.c.
14369         Instead, we'll leave ls.c alone.  This undoes today's patch
14370         by Bruno.  Add a compile-time warning for 1s-clock resolution;
14371         we've never observed the problem but might as well keep the
14372         canary.
14373         * lib/nanosleep.c: Include timespec.h first, for interface check.
14374         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
14375         now assume the sys_time module.
14376         * lib/tempname.c: Likewise.
14377         * lib/timespec.h: Likewise.
14378         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
14379         needed.
14380         * lib/strftime.c: Likewise.
14381         * lib/timespec.h: Likewise.
14382         * lib/posixtm.c: Include posixtm.h first, for interface check.
14383         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
14384         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
14385         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
14386         * lib/sys_time_.h: New file.
14387         * lib/timespec.h (struct timespec): Use long int, not long.
14388         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
14389         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
14390         Remove obsolescent call to AC_HEADER_TIME.
14391         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
14392         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
14393         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
14394         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
14395         Likewise.
14396         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
14397         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
14398         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
14399         into the sys_time module.  Check for gettimeofday just once.
14400         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
14401         for gettimeofday signature to just check the signature.  Merely
14402         compile it, since linking doesn't test signature.  Improve test for
14403         whether gettimeofday.o is actually needed.
14404         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
14405         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
14406         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
14407         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14408         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
14409         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
14410         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
14411         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
14412         than worrying about sys/time.h.
14413         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
14414         Don't bother worrying about TIME_WITH_SYS_TIME.
14415         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
14416         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
14417         * m4/sys_time_h.m4: New file.
14418         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
14419         Don't include sys/time.h.  Return from main rather than exiting.
14420         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
14421         all uses changed.
14422         * modules/gethrxtime (Depends-on): Add sys_time.
14423         * modules/gettime (Depends-on): Likewise.
14424         * modules/gettimeofday (Depends-on): Likewise.
14425         * modules/nanosleep (Depends-on): Likewise.
14426         * modules/settime (Depends-on): Likewise.
14427         * modules/tempname (Depends-on): Likewise.
14428         * modules/utimens (Depends-on): Likewise.
14429         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
14430         (Include:) Change back to <sys/time.h>.
14431         (Maintainer:) Add self.
14432         * modules/sys_time: New file.
14433         * modules/tempname (Depends-on): Add gettimeofday.
14434         * tests/test-gettimeofday.c: Include <sys/time.h>
14435         rather than gettimeofday.h.
14436
14437 2007-01-17  Bruno Haible  <bruno@clisp.org>
14438
14439         * gnulib-tool (func_get_license): Revert last patch. Instead, let
14440         the license default to GPL.
14441         (func_create_testdir): Don't complain if a module is LGPL and its
14442         tests module depends on GPLed modules.
14443
14444 2007-01-17  Bruno Haible  <bruno@clisp.org>
14445
14446         * lib/gettimeofday.c (gettimeofday): Add code for the case
14447         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
14448         maximum possible value for tv->tv_usec, rather than the minimum one.
14449
14450 2005-10-08  Martin Lambers  <marlam@marlam.de>
14451 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
14452 2007-01-16  Bruno Haible  <bruno@clisp.org>
14453
14454         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
14455         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
14456         gl_FUNC_GETTIMEOFDAY.
14457         (Include): Add gettimeofday.h.
14458         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
14459         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
14460         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
14461         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
14462         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
14463         * lib/gettimeofday.h: New file.
14464         * lib/gettimeofday.c: Include <sys/timeb.h>.
14465         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
14466         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
14467         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
14468         fall back on time().
14469
14470         * tests/test-gettimeofday.c: New file.
14471         * modules/gettimeofday-tests: New file.
14472
14473 2007-01-16  Eric Blake  <ebb9@byu.net>
14474
14475         * modules/fnmatch (Depends-on): Depend on wchar.
14476         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
14477         * m4/fnmatch.m4: Likewise.
14478         * modules/mbchar (Makefile.am): Assume <wchar.h>.
14479         * m4/mbchar.m4: Likewise.
14480         * modules/mbswidth (Depends-on): Depend on wchar.
14481         * lib/mbswidth.c: Assume <wchar.h>.
14482         * m4/mbswidth.m4: Likewise.
14483         * modules/quotearg (Depends-on): Depend on wchar.
14484         * lib/quotearg.c: Assume <wchar.h>.
14485         * m4/quotearg.m4: Likewise.
14486         * modules/regex (Depends-on): Depend on wchar.
14487         * lib/regex_internal.h: Assume <wchar.h>.
14488         * m4/regex.m4: Likewise.
14489         * modules/stdint (Depends-on): Depend on wchar.
14490         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
14491         * m4/stdint.m4: Likewise.
14492         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
14493         * modules/strftime (Depends-on): Depend on wchar.
14494         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
14495         * modules/strtol (Depends-on): Depend on wchar.
14496         * lib/strtol.c: Assume <wchar.h>.
14497         * modules/wcwidth (Depends-on): Depend on wchar.
14498         * lib/wcwidth.h: Assume <wchar.h>.
14499         * m4/wcwidth.m4: Likewise.
14500
14501 2007-01-16  Bruno Haible  <bruno@clisp.org>
14502
14503         * modules/csharpexec-script: New, created from...
14504         * modules/csharpexec: ... this.
14505
14506 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
14507
14508         * modules/javaexec-script: New, created from...
14509         * modules/javaexec: ... this.
14510
14511 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14512
14513         * modules/poll (Dependencies): Add sys_select.
14514
14515 2007-01-15  Jim Meyering  <jim@meyering.net>
14516
14517         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
14518         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
14519         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
14520         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
14521
14522 2007-01-15  Bruno Haible  <bruno@clisp.org>
14523
14524         * modules/striconveh: New file.
14525         * lib/striconveh.h: New file.
14526         * lib/striconveh.c: New file.
14527         * MODULES.html.sh (Internationalization functions): Add striconveh.
14528
14529         * modules/striconveh-tests: New file.
14530         * tests/test-striconveh.c: New file.
14531
14532 2007-01-15  Bruno Haible  <bruno@clisp.org>
14533
14534         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
14535         not from GNU libiconv or GNU libc.
14536
14537 2007-01-15  Bruno Haible  <bruno@clisp.org>
14538
14539         * doc/gnulib-intro.texi (Copyright): Explain the different license
14540         terms for module descriptions, autoconf macros, tests, documentation.
14541
14542 2007-01-14  Bruno Haible  <bruno@clisp.org>
14543
14544         * modules/striconv-tests: New file.
14545         * tests/test-striconv.c: New file.
14546
14547 2007-01-14  Bruno Haible  <bruno@clisp.org>
14548
14549         * modules/iconv-tests: New file.
14550         * tests/test-iconv.c: New file.
14551
14552 2007-01-14  Bruno Haible  <bruno@clisp.org>
14553
14554         * gnulib-tool (func_get_license): For test modules, use the license of
14555         the main module.
14556
14557 2007-01-14  Bruno Haible  <bruno@clisp.org>
14558
14559         * modules/iconv (Include): Clarify that <iconv.h> can only be included
14560         if iconv is found to exist.
14561
14562 2007-01-14  Bruno Haible  <bruno@clisp.org>
14563
14564         * modules/c-ctype-tests: New file.
14565         * tests/test-c-ctype.c: New file.
14566
14567 2007-01-14  Bruno Haible  <bruno@clisp.org>
14568
14569         * modules/binary-io-tests: New file.
14570         * tests/test-binary-io.sh: New file.
14571         * tests/test-binary-io.c: New file.
14572
14573 2007-01-14  Bruno Haible  <bruno@clisp.org>
14574
14575         * modules/array-oset-tests: New file.
14576         * tests/test-array_oset.c: New file.
14577
14578 2007-01-14  Bruno Haible  <bruno@clisp.org>
14579
14580         * modules/array-list-tests: New file.
14581         * tests/test-array_list.c: New file.
14582
14583 2007-01-14  Bruno Haible  <bruno@clisp.org>
14584
14585         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
14586         and make.
14587         Reported by Simon Josefsson in
14588         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
14589
14590 2007-01-14  Bruno Haible  <bruno@clisp.org>
14591
14592         * modules/allocsa-tests: New file.
14593         * tests/test-allocsa.c: New file.
14594
14595 2007-01-14  Bruno Haible  <bruno@clisp.org>
14596
14597         * modules/fchdir (Depends-on): Add absolute-header.
14598         * modules/unistd (Depends-on): Likewise.
14599
14600 2006-12-30  Bruno Haible  <bruno@clisp.org>
14601
14602         * modules/fchdir: New file.
14603         * modules/unistd (Files): Add lib/unistd_.h.
14604         (Makefile.am): Generate unistd.h from unistd_.h.
14605         * lib/fchdir.c: New file.
14606         * lib/dirent_.h: New file.
14607         * lib/unistd_.h: New file.
14608         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
14609         * m4/fchdir.m4: New file.
14610         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
14611         (gl_HEADER_UNISTD): Invoke it.
14612         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
14613         function.
14614         * lib/backupfile.c (opendir, closedir): Undefine.
14615         * lib/chown.c (open, close): Undefine.
14616         * lib/clean-temp.c (open, close): Undefine.
14617         * lib/copy-file.c (open, close): Undefine.
14618         * lib/execute.c (open, close): Undefine.
14619         * lib/fsusage.c (open, close): Undefine.
14620         * lib/gc-gnulib.c (open, close): Undefine.
14621         * lib/getcwd.c (opendir, closedir): Undefine.
14622         * lib/glob.c (opendir, closedir): Undefine.
14623         * lib/javacomp.c (open, close): Undefine.
14624         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
14625         * lib/openat-proc.c (open, close): Undefine.
14626         * lib/pagealign_alloc.c (open, close): Undefine.
14627         * lib/pipe.c (open, close): Undefine.
14628         * lib/progreloc.c (open, close): Undefine.
14629         * lib/savedir.c (opendir, closedir): Undefine.
14630         * lib/utime.c (open, close): Undefine.
14631         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
14632
14633 2007-01-10  Bruno Haible  <bruno@clisp.org>
14634
14635         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
14636
14637 2007-01-12  Eric Blake  <ebb9@byu.net>
14638
14639         Provide a robust <wchar.h>.  Further simplifications are now
14640         possible in other modules, but not included here.
14641         * modules/wchar: New module.
14642         * m4/wchar.m4: New file.
14643         * lib/wchar_.h: Likewise.
14644         * modules/mbchar (Depends-on): Depend on wchar, as the first use
14645         of the new module.
14646         * MODULES.html.sh (Extended multibyte and wide character utilities):
14647         New section.
14648
14649 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
14650
14651         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
14652         to a reasonable default for memory allocation.
14653         (xreadlink): Don't allocate a huge buffer, to work around a buggy
14654         file system that reports garbage st_size values for symlinks.
14655         Problem reported by Liyang Hu.
14656
14657 2007-01-11  Simon Josefsson  <simon@josefsson.org>
14658
14659         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
14660         Emacs .#* auto-save files).
14661
14662 2007-01-11  Bruno Haible  <bruno@clisp.org>
14663
14664         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
14665         directory.
14666
14667 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
14668
14669         Use @...@ consistently in lib/wctype_.h.
14670         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
14671         on it being set to 1 or 0.
14672         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
14673         go back to AC_SUBSTing it.
14674         * modules/wctype (Makefile.am): Undo previous change.
14675
14676 2007-01-10  Eric Blake  <ebb9@byu.net>
14677
14678         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
14679         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
14680         * modules/wctype (Makefile.am): Likewise.
14681         Reported by Chris McGuire.
14682
14683 2007-01-10  Jim Meyering  <jim@meyering.net>
14684
14685         fts.c: a small readability/maintainability improvement
14686         * lib/fts.c (fts_read): Make this code slightly more readable and
14687         maintainable by hoisting the "sp->fts_cur = p" assignments to
14688         immediately follow the statements that set P.  Derived from
14689         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
14690
14691 2007-01-10  Eric Blake  <ebb9@byu.net>
14692
14693         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
14694         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
14695         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
14696         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
14697         Reported by Chris McGuire.
14698
14699 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14700
14701         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
14702         in sed script.
14703
14704 2007-01-09  Bruno Haible  <bruno@clisp.org>
14705
14706         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
14707         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
14708         variables.
14709         (func_module): Use them.
14710
14711 2007-01-09  Bruno Haible  <bruno@clisp.org>
14712
14713         * modules/unistr/base: New file.
14714         * lib/unistr.h: New file.
14715
14716         * modules/unistr/u8-to-u16: New file.
14717         * lib/unistr/u8-to-u16.c: New file.
14718
14719         * modules/unistr/u8-to-u32: New file.
14720         * lib/unistr/u8-to-u32.c: New file.
14721
14722         * modules/unistr/u16-to-u8: New file.
14723         * lib/unistr/u16-to-u8.c: New file.
14724
14725         * modules/unistr/u16-to-u32: New file.
14726         * lib/unistr/u16-to-u32.c: New file.
14727
14728         * modules/unistr/u32-to-u8: New file.
14729         * lib/unistr/u32-to-u8.c: New file.
14730
14731         * modules/unistr/u32-to-u16: New file.
14732         * lib/unistr/u32-to-u16.c: New file.
14733
14734         * modules/unistr/u8-check: New file.
14735         * modules/unistr/u16-check: New file.
14736         * modules/unistr/u32-check: New file.
14737         * lib/unistr/u8-check.c: New file.
14738         * lib/unistr/u16-check.c: New file.
14739         * lib/unistr/u32-check.c: New file.
14740
14741         * modules/unistr/u8-chr: New file.
14742         * modules/unistr/u16-chr: New file.
14743         * modules/unistr/u32-chr: New file.
14744         * lib/unistr/u8-chr.c: New file.
14745         * lib/unistr/u16-chr.c: New file.
14746         * lib/unistr/u32-chr.c: New file.
14747
14748         * modules/unistr/u8-cmp: New file.
14749         * modules/unistr/u16-cmp: New file.
14750         * modules/unistr/u32-cmp: New file.
14751         * lib/unistr/u8-cmp.c: New file.
14752         * lib/unistr/u16-cmp.c: New file.
14753         * lib/unistr/u32-cmp.c: New file.
14754
14755         * modules/unistr/u8-cpy: New file.
14756         * modules/unistr/u16-cpy: New file.
14757         * modules/unistr/u32-cpy: New file.
14758         * lib/unistr/u8-cpy.c: New file.
14759         * lib/unistr/u16-cpy.c: New file.
14760         * lib/unistr/u32-cpy.c: New file.
14761         * lib/unistr/u-cpy.h: New file.
14762
14763         * modules/unistr/u8-cpy-alloc: New file.
14764         * modules/unistr/u16-cpy-alloc: New file.
14765         * modules/unistr/u32-cpy-alloc: New file.
14766         * lib/unistr/u8-cpy-alloc.c: New file.
14767         * lib/unistr/u16-cpy-alloc.c: New file.
14768         * lib/unistr/u32-cpy-alloc.c: New file.
14769         * lib/unistr/u-cpy-alloc.h: New file.
14770
14771         * modules/unistr/u8-endswith: New file.
14772         * modules/unistr/u16-endswith: New file.
14773         * modules/unistr/u32-endswith: New file.
14774         * lib/unistr/u8-endswith.c: New file.
14775         * lib/unistr/u16-endswith.c: New file.
14776         * lib/unistr/u32-endswith.c: New file.
14777         * lib/unistr/u-endswith.h: New file.
14778
14779         * modules/unistr/u8-mblen: New file.
14780         * modules/unistr/u16-mblen: New file.
14781         * modules/unistr/u32-mblen: New file.
14782         * lib/unistr/u8-mblen.c: New file.
14783         * lib/unistr/u16-mblen.c: New file.
14784         * lib/unistr/u32-mblen.c: New file.
14785
14786         * modules/unistr/u8-mbtouc: New file.
14787         * modules/unistr/u16-mbtouc: New file.
14788         * modules/unistr/u32-mbtouc: New file.
14789         * lib/unistr/u8-mbtouc.c: New file.
14790         * lib/unistr/u16-mbtouc.c: New file.
14791         * lib/unistr/u32-mbtouc.c: New file.
14792
14793         * modules/unistr/u8-mbtouc-safe: New file.
14794         * modules/unistr/u16-mbtouc-safe: New file.
14795         * modules/unistr/u32-mbtouc-safe: New file.
14796         * lib/unistr/u8-mbtouc-safe.c: New file.
14797         * lib/unistr/u16-mbtouc-safe.c: New file.
14798         * lib/unistr/u32-mbtouc-safe.c: New file.
14799
14800         * modules/unistr/u8-move: New file.
14801         * modules/unistr/u16-move: New file.
14802         * modules/unistr/u32-move: New file.
14803         * lib/unistr/u8-move.c: New file.
14804         * lib/unistr/u16-move.c: New file.
14805         * lib/unistr/u32-move.c: New file.
14806         * lib/unistr/u-move.h: New file.
14807
14808         * modules/unistr/u8-next: New file.
14809         * modules/unistr/u16-next: New file.
14810         * modules/unistr/u32-next: New file.
14811         * lib/unistr/u8-next.c: New file.
14812         * lib/unistr/u16-next.c: New file.
14813         * lib/unistr/u32-next.c: New file.
14814
14815         * modules/unistr/u8-prev: New file.
14816         * modules/unistr/u16-prev: New file.
14817         * modules/unistr/u32-prev: New file.
14818         * lib/unistr/u8-prev.c: New file.
14819         * lib/unistr/u16-prev.c: New file.
14820         * lib/unistr/u32-prev.c: New file.
14821
14822         * modules/unistr/u8-set: New file.
14823         * modules/unistr/u16-set: New file.
14824         * modules/unistr/u32-set: New file.
14825         * lib/unistr/u8-set.c: New file.
14826         * lib/unistr/u16-set.c: New file.
14827         * lib/unistr/u32-set.c: New file.
14828         * lib/unistr/u-set.h: New file.
14829
14830         * modules/unistr/u8-startswith: New file.
14831         * modules/unistr/u16-startswith: New file.
14832         * modules/unistr/u32-startswith: New file.
14833         * lib/unistr/u8-startswith.c: New file.
14834         * lib/unistr/u16-startswith.c: New file.
14835         * lib/unistr/u32-startswith.c: New file.
14836         * lib/unistr/u-startswith.h: New file.
14837
14838         * modules/unistr/u8-stpcpy: New file.
14839         * modules/unistr/u16-stpcpy: New file.
14840         * modules/unistr/u32-stpcpy: New file.
14841         * lib/unistr/u8-stpcpy.c: New file.
14842         * lib/unistr/u16-stpcpy.c: New file.
14843         * lib/unistr/u32-stpcpy.c: New file.
14844         * lib/unistr/u-stpcpy.h: New file.
14845
14846         * modules/unistr/u8-stpncpy: New file.
14847         * modules/unistr/u16-stpncpy: New file.
14848         * modules/unistr/u32-stpncpy: New file.
14849         * lib/unistr/u8-stpncpy.c: New file.
14850         * lib/unistr/u16-stpncpy.c: New file.
14851         * lib/unistr/u32-stpncpy.c: New file.
14852         * lib/unistr/u-stpncpy.h: New file.
14853
14854         * modules/unistr/u8-strcat: New file.
14855         * modules/unistr/u16-strcat: New file.
14856         * modules/unistr/u32-strcat: New file.
14857         * lib/unistr/u8-strcat.c: New file.
14858         * lib/unistr/u16-strcat.c: New file.
14859         * lib/unistr/u32-strcat.c: New file.
14860         * lib/unistr/u-strcat.h: New file.
14861
14862         * modules/unistr/u8-strchr: New file.
14863         * modules/unistr/u16-strchr: New file.
14864         * modules/unistr/u32-strchr: New file.
14865         * lib/unistr/u8-strchr.c: New file.
14866         * lib/unistr/u16-strchr.c: New file.
14867         * lib/unistr/u32-strchr.c: New file.
14868
14869         * modules/unistr/u8-strcmp: New file.
14870         * modules/unistr/u16-strcmp: New file.
14871         * modules/unistr/u32-strcmp: New file.
14872         * lib/unistr/u8-strcmp.c: New file.
14873         * lib/unistr/u16-strcmp.c: New file.
14874         * lib/unistr/u32-strcmp.c: New file.
14875
14876         * modules/unistr/u8-strcpy: New file.
14877         * modules/unistr/u16-strcpy: New file.
14878         * modules/unistr/u32-strcpy: New file.
14879         * lib/unistr/u8-strcpy.c: New file.
14880         * lib/unistr/u16-strcpy.c: New file.
14881         * lib/unistr/u32-strcpy.c: New file.
14882         * lib/unistr/u-strcpy.h: New file.
14883
14884         * modules/unistr/u8-strcspn: New file.
14885         * modules/unistr/u16-strcspn: New file.
14886         * modules/unistr/u32-strcspn: New file.
14887         * lib/unistr/u8-strcspn.c: New file.
14888         * lib/unistr/u16-strcspn.c: New file.
14889         * lib/unistr/u32-strcspn.c: New file.
14890         * lib/unistr/u-strcspn.h: New file.
14891
14892         * modules/unistr/u8-strdup: New file.
14893         * modules/unistr/u16-strdup: New file.
14894         * modules/unistr/u32-strdup: New file.
14895         * lib/unistr/u8-strdup.c: New file.
14896         * lib/unistr/u16-strdup.c: New file.
14897         * lib/unistr/u32-strdup.c: New file.
14898         * lib/unistr/u-strdup.h: New file.
14899
14900         * modules/unistr/u8-strlen: New file.
14901         * modules/unistr/u16-strlen: New file.
14902         * modules/unistr/u32-strlen: New file.
14903         * lib/unistr/u8-strlen.c: New file.
14904         * lib/unistr/u16-strlen.c: New file.
14905         * lib/unistr/u32-strlen.c: New file.
14906         * lib/unistr/u-strlen.h: New file.
14907
14908         * modules/unistr/u8-strmblen: New file.
14909         * modules/unistr/u16-strmblen: New file.
14910         * modules/unistr/u32-strmblen: New file.
14911         * lib/unistr/u8-strmblen.c: New file.
14912         * lib/unistr/u16-strmblen.c: New file.
14913         * lib/unistr/u32-strmblen.c: New file.
14914
14915         * modules/unistr/u8-strmbtouc: New file.
14916         * modules/unistr/u16-strmbtouc: New file.
14917         * modules/unistr/u32-strmbtouc: New file.
14918         * lib/unistr/u8-strmbtouc.c: New file.
14919         * lib/unistr/u16-strmbtouc.c: New file.
14920         * lib/unistr/u32-strmbtouc.c: New file.
14921
14922         * modules/unistr/u8-strncat: New file.
14923         * modules/unistr/u16-strncat: New file.
14924         * modules/unistr/u32-strncat: New file.
14925         * lib/unistr/u8-strncat.c: New file.
14926         * lib/unistr/u16-strncat.c: New file.
14927         * lib/unistr/u32-strncat.c: New file.
14928         * lib/unistr/u-strncat.h: New file.
14929
14930         * modules/unistr/u8-strncmp: New file.
14931         * modules/unistr/u16-strncmp: New file.
14932         * modules/unistr/u32-strncmp: New file.
14933         * lib/unistr/u8-strncmp.c: New file.
14934         * lib/unistr/u16-strncmp.c: New file.
14935         * lib/unistr/u32-strncmp.c: New file.
14936
14937         * modules/unistr/u8-strncpy: New file.
14938         * modules/unistr/u16-strncpy: New file.
14939         * modules/unistr/u32-strncpy: New file.
14940         * lib/unistr/u8-strncpy.c: New file.
14941         * lib/unistr/u16-strncpy.c: New file.
14942         * lib/unistr/u32-strncpy.c: New file.
14943         * lib/unistr/u-strncpy.h: New file.
14944
14945         * modules/unistr/u8-strnlen: New file.
14946         * modules/unistr/u16-strnlen: New file.
14947         * modules/unistr/u32-strnlen: New file.
14948         * lib/unistr/u8-strnlen.c: New file.
14949         * lib/unistr/u16-strnlen.c: New file.
14950         * lib/unistr/u32-strnlen.c: New file.
14951         * lib/unistr/u-strnlen.h: New file.
14952
14953         * modules/unistr/u8-strpbrk: New file.
14954         * modules/unistr/u16-strpbrk: New file.
14955         * modules/unistr/u32-strpbrk: New file.
14956         * lib/unistr/u8-strpbrk.c: New file.
14957         * lib/unistr/u16-strpbrk.c: New file.
14958         * lib/unistr/u32-strpbrk.c: New file.
14959         * lib/unistr/u-strpbrk.h: New file.
14960
14961         * modules/unistr/u8-strrchr: New file.
14962         * modules/unistr/u16-strrchr: New file.
14963         * modules/unistr/u32-strrchr: New file.
14964         * lib/unistr/u8-strrchr.c: New file.
14965         * lib/unistr/u16-strrchr.c: New file.
14966         * lib/unistr/u32-strrchr.c: New file.
14967
14968         * modules/unistr/u8-strspn: New file.
14969         * modules/unistr/u16-strspn: New file.
14970         * modules/unistr/u32-strspn: New file.
14971         * lib/unistr/u8-strspn.c: New file.
14972         * lib/unistr/u16-strspn.c: New file.
14973         * lib/unistr/u32-strspn.c: New file.
14974         * lib/unistr/u-strspn.h: New file.
14975
14976         * modules/unistr/u8-strstr: New file.
14977         * modules/unistr/u16-strstr: New file.
14978         * modules/unistr/u32-strstr: New file.
14979         * lib/unistr/u8-strstr.c: New file.
14980         * lib/unistr/u16-strstr.c: New file.
14981         * lib/unistr/u32-strstr.c: New file.
14982         * lib/unistr/u-strstr.h: New file.
14983
14984         * modules/unistr/u8-strtok: New file.
14985         * modules/unistr/u16-strtok: New file.
14986         * modules/unistr/u32-strtok: New file.
14987         * lib/unistr/u8-strtok.c: New file.
14988         * lib/unistr/u16-strtok.c: New file.
14989         * lib/unistr/u32-strtok.c: New file.
14990         * lib/unistr/u-strtok.h: New file.
14991
14992         * modules/unistr/u8-uctomb: New file.
14993         * modules/unistr/u16-uctomb: New file.
14994         * modules/unistr/u32-uctomb: New file.
14995         * lib/unistr/u8-uctomb.c: New file.
14996         * lib/unistr/u16-uctomb.c: New file.
14997         * lib/unistr/u32-uctomb.c: New file.
14998
14999         * MODULES.html.sh (Unicode string functions): Add the new modules.
15000
15001 2007-01-08  Bruno Haible  <bruno@clisp.org>
15002
15003         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
15004         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
15005         subdirectories.
15006
15007 2007-01-08  Karl Berry  <karl@gnu.org>
15008
15009         * doc/error.texi: mention that main() fns must set program_name
15010         when progname is used.
15011
15012 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
15013
15014         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
15015         WCTYPE_H is empty, for the benefit of builds from non-distclean
15016         directories.  Problem reported by Eric Blake in
15017         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
15018
15019 2007-01-08  Bruno Haible  <bruno@clisp.org>
15020
15021         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
15022         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
15023         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
15024         PROVIDE_CANONICALIZE_FILENAME_MODE.
15025         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
15026
15027 2007-01-08  Bruno Haible  <bruno@clisp.org>
15028
15029         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
15030         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
15031         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
15032         * lib/fts.c: Likewise.
15033         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
15034
15035 2006-12-25  Bruno Haible  <bruno@clisp.org>
15036
15037         * modules/utf8-ucs4-safe: New file.
15038         * lib/utf8-ucs4-safe.h: New file.
15039         * lib/unistr/utf8-ucs4-safe.c: New file.
15040
15041         * modules/utf16-ucs4-safe: New file.
15042         * lib/utf16-ucs4-safe.h: New file.
15043         * lib/unistr/utf16-ucs4-safe.c: New file.
15044
15045         * MODULES.html.sh (Unicode string functions): Add the new modules.
15046
15047 2007-01-08  Bruno Haible  <bruno@clisp.org>
15048
15049         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
15050         (Depends-on): Add unitypes.
15051         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
15052         (u8_mbtouc_aux): Move out to separate file.
15053         (u8_mbtouc): Use ucs4_t, uint8_t types.
15054         * lib/unistr/utf8-ucs4.c: New file.
15055
15056         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
15057         (Depends-on): Add unitypes.
15058         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
15059         (u16_mbtouc_aux): Move out to separate file.
15060         (u16_mbtouc): Use ucs4_t, uint16_t types.
15061         * lib/unistr/utf16-ucs4.c: New file.
15062
15063         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
15064         (Depends-on): Add unitypes.
15065         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
15066         (u8_uctomb_aux): Move out to separate file.
15067         (u8_uctomb): Use ucs4_t, uint8_t types.
15068         * lib/unistr/ucs4-utf8.c: New file.
15069
15070         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
15071         (Depends-on): Add unitypes.
15072         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
15073         (u16_uctomb_aux): Move out to separate file.
15074         (u16_uctomb): Use ucs4_t, uint16_t types.
15075         * lib/unistr/ucs4-utf16.c: New file.
15076
15077 2006-12-25  Bruno Haible  <bruno@clisp.org>
15078
15079         * modules/unitypes: New file.
15080         * lib/unitypes.h: New file.
15081         * MODULES.html.sh (func_all_modules): New section "Unicode string
15082         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
15083         this section. Add unitypes.
15084
15085 2007-01-08  Bruno Haible  <bruno@clisp.org>
15086
15087         Avoid variable names that conflict with those from libtool.
15088         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
15089         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
15090         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
15091         library_names_spec to acl_library_names_spec, hardcode_* to
15092         acl_hardcode_*.
15093         Reported by Ralf Wildenhues.
15094
15095 2007-01-08  Bruno Haible  <bruno@clisp.org>
15096
15097         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
15098         definition.
15099         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
15100         definition.
15101         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
15102         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
15103         definition.
15104         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
15105         definition.
15106         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
15107         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
15108         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
15109         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
15110         definition.
15111         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
15112         definition.
15113         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
15114         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
15115         GC_USE_<algorithm>.
15116         * lib/gc-libgcrypt.c: Likewise.
15117         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
15118         * modules/gc-arctwo (configure.ac): Likewise.
15119         * modules/gc-des (configure.ac): Likewise.
15120         * modules/gc-hmac-md5 (configure.ac): Likewise.
15121         * modules/gc-hmac-sha1 (configure.ac): Likewise.
15122         * modules/gc-md2 (configure.ac): Likewise.
15123         * modules/gc-md4 (configure.ac): Likewise.
15124         * modules/gc-md5 (configure.ac): Likewise.
15125         * modules/gc-random (configure.ac): Likewise.
15126         * modules/gc-rijndael (configure.ac): Likewise.
15127         * modules/gc-sha1 (configure.ac): Likewise.
15128
15129 2007-01-08  Bruno Haible  <bruno@clisp.org>
15130
15131         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
15132         macro definition.
15133         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
15134         definition.
15135         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
15136         definition.
15137         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
15138         * modules/fcntl-safer (configure.ac): Likewise.
15139         * modules/fopen-safer (configure.ac): Likewise.
15140         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
15141         GNULIB_FWRITEERROR macro definition.
15142
15143 2007-01-08  Bruno Haible  <bruno@clisp.org>
15144
15145         * m4/gnulib-common.m4: New file.
15146         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
15147         (func_get_filelist): Add m4/gnulib-common.m4.
15148
15149 2007-01-08  Bruno Haible  <bruno@clisp.org>
15150
15151         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
15152         command.
15153
15154 2007-01-08  Jim Meyering  <jim@meyering.net>
15155
15156         Use a more robust test for a "can't happen" condition.
15157         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
15158         narrowed the st_size value.  Presuming the "can't happen" condition
15159         is true, that narrowing could conceivably convert an invalid st_size
15160         value into a valid one.  Instead, use a change based on Matthew
15161         Woehlke's original patch.
15162
15163         Slight readability improvement: use an assert-like macro
15164         in place of literal "abort ()" uses.
15165         * lib/fts.c (fts_assert): Define.
15166         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
15167         Use this macro instead of a bare 'abort'.
15168
15169 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
15170
15171         Don't worry about using IRIX 5.3's wctype.h broken definitions;
15172         simply work around them.
15173         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
15174         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
15175         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
15176         declaring.
15177         Don't bother to define as macros, since the standard doesn't require it.
15178         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
15179         longer worry about IRIX 5.3.
15180         (HAVE_WCTYPE_CTMP_BUG): Remove.
15181
15182 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
15183
15184         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
15185         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
15186         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
15187         Problems reported by Georg Schwarz for IRIX 5.3.
15188
15189         * gnulib-tool (autoconf_minversion): Take the maximum version number
15190         found, not the minimum.  Problem reported by James Youngman.
15191
15192 2007-01-03  Karl Berry  <karl@gnu.org>
15193
15194         * doc/error.texi: new file, explaining interaction with progname.
15195         * doc/gnulib.texi: include it.  Update copyright.
15196
15197 2007-01-03  Simon Josefsson  <simon@josefsson.org>
15198
15199         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
15200         AC_CANONICAL_HOST, to improve autobuild outputs.
15201
15202 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
15203             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
15204
15205         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
15206         sockets, server sockets, and other file descriptors.  Count errors
15207         to compute the return value.  Reorder the code a bit to be easier
15208         to follow.  Don't set event bits that were not requested (except
15209         POLLERR and POLLHUP).
15210
15211 2007-01-01  Bruno Haible  <bruno@clisp.org>
15212
15213         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
15214
15215 2007-01-03  Jim Meyering  <jim@meyering.net>
15216
15217         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
15218
15219 2007-01-02  Bruno Haible  <bruno@clisp.org>
15220
15221         * modules/settime (Include): Require timespec.h.
15222         * modules/nanosleep (Include): Likewise.
15223
15224 2007-01-01  Bruno Haible  <bruno@clisp.org>
15225
15226         * gnulib-tool (func_emit_copyright_notice): Bump year.
15227         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
15228
15229 2007-01-01  Bruno Haible  <bruno@clisp.org>
15230
15231         Improve support for OpenBSD.
15232         * build-aux/config.rpath (libname_spec): Export.
15233         (library_names_spec): New variable. Export.
15234         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
15235         library_names_spec from the config.rpath output. Locate shared library
15236         through the name pattern in library_names_spec.
15237
15238 2007-01-01  Eric Blake  <ebb9@byu.net>
15239
15240         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
15241
15242 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
15243
15244         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
15245         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
15246         assume the C locale, and avoid an "eval" that could cause trouble.
15247         Problem with SORT reported by Bob Proulx.
15248
15249         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
15250         Define.  Trivial patch from Henning Nielsen Lund, originally
15251         sent to bug-grep@gnu.org today.
15252
15253 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
15254
15255         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
15256         struct stat.  Problem reported by Henning Nielsen Lund.
15257         * lib/acl.c: Include acl.h first, to check interface.  Don't
15258         bother to include sys/types.h and sys/stat.h again.
15259
15260 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
15261
15262         Import the following change from libc; problem reported by
15263         Sven Verdoolaege.
15264
15265         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
15266
15267         [BZ #1373]
15268         * lib/argp.h: Remove __NTH for __argp_usage inline function.
15269
15270 2006-12-28  Jim Meyering  <jim@meyering.net>
15271
15272         * build-aux/announce-gen: Do not assume that the package
15273         builds any of tar.gz, tar.bz2, and .xdelta files.
15274         Suggestion from Simon Josefsson.
15275
15276 2006-12-28  Simon Josefsson  <simon@josefsson.org>
15277
15278         * modules/announce-gen: New file.
15279
15280 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
15281
15282         * lib/mbchar.h: Just include <wctype.h>; the wctype module
15283         handles its gotchas now.
15284         * lib/mbswidth.c: Likewise.
15285         * lib/wcwidth.h: Likewise.
15286         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
15287         and iswcntrl; the wctype module does this stuff now.
15288         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
15289         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
15290         * modules/mbchar (Depends-on): Add wctype.
15291         * modules/mbswidth (Depends-on): Likewise.
15292         * modules/wcwidth (Depends-on): Likewise.
15293
15294 2006-12-27  Eric Blake  <ebb9@byu.net>
15295
15296         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
15297         module uses more than what <wctype.h> is required to provide.
15298
15299 2006-12-26  Eric Blake  <ebb9@byu.net>
15300
15301         * gnulib-tool (sed_extract_prog): Avoid space-tab.
15302
15303 2006-12-26  Eric Blake  <ebb9@byu.net>
15304
15305         * modules/absolute-header: New module.
15306         * modules/fcntl (Depends-on): Depend on it.
15307         * modules/inttypes (Depends-on): Likewise.
15308         * modules/stdint (Depends-on): Likewise.
15309         * modules/sys_stat (Depends-on): Likewise.
15310         * modules/wctype (Depends-on): Likewise.
15311         * MODULES.html.sh (Support for building libraries and
15312         executables): Document it.
15313
15314 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
15315
15316         * gnulib-tool (SED): Remove, undoing previous change.
15317         The problem was that it broke coreutils on Solaris, because
15318         "sed --posix" leaked into a makefile.
15319         (sed): New alias, if 'alias' and GNU sed.
15320
15321 2006-12-24  Jim Meyering  <jim@meyering.net>
15322
15323         Work around an fchownat bug in glibc-2.4:
15324         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
15325         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
15326         in spite of the -P option.
15327         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
15328         New macros.
15329         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
15330         * modules/openat (Files): Add lib/fchownat.c.
15331         * lib/openat.c (fchownat): Don't define here.  Move to...
15332         * lib/fchownat.c: ...this new file.
15333
15334 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
15335
15336         Fix bug reported by Bruno Haible in
15337         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
15338         where quotearg.c didn't compile on Mac OS X 10.2 because it
15339         lacks <wchar.h> and wint_t.
15340         * lib/wctype_.h (__wctype_wint_t): New type.
15341         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
15342         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
15343         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
15344         Arg is now of type __wctype_wint_t, not wint_t.
15345         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
15346         substitute HAVE_WINT_T.
15347         * modules/wctype (Files): Add m4/wint_t.m4.
15348         (wctype.h): Substitute HAVE_WINT_T.
15349
15350 2006-12-23  Bruno Haible  <bruno@clisp.org>
15351
15352         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
15353
15354 2006-12-23  Bruno Haible  <bruno@clisp.org>
15355
15356         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
15357         S_ISLNK.
15358         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
15359         mingw.
15360
15361 2006-12-22  Bruno Haible  <bruno@clisp.org>
15362
15363         * lib/copy-file.c: Include acl.h.
15364         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
15365         Close the file descriptors only after being done with copy_acl.
15366         * modules/copy-file (Depends-on): Add acl.
15367
15368 2006-12-22  Bruno Haible  <bruno@clisp.org>
15369
15370         * gnulib-tool (SED): New variable.
15371         Use $SED instead of sed everywhere.
15372
15373 2006-12-22  Bruno Haible  <bruno@clisp.org>
15374
15375         * modules/no-c++: New file.
15376         * m4/no-c++.m4: New file.
15377         * MODULES.html.sh (Support for building libraries and executables):
15378         Add no-c++.
15379
15380 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
15381
15382         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
15383         Include <limits.h>, and use its INT_MAX to rewrite the
15384         j loop so that it does not overflow 'int'.  Problem reported by
15385         Ralf Wildenhues in
15386         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
15387         Play it safe by shifting left by 1 rather than multiplying by 2,
15388         as GCC is less likely to optimize this away when the value
15389         is signed (when it assumes overflow leads to undefined behavior).
15390         Also, don't assume time_t uses two's complement.
15391
15392 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
15393
15394         * MODULES.html.sh: New module wctype.
15395         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
15396         * lib/fnmatch.c: Don't bother to include <wchar.h> before
15397         <wctype.h>, since the new wctype module should fix this.
15398         * lib/quotearg.c: Include <wctype.h> unconditionally, since
15399         the wctype module should arrange for it.
15400         * lib/regex_internal.h: Likewise.
15401         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
15402         since the wctype module should handle this now.
15403         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
15404         * modules/fnmatch (Depends-on): Add wctype.
15405         * modules/quotearg (Depends-on): Likewise.
15406         * modules/regex (Depends-on): Likewise.
15407
15408 2006-12-19  Bruno Haible  <bruno@clisp.org>
15409
15410         * lib/strdup.h [C++]: Wrap definitions in extern "C".
15411         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
15412
15413 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15414
15415         * modules/savewd (Depends-on): Fix dependency on fcntl.
15416
15417 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
15418
15419         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
15420         conforms to C99, rather than relying on the user's environment
15421         setting of STDINT_H.
15422
15423 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
15424         and Eric Blake  <ebb9@byu.net>
15425
15426         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
15427         This is more consistent with the other defines here.
15428         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
15429         Port to z/OS.  Problem reported by Paul Gilmartin.
15430         Change local vars to use gl_ prefix rather than ac_.
15431         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
15432         with other defines.
15433         * modules/double-slash-root: New module.
15434         * modules/dirname (Files): Remove m4/double-slash-root.m4.
15435         (Depends-on): Add double-slash-root.
15436         * MODULES.html.sh (File system functions): Mention new module.
15437
15438 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
15439
15440         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
15441         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
15442         This is for the benefit of gzip, which doesn't do i18n.
15443
15444 2006-12-12  Jim Meyering  <jim@meyering.net>
15445
15446         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
15447         Reported by Andreas Schwab <schwab@suse.de>.
15448
15449 2006-12-12  Bruno Haible  <bruno@clisp.org>
15450
15451         Merge these changes.
15452         2006-09-05  Bruno Haible  <bruno@clisp.org>
15453         * lib/iconvme.c (iconv_string): No need to save and restore errno when
15454         iconv_alloc succeeded.
15455         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
15456         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
15457         test for " && dest " at the end - dest is always != NULL there. Call
15458         iconv with 4xNULL arguments initially, to reset the state. Call iconv
15459         with 2xNULL arguments, also to flush the state storage. Handle the
15460         IRIX iconv behaviour. Realloc the final result, to throw away unused
15461         memory.
15462
15463 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
15464
15465         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
15466         and fchmodat unconditionally, since glibc 2.4 has them.
15467         Problem reported by Arkadiusz Miskiewicz.
15468
15469 2006-12-10  Bruno Haible  <bruno@clisp.org>
15470
15471         * gnulib-tool (func_import): Show the include files only for those
15472         modules that are copied and specified.
15473         Reported by Karl Berry.
15474
15475 2006-12-08  Jim Meyering  <jim@meyering.net>
15476
15477         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
15478         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
15479
15480         * build-aux/announce-gen: Add two new options, both optional:
15481         --bootstrap-tools=TOOL_LIST
15482               a comma-separated list of tools, e.g.,
15483               autoconf,automake,bison,gnulib
15484         --gnulib-snapshot-date=DATE
15485               if gnulib is in the bootstrap tool list,
15486               then report this as the snapshot date.
15487               If not specified, use the current date/time.
15488               If you specify a date here, be sure it's UTC.
15489
15490 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15491
15492         * tests/test-argp-2.sh: Fix test to match actual output.
15493         (func_compare): Fix sed script to be portable.
15494
15495 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
15496
15497         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
15498         workaround for this case.  It is not autoconfigured now; offhand
15499         it's hard to see how to autoconfigure it.
15500
15501 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
15502
15503         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
15504         a directory that is about to be chowned.  Such a directory's
15505         initial file permissions should permit the owner only and this
15506         should not be changed until after the chown, since the group and
15507         other bits would be incorrect if they granted permission before
15508         the chown.
15509
15510         Fix porting problem for iswctype reported by Georg Schwarz in:
15511         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
15512         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
15513         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
15514         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
15515         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
15516
15517 2006-12-03  Jim Meyering  <jim@meyering.net>
15518
15519         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
15520         p->fts_statp may not yet be defined.
15521         (fts_read): Instead, set it in the caller, once p->fts_statp is
15522         sure to be defined, and corresponds to a top-level directory.
15523         This bug made du -x fail.  Here's the coreutils test case:
15524         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
15525         Reported by Mike Frysinger.
15526
15527 2006-12-01  Jim Meyering  <jim@meyering.net>
15528
15529         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
15530         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
15531         Reported by Simon Josefsson.
15532
15533 2006-11-30  Jim Meyering  <jim@meyering.net>
15534
15535         * m4/warning.m4: Use the all-permissive copyright notice
15536         recommended by RMS (rather than LGPL).
15537         * m4/vararrays.m4: Likewise.
15538         * m4/flexmember.m4: Likewise.
15539
15540 2006-11-29  Bruno Haible  <bruno@clisp.org>
15541
15542         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
15543         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
15544         using +=.
15545         Reported by Simon Josefsson <simon@josefsson.org>.
15546
15547 2006-11-28  James Youngman <jay@gnu.org>
15548
15549         * README: Advise users that they might find the bug-gnulib@gnu.org
15550         and autotools-announce@gnu.org mailing lists useful.
15551
15552 2006-11-28  Bruno Haible  <bruno@clisp.org>
15553
15554         * m4/ptrdiff_max.m4: Remove file.
15555
15556 2006-11-21  Bruno Haible  <bruno@clisp.org>
15557
15558         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
15559         _AC_COMPUTE_INT.
15560         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
15561         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
15562         _AC_COMPUTE_INT.
15563         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
15564         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
15565         _AC_COMPUTE_INT.
15566         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
15567
15568 2006-11-28  Jim Meyering  <jim@meyering.net>
15569
15570         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
15571         warning from "gcc -Wshadow" about shadowing the builtin.
15572
15573 2006-11-27  Bruno Haible  <bruno@clisp.org>
15574
15575         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
15576         _AC_COMPUTE_INT.
15577         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
15578
15579 2006-11-27  Bruno Haible  <bruno@clisp.org>
15580             Paul Eggert  <eggert@cs.ucla.edu>
15581
15582         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
15583
15584 2006-11-26  Bruno Haible  <bruno@clisp.org>
15585
15586         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
15587         noinst_LTLIBRARIES.
15588
15589 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
15590             Bruno Haible  <bruno@clisp.org>
15591
15592         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
15593         if compiling with "gcc -ansi".
15594
15595 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15596
15597         Fix some incompatibilities with gcc -ansi -pedantic.
15598         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
15599         if compiling pedantically with GCC, unless it's C99 or later.
15600         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
15601         it mishandles gcc -ansi -pedantic as well.
15602         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
15603         if gcc -pedantic.
15604         * lib/regexec.c (check_node_accept_bytes): Don't use auto
15605         initializers for struct if -pedantic, unless it's C99 or later.
15606
15607 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
15608
15609         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
15610         Don't close an fd more than once. Identical atimes indicate
15611         success, not failure.
15612
15613 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
15614
15615         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
15616
15617 2006-11-23  Jim Meyering  <jim@meyering.net>
15618
15619         * build-aux/announce-gen: New file.  From coreutils.
15620
15621 2006-11-22  Jim Meyering  <jim@meyering.net>
15622
15623         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
15624         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
15625         (fts_read): Use a temporary to narrow the overused st_size member
15626         before using it in a switch statement.  Reported by Matthew Woehlke.
15627
15628         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
15629         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
15630
15631 2006-11-20  Bruno Haible  <bruno@clisp.org>
15632
15633         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
15634         changequote instead of pairs of brackets.
15635         Reported by Andreas Schwab <schwab@suse.de>.
15636
15637 2006-11-21  Jim Meyering  <jim@meyering.net>
15638
15639         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
15640         so as to remain compatible with older compilers.
15641         Patch from Michael Deutschmann.
15642
15643 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15644
15645         * MODULES.html.sh (File system functions): Add openat.
15646
15647         * lib/openat.h (rpl_fstatat): New macro, if
15648         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
15649         (fstatat): Define to rpl_fstatat under the same conditions,
15650         unless COMPILING_FSTATAT.
15651         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
15652         seems to have the bug.
15653         * lib/fstatat.c: New file.
15654         * modules/openat (Files): Add it.
15655
15656 2006-11-20  Bruno Haible  <bruno@clisp.org>
15657
15658         * Makefile: New file.
15659
15660 2006-11-20  Jim Meyering  <jim@meyering.net>
15661
15662         The beginnings of syntax-related checks for gnulib.
15663         * lib/Makefile: New file.
15664         * lib/t-idcache: New script.  Ensure that the two halves of
15665         idcache.c stay in sync.
15666
15667         * lib/idcache.c: Adjust comments in user- and group- portions to
15668         be more accurate, and to be consistent with one another.
15669
15670 2006-11-20  Jim Meyering  <jim@meyering.net>
15671
15672         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
15673         continue using the flexible array member (thus, this module performs
15674         half as many malloc calls), with the addition that...
15675         (getgroup, getuser): Consistently record a non-match via an empty
15676         "name" string, and map an empty string match to a NULL return value.
15677         * modules/idcache (Depends-on): Re-add flexmember.
15678
15679         * lib/idcache.c (getuser): Remove all uses of the register keyword.
15680         (getuidbyname, getgroup, getgidbyname): Likewise.
15681
15682         Use cleaner syntax: NULL rather than 0.
15683         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
15684
15685 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15686
15687         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
15688         It mishandled the case where the group was missing.
15689         Problem reported by Greg Schafer.
15690         * modules/idcache: Likewise.
15691
15692 2006-11-18  Jim Meyering  <jim@meyering.net>
15693
15694         * check-module (%exempt_header): Add exception for some
15695         conditionally-included headers.
15696
15697         * modules/i-ring (Depends-on): Add verify.
15698         (License): Change to LGPL.
15699
15700 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
15701
15702         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
15703         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
15704         and inttostr.h.  Use snprintf rather than uinttostr, so that
15705         LGPLed code doesn't depend on GPLed.
15706
15707 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
15708
15709         * modules/inline (License): Change from GPL to LGPL.
15710
15711 2006-11-17  Jim Meyering  <jim@meyering.net>
15712
15713         * modules/d-type (License): Switch to LGPL.
15714
15715 2006-11-15  Bruno Haible  <bruno@clisp.org>
15716
15717         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
15718
15719 2006-11-15  Eric Blake  <ebb9@byu.net>
15720
15721         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
15722         the module dependency.
15723
15724 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15725             Bruno Haible  <bruno@clisp.org>
15726
15727         * gnulib-tool (func_create_testdir): Add license consistency check.
15728
15729 2006-11-15  Eric Blake  <ebb9@byu.net>
15730
15731         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
15732         random "(cached)" in configure output.
15733
15734 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15735
15736         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
15737         test for conforming inttypes.h is both announced and cached.
15738
15739         * MODULES.html.sh (seen_modules, seen_files): New variables.
15740         (func_module): Rewrite to use a few less gnulib-tool and sed
15741         invocations.  Avoid a couple of quadratic algorithms for ...
15742         (missed_modules, missed_files): ... these, with ...
15743         (func_append, func_tmpdir): ... these new functions, from
15744         gnulib-tool.  Analogously, install traps for cleanup.
15745
15746         * tests/test-gc.c (main): Remove unused variables.
15747         * tests/test-read-file.c: Include stdlib.h, for 'free'.
15748
15749 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
15750
15751         * modules/inttostr (License): Change to LGPL.
15752
15753 2006-11-14  Eric Blake  <ebb9@byu.net>
15754
15755         * modules/tempname (License): Change to LGPL.
15756
15757 2006-11-14  Eric Blake  <ebb9@byu.net>
15758
15759         * doc/functions.texi (Function Portability): *printf functions on
15760         Cygwin now understand all POSIX size specifiers.
15761
15762 2006-11-14  Bruno Haible  <bruno@clisp.org>
15763
15764         * modules/c-ctype (License): Change to LGPL.
15765
15766 2006-11-12  Bruno Haible  <bruno@clisp.org>
15767
15768         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
15769         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
15770         for GNOME libraries, for which the include files are installed in
15771         subdirectories of $prefix/include.
15772
15773 2006-11-12  Bruno Haible  <bruno@clisp.org>
15774
15775         * m4/lib-link.m4: Require at least autoconf-2.54.
15776         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
15777         name to underscores for the --with option.
15778
15779 2006-11-13  Bruno Haible  <bruno@clisp.org>
15780
15781         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
15782         the tests directory.
15783         Reported by Ralf Wildenhues.
15784
15785 2006-11-13  Bruno Haible  <bruno@clisp.org>
15786
15787         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
15788         (func_emit_initmacro_end): Undo the override here.
15789         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
15790         Works around the famous automake error in coreutils.
15791
15792 2006-11-13  Eric Blake  <ebb9@byu.net>
15793
15794         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
15795         element, not its node.
15796
15797 2006-11-12  Bruno Haible  <bruno@clisp.org>
15798
15799         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
15800         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
15801
15802 2006-11-12  Bruno Haible  <bruno@clisp.org>
15803
15804         * gnulib-tool: New option --local-symlink.
15805         (func_usage): Document it.
15806         (lsymbolic): New variable.
15807         (func_import, func_create_testdir): If --symlink was not specified,
15808         test whether --local-symlink was specified and the file comes from
15809         the local_gnulib_dir.
15810
15811 2006-11-12  Bruno Haible  <bruno@clisp.org>
15812
15813         * gnulib-tool (func_ln): New function.
15814         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
15815
15816 2006-11-12  Bruno Haible  <bruno@clisp.org>
15817
15818         Finish support for source files in subdirectories.
15819         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
15820         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
15821         AUTOMAKE_OPTIONS.
15822         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
15823
15824 2006-11-12  Bruno Haible  <bruno@clisp.org>
15825
15826         * gnulib-tool (func_get_automake_snippet): Synthesize also an
15827         EXTRA_lib_SOURCES augmentation.
15828         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
15829
15830 2006-11-12  Jim Meyering  <jim@meyering.net>
15831
15832         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
15833         file descriptors.  This also averts a failure on systems with
15834         native openat support when a traversed directory lacks "x" access.
15835         * lib/fts_.h: Include "i-ring.h"
15836         (struct FTS) [fts_fd_ring]: New member.
15837         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
15838         (FCHDIR): Add parentheses.
15839         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
15840         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
15841         When descending, rather than simply closing the previous
15842         fts_cwd_fd value, push that file descriptor onto the ring.
15843         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
15844         (fts_open): Initialize the new fd_ring member.
15845         (fts_close): Clear the ring.
15846         (fts_safe_changedir): When possible, use our new fd_ring to skip
15847         the diropen and fstat and dev/ino comparison that would normally
15848         accompany a virtual `chdir ("..")'.
15849
15850         * modules/fts (Depends-on): Add i-ring.
15851         * modules/i-ring: New module.
15852         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
15853         * m4/i-ring.m4: New file.
15854
15855 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15856
15857         * gnulib-tool (func_create_testdir): Fix replacement of
15858         `build-aux' in configure.ac.  Run autotools in gltests
15859         subdirectory.
15860         (func_create_testdir, func_create_megatestdir, test): There is
15861         no need for '--force' in most autotool invocations in a new
15862         tree.  Actually fail the whole test if any of the tools, or the
15863         configure or make stages fail.
15864
15865         Sync from Automake.
15866         * build-aux/gnupload: Revert last change.  Add pointer to upload
15867         instructions of the GNU Maintenance Instructions.
15868         Suggestion by Karl Berry.
15869
15870 2006-11-10  Jim Meyering  <jim@meyering.net>
15871
15872         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
15873
15874 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15875
15876         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
15877         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
15878         (bind_textdomain_codeset) [! ENABLE_NLS]:
15879         Evaluate all the arguments.  That way, callers get compatible behavior
15880         if the arguments have side effects.  Also, it avoids some GCC
15881         diagnostics in some cases; Joel E. Denny reported problems when Bison
15882         was configured with --enable-gcc-warnigs.
15883
15884 2006-11-10  Jim Meyering  <jim@meyering.net>
15885
15886         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
15887         relevant options in CFLAGS (like -O, -fno-inline) are taken into
15888         account.
15889
15890 2006-11-10  Jim Meyering  <jim@meyering.net>
15891
15892         * modules/inline: New file/module.
15893         * modules/xalloc (Files): Remove m4/inline.m4.
15894         (Depends-on): Add inline, instead.
15895         * modules/oset: Likewise.
15896         * modules/list: Likewise.
15897
15898 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
15899
15900         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
15901         Problem reported by Matthew Woehlke.
15902
15903 2006-11-09  Bruno Haible  <bruno@clisp.org>
15904
15905         * lib/tempname.c (gen_tempname): Remove variant that invokes
15906         __gen_tempname.
15907         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
15908         __gen_tempname.
15909
15910 2006-11-08  Bruno Haible  <bruno@clisp.org>
15911
15912         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
15913         to 'yes' instead of 'cross-compiling'.
15914
15915 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
15916
15917         * lib/quotearg.h (quotearg_free): New decl.
15918         * lib/quotearg.c (quotearg_free): New function.
15919         (slot0, nslots, slotvec0, slotvec):
15920         Now file-scope so that quotearg_free can get at them.
15921
15922 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15923
15924         Sync from Automake.
15925         * build-aux/gnupload: Add missing 'gnu' to example URL.
15926         Report by Karl Berry.
15927
15928 2006-11-08  Bruno Haible  <bruno@clisp.org>
15929
15930         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
15931         Suggested by Paul Eggert.
15932
15933 2006-11-08  Jim Meyering  <jim@meyering.net>
15934
15935         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
15936         It's already included if !_LIBC.
15937         (fts_safe_changedir): Add a comment.
15938
15939 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
15940
15941         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
15942         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
15943         Matthew Woehlke.
15944
15945         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
15946         definitions up, to avoid colliding with change below.
15947         (static_inline) [HAVE_INLINE]: New macro.
15948         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
15949         Provide extern decls when !HAVE_INLINE.  Do not define unless
15950         static_inline is defined, either by us or by xmalloc.c.  Use
15951         static_inline rather than static inline.
15952         (XCALLOC): Optimize sizeof(T) = 1 case.
15953         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
15954
15955 2006-11-07  Bruno Haible  <bruno@clisp.org>
15956
15957         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
15958         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
15959         AC_C_INLINE.
15960         * modules/xalloc (Files): Add m4/inline.m4.
15961
15962 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15963
15964         * README: Fix typo.
15965         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
15966         (Miscellanous Notes): ...from this.
15967
15968 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
15969
15970         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
15971         Mention that offsetof should be used instead of sizeof.
15972         From Bruno Haible.
15973
15974 2006-11-07  Bruno Haible  <bruno@clisp.org>
15975
15976         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
15977
15978 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
15979
15980         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
15981         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
15982         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
15983         (gl_tree_add_before, gl_tree_add_after):
15984         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
15985         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
15986         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
15987         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
15988         (gl_linked_add_after, gl_linked_add_at): Likewise.
15989         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
15990         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
15991         (gl_tree_add_before, gl_tree_add_after): Likewise.
15992         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
15993         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
15994         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
15995
15996 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15997
15998         * lib/gl_oset.h: Use C comment style, not C++ comment style.
15999
16000 2006-11-06  Bruno Haible  <bruno@clisp.org>
16001
16002         * m4/inline.m4: New file.
16003         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
16004         * modules/list (Files): Add m4/inline.m4.
16005         * modules/oset (Files): Likewise.
16006
16007 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
16008
16009         * lib/idcache.c: Include <stddef.h>, for offsetof.
16010         (struct userid.name): Change from char * to a flexible array member.
16011         All uses changed.
16012         * modules/idcache (Depends-on): Add flexmember.
16013
16014         * MODULES.html.sh (Core language properties): New module flexmember.
16015         * modules/flexmember, m4/flexmember.m4: New files.
16016
16017         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
16018         inline functions that are identical with the old xnmalloc_inline,
16019         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
16020         that we can avoid some unnecessary integer multiplications and
16021         divisions in the common case where the element size is known at
16022         compile time.
16023         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
16024         needed.
16025         (xnboundedmalloc): Remove.
16026         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
16027         arguments, for consistency with rest of this header.
16028         (xcharalloc): Rewrite using XNMALLOC.
16029         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
16030         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
16031         versions have been moved to lib/xalloc.h and renamed to be the
16032         non-*_inline versions.
16033         (xmalloc, xrealloc): Implement without reference to the xnmalloc
16034         and xnrealloc functions, since those functions are now inline and
16035         now call us.
16036         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
16037         renaming described above.
16038         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
16039         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
16040         captures the dependency in AC_C_INLINE.
16041
16042         New module canonicalize-lgpl, proposed by Charles Wilson in
16043         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
16044         with a few small changes afterwards.
16045         * MODULES.html.sh (File system functions): New module
16046         canonicalize-lgpl.
16047         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
16048         and canonicalize_file_name.
16049         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
16050         * modules/canonicalize-lgpl: New files.
16051
16052 2006-11-05  Bruno Haible  <bruno@clisp.org>
16053
16054         * gnulib-tool (func_import, func_create_testdir): Create directories
16055         also for files in subdirectories of lib/.
16056
16057 2006-11-05  Bruno Haible  <bruno@clisp.org>
16058
16059         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
16060         ANSI C compliant.
16061
16062 2006-11-03  Bruno Haible  <bruno@clisp.org>
16063
16064         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
16065         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
16066         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
16067         (xnboundedmalloc): New inline function.
16068         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
16069         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
16070         xmalloc.
16071         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
16072         xmalloc.
16073         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
16074         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
16075         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
16076         xmalloc.
16077         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
16078         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
16079         xmalloc.
16080         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
16081         gl_tree_add_after): Use XMALLOC instead of xmalloc.
16082         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
16083         xmalloc.
16084         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
16085         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
16086         gl_tree_add_after): Use XMALLOC instead of xmalloc.
16087         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
16088         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
16089         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
16090         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
16091
16092 2006-11-03  Bruno Haible  <bruno@clisp.org>
16093
16094         * lib/c-ctype.h [C++]: Define functions without name mangling.
16095         * lib/fwriteerror.h [C++]: Likewise.
16096         * lib/gcd.h [C++]: Likewise.
16097         * lib/linebreak.h [C++]: Likewise.
16098
16099 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
16100
16101         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
16102         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
16103         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
16104         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
16105         Check for functions and headers just once.
16106         Check for declaration of canonicalize_file_name.
16107         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
16108
16109 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
16110
16111         * gnulib-tool (func_import): Fix typo in actioncmd.
16112
16113 2006-11-02  Bruno Haible  <bruno@clisp.org>
16114
16115         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
16116         newline sequence in the Makefile.am snippet as a space, like "make"
16117         does.
16118         Reported by Roger Persson <perrog@gmail.com>.
16119
16120 2006-11-01  Bruno Haible  <bruno@clisp.org>
16121
16122         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
16123         already declared in <string.h>.
16124         * lib/strcase.h (strncasecmp): Don't declare it if yes.
16125
16126 2006-11-01  Bruno Haible  <bruno@clisp.org>
16127
16128         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
16129         * lib/strcase.h: Include <string.h>.
16130         (strcasecmp): Define to rpl_strcasecmp here.
16131
16132 2006-11-01  Bruno Haible  <bruno@clisp.org>
16133
16134         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
16135
16136 2006-11-01  Eric Blake  <ebb9@byu.net>
16137
16138         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
16139
16140         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
16141
16142 2006-10-29  Bruno Haible  <bruno@clisp.org>
16143
16144         Make it compile in C++ mode.
16145         * lib/full-write.c (full_rw): Add a cast.
16146
16147 2006-11-01  Bruno Haible  <bruno@clisp.org>
16148
16149         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
16150         be POSIX compliant.
16151         Reported by Roger Persson <perrog@gmail.com>.
16152
16153 2006-11-01  Eric Blake  <ebb9@byu.net>
16154
16155         * lib/getopt_.h: Fix comments.
16156
16157 2006-10-31  Eric Blake  <ebb9@byu.net>
16158
16159         * modules/tmpdir (Depends-on): Add sys_stat.
16160         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
16161         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
16162         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
16163         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
16164         tempname.
16165
16166 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
16167
16168         Avoid some C++ diagnostics reported by Bruno Haible.
16169         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
16170         xmalloc.
16171         (quotearg_alloc): Use xcharalloc rather than xmalloc.
16172         (struct slotvec): Move to top level.
16173         (quotearg_n_options): Rewrite to avoid xmalloc.
16174         * lib/xalloc.h (xcharalloc): New function.
16175         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
16176         [defined __cplusplus]: Add function template that provides result
16177         type propagation.  This part of the change is from Bruno Haible.
16178
16179 2006-10-29  Bruno Haible  <bruno@clisp.org>
16180
16181         Make it compile in C++ mode.
16182         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
16183         * lib/strnlen1.c (strnlen1): Cast memchr result.
16184         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
16185         * lib/clean-temp.c (string_equals, string_hash): Add casts.
16186         (create_temp_dir): Rename local variable 'template'.
16187         (compile_csharp_using_sscli): Add cast.
16188         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
16189         * lib/findprog.c (find_in_path): Likewise.
16190         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
16191         * lib/wait-process.c (register_slave_subprocess): Likewise.
16192
16193 2006-10-22  Bruno Haible  <bruno@clisp.org>
16194
16195         * modules/tsearch: New file.
16196         * lib/tsearch.h: New file.
16197         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
16198         * m4/tsearch.m4: New file.
16199         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
16200
16201 2006-10-29  Eric Blake  <ebb9@byu.net>
16202
16203         * lib/arcfour.c: Assume config.h.
16204         * lib/arctwo.c: Likewise.
16205         * lib/base64.c: Likewise.
16206         * lib/check-version.c: Likewise.
16207         * lib/crc.c: Likewise.
16208         * lib/des.c: Likewise.
16209         * lib/gc-gnulib.c: Likewise.
16210         * lib/gc-libgcrypt.c: Likewise.
16211         * lib/gc-pbkdf2-sha1.c: Likewise.
16212         * lib/getaddrinfo.c: Likewise.
16213         * lib/getdelim.c: Likewise.
16214         * lib/getline.c: Likewise.
16215         * lib/hmac-md5.c: Likewise.
16216         * lib/hmac-sha1.c: Likewise.
16217         * lib/iconvme.c: Likewise.
16218         * lib/md2.c: Likewise.
16219         * lib/md4.c: Likewise.
16220         * lib/memxor.c: Likewise.
16221         * lib/read-file.c: Likewise.
16222         * lib/readline.c: Likewise.
16223         * lib/rijndael-alg-fst.c: Likewise.
16224         * lib/rijndael-api-fst.c: Likewise.
16225         * lib/xgetdomainname.c: Likewise.
16226
16227 2006-10-28  Eric Blake  <ebb9@byu.net>
16228
16229         * lib/xstrndup.c: Assume config.h.
16230
16231 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
16232
16233         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
16234         stat-macros.h is now for our own macros, whereas stat_h is for
16235         macros in the <sys/stat.h> name space.
16236         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
16237         (STAT_MACROS_H): Remove.
16238         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
16239         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
16240         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
16241         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
16242         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
16243         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
16244         Move these macros to ...
16245         * lib/stat_.h: here.  Don't include stat-macros.h.
16246         * lib/canonicalize.c: Don't include stat-macros.h.
16247         * lib/chown.c: Likewise.
16248         * lib/euidaccess.c: Likewise.
16249         * lib/file-type.c: Likewise.
16250         * lib/filemode.c: Likewise.
16251         * lib/glob.c: Likewise.
16252         * lib/isapipe.c: Likewise.
16253         * lib/lchown.c: Likewise.
16254         * lib/lstat.c: Likewise.
16255         * lib/mkdir-p.c: Likewise.
16256         * lib/rmdir.c: Likewise.
16257         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
16258         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
16259         unless mkdir isn't declared, to speed up 'configure'.
16260         Always create sys/stat.h, since it's unlikely any real sys/stat.h
16261         would define all the S_* symbols.
16262         * modules/canonicalize (Depends-on):
16263         Depend on sys_stat, not stat-macros.
16264         * modules/chown: Likewise.
16265         * modules/euidaccess: Likewise.
16266         * modules/filemode: Likewise.
16267         * modules/file-type: Likewise.
16268         * modules/glob: Likewise.
16269         * modules/isapipe: Likewise.
16270         * modules/lchown: Likewise.
16271         * modules/lstat: Likewise.
16272         * modules/mkancesdirs: Likewise.
16273         * modules/rmdir: Likewise.
16274         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
16275         * modules/modechange: Likewise.
16276         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
16277         (configure.ac): Remove gl_STAT_MACROS.
16278         * modules/sys_stat (Depends-on): Remove stat-macros.
16279
16280 2006-10-27  Bruno Haible  <bruno@clisp.org>
16281
16282         * m4/signed.m4: Remove file.
16283         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
16284         invocation.
16285         * modules/vasnprintf (Files): Remove m4/signed.m4.
16286
16287 2006-10-27  Bruno Haible  <bruno@clisp.org>
16288
16289         Update to GNU gettext 0.16.
16290         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
16291         m4/inttypes-h.m4, m4/signed.m4.
16292         * m4/gettext.m4: Update to GNU gettext 0.16.
16293         * m4/intl.m4: New file, from GNU gettext.
16294         * m4/intldir.m4: New file, from GNU gettext.
16295         * config/srclist.txt: Update
16296
16297 2006-10-27  Eric Blake  <ebb9@byu.net>
16298
16299         * MODULES.html.sh: Document tempname.
16300         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
16301         dependencies.
16302         (Files): Move lib/tempname.c...
16303         * modules/tempname: ...to this new module.
16304         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
16305         (gl_PREREQ_TEMPNAME): Move...
16306         * m4/tempname.m4: ...to this new file.
16307         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
16308         * modules/sys_stat (Depends-on): Add stat-macros.
16309         * lib/stat_.h (includes): Pick up stat macros.
16310         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
16311         if stat macros are broken.
16312         * lib/tempname.c (includes): No need to include "stat-macros.h".
16313         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
16314         (direxists, __path_search) [!_LIBC]: Don't compile these in
16315         gnulib; the tmpdir module covers that.
16316         * lib/tempname.h: New file.
16317
16318 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
16319
16320         * COPYING: Explain how gnulib-tool converts licence headers.
16321         Almost all wording by Eric Blake.
16322
16323 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
16324
16325         * lib/mbchar.h (is_basic_table): Make read-only.
16326         * lib/mbchar.c (is_basic_table): Likewise.
16327         Reported by John Darrington.
16328
16329 2006-10-25  Bruno Haible  <bruno@clisp.org>
16330
16331         * lib/progname.h (set_program_name): Undefine before defining.
16332
16333 2006-10-25  Bruno Haible  <bruno@clisp.org>
16334
16335         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
16336         false for non-gcc C++ compilers.
16337         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
16338
16339 2006-10-24  Bruno Haible  <bruno@clisp.org>
16340
16341         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
16342         iconv implementations like Irix iconv.
16343
16344 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16345
16346         * modules/vararrays: New file.
16347         * m4/vararrays.m4: New file, taken from diffutils.
16348         * MODULES.html.sh: New module vararrays.
16349
16350 2006-10-24  Karl Berry  <karl@gnu.org>
16351
16352         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
16353         Don't call GNU Unix.
16354
16355 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16356
16357         * users.txt: Add Libtool.
16358
16359         Sync from Libtool:
16360
16361         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16362
16363         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
16364         to gnulib's policy of including config.h unconditionally.
16365
16366 2006-10-24  Bruno Haible  <bruno@clisp.org>
16367
16368         * modules/wcwidth (Files): Add m4/wint_t.m4.
16369         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
16370         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
16371
16372 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
16373
16374         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
16375         to pacify GCC with some -W flags enabled.  Problem reported by
16376         Bruno Haible.
16377
16378 2006-10-24  Jim Meyering  <jim@meyering.net>
16379
16380         * MODULES.html.sh: Remove uinttostr.  It's not a module.
16381         Reported by Karl Berry.
16382
16383 2006-10-23  Bruno Haible  <bruno@clisp.org>
16384
16385         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
16386
16387 2006-10-24  Bruno Haible  <bruno@clisp.org>
16388
16389         * lib/gl_list.h: Use C comment style, not C++ comment style.
16390
16391 2006-10-23  Eric Blake  <ebb9@byu.net>
16392
16393         * lib/getaddrinfo.c (includes): Add missing include.
16394
16395 2006-10-23  Bruno Haible  <bruno@clisp.org>
16396             Paul Eggert  <eggert@cs.ucla.edu>
16397
16398         Ability to rename obstack_free.
16399         * lib/obstack.h (__obstack_free): New macro. Declare instead of
16400         obstack_free.
16401         (obstack_free): Invoke the __obstack_free macro.
16402         * lib/obstack.c (obstack_free): Use __obstack_free macro.
16403
16404 2006-10-23  Bruno Haible  <bruno@clisp.org>
16405             Paul Eggert  <eggert@cs.ucla.edu>
16406
16407         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
16408         __argc, __argv from the declaration. (They are defined as macros on
16409         mingw.)
16410
16411 2006-10-22  Bruno Haible  <bruno@clisp.org>
16412
16413         * doc/gnulib-intro.texi: New file.
16414         * doc/gnulib.texi: Include it.
16415
16416 2006-10-21  Bruno Haible  <bruno@clisp.org>
16417
16418         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
16419         "Introduction", "Miscellanous Notes", "Particular Modules".
16420
16421 2006-10-21  Bruno Haible  <bruno@clisp.org>
16422
16423         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
16424         Change mostlyclean-local rule to avoid sh syntax error from bash
16425         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
16426
16427 2006-10-23  Jim Meyering  <jim@meyering.net>
16428
16429         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
16430         in place of snprintf.
16431
16432         * modules/inttostr (Files): Add lib/uinttostr.c.
16433         * lib/uinttostr.c (inttostr): New file/function.
16434         * lib/inttostr.h (uinttostr): Declare.
16435         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
16436         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
16437         Add uinttostr.
16438         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
16439
16440 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
16441
16442         * lib/canonicalize.c (ELOOP): Define if not already defined.
16443         Problem reported by Bruno Haible in
16444         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
16445
16446 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
16447
16448         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
16449         Problem reported by Perry Smith and Ville Laurikari.
16450
16451         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
16452         uses.
16453
16454 2006-10-19  Bruno Haible  <bruno@clisp.org>
16455
16456         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
16457         for mingw.
16458
16459 2006-10-19  Bruno Haible  <bruno@clisp.org>
16460
16461         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
16462         Needed for mingw.
16463
16464 2006-10-19  Bruno Haible  <bruno@clisp.org>
16465
16466         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
16467
16468 2006-10-19  Bruno Haible  <bruno@clisp.org>
16469
16470         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
16471         it.
16472
16473 2006-10-19  Bruno Haible  <bruno@clisp.org>
16474
16475         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
16476         invocation.
16477
16478 2006-10-19  Bruno Haible  <bruno@clisp.org>
16479
16480         * gnulib-tool (func_create_testdir): Don't include ftruncate and
16481         mountlist by default.
16482
16483 2006-10-16  Bruno Haible  <bruno@clisp.org>
16484
16485         * lib/c-strstr.c: Include c-strstr.h.
16486
16487 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
16488
16489         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
16490         in a slash.
16491
16492 2006-10-18  Bruno Haible  <bruno@clisp.org>
16493
16494         * lib/lock.h [C++]: Wrap definitions in extern "C".
16495
16496 2006-10-18  Bruno Haible  <bruno@clisp.org>
16497
16498         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
16499         gl_LIBOBJS list.
16500
16501 2006-10-18  Bruno Haible  <bruno@clisp.org>
16502
16503         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
16504
16505 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
16506
16507         * lib/xstrtol.h: Include gettext.h.
16508         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
16509         Problem reported by Eric Blake.
16510         * modules/xstrtol (Depends-on): Add gettext-h.
16511
16512 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
16513
16514         * lib/strftime.c (advance): New macro.
16515         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
16516         incomplete type, so you can't add 0 to it.  Problem and patch
16517         reported by Eelco Dolstra for dietlibc.
16518
16519 2006-10-18  Jim Meyering  <jim@meyering.net>
16520
16521         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
16522         type for a local, and rename it: s/up/user_proc/.
16523
16524 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
16525
16526         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
16527         READ_UTMP_USER_PROCESS.
16528         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
16529
16530 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
16531
16532         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
16533         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
16534
16535 2006-10-17  Eric Blake  <ebb9@byu.net>
16536
16537         * lib/sigprocmask.c (sigprocmask): Fix typo.
16538
16539         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
16540
16541         * modules/clean-temp (Makefile.am): Don't add to make output...
16542         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
16543         config.h.
16544
16545 2006-10-17  Bruno Haible  <bruno@clisp.org>
16546
16547         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
16548         differently if DEFAULT_TEXT_DOMAIN is set.
16549
16550 2006-10-16  Bruno Haible  <bruno@clisp.org>
16551
16552         * lib/clean-temp.c: Include fwriteerror.h.
16553
16554 2006-10-16  Bruno Haible  <bruno@clisp.org>
16555
16556         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
16557
16558 2006-10-16  Bruno Haible  <bruno@clisp.org>
16559
16560         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
16561         * lib/sigprocmask.h: Include <sys/types.h>.
16562         (sigset_t): Use the system's definition if present.
16563
16564 2006-10-17  Eric Blake  <ebb9@byu.net>
16565
16566         * lib/xvasprintf.c (includes): Assume config.h.
16567         * lib/xasprintf.c (includes): Likewise.
16568
16569 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
16570
16571         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
16572         at least as wide as intmax_t.
16573
16574 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
16575
16576         (Imported from Automake.)
16577         * build-aux/gnupload: Update to version 1.1 of directive file.
16578
16579 2006-10-16  Eric Blake  <ebb9@byu.net>
16580
16581         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
16582         match Automake 1.10a.
16583
16584 2006-10-14  Bruno Haible  <bruno@clisp.org>
16585
16586         * modules/sigprocmask: New file.
16587         * lib/sigprocmask.h: New file.
16588         * lib/sigprocmask.c: New file.
16589         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
16590         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
16591         request sigprocmask.o.
16592         (gl_PREREQ_SIGPROCMASK): New macro.
16593         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
16594         (Depends-on): Add sigprocmask.
16595         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
16596         gt_SIGNALBLOCKING. Test for 'raise' only once.
16597         * lib/fatal-signal.c: Include sigprocmask.h.
16598         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
16599         unblock_fatal_signals): Define always.
16600         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16601         sigprocmask.
16602
16603 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
16604
16605         Sync from Automake.
16606         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
16607         which incorrectly sets the mode of an existing destination
16608         directory.  In some cases the unpatched install-sh could do the
16609         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
16610         system.  We hope this is rare in practice, but it's clearly worth
16611         fixing.  Problem reported by Alex Unleashed in
16612         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
16613         Also, don't bother to check for -m bugs unless we're using -m;
16614         suggested by Stepan Kasal.
16615
16616 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16617
16618         Sync from Automake.
16619         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
16620         `-c' flag, so they appear at the same position as in %FASTDEP%
16621         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
16622         which ignores unknown options only after the first non-option.
16623         Bug report against M4 by Nelson H. F. Beebe.
16624
16625 2006-10-13  Jim Meyering  <jim@meyering.net>
16626
16627         Fix a bug in yesterday's change.
16628         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
16629         p->fts_statp->st_dev would be used uninitialized.
16630         Ensures that we always call fts_stat on the very first entry.
16631         Miklos Szeredi reported that find -xdev stopped working.
16632
16633 2006-10-12  Bruno Haible  <bruno@clisp.org>
16634
16635         * gnulib-tool (func_get_automake_snippet): Append an automatically
16636         computed EXTRA_DIST augmentation.
16637         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
16638         * modules/alloca-opt (Makefile.am): Likewise.
16639         * modules/allocsa (Makefile.am): Likewise.
16640         * modules/arcfour (Makefile.am): Likewise.
16641         * modules/arctwo (Makefile.am): Likewise.
16642         * modules/argmatch (Makefile.am): Likewise.
16643         * modules/argz (Makefile.am): Likewise.
16644         * modules/atexit (Makefile.am): Likewise.
16645         * modules/backupfile (Makefile.am): Likewise.
16646         * modules/byteswap (Makefile.am): Likewise.
16647         * modules/c-strtod (Makefile.am): Likewise.
16648         * modules/c-strtold (Makefile.am): Likewise.
16649         * modules/calloc (Makefile.am): Likewise.
16650         * modules/canon-host (Makefile.am): Likewise.
16651         * modules/canonicalize (Makefile.am): Likewise.
16652         * modules/chdir-long (Makefile.am): Likewise.
16653         * modules/chdir-safer (Makefile.am): Likewise.
16654         * modules/check-version (Makefile.am): Likewise.
16655         * modules/chown (Makefile.am): Likewise.
16656         * modules/cloexec (Makefile.am): Likewise.
16657         * modules/close-stream (Makefile.am): Likewise.
16658         * modules/closeout (Makefile.am): Likewise.
16659         * modules/crc (Makefile.am): Likewise.
16660         * modules/csharpexec (Makefile.am): Likewise.
16661         * modules/cycle-check (Makefile.am): Likewise.
16662         * modules/des (Makefile.am): Likewise.
16663         * modules/dev-ino (Makefile.am): Likewise.
16664         * modules/dirfd (Makefile.am): Likewise.
16665         * modules/dirname (Makefile.am): Likewise.
16666         * modules/dup2 (Makefile.am): Likewise.
16667         * modules/eealloc (Makefile.am): Likewise.
16668         * modules/error (Makefile.am): Likewise.
16669         * modules/euidaccess (Makefile.am): Likewise.
16670         * modules/exclude (Makefile.am): Likewise.
16671         * modules/exitfail (Makefile.am): Likewise.
16672         * modules/fcntl-safer (Makefile.am): Likewise.
16673         * modules/fcntl (Makefile.am): Likewise.
16674         * modules/file-type (Makefile.am): Likewise.
16675         * modules/fileblocks (Makefile.am): Likewise.
16676         * modules/filemode (Makefile.am): Likewise.
16677         * modules/filenamecat (Makefile.am): Likewise.
16678         * modules/fnmatch (Makefile.am): Likewise.
16679         * modules/fopen-safer (Makefile.am): Likewise.
16680         * modules/fpending (Makefile.am): Likewise.
16681         * modules/fprintftime (Makefile.am): Likewise.
16682         * modules/free (Makefile.am): Likewise.
16683         * modules/fsusage (Makefile.am): Likewise.
16684         * modules/ftruncate (Makefile.am): Likewise.
16685         * modules/fts (Makefile.am): Likewise.
16686         * modules/gc-arcfour (Makefile.am): Likewise.
16687         * modules/gc-des (Makefile.am): Likewise.
16688         * modules/gc-hmac-md5 (Makefile.am): Likewise.
16689         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
16690         * modules/gc-md4 (Makefile.am): Likewise.
16691         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
16692         * modules/gc-sha1 (Makefile.am): Likewise.
16693         * modules/gc (Makefile.am): Likewise.
16694         * modules/getaddrinfo (Makefile.am): Likewise.
16695         * modules/getcwd (Makefile.am): Likewise.
16696         * modules/getdelim (Makefile.am): Likewise.
16697         * modules/getdomainname (Makefile.am): Likewise.
16698         * modules/getgroups (Makefile.am): Likewise.
16699         * modules/gethostname (Makefile.am): Likewise.
16700         * modules/gethrxtime (Makefile.am): Likewise.
16701         * modules/getline (Makefile.am): Likewise.
16702         * modules/getloadavg (Makefile.am): Likewise.
16703         * modules/getlogin_r (Makefile.am): Likewise.
16704         * modules/getndelim2 (Makefile.am): Likewise.
16705         * modules/getopt (Makefile.am): Likewise.
16706         * modules/getpagesize (Makefile.am): Likewise.
16707         * modules/getpass-gnu (Makefile.am): Likewise.
16708         * modules/getpass (Makefile.am): Likewise.
16709         * modules/getsubopt (Makefile.am): Likewise.
16710         * modules/gettime (Makefile.am): Likewise.
16711         * modules/gettimeofday (Makefile.am): Likewise.
16712         * modules/getugroups (Makefile.am): Likewise.
16713         * modules/getusershell (Makefile.am): Likewise.
16714         * modules/glob (Makefile.am): Likewise.
16715         * modules/group-member (Makefile.am): Likewise.
16716         * modules/hard-locale (Makefile.am): Likewise.
16717         * modules/hash (Makefile.am): Likewise.
16718         * modules/hmac-md5 (Makefile.am): Likewise.
16719         * modules/hmac-sha1 (Makefile.am): Likewise.
16720         * modules/human (Makefile.am): Likewise.
16721         * modules/idcache (Makefile.am): Likewise.
16722         * modules/imaxabs (Makefile.am): Likewise.
16723         * modules/imaxdiv (Makefile.am): Likewise.
16724         * modules/inet_ntop (Makefile.am): Likewise.
16725         * modules/inet_pton (Makefile.am): Likewise.
16726         * modules/intprops (Makefile.am): Likewise.
16727         * modules/inttostr (Makefile.am): Likewise.
16728         * modules/inttypes (Makefile.am): Likewise.
16729         * modules/isapipe (Makefile.am): Likewise.
16730         * modules/javaversion (Makefile.am): Likewise.
16731         * modules/lchmod (Makefile.am): Likewise.
16732         * modules/lchown (Makefile.am): Likewise.
16733         * modules/localcharset (Makefile.am): Likewise.
16734         * modules/long-options (Makefile.am): Likewise.
16735         * modules/lstat (Makefile.am): Likewise.
16736         * modules/malloc (Makefile.am): Likewise.
16737         * modules/mathl (Makefile.am): Likewise.
16738         * modules/mbchar (Makefile.am): Likewise.
16739         * modules/md2 (Makefile.am): Likewise.
16740         * modules/md4 (Makefile.am): Likewise.
16741         * modules/md5 (Makefile.am): Likewise.
16742         * modules/memcasecmp (Makefile.am): Likewise.
16743         * modules/memchr (Makefile.am): Likewise.
16744         * modules/memcmp (Makefile.am): Likewise.
16745         * modules/memcoll (Makefile.am): Likewise.
16746         * modules/memcpy (Makefile.am): Likewise.
16747         * modules/memmem (Makefile.am): Likewise.
16748         * modules/memmove (Makefile.am): Likewise.
16749         * modules/mempcpy (Makefile.am): Likewise.
16750         * modules/memrchr (Makefile.am): Likewise.
16751         * modules/memset (Makefile.am): Likewise.
16752         * modules/memxor (Makefile.am): Likewise.
16753         * modules/mkancesdirs (Makefile.am): Likewise.
16754         * modules/mkdir-p (Makefile.am): Likewise.
16755         * modules/mkdir (Makefile.am): Likewise.
16756         * modules/mkdtemp (Makefile.am): Likewise.
16757         * modules/mkstemp (Makefile.am): Likewise.
16758         * modules/mktime (Makefile.am): Likewise.
16759         * modules/modechange (Makefile.am): Likewise.
16760         * modules/mountlist (Makefile.am): Likewise.
16761         * modules/nanosleep (Makefile.am): Likewise.
16762         * modules/obstack (Makefile.am): Likewise.
16763         * modules/openat (Makefile.am): Likewise.
16764         * modules/pagealign_alloc (Makefile.am): Likewise.
16765         * modules/pathmax (Makefile.am): Likewise.
16766         * modules/physmem (Makefile.am): Likewise.
16767         * modules/poll (Makefile.am): Likewise.
16768         * modules/posixtm (Makefile.am): Likewise.
16769         * modules/posixver (Makefile.am): Likewise.
16770         * modules/putenv (Makefile.am): Likewise.
16771         * modules/quote (Makefile.am): Likewise.
16772         * modules/quotearg (Makefile.am): Likewise.
16773         * modules/raise (Makefile.am): Likewise.
16774         * modules/read-file (Makefile.am): Likewise.
16775         * modules/readline (Makefile.am): Likewise.
16776         * modules/readlink (Makefile.am): Likewise.
16777         * modules/readtokens (Makefile.am): Likewise.
16778         * modules/readutmp (Makefile.am): Likewise.
16779         * modules/realloc (Makefile.am): Likewise.
16780         * modules/regex (Makefile.am): Likewise.
16781         * modules/rename-dest-slash (Makefile.am): Likewise.
16782         * modules/rename (Makefile.am): Likewise.
16783         * modules/rijndael (Makefile.am): Likewise.
16784         * modules/rmdir (Makefile.am): Likewise.
16785         * modules/rpmatch (Makefile.am): Likewise.
16786         * modules/safe-read (Makefile.am): Likewise.
16787         * modules/safe-write (Makefile.am): Likewise.
16788         * modules/same-inode (Makefile.am): Likewise.
16789         * modules/same (Makefile.am): Likewise.
16790         * modules/save-cwd (Makefile.am): Likewise.
16791         * modules/savedir (Makefile.am): Likewise.
16792         * modules/setenv (Makefile.am): Likewise.
16793         * modules/settime (Makefile.am): Likewise.
16794         * modules/sha1 (Makefile.am): Likewise.
16795         * modules/sig2str (Makefile.am): Likewise.
16796         * modules/snprintf (Makefile.am): Likewise.
16797         * modules/stat-macros (Makefile.am): Likewise.
16798         * modules/stat-time (Makefile.am): Likewise.
16799         * modules/stdbool (Makefile.am): Likewise.
16800         * modules/stdint (Makefile.am): Likewise.
16801         * modules/stdlib-safer (Makefile.am): Likewise.
16802         * modules/stpcpy (Makefile.am): Likewise.
16803         * modules/stpncpy (Makefile.am): Likewise.
16804         * modules/strcase (Makefile.am): Likewise.
16805         * modules/strcasestr (Makefile.am): Likewise.
16806         * modules/strchrnul (Makefile.am): Likewise.
16807         * modules/strcspn (Makefile.am): Likewise.
16808         * modules/strdup (Makefile.am): Likewise.
16809         * modules/strerror (Makefile.am): Likewise.
16810         * modules/strftime (Makefile.am): Likewise.
16811         * modules/strndup (Makefile.am): Likewise.
16812         * modules/strnlen (Makefile.am): Likewise.
16813         * modules/strpbrk (Makefile.am): Likewise.
16814         * modules/strsep (Makefile.am): Likewise.
16815         * modules/strstr (Makefile.am): Likewise.
16816         * modules/strtod (Makefile.am): Likewise.
16817         * modules/strtoimax (Makefile.am): Likewise.
16818         * modules/strtok_r (Makefile.am): Likewise.
16819         * modules/strtol (Makefile.am): Likewise.
16820         * modules/strtoll (Makefile.am): Likewise.
16821         * modules/strtoul (Makefile.am): Likewise.
16822         * modules/strtoull (Makefile.am): Likewise.
16823         * modules/strtoumax (Makefile.am): Likewise.
16824         * modules/strverscmp (Makefile.am): Likewise.
16825         * modules/sys_socket (Makefile.am): Likewise.
16826         * modules/sys_stat (Makefile.am): Likewise.
16827         * modules/sysexits (Makefile.am): Likewise.
16828         * modules/time_r (Makefile.am): Likewise.
16829         * modules/timegm (Makefile.am): Likewise.
16830         * modules/timespec (Makefile.am): Likewise.
16831         * modules/tmpfile-safer (Makefile.am): Likewise.
16832         * modules/trim (Makefile.am): Likewise.
16833         * modules/unistd-safer (Makefile.am): Likewise.
16834         * modules/unlinkdir (Makefile.am): Likewise.
16835         * modules/unlocked-io (Makefile.am): Likewise.
16836         * modules/userspec (Makefile.am): Likewise.
16837         * modules/utime (Makefile.am): Likewise.
16838         * modules/utimecmp (Makefile.am): Likewise.
16839         * modules/utimens (Makefile.am): Likewise.
16840         * modules/vasnprintf (Makefile.am): Likewise.
16841         * modules/vasprintf (Makefile.am): Likewise.
16842         * modules/vsnprintf (Makefile.am): Likewise.
16843         * modules/xalloc (Makefile.am): Likewise.
16844         * modules/xgetcwd (Makefile.am): Likewise.
16845         * modules/xnanosleep (Makefile.am): Likewise.
16846         * modules/xreadlink (Makefile.am): Likewise.
16847         * modules/xstrtod (Makefile.am): Likewise.
16848         * modules/xstrtol (Makefile.am): Likewise.
16849         * modules/xstrtold (Makefile.am): Likewise.
16850         * modules/yesno (Makefile.am): Likewise.
16851         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
16852
16853 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
16854
16855         * modules/error (Makefile.am): Distribute files through
16856         EXTRA_DIST, not lib_SOURCES.
16857
16858 2006-10-12  Eric Blake  <ebb9@byu.net>
16859
16860         * modules/error (Makefile.am): Distribute files in /lib.
16861         * modules/obstack (Makefile.am): Likewise.
16862
16863 2006-10-12  Bruno Haible  <bruno@clisp.org>
16864
16865         * modules/acl (Makefile.am): Distribute all files in lib/ through
16866         EXTRA_DIST.
16867         * modules/arcfour (Makefile.am): Likewise.
16868         * modules/arctwo (Makefile.am): Likewise.
16869         * modules/argmatch (Makefile.am): Likewise.
16870         * modules/argz (Makefile.am): Likewise.
16871         * modules/atexit (Makefile.am): Likewise.
16872         * modules/backupfile (Makefile.am): Likewise.
16873         * modules/c-strtod (Makefile.am): Likewise.
16874         * modules/c-strtold (Makefile.am): Likewise.
16875         * modules/calloc (Makefile.am): Likewise.
16876         * modules/canon-host (Makefile.am): Likewise.
16877         * modules/canonicalize (Makefile.am): Likewise.
16878         * modules/chdir-long (Makefile.am): Likewise.
16879         * modules/chdir-safer (Makefile.am): Likewise.
16880         * modules/check-version (Makefile.am): Likewise.
16881         * modules/chown (Makefile.am): Likewise.
16882         * modules/cloexec (Makefile.am): Likewise.
16883         * modules/close-stream (Makefile.am): Likewise.
16884         * modules/closeout (Makefile.am): Likewise.
16885         * modules/crc (Makefile.am): Likewise.
16886         * modules/cycle-check (Makefile.am): Likewise.
16887         * modules/des (Makefile.am): Likewise.
16888         * modules/dirfd (Makefile.am): Likewise.
16889         * modules/dirname (Makefile.am): Likewise.
16890         * modules/dup2 (Makefile.am): Likewise.
16891         * modules/euidaccess (Makefile.am): Likewise.
16892         * modules/exclude (Makefile.am): Likewise.
16893         * modules/exitfail (Makefile.am): Likewise.
16894         * modules/fcntl-safer (Makefile.am): Likewise.
16895         * modules/file-type (Makefile.am): Likewise.
16896         * modules/fileblocks (Makefile.am): Likewise.
16897         * modules/filemode (Makefile.am): Likewise.
16898         * modules/filenamecat (Makefile.am): Likewise.
16899         * modules/fnmatch (Makefile.am): Likewise.
16900         * modules/fopen-safer (Makefile.am): Likewise.
16901         * modules/fpending (Makefile.am): Likewise.
16902         * modules/fprintftime (Makefile.am): Likewise.
16903         * modules/free (Makefile.am): Likewise.
16904         * modules/fsusage (Makefile.am): Likewise.
16905         * modules/ftruncate (Makefile.am): Likewise.
16906         * modules/fts (Makefile.am): Likewise.
16907         * modules/gc (Makefile.am): Likewise.
16908         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
16909         * modules/getaddrinfo (Makefile.am): Likewise.
16910         * modules/getcwd (Makefile.am): Likewise.
16911         * modules/getdelim (Makefile.am): Likewise.
16912         * modules/getdomainname (Makefile.am): Likewise.
16913         * modules/getgroups (Makefile.am): Likewise.
16914         * modules/gethostname (Makefile.am): Likewise.
16915         * modules/gethrxtime (Makefile.am): Likewise.
16916         * modules/getline (Makefile.am): Likewise.
16917         * modules/getloadavg (Makefile.am): Likewise.
16918         * modules/getlogin_r (Makefile.am): Likewise.
16919         * modules/getopt (Makefile.am): Likewise.
16920         * modules/getpass (Makefile.am): Likewise.
16921         * modules/getpass-gnu (Makefile.am): Likewise.
16922         * modules/getsubopt (Makefile.am): Likewise.
16923         * modules/gettime (Makefile.am): Likewise.
16924         * modules/gettimeofday (Makefile.am): Likewise.
16925         * modules/getugroups (Makefile.am): Likewise.
16926         * modules/getusershell (Makefile.am): Likewise.
16927         * modules/glob (Makefile.am): Likewise.
16928         * modules/group-member (Makefile.am): Likewise.
16929         * modules/hard-locale (Makefile.am): Likewise.
16930         * modules/hash (Makefile.am): Likewise.
16931         * modules/hmac-md5 (Makefile.am): Likewise.
16932         * modules/hmac-sha1 (Makefile.am): Likewise.
16933         * modules/human (Makefile.am): Likewise.
16934         * modules/idcache (Makefile.am): Likewise.
16935         * modules/imaxabs (Makefile.am): Likewise.
16936         * modules/imaxdiv (Makefile.am): Likewise.
16937         * modules/inet_ntop (Makefile.am): Likewise.
16938         * modules/inet_pton (Makefile.am): Likewise.
16939         * modules/inttostr (Makefile.am): Likewise.
16940         * modules/isapipe (Makefile.am): Likewise.
16941         * modules/lchown (Makefile.am): Likewise.
16942         * modules/long-options (Makefile.am): Likewise.
16943         * modules/lstat (Makefile.am): Likewise.
16944         * modules/malloc (Makefile.am): Likewise.
16945         * modules/mathl (Makefile.am): Likewise.
16946         * modules/mbchar (Makefile.am): Likewise.
16947         * modules/md2 (Makefile.am): Likewise.
16948         * modules/md4 (Makefile.am): Likewise.
16949         * modules/md5 (Makefile.am): Likewise.
16950         * modules/memcasecmp (Makefile.am): Likewise.
16951         * modules/memchr (Makefile.am): Likewise.
16952         * modules/memcmp (Makefile.am): Likewise.
16953         * modules/memcoll (Makefile.am): Likewise.
16954         * modules/memcpy (Makefile.am): Likewise.
16955         * modules/memmem (Makefile.am): Likewise.
16956         * modules/memmove (Makefile.am): Likewise.
16957         * modules/mempcpy (Makefile.am): Likewise.
16958         * modules/memrchr (Makefile.am): Likewise.
16959         * modules/memset (Makefile.am): Likewise.
16960         * modules/memxor (Makefile.am): Likewise.
16961         * modules/mkancesdirs (Makefile.am): Likewise.
16962         * modules/mkdir (Makefile.am): Likewise.
16963         * modules/mkdir-p (Makefile.am): Likewise.
16964         * modules/mkdtemp (Makefile.am): Likewise.
16965         * modules/mkstemp (Makefile.am): Likewise.
16966         * modules/mktime (Makefile.am): Likewise.
16967         * modules/modechange (Makefile.am): Likewise.
16968         * modules/mountlist (Makefile.am): Likewise.
16969         * modules/nanosleep (Makefile.am): Likewise.
16970         * modules/openat (Makefile.am): Likewise.
16971         * modules/pagealign_alloc (Makefile.am): Likewise.
16972         * modules/physmem (Makefile.am): Likewise.
16973         * modules/poll (Makefile.am): Likewise.
16974         * modules/posixtm (Makefile.am): Likewise.
16975         * modules/posixver (Makefile.am): Likewise.
16976         * modules/putenv (Makefile.am): Likewise.
16977         * modules/quote (Makefile.am): Likewise.
16978         * modules/quotearg (Makefile.am): Likewise.
16979         * modules/raise (Makefile.am): Likewise.
16980         * modules/read-file (Makefile.am): Likewise.
16981         * modules/readline (Makefile.am): Likewise.
16982         * modules/readlink (Makefile.am): Likewise.
16983         * modules/readtokens (Makefile.am): Likewise.
16984         * modules/readutmp (Makefile.am): Likewise.
16985         * modules/realloc (Makefile.am): Likewise.
16986         * modules/regex (Makefile.am): Likewise.
16987         * modules/rename (Makefile.am): Likewise.
16988         * modules/rename-dest-slash (Makefile.am): Likewise.
16989         * modules/rijndael (Makefile.am): Likewise.
16990         * modules/rmdir (Makefile.am): Likewise.
16991         * modules/rpmatch (Makefile.am): Likewise.
16992         * modules/safe-read (Makefile.am): Likewise.
16993         * modules/safe-write (Makefile.am): Likewise.
16994         * modules/same (Makefile.am): Likewise.
16995         * modules/save-cwd (Makefile.am): Likewise.
16996         * modules/savedir (Makefile.am): Likewise.
16997         * modules/setenv (Makefile.am): Likewise.
16998         * modules/settime (Makefile.am): Likewise.
16999         * modules/sha1 (Makefile.am): Likewise.
17000         * modules/sig2str (Makefile.am): Likewise.
17001         * modules/snprintf (Makefile.am): Likewise.
17002         * modules/stdlib-safer (Makefile.am): Likewise.
17003         * modules/stpcpy (Makefile.am): Likewise.
17004         * modules/stpncpy (Makefile.am): Likewise.
17005         * modules/strcase (Makefile.am): Likewise.
17006         * modules/strcasestr (Makefile.am): Likewise.
17007         * modules/strchrnul (Makefile.am): Likewise.
17008         * modules/strcspn (Makefile.am): Likewise.
17009         * modules/strdup (Makefile.am): Likewise.
17010         * modules/strerror (Makefile.am): Likewise.
17011         * modules/strftime (Makefile.am): Likewise.
17012         * modules/strndup (Makefile.am): Likewise.
17013         * modules/strnlen (Makefile.am): Likewise.
17014         * modules/strpbrk (Makefile.am): Likewise.
17015         * modules/strsep (Makefile.am): Likewise.
17016         * modules/strstr (Makefile.am): Likewise.
17017         * modules/strtod (Makefile.am): Likewise.
17018         * modules/strtoimax (Makefile.am): Likewise.
17019         * modules/strtok_r (Makefile.am): Likewise.
17020         * modules/strtol (Makefile.am): Likewise.
17021         * modules/strtoll (Makefile.am): Likewise.
17022         * modules/strtoul (Makefile.am): Likewise.
17023         * modules/strtoull (Makefile.am): Likewise.
17024         * modules/strtoumax (Makefile.am): Likewise.
17025         * modules/strverscmp (Makefile.am): Likewise.
17026         * modules/time_r (Makefile.am): Likewise.
17027         * modules/timegm (Makefile.am): Likewise.
17028         * modules/tmpfile-safer (Makefile.am): Likewise.
17029         * modules/unistd-safer (Makefile.am): Likewise.
17030         * modules/unlinkdir (Makefile.am): Likewise.
17031         * modules/userspec (Makefile.am): Likewise.
17032         * modules/utime (Makefile.am): Likewise.
17033         * modules/utimecmp (Makefile.am): Likewise.
17034         * modules/utimens (Makefile.am): Likewise.
17035         * modules/vasnprintf (Makefile.am): Likewise.
17036         * modules/vasprintf (Makefile.am): Likewise.
17037         * modules/vsnprintf (Makefile.am): Likewise.
17038         * modules/xalloc (Makefile.am): Likewise.
17039         * modules/xgetcwd (Makefile.am): Likewise.
17040         * modules/xnanosleep (Makefile.am): Likewise.
17041         * modules/xreadlink (Makefile.am): Likewise.
17042         * modules/xstrtod (Makefile.am): Likewise.
17043         * modules/xstrtol (Makefile.am): Likewise.
17044         * modules/xstrtold (Makefile.am): Likewise.
17045         * modules/yesno (Makefile.am): Likewise.
17046
17047 2006-10-12  Jim Meyering  <jim@meyering.net>
17048
17049         * m4/getloadavg.m4: Revert the change below.
17050
17051         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
17052         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
17053         fail with a symlink, which is what coreutils' ./bootstrap now
17054         creates by default.
17055
17056 2006-10-12  Bruno Haible  <bruno@clisp.org>
17057
17058         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
17059         mingw.
17060         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
17061         MSVC and mingw explicitly.
17062
17063 2006-10-11  Simon Josefsson  <jas@extundo.com>
17064             Bruno Haible  <bruno@clisp.org>
17065
17066         Add support for multiple gnulib-tool invocations in the scope of a
17067         single configure.ac file.
17068         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
17069         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
17070         with the same contents as the _LIBADD variable.
17071         (func_emit_initmacro_start, func_emit_initmacro_end,
17072         func_emit_initmacro_done): New functions.
17073         (func_import, func_create_testdir): Invoke them. Allow the identifiers
17074         gl_LIBOBJS and gl_LTLIBOBJS.
17075
17076 2006-10-11  Bruno Haible  <bruno@clisp.org>
17077
17078         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
17079         (func_create_testdir): Don't create po/Makefile.am, don't invoke
17080         autoreconf. Instead, invoke autopoint explicitly but move back the
17081         *.m4 files from gnulib.
17082
17083 2006-10-11  Bruno Haible  <bruno@clisp.org>
17084
17085         * gnulib-tool (func_usage): Make module names after --create-testdir
17086         optional.
17087         (func_create_testdir): If no module was specified, use nearly all
17088         modules.
17089
17090 2006-10-12  Jim Meyering  <jim@meyering.net>
17091
17092         Big performance improvement for fts-based tools that use FTS_NOSTAT.
17093         Avoid spurious inode-mismatch problems on non-POSIX file systems.
17094         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
17095         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
17096         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
17097         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
17098         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
17099         (fts_set_stat_required): New function.
17100         (fts_open): Defer the calls to fts_stat, if possible or requested.
17101         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
17102         into fts_stat itself.
17103         (fts_read): Perform any required (deferred) fts_stat call.
17104         (fts_build): Likewise, for the directory we're about to open and read.
17105         In the readdir loop, carefully decide whether each entry will require
17106         an eventual call to fts_stat, using dirent.d_type info if available.
17107         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
17108         a command line argument into this function.  Update all callers.
17109         Map a return value of FTS_DOT to FTS_D for a command line argument.
17110         * modules/fts (Depends-on): Add d-type.  Alphabetize.
17111         Thanks to Miklos Szeredi for his tenacity and for the initial
17112         bug report about "find" failing on a FUSE-based file system.
17113
17114         * lib/fts.c (fts_open): Use consistent indentation.
17115
17116 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
17117
17118         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
17119         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
17120         reported by Jim Meyering.  All uses of cache variables renamed
17121         to match Autoconf's.
17122         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
17123         the other one.
17124
17125         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
17126         Fix misspelling in diagnostic.
17127
17128 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
17129
17130         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
17131         defined.  Problem reported by Matthew Woehlke.
17132
17133         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
17134         Add support for Tandem NonStop R series.
17135         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
17136         Use new macro.
17137
17138         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
17139         (has_trailing_slash): Omit size arg; all callers changed.
17140         Omit 'inline', since it doesn't help performance and we'd
17141         need to configure it.
17142         Don't count //, ///, etc. as having a trailing slash.
17143         As a side effect, this removes a C99ism reported by Matthew Woehlke.
17144         (rpl_rename_dest_slash): On failure, use rename's errno rather
17145         than (in some cases) an incorrect or junk errno.
17146         Simplify code by removing need to compute length; this does
17147         cause it to make two passes instead of one over the file name,
17148         but it's worth it.
17149
17150         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
17151         change, since Autoconf's version may no longer be appropriate now
17152         that we are using CVS Autoconf's version.  Add support for Tandem.
17153
17154 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
17155             Bruno Haible  <bruno@clisp.org>
17156
17157         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
17158         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
17159         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
17160         gl_AC_TYPE_LONG_LONG.
17161
17162         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
17163         instead of HAVE_LONG_LONG.
17164         * lib/printf-args.c (printf_fetchargs): Likewise.
17165         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
17166         * lib/vasnprintf.c (VASNPRINTF): Likewise.
17167         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
17168         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
17169         gl_AC_TYPE_LONG_LONG.
17170
17171 2006-10-11  Bruno Haible  <bruno@clisp.org>
17172
17173         * m4/longlong.m4: Add comments.
17174         * m4/ulonglong.m4: Likewise.
17175
17176 2006-10-10  Bruno Haible  <bruno@clisp.org>
17177
17178         Make it possible to #define stpcpy, strdup to aliases.
17179         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
17180         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
17181
17182 2006-10-10  Bruno Haible  <bruno@clisp.org>
17183
17184         Make it possible to #define gcd to an alias.
17185         * lib/gcd.c: Include config.h.
17186
17187 2006-10-10  Bruno Haible  <bruno@clisp.org>
17188
17189         Make it possible to #define c_isascii to an alias.
17190         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
17191         defined. Undefine the macros before defining them, to avoid gcc
17192         warnings.
17193         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
17194         define NO_C_CTYPE_MACROS early.
17195
17196 2006-10-10  Bruno Haible  <bruno@clisp.org>
17197
17198         Make it possible to #define set_program_name to an alias.
17199         * lib/progname.c: Don't undefine set_program_name; instead, undefine
17200         ENABLE_RELOCATABLE early.
17201
17202 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
17203
17204         Port to Tandem NSK OSS, which has 64-bit signed int but at most
17205         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
17206         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
17207         More generally, don't assume that 64-bit signed int is available
17208         if unsigned int is, and vice versa.
17209         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
17210         unsigned symbols, not on their signed counterparts.
17211         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
17212         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
17213         (UINT64_C, UINTMAX_C):
17214         Likewise.
17215         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
17216         unsigned counterparts.
17217         (Have_long_long, Unsigned): New macros.
17218         (Int): Renamed from INT.
17219         (strtoimax): Use the new macros.
17220         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
17221         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
17222         * modules/inttypes (inttypes.h): Substitute
17223         HAVE_UNSIGNED_LONG_LONG_INT.
17224         * modules/stdint (stdint.h): Likewise.
17225         (Files): Add m4/ulonglong.m4.
17226
17227 2006-10-10  Bruno Haible  <bruno@clisp.org>
17228
17229         Fix a gcc -Wshadow warning.
17230         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
17231         to 'bucket'.
17232         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
17233         gl_linked_indexof_from_to): Likewise.
17234         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
17235         Likewise.
17236         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
17237         Likewise.
17238         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
17239         Reported by Eric Blake.
17240
17241 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
17242
17243         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
17244         for NetBSD.  Problem reported by Bruno Haible.
17245
17246 2006-10-09  Jim Meyering  <jim@meyering.net>
17247
17248         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
17249         Patch from Bruno Haible.
17250
17251 2006-10-09  Jim Meyering  <jim@meyering.net>
17252
17253         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
17254         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
17255         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
17256
17257 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
17258
17259         Don't include <config.h> twice; this doesn't work in some cases,
17260         e.g., when config.h has "#define intmax_t long long int" and
17261         we include <config.h>, <inttypes.h>, <config.h> in that order.
17262         Problem reported by Matthew Woehlke in:
17263         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
17264         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
17265         * lib/fts-cycle.c: Don't include config.h.
17266         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
17267         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
17268         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
17269         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
17270         inttypes.h.
17271         * lib/xstrtoumax.c: Likewise.
17272         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
17273         __strtol and the like, so that this module is more like its siblings.
17274         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
17275         Remove; no longer needed now that we assume gnulib inttypes.h.
17276
17277 2006-10-08  Bruno Haible  <bruno@clisp.org>
17278
17279         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
17280         option.
17281
17282 2006-10-07  Jim Meyering  <jim@meyering.net>
17283
17284         * modules/inttypes (inttypes.h): Revert what seems to have been
17285         an inadvertent part of today's change: use "|", not "/" in the
17286         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
17287
17288 2006-10-07  Bruno Haible  <bruno@clisp.org>
17289
17290         * modules/sublist: New file.
17291
17292 2006-10-07  Bruno Haible  <bruno@clisp.org>
17293
17294         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
17295         * modules/argz (argz.h): Likewise.
17296         * modules/arpa_inet (arpa/inet.h): Likewise.
17297         * modules/byteswap (byteswap.h): Likewise.
17298         * modules/configmake (configmake.h): Likewise.
17299         * modules/fcntl (fcntl.h): Likewise.
17300         * modules/fnmatch (fnmatch.h): Likewise.
17301         * modules/getopt (getopt.h): Likewise.
17302         * modules/glob (glob.h): Likewise.
17303         * modules/inttypes (inttypes.h): Likewise.
17304         * modules/netinet_in (netinet/in.h): Likewise.
17305         * modules/poll (poll.h): Likewise.
17306         * modules/stdbool (stdbool.h): Likewise.
17307         * modules/stdint (stdint.h): Likewise.
17308         * modules/sys_select (sys/select.h): Likewise.
17309         * modules/sys_socket (sys/socket.h): Likewise.
17310         * modules/sys_stat (sys/stat.h): Likewise.
17311         * modules/sysexits (sysexits.h): Likewise.
17312         * modules/unistd (unistd.h): Likewise.
17313         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
17314         Add a "DO NOT EDIT" comment to the generated file.
17315         (func_import): Likewise for gnulib-comp.m4.
17316
17317 2006-10-07  Bruno Haible  <bruno@clisp.org>
17318
17319         * lib/gl_sublist.h: New file.
17320         * lib/gl_sublist.c: New file.
17321
17322 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
17323
17324         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
17325         name (relative to the original working directory) and the file
17326         name component (relative to the temporary working directory).  All
17327         callers changed.
17328         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
17329         * lib/mkdir-p.c (make_dir_parents): Likewise.
17330         * lib/mkdir-p.h (make_dir_parents): Likewise.
17331
17332 2006-10-06  Eric Blake  <ebb9@byu.net>
17333
17334         Define several macros for use by the clean-temp module.
17335         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
17336         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
17337         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
17338
17339         * lib/clean-temp.h (close_stream_temp): New declaration.
17340         * lib/clean-temp.c (includes): Pull in headers according to what
17341         other modules are in use.
17342         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
17343
17344 2006-10-06  Bruno Haible  <bruno@clisp.org>
17345
17346         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
17347         instead of fopen, fwriteerror.
17348
17349 2006-10-06  Bruno Haible  <bruno@clisp.org>
17350
17351         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
17352         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
17353         int.
17354         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
17355         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
17356         Return an error indicator.
17357         Suggested by Eric Blake.
17358
17359 2006-10-06  Bruno Haible  <bruno@clisp.org>
17360
17361         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
17362         Reported by Eric Blake.
17363
17364 2006-10-06  Bruno Haible  <bruno@clisp.org>
17365
17366         * modules/closeout (Description): Mention stderr too.
17367
17368 2006-10-06  Bruno Haible  <bruno@clisp.org>
17369         and Paul Eggert  <eggert@cs.ucla.edu>
17370
17371         * lib/closeout.c (close_stdout): Also close stderr.
17372         * lib/closeout.h: Update comment.
17373
17374 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
17375
17376         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
17377         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
17378         * lib/dirchownmod.c: Include lchown.h.
17379         * lib/lchown.c: Don't include files that lchown.h now includes.
17380         Don't declare chown, since lchown.h now does that.
17381         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
17382         (lchown): Define to rpl_chown if lchown is declared but
17383         does not exist.  Declare using a prototype if lchown is not
17384         declared.  Add a copyright notice.
17385         * lib/mkstemp.h: Include <unistd.h>.
17386         * lib/openat.c: Include lchown.h.
17387
17388         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
17389         we now test for that separately.
17390         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
17391         rather than O_NOFOLLOW, when testing whether it's possible to
17392         avoid a race condition reliably.
17393         * lib/savewd.c (savewd_chdir): Likewise.
17394
17395         Remove macros that are no longer needed now that stdint.h is
17396         reliable.
17397         * lib/fsusage.c (UINTMAX_MAX): Remove.
17398         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
17399         * lib/utimecmp.c (SIZE_MAX): Remove.
17400
17401         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
17402
17403         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
17404         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
17405         O_NOATIME works.
17406
17407 2006-10-05  Bruno Haible  <bruno@clisp.org>
17408
17409         * lib/gl_list.h (gl_sortedlist_search_from_to,
17410         gl_sortedlist_indexof_from_to): New declarations.
17411         (gl_list_implementation): New fields sortedlist_search_from_to,
17412         sortedlist_indexof_from_to.
17413         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
17414         inline functions.
17415         * lib/gl_list.c (gl_sortedlist_search_from_to,
17416         gl_sortedlist_indexof_from_to): New functions.
17417         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
17418         function.
17419         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
17420         (gl_array_sortedlist_search_from_to): New function.
17421         (gl_array_list_implementation): Update.
17422         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
17423         function.
17424         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
17425         (gl_carray_sortedlist_search_from_to): New function.
17426         (gl_carray_list_implementation): Update.
17427         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
17428         gl_linked_sortedlist_indexof_from_to): New functions.
17429         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
17430         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
17431         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
17432         gl_tree_sortedlist_indexof_from_to): New functions.
17433         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
17434         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
17435         Update.
17436         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
17437         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
17438         Update.
17439
17440 2006-10-05  Bruno Haible  <bruno@clisp.org>
17441
17442         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
17443         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
17444         (struct gl_list_implementation): Add fields search_from_to,
17445         indexof_from_to. Remove fields search, indexof.
17446         (gl_list_search): Use the search_from_to method.
17447         (gl_list_search_from, gl_list_search_from_to): New functions.
17448         (gl_list_indexof): Use the indexof_from_to method.
17449         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
17450         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
17451         (gl_list_search_from, gl_list_search_from_to): New functions.
17452         (gl_list_indexof): Use the indexof_from_to method.
17453         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
17454         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
17455         gl_array_indexof. Add start_index, end_index arguments.
17456         (gl_array_search_from_to): Renamed from gl_array_search. Add
17457         start_index, end_index arguments.
17458         (gl_array_remove, gl_array_list_implementation): Update.
17459         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
17460         gl_carray_indexof. Add start_index, end_index arguments.
17461         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
17462         start_index, end_index arguments.
17463         (gl_carray_remove, gl_carray_list_implementation): Update.
17464         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
17465         gl_linked_search. Add start_index, end_index arguments.
17466         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
17467         start_index, end_index arguments.
17468         (gl_linked_remove): Update.
17469         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
17470         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
17471         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
17472         field to 'size_t'.
17473         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
17474         gl_tree_search. Add start_index, end_index arguments.
17475         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
17476         start_index, end_index arguments.
17477         (gl_tree_remove): Update.
17478         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
17479         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
17480         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
17481         function.
17482         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
17483         gl_tree_search. Add start_index, end_index arguments.
17484         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
17485         start_index, end_index arguments.
17486         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
17487         Update.
17488         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
17489
17490 2006-10-05  Bruno Haible  <bruno@clisp.org>
17491
17492         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
17493
17494         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
17495         fwriteerror_temp): New declarations.
17496         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
17497         (descriptors): New variable.
17498         (cleanup): First, close the descriptors.
17499         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
17500         fclose_temp, fwriteerror_temp): New functions.
17501
17502 2006-10-04  Jim Meyering  <jim@meyering.net>
17503
17504         * lib/fts.c (fts_open): Tiny comment change.
17505
17506 2006-10-04  Bruno Haible  <bruno@clisp.org>
17507
17508         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
17509         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
17510         gl_LOCK_BODY.
17511         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
17512         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
17513         gl_LOCK_EARLY_BODY.
17514         (gl_LOCK): Require gl_LOCK_BODY.
17515
17516 2006-10-04  Bruno Haible  <bruno@clisp.org>
17517
17518         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
17519         (gl_oset_search_atleast): New declaration.
17520         (struct gl_oset_implementation): Add field 'search_atleast'.
17521         (gl_oset_search_atleast): New inline function.
17522         * lib/gl_oset.c (gl_oset_search_atleast): New function.
17523         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
17524         (gl_array_oset_implementation): Update.
17525         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
17526         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
17527         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
17528
17529 2006-10-04  Bruno Haible  <bruno@clisp.org>
17530
17531         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
17532
17533 2006-10-03  Bruno Haible  <bruno@clisp.org>
17534
17535         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
17536         from gl_avltreehash_list_implementation.
17537
17538 2006-10-03  Bruno Haible  <bruno@clisp.org>
17539
17540         * lib/gl_oset.c (gl_oset_add): Fix return type.
17541
17542 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
17543
17544         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
17545
17546 2006-10-02  Eric Blake  <ebb9@byu.net>
17547
17548         * modules/strnlen (Depends-on): Add extensions.
17549
17550 2006-10-02  Eric Blake  <ebb9@byu.net>
17551
17552         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
17553         definition in 2.60+.
17554
17555 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
17556
17557         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
17558         checks.
17559
17560 2006-10-02  Bruno Haible  <bruno@clisp.org>
17561
17562         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
17563         to the AUTOMAKE_OPTIONS.
17564         Reported by Jim Meyering.
17565
17566 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
17567
17568         Work around bug in Solaris 10 /proc file system:
17569         /proc/self/fd/NNN/.. isn't the parent directory of
17570         the directory whose file descriptor is NNN.  This needs to
17571         be worked around at run time, not compile time, since a
17572         program might be built on Solaris 8, where things work, and
17573         run on Solaris 10.
17574         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
17575         to use the following interface instead:
17576         (OPENAT_BUFFER_SIZE): New macro.
17577         (openat_proc_name): New function.
17578         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
17579         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
17580         Likewise.
17581         * lib/openat-proc.c: New file.
17582         * modules/openat (Files): Add lib/openat-proc.c.
17583         (Depends-on): Add same-inode, stdbool.
17584         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
17585
17586 2006-09-29  Bruno Haible  <bruno@clisp.org>
17587
17588         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
17589         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
17590         argument. Set stdout_closed before testing for ferror, not after.
17591         (fwriteerror, fwriteerror_no_ebadf): New functions.
17592
17593 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17594
17595         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
17596
17597 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
17598
17599         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
17600         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
17601
17602 2006-09-28  Jim Meyering  <jim@meyering.net>
17603
17604         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
17605         Include <unistd.h>.
17606
17607 2006-09-28  Bruno Haible  <bruno@clisp.org>
17608
17609         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
17610         * modules/linkedhash-list (Depends-on): Likewise.
17611         * modules/rbtreehash-list (Depends-on): Likewise.
17612
17613 2006-09-28  Bruno Haible  <bruno@clisp.org>
17614
17615         * lib/strndup.h: Simplify the redefinition of strndup.
17616         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
17617         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
17618
17619 2006-09-28  Bruno Haible  <bruno@clisp.org>
17620
17621         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
17622         * lib/gl_linkedhash_list.c: Likewise.
17623         * lib/gl_rbtreehash_list.c: Likewise.
17624
17625 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
17626
17627         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
17628         getaddrinfo.
17629
17630         * lib/__fpending.h: Don't include <stdio_ext.h> unless
17631         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
17632         it causes <stdio_ext.h> to cause a compile-time error.
17633         Problem reported by Nelson H. F. Beebe.
17634         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
17635         of HAVE_DECL___PENDING.
17636
17637         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
17638         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
17639         declaration.
17640
17641 2006-09-27  Jim Meyering  <jim@meyering.net>
17642
17643         This file could end up with a definition for a function
17644         named __strndup, rather than rpl_strndup on a system with
17645         incomplete weak_alias support.
17646         * lib/strndup.c (strndup): Rename from __strndup.
17647         Remove #defines that used to map __strndup to strndup.
17648         Don't use K&R prototypes.
17649         Remove LIBC-related code, since this file is not sync'd with glibc.
17650         * lib/strndup.h: Revamp, accordingly.
17651         * m4/strndup.m4: Modernize.
17652
17653 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
17654
17655         * modules/savewd (Depends-on): Add 'raise'.
17656         * lib/savewd.c: Include <signal.h>, for 'raise'.
17657
17658 2006-09-26  Jim Meyering  <jim@meyering.net>
17659
17660         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
17661         when we detect Darwin 8.7.0's acl_get_file bug.
17662         Rearrange to perform the new (below) run-test while $LIBS
17663         contains any acl-related library.  Set USE_ACL at the end.
17664         (gl_ACL_GET_FILE): New function.
17665
17666 2006-09-26  Eric Blake  <ebb9@byu.net>
17667
17668         * lib/verror.c: Include <config.h> unconditionally.
17669
17670 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
17671
17672         * modules/clock-time (Maintainer): Add self.
17673         * modules/getlogin_r (Depends-on): Add extensions.
17674
17675 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17676
17677         * modules/clock-time: New module.
17678         * modules/nanosleep (Depends-on): Add clock-time.
17679         * modules/gethrxtime (Depends-on): Likewise.
17680         * modules/gettime (Depends-on): Likewise.
17681         * modules/settime (Depends-on): Likewise.
17682
17683         * modules/fts-lgpl: Depend on openat.
17684         * modules/mkancesdirs: Depend on savewd.
17685         * modules/mkdir-p: Likewise.
17686
17687 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17688
17689         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
17690
17691         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
17692         `gl_have_arbitrary_file_name_length_limit' to
17693         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
17694         actually works between configure runs.
17695
17696 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17697             Bruno Haible  <bruno@clisp.org>
17698
17699         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
17700
17701 2006-09-25  Jim Meyering  <jim@meyering.net>
17702
17703         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
17704         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
17705
17706 2006-09-25  Eric Blake  <ebb9@byu.net>
17707
17708         * gnulib-tool (func_import, func_create_testdir): Fix typos in
17709         exec's in 2006-09-18 patch when shuffling fds.
17710
17711 2006-09-25  Bruno Haible  <bruno@clisp.org>
17712
17713         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
17714         Reported by Jim Meyering.
17715
17716 2006-09-24  Jim Meyering  <jim@meyering.net>
17717
17718         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
17719         compare a pointer against a literal "0".  That caused failures with
17720         at least HP-UX's hpcc.
17721
17722 2006-09-22  Simon Josefsson  <jas@extundo.com>
17723
17724         * modules/gc-sha1:
17725         * modules/gc-md4:
17726         * modules/gc-hmac-sha1:
17727         * modules/gc-hmac-md5:
17728         * modules/gc-des:
17729         * modules/gc-arcfour: Distribute more files.
17730
17731 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17732
17733         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
17734         (gl_linked_iterator_from_to): Initialize struct completely.
17735         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
17736         (gl_tree_iterator_from_to): Likewise
17737         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
17738         * lib/gl_array_list.c [lint] (gl_array_iterator)
17739         (gl_array_iterator_from_to): Likewise.
17740         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
17741         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
17742         (gl_carray_iterator_from_to): Likewise.
17743
17744         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
17745         * lib/md4.c (md4_process_block): Remove unused variable.
17746         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
17747         parentheses for clarity.
17748
17749 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17750
17751         * modules/bison-i18n (Depends-on): Add gettext.
17752
17753 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17754
17755         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
17756         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
17757         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
17758         also add missing comma that caused broken test.
17759         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
17760         stdlib.h, for `abort'.
17761         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
17762         variables.
17763         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
17764         include unistd.h if present, for `rmdir'.
17765         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
17766         variables.
17767         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
17768         in the process include standard headers for prototypes.
17769         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
17770         gets declared on GNU/Linux.
17771         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
17772         unistd.h, for `rmdir'.
17773         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
17774
17775         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
17776         always true.
17777         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
17778
17779         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
17780
17781 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17782
17783         * gnulib-tool (func_version): Create output all at once.  This
17784         may help avoid triggering unnecessary SIGPIPEs, and at any
17785         rate it doesn't hurt.
17786
17787 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17788             Bruno Haible  <bruno@clisp.org>
17789
17790         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
17791         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
17792         * m4/signed.m4 (bh_C_SIGNED): Likewise.
17793
17794         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
17795         (gl_FUNC_VASPRINTF): Invoke it.
17796
17797 2006-09-22  Bruno Haible  <bruno@clisp.org>
17798
17799         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
17800         getloadavg.c as first argument.
17801
17802 2006-09-22  Bruno Haible  <bruno@clisp.org>
17803
17804         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
17805         at the beginning of the gl_INIT macro.
17806         * modules/getloadavg (configure.ac): Pass $gl_source_base to
17807         gl_GETLOADAVG.
17808
17809 2006-09-22  Bruno Haible  <bruno@clisp.org>
17810
17811         * gnulib-tool (func_create_megatestdir): Don't include the config-h
17812         module.
17813         Suggested by Ralf Wildenhues.
17814
17815 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
17816
17817         Import this patch from libc:
17818
17819         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
17820
17821         * lib/regex_internal.c (re_string_reconstruct): Handle
17822         offset < pstr->valid_raw_len && pstr->offsets_needed case.
17823         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
17824         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
17825         re_string_context_at.
17826
17827         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
17828         now requires it.
17829         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
17830         gl_REGEX now does it for us.
17831         (gl_REGEX): Add test taken from
17832         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
17833
17834         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
17835         Check that large offsets work.  Modernize Autoconf usages.
17836         Prefer "yes" to mean a good thing rather than a bad.
17837         Don't put "#define mkstemp" in config.h, as this might interfere
17838         with standard system headers that "#define mkstemp mkstemp64".
17839
17840         * modules/mkstemp (Depends-on): Add extensions, so that
17841         mkstemp is visible on some platforms.
17842         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
17843         (Include): Change to "mkstemp.h" from <stdlib.h>.
17844         (Files): Add mkstemp.h.
17845
17846         * lib/mkstemp.h: New file, since some standard headers
17847         #define mkstemp.
17848         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
17849         Include "mkstemp.h".
17850         Make the _LIBC code resemble glibc original more,
17851         e.g., use K&R style.
17852         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
17853         (mkstemp): Remove, since mkstemp.h does this for us.
17854         * lib/stdlib--.h: Include mkstemp.h.
17855
17856         Import this patch from libc:
17857
17858         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
17859
17860         * lib/tempname.c (__gen_tempname): Change attempts_min
17861         into a macro.  Use preprocessor to decide how to initialize
17862         attempts [Coverity CID 67].
17863
17864 2006-09-20  Bruno Haible  <bruno@clisp.org>
17865
17866         * lib/mkdtemp.c: Import from libc.
17867         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
17868                 * sysdeps/posix/tempname.c (__gen_tempname): Change
17869                 attempts_min into a macro.  Use preprocessor to decide how to
17870                 initialize attempts [Coverity CID 67].
17871         2001-11-27  Paul Eggert  <eggert@twinsun.com>
17872                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
17873                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
17874
17875 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17876
17877         * gnulib-tool (func_exit): New function, to allow to pass the
17878         exit status portably through the trap.  Use everywhere.
17879         (--help, --version): Signal a write error.
17880         (trap): catch SIGPIPE, for write errors.
17881         Exit at the end of the trap, with the correct exit status.
17882
17883 2006-09-19  Karl Berry  <karl@gnu.org>
17884
17885         * doc/gnulib.texi: note about the license texinfo files.
17886
17887 2006-09-19  Eric Blake  <ebb9@byu.net>
17888
17889         * gnulib-tool: Avoid space-tab.
17890
17891 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
17892
17893         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
17894         that prevented coreutils 6.1 from building.  Problem reported
17895         by Petter Reinholdtsen.
17896
17897 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
17898
17899         * gnulib-tool (avoidlist): Fix typo that broke options like
17900         --avoid=lock that are used by coreutils bootstrap.
17901
17902 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
17903
17904         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
17905         more systematically.
17906
17907 2006-09-18  Jim Meyering  <jim@meyering.net>
17908
17909         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
17910
17911 2006-09-18  Bruno Haible  <bruno@clisp.org>
17912
17913         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
17914
17915 2006-09-18  Bruno Haible  <bruno@clisp.org>
17916
17917         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
17918         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
17919         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
17920         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
17921         * m4/gettext.m4: Require autoconf >= 2.52.
17922         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
17923         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
17924         of gl_cv_header_inttypes_h.
17925
17926 2006-09-18  Bruno Haible  <bruno@clisp.org>
17927
17928         * lib/javaversion.c: Include configmake.h.
17929
17930 2006-09-18  Bruno Haible  <bruno@clisp.org>
17931
17932         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
17933         avoid that the while loops be executed in a subshell.
17934
17935 2006-09-18  Bruno Haible  <bruno@clisp.org>
17936
17937         * MODULES.html.sh (func_module): Break long lines.
17938         Suggested by Bruce Korb <bkorb@gnu.org>.
17939
17940 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17941
17942         Speed up by a factor of 1.12.
17943         * gnulib-tool (nl): New variable.
17944         (func_import): Rewrite include directive extraction to only read each
17945         directive once.
17946
17947 2006-09-17  Bruno Haible  <bruno@clisp.org>
17948
17949         * modules/javaversion (Makefile.am): Remove DEFS setting.
17950         (Depends-on): Add configmake, for PKGDATADIR definition.
17951
17952 2006-09-17  Bruno Haible  <bruno@clisp.org>
17953
17954         * gnulib-tool (func_create_testdir): Rewrite all files at once.
17955
17956 2006-09-17  Bruno Haible  <bruno@clisp.org>
17957
17958         * gnulib-tool (func_append): New function, stolen from libtool.m4.
17959         (func_modules_transitive_closure, func_modules_add_dummy,
17960         func_modules_to_filelist, func_import, func_create_testdir,
17961         func_create_megatestdir, ...): Use it wherever possible.
17962         Suggested by Ralf Wildenhues.
17963
17964 2006-09-16  Karl Berry  <karl@gnu.org>
17965
17966         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
17967         to avoid sectioning errors.
17968         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
17969         [ifinfo]: blank line after @center-ed titles.
17970         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
17971         Spell FSF address consistently with others.
17972         (These changes approved by rms.)
17973
17974 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17975
17976         Speed up by a factor of 1.61.
17977         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
17978         already checked module names again.
17979
17980 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17981
17982         Speed up by a factor of 1.13.
17983         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
17984         for new_files, and the input to func_add_or_update.
17985
17986 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17987
17988         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
17989         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
17990
17991 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
17992
17993         * modules/mkancesdirs (Depends-on): Add fcntl.
17994         * modules/savewd: New file.
17995         * MODULES.html.sh (File system functions): Add savewd.
17996
17997         * modules/configmake (Makefile.am): Add support for the
17998         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
17999
18000 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
18001
18002         * m4/savewd.m4: New file.
18003
18004 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
18005
18006         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
18007         (dirchownmod): New arg FD.  All callers changed.
18008         Use FD rather than opening the directory ourself, as opening is
18009         now the caller's responsibility.
18010         * lib/dirchownmod.h: Likewise.
18011         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
18012         hosts that require <sys/types.h> before <sys/stat.h>.  Include
18013         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
18014         (test_dir): Remove.
18015         (mkancesdirs): Return length of prefix of FILE that has already
18016         been made, or -2 if there is a child doing the work.  Redo
18017         algorithm so that it is O(N) rather than O(N**2).  Optimize away
18018         ".", and treat ".." specially since it might stray back into
18019         already-created areas.  Use a subprocess if necessary.  New arg
18020         WD; all users changed.  MAKE_DIR function should now return 1
18021         if it creates a directory that is not readable.  Return -2 if
18022         a child process is spun off.
18023         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
18024         Adjust signature to match code.
18025         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
18026         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
18027         all users changed.
18028         * lib/savewd.c, lib/savewd.h: New files.
18029
18030 2006-09-15  Jim Meyering  <jim@meyering.net>
18031
18032         * modules/rename-dest-slash: New module.
18033         * MODULES.html.sh (posix_compat): Add it here.
18034
18035         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
18036
18037 2006-09-15  Jim Meyering  <jim@meyering.net>
18038
18039         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
18040         file.
18041
18042         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
18043
18044 2006-09-15  Jim Meyering  <jim@meyering.net>
18045
18046         * lib/rename-dest-slash.c (has_trailing_slash): Use
18047         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
18048         (rpl_rename_dest_slash): Perform the cheaper trailing slash
18049         test before testing whether SRC is a directory.
18050         Suggestions from Bruno Haible.
18051
18052         Avoid a warning about an unused variable.
18053         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
18054         into the #ifdef block where it's used.
18055
18056         * lib/rename-dest-slash.c: New file.
18057
18058 2006-09-14  Bruno Haible  <bruno@clisp.org>
18059
18060         * lib/allocsa.c: Include <config.h> unconditionally.
18061         * lib/asnprintf.c: Likewise.
18062         * lib/asprintf.c: Likewise.
18063         * lib/c-strcasecmp.c: Likewise.
18064         * lib/c-strcasestr.c: Likewise.
18065         * lib/c-strncasecmp.c: Likewise.
18066         * lib/c-strstr.c: Likewise.
18067         * lib/classpath.c: Likewise.
18068         * lib/clean-temp.c: Likewise.
18069         * lib/concatpath.c: Likewise.
18070         * lib/copy-file.c: Likewise.
18071         * lib/csharpcomp.c: Likewise.
18072         * lib/csharpexec.c: Likewise.
18073         * lib/execute.c: Likewise.
18074         * lib/fatal-signal.c: Likewise.
18075         * lib/findprog.c: Likewise.
18076         * lib/fwriteerror.c: Likewise.
18077         * lib/gl_array_list.c: Likewise.
18078         * lib/gl_array_oset.c: Likewise.
18079         * lib/gl_avltree_list.c: Likewise.
18080         * lib/gl_avltree_oset.c: Likewise.
18081         * lib/gl_avltreehash_list.c: Likewise.
18082         * lib/gl_carray_list.c: Likewise.
18083         * lib/gl_linked_list.c: Likewise.
18084         * lib/gl_linkedhash_list.c: Likewise.
18085         * lib/gl_list.c: Likewise.
18086         * lib/gl_oset.c: Likewise.
18087         * lib/gl_rbtree_list.c: Likewise.
18088         * lib/gl_rbtree_oset.c: Likewise.
18089         * lib/gl_rbtreehash_list.c: Likewise.
18090         * lib/imaxabs.c: Likewise.
18091         * lib/imaxdiv.c: Likewise.
18092         * lib/javacomp.c: Likewise.
18093         * lib/javaexec.c: Likewise.
18094         * lib/javaversion.c: Likewise.
18095         * lib/linebreak.c: Likewise.
18096         * lib/localcharset.c: Likewise.
18097         * lib/lock.c: Likewise.
18098         * lib/mbchar.c: Likewise.
18099         * lib/mbswidth.c: Likewise.
18100         * lib/mkdtemp.c: Likewise.
18101         * lib/pipe.c: Likewise.
18102         * lib/printf-args.c: Likewise.
18103         * lib/printf-parse.c: Likewise.
18104         * lib/progname.c: Likewise.
18105         * lib/progreloc.c: Likewise.
18106         * lib/readlink.c: Likewise.
18107         * lib/sh-quote.c: Likewise.
18108         * lib/stpcpy.c: Likewise.
18109         * lib/stpncpy.c: Likewise.
18110         * lib/strcasecmp.c: Likewise.
18111         * lib/strcasestr.c: Likewise.
18112         * lib/strcspn.c: Likewise.
18113         * lib/striconv.c: Likewise.
18114         * lib/strncasecmp.c: Likewise.
18115         * lib/strnlen1.c: Likewise.
18116         * lib/strstr.c: Likewise.
18117         * lib/strtok_r.c: Likewise.
18118         * lib/tls.c: Likewise.
18119         * lib/tmpdir.c: Likewise.
18120         * lib/unicodeio.c: Likewise.
18121         * lib/unsetenv.c: Likewise.
18122         * lib/vasnprintf.c: Likewise.
18123         * lib/vasprintf.c: Likewise.
18124         * lib/wait-process.c: Likewise.
18125         * lib/xallocsa.c: Likewise.
18126         * lib/xsetenv.c: Likewise.
18127         * lib/xstriconv.c: Likewise.
18128
18129 2006-09-13  Simon Josefsson  <jas@extundo.com>
18130
18131         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
18132         that internally, suggested by Ralf Wildenhues
18133         <Ralf.Wildenhues@gmx.de>.
18134
18135 2006-09-13  Simon Josefsson  <jas@extundo.com>
18136
18137         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
18138         @LIBOBJS@.
18139         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18140
18141 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
18142
18143         * lib/_fpending.c: Include <config.h> unconditionally, since we no
18144         longer worry about uses that don't define HAVE_CONFIG_H.
18145         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
18146         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
18147         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
18148         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
18149         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
18150         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
18151         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
18152         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
18153         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
18154         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
18155         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
18156         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
18157         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
18158         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
18159         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
18160         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
18161         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
18162         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
18163         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
18164         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
18165         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
18166         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
18167         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
18168         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
18169         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
18170         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
18171         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
18172         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
18173         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
18174         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
18175         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
18176         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
18177         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
18178         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
18179         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
18180         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
18181         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
18182         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
18183         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
18184         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
18185         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
18186         Likewise.
18187
18188 2006-09-13  Eric Blake  <ebb9@byu.net>
18189
18190         * lib/getopt.c: Fix typo in last commit.
18191
18192 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
18193
18194         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
18195         dgettext.
18196
18197 2006-09-12  Jim Meyering  <jim@meyering.net>
18198
18199         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
18200         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
18201         Reported by Nelson H. F. Beebe.
18202
18203 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
18204
18205         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
18206         program_invocation_name and program_invocation_short_name are
18207         initialized.
18208         * lib/argp-namefrob.h: Move declarations of program_invocation_name
18209         and program_invocation_short_name to argp.h, so they are visible
18210         to user programs.
18211         * lib/argp.h: Likewise
18212
18213 2006-09-10  Bruno Haible  <bruno@clisp.org>
18214
18215         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
18216         m4/inttypes_h.m4, m4/uintmax_t.m4.
18217
18218 2006-09-10  Bruno Haible  <bruno@clisp.org>
18219
18220         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
18221         gl_AC_TYPE_UINTMAX_T.
18222
18223 2006-09-10  Bruno Haible  <bruno@clisp.org>
18224
18225         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
18226
18227 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
18228
18229         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
18230         convention.  Text proposed by Bruno Haible.
18231         (struct argp_option): Document the use of N_() wrappers.
18232
18233         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
18234         '\v', and translate the two parts separately, instead of feeding
18235         the whole string to gettext.  This allows to exclude
18236         '\v' from the strings visible to the translator by writing doc
18237         strings as N_("..") "\v" N_("..").
18238
18239 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
18240
18241         * config/srclist.txt: Undo latest change; the bug was fixed.
18242
18243 2006-09-09  Bruno Haible  <bruno@clisp.org>
18244
18245         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
18246         assignments if building a library without libtool.
18247         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
18248         in func_emit_lib_Makefile_am.
18249         (func_import): When building a static library libfoo.a, arrange to
18250         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
18251         (func_create_testdir): Likewise.
18252         * modules/gc (configure.ac, Makefile.am): If building statically,
18253         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
18254         * modules/iconvme (configure.ac, Makefile.am): Likewise.
18255         * modules/striconv (configure.ac, Makefile.am): Likewise.
18256         Based on a suggestion by Ralf Wildenhues.
18257
18258 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
18259
18260         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
18261         Check for unistd.h too, since Autoconf doesn't assume POSIX.
18262         Also:
18263
18264         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
18265         Add year_2050_test to catch glibc bug 2821
18266         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
18267
18268         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
18269         Prefer #ifdef to #if.
18270
18271         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
18272         Return from 'main' instead of calling 'exit'.
18273
18274 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
18275
18276         * lib/mktime.c (guess_time_tm): Fix bug where mktime
18277         returned the maximum time_t value rather than (time_t) -1.
18278         Problem originally reported by William Bardwell
18279         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
18280
18281         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
18282         Moved to here ...
18283         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
18284         ... from here.
18285
18286 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
18287
18288         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
18289         2821 is fixed.
18290
18291 2006-09-08  Jim Meyering  <jim@meyering.net>
18292
18293         Don't make generated files read-only.  That would bother too many
18294         people.  However, do retain the ability to work when targets are
18295         read-only: remove the destination and temporary files before writing
18296         them (when generated via sed or echo), or by using the -f option for
18297         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
18298         * modules/alloca-opt, modules/argz, modules/arpa_inet:
18299         * modules/byteswap, modules/configmake, modules/fcntl:
18300         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
18301         * modules/localcharset, modules/netinet_in, modules/poll:
18302         * modules/stdbool, modules/stdint, modules/sys_select:
18303         * modules/sys_socket, modules/sys_stat, modules/sysexits:
18304
18305 2006-09-08  Jim Meyering  <jim@meyering.net>
18306
18307         Avoid new build failure on FreeBSD 6.0.
18308         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
18309         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
18310         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
18311
18312 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18313
18314         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
18315
18316 2006-09-07  Jim Meyering  <jim@meyering.net>
18317
18318         Fix global typo in last change: use chmod u-w, not chmod u-x.
18319         Spotted by Paul Eggert and Bruce Korb.
18320         * modules/alloca-opt, modules/argz, modules/arpa_inet:
18321         * modules/byteswap, modules/configmake, modules/fcntl:
18322         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
18323         * modules/localcharset, modules/netinet_in, modules/poll:
18324         * modules/stdbool, modules/stdint, modules/sys_select:
18325         * modules/sys_socket, modules/sys_stat, modules/sysexits:
18326
18327 2006-09-06  Jim Meyering  <jim@meyering.net>
18328
18329         Make generated files be read-only.
18330         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
18331         Ensure that each generated file is now read-only.
18332         * modules/argz: Likewise.
18333         * modules/arpa_inet: Likewise.
18334         * modules/byteswap: Likewise.
18335         * modules/configmake: Likewise.
18336         * modules/fcntl: Likewise.
18337         * modules/fnmatch: Likewise.
18338         * modules/getopt: Likewise.
18339         * modules/glob: Likewise.
18340         * modules/inttypes: Likewise.
18341         * modules/netinet_in: Likewise.
18342         * modules/poll: Likewise.
18343         * modules/stdbool: Likewise.
18344         * modules/stdint: Likewise.
18345         * modules/sys_select: Likewise.
18346         * modules/sys_socket: Likewise.
18347         * modules/sys_stat: Likewise.
18348         * modules/sysexits: Likewise.
18349         * modules/localcharset: Same as above, but continue using temporary
18350         file named "t-$@" (why different?) rather than the "$@-t" used
18351         everywhere else.
18352
18353         * modules/sysexits (Makefile.am): Replace literal occurrences
18354         of "sysexit.h" more readable, and more consistent, "$@".
18355
18356 2006-09-06  Bruno Haible  <bruno@clisp.org>
18357
18358         * modules/striconv: New file.
18359         * modules/xstriconv: New file.
18360         * MODULES.html.sh (Internationalization functions): Add striconv,
18361         xstriconv.
18362
18363 2006-09-06  Bruno Haible  <bruno@clisp.org>
18364
18365         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
18366         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
18367         not using libtool correctly.
18368
18369 2006-09-06  Bruno Haible  <bruno@clisp.org>
18370
18371         * lib/striconv.h: New file.
18372         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
18373         iconvstring.c.
18374         * lib/xstriconv.h: New file.
18375         * lib/xstriconv.c: New file.
18376
18377 2006-09-06  Bruno Haible  <bruno@clisp.org>
18378
18379         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
18380         lib_..._LDFLAGS.
18381
18382 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18383
18384         * lib/argz_.h: Sync from Libtool.
18385
18386         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
18387                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
18388
18389         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
18390
18391 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
18392
18393         * modules/trim: New file.
18394
18395 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
18396
18397         * lib/trim.h: New file.
18398         * lib/trim.c: New file.
18399
18400 2006-09-05  Bruno Haible  <bruno@clisp.org>
18401
18402         * MODULES.html.sh (String handling): Add trim.
18403
18404 2006-09-04  Karl Berry  <karl@gnu.org>
18405
18406         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
18407         until next release.
18408
18409 2006-09-03  Bruno Haible  <bruno@clisp.org>
18410
18411         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
18412         correctly.
18413
18414 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
18415
18416         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
18417         not gl_GETLOADAVG.  Omit unneeded semicolons.
18418         Problems reported by Ralf Wildenhues in
18419         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
18420         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
18421         at the end, which is the usual gnulib style.
18422
18423         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
18424         of doing all the work ourselves.
18425         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
18426         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
18427
18428 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
18429
18430         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
18431         Problem reported by Ralf Wildenhues in
18432         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
18433
18434         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
18435         HAVE_STRUCT_STATFS_F_FSTYPENAME.
18436
18437 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
18438
18439         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
18440         yesterday's patch by changing test -n to test -z.
18441
18442 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18443
18444         * modules/getloadavg (Files): Add m4/getloadavg.m4.
18445         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
18446         the former is now obsolescent.
18447
18448         * modules/chdir-long (Depends-on): Add fcntl.
18449
18450 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18451
18452         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
18453         obsolescent, and programs should use gnulib instead.
18454         * m4/getloadavg.m4: New file, with contents taken from Autoconf
18455         but with prefixes changed.
18456
18457 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
18458
18459         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
18460         or stdbool.h, because they might not exist while configuring.
18461
18462         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
18463         Don't include unistd.h or limits.h; not needed, since chdir-long.h
18464         does that for us.
18465         (O_DIRECTORY): Remove.
18466
18467 2006-08-31  Eric Blake  <ebb9@byu.net>
18468
18469         * gnulib-tool: Don't let emacs change spaces to TAB.
18470
18471 2006-08-31  Bruno Haible  <bruno@clisp.org>
18472
18473         * gnulib-tool: When calling func_import more than once, do it in a
18474         subshell.
18475         Reported by Eric Blake <ebb9@byu.net>.
18476
18477 2006-08-31  Bruno Haible  <bruno@clisp.org>
18478
18479         * gnulib-tool (nl): Remove variable.
18480         (sed_transform_lib_file): Use more robust test for config-h module.
18481         (func_import): Fix typo in 2006-08-25 patch.
18482
18483 2006-08-31  Bruno Haible  <bruno@clisp.org>
18484
18485         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
18486         specified, augment Makefile.am variables instead of assigning them.
18487
18488 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
18489
18490         Work around a bug in both the Linux and SunOS 64-bit kernels:
18491         nanosleep mishandles sleeps for longer than 2**31 seconds.
18492         Problem reported by Frank v Waveren in
18493         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
18494         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
18495         Check for nanosleep bug.
18496         (LIB_NANOSLEEP): Append clock_gettime library if needed.
18497
18498 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
18499
18500         Work around a bug in both the Linux and SunOS 64-bit kernels:
18501         nanosleep mishandles sleeps for longer than 2**31 seconds.
18502         Problem reported by Frank v Waveren in
18503         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
18504         * lib/nanosleep.c (BILLION): New constant.
18505         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
18506         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
18507         implementation.
18508
18509 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
18510
18511         * modules/nanosleep (Depends-on): Add gettime.
18512
18513 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
18514         and Simon Josefsson  <jas@extundo.com>
18515         and Oskar Liljeblad  <oskar@osk.mine.nu>
18516
18517         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
18518         * gnulib-tool (func_import): New license type 'unmodifiable license
18519         text'.
18520         * modules/fdl: Use it.  Longer description.
18521         * module/gpl, module/lgpl: New files.
18522
18523 2006-08-30  Jim Meyering  <jim@meyering.net>
18524
18525         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
18526         shadowing the parameter.
18527
18528 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18529
18530         Sync from Libtool:
18531
18532         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18533
18534         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
18535         sharing with gnulib.  Report by Eric Blake.
18536
18537 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
18538
18539         * modules/isapipe: New file.
18540         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
18541
18542 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
18543
18544         * modules/configmake (Makefile.am): Add a comment, and omit
18545         the CONFIGMAKE_ prefix from generated macro names.  Suggested
18546         by Bruno Haible.
18547
18548 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
18549
18550         * m4/isapipe.m4: New file.
18551
18552 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
18553
18554         * lib/isapipe.c, lib/isapipe.h: New files.
18555
18556 2006-08-29  Jim Meyering  <jim@meyering.net>
18557
18558         * modules/configmake (Makefile.am): Make configmake.h depend on
18559         Makefile.  Otherwise, a stale configmake.h could hang around.
18560
18561 2006-08-29  Eric Blake  <ebb9@byu.net>
18562
18563         * lib/error.c (error_at_line, print_errno_message): Match libc, after
18564         resolution of upstream bug 3044.
18565
18566 2006-08-29  Bruno Haible  <bruno@clisp.org>
18567
18568         * modules/localcharset (Depends-on): Add configmake.
18569         (Makefile.am): Remove setting of LIBDIR through DEFS.
18570
18571 2006-08-29  Bruno Haible  <bruno@clisp.org>
18572
18573         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
18574         defined.
18575
18576 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18577
18578         * modules/fcntl: New file.
18579         * modules/chdir-safer (Depends-on): Add fcntl.
18580         * modules/fts: Likewise.
18581         * modules/mkdir-p: Likewise.
18582
18583         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
18584         This undoes the most recent change, since we're now addressing the
18585         problem in a different way.
18586
18587         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
18588         into output, since the output might be called Makefile.am even
18589         if $makefile_name is something different.
18590         (func_import): Use $makefile_am rather than
18591         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
18592         empty.
18593
18594         * modules/inttypes (Files): Add m4/inttypes-h.m4.
18595
18596 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18597
18598         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
18599         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
18600         recent change to stdint.m4, since we're now addressing the problem in a
18601         different way.
18602
18603 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18604
18605         * m4/fcntl_h.m4: New file.
18606
18607 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18608
18609         * lib/fcntl_.h: New file.
18610         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
18611         the fcntl module.
18612         * lib/dirchownmod.c: Likewise.
18613         * lib/fts.c: Likewise.
18614
18615         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
18616         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
18617         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
18618         just before including <inttypes.h>, to avoid circular inclusion.
18619
18620 2006-08-28  Jim Meyering  <jim@meyering.net>
18621
18622         * doc/visibility.texi: Actually read and correct the grammar of the
18623         sentence affected by yesterday's change.
18624
18625 2006-08-28  Eric Blake  <ebb9@byu.net>
18626
18627         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
18628         needs wrapper.
18629
18630 2006-08-28  Eric Blake  <ebb9@byu.net>
18631
18632         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
18633
18634 2006-08-28  Eric Blake  <ebb9@byu.net>
18635
18636         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
18637
18638 2006-08-28  Bruno Haible  <bruno@clisp.org>
18639
18640         * modules/c-strstr: New file, from GNU gettext.
18641         * MODULES.html.sh (String handling): Add c-strstr.
18642
18643 2006-08-28  Bruno Haible  <bruno@clisp.org>
18644
18645         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
18646         macros.
18647         Reported by Eric Blake.
18648
18649 2006-08-28  Bruno Haible  <bruno@clisp.org>
18650
18651         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
18652         (VASNPRINTF): Return a string of length > INT_MAX without failing.
18653         * lib/vasprintf.c: Include errno.h, limits.h.
18654         (EOVERFLOW): New fallback definition.
18655         (vasprintf): Test here whether the string length is > INT_MAX.
18656         * lib/vsnprintf.c: Include errno.h, limits.h.
18657         (EOVERFLOW): New fallback definition.
18658         (vsnprintf): Fix bug when generated string was too long for the buffer.
18659         Test here whether the string length is > INT_MAX.
18660
18661 2006-08-28  Bruno Haible  <bruno@clisp.org>
18662
18663         * lib/inttypes_.h (SCNX*): Remove definitions.
18664         Reported by Eric Blake.
18665
18666 2006-08-28  Bruno Haible  <bruno@clisp.org>
18667
18668         * lib/c-strstr.h: New file, from GNU gettext.
18669         * lib/c-strstr.c: New file, from GNU gettext.
18670
18671 2006-08-28  Bruno Haible  <bruno@clisp.org>
18672
18673         * gnulib-tool: Reorder some statements.
18674
18675 2006-08-28  Bruno Haible  <bruno@clisp.org>
18676
18677         * gnulib-tool: New option --makefile-name.
18678         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
18679         $makefile_name.
18680         (func_import): Write $makefile_name to the cache file, and read it from
18681         there unless explicitly specified. Use $makefile_name as file name
18682         instead of Makefile.am. Adjust the recommendations accordingly.
18683
18684 2006-08-28  Bruno Haible  <bruno@clisp.org>
18685
18686         * gnulib-tool (func_verify_module): Check against misapplying patch.
18687
18688 2006-08-28  Bruno Haible  <bruno@clisp.org>
18689
18690         * gnulib-tool (func_relativize, func_relconcat): New functions.
18691         Give an error if --local-dir is given with --update.
18692         Remove trailing slashes from $local_gnulib_dir.
18693         (func_import): Store the relativized $local_gnulib_dir in
18694         gnulib-cache.m4, and read it from there if not specified explicitly.
18695
18696 2006-08-28  Bruno Haible  <bruno@clisp.org>
18697
18698         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
18699         is the current directory. Respect also $local_gnulib_dir.
18700
18701 2006-08-28  Bruno Haible  <bruno@clisp.org>
18702             Simon Josefsson  <jas@extundo.com>
18703
18704         BeOS portability.
18705         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
18706
18707 2006-08-27  Jim Meyering  <jim@meyering.net>
18708
18709         * doc/visibility.texi: Remove duplicate word: "pointer".
18710
18711 2006-08-26  Bruno Haible  <bruno@clisp.org>
18712
18713         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
18714         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
18715         (Makefile.am): Create inttypes.h from inttypes_.h.
18716         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
18717
18718         * modules/imaxabs: New file.
18719
18720         * modules/imaxdiv: New file.
18721
18722 2006-08-26  Bruno Haible  <bruno@clisp.org>
18723
18724         * m4/inttypes.m4: New file.
18725         * m4/_inttypes_h.m4: Remove file.
18726         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
18727         PRI_MACROS_BROKEN.
18728         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
18729
18730         * m4/imaxabs.m4: New file.
18731
18732         * m4/imaxdiv.m4: New file.
18733
18734 2006-08-26  Bruno Haible  <bruno@clisp.org>
18735
18736         * lib/inttypes_.h: New file.
18737         * lib/inttypes.h: Remove file.
18738         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
18739
18740         * lib/imaxabs.c: New file.
18741
18742         * lib/imaxdiv.c: New file.
18743
18744 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18745
18746         New config-h module, so that "make" output needn't be cluttered
18747         by -DHAVE_CONFIG_H.
18748         * MODULES.html.sh (Support for building libraries and executables):
18749         Add config-h.
18750         * modules/config-h: New file.
18751         * gnulib-tool (nl, sed_transform_lib_file): New vars.
18752         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
18753         the config-h module is used.
18754
18755         New configmake module, so that "make" output needn't be cluttered
18756         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
18757         * MODULES.html.sh (Support for building libraries and executables):
18758         Add configmake.
18759         * modules/configmake: New file.
18760
18761 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
18762
18763         * m4/config-h.m4: New file.
18764
18765 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18766
18767         * config/srclist.txt: Add elisp-comp.
18768
18769 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
18770
18771         * MODULES.html.sh (Support for building libraries and executables):
18772         Add elisp-comp.
18773         * build-aux/elisp-comp: New file.
18774         * modules/elisp-comp: New file.
18775
18776 2006-08-24  Bruno Haible  <bruno@clisp.org>
18777
18778         * gnulib-tool (func_create_testdir): Use non-default values of
18779         sourcebase and m4base.
18780
18781 2006-08-24  Bruno Haible  <bruno@clisp.org>
18782
18783         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
18784         HTML structure.
18785
18786 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
18787
18788         * modules/openat (Depends-on): Add lchown.
18789
18790 2006-08-23  Bruno Haible  <bruno@clisp.org>
18791
18792         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
18793         of gl_LOCK_EARLY instead of gl_LOCK.
18794
18795 2006-08-23  Bruno Haible  <bruno@clisp.org>
18796
18797         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
18798         on OSF/1 to no.
18799         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
18800
18801 2006-08-23  Bruno Haible  <bruno@clisp.org>
18802
18803         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
18804         as unusable.
18805
18806         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
18807         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
18808         (gl_LOCK): New macro.
18809
18810 2006-08-22  Simon Josefsson  <jas@extundo.com>
18811
18812         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
18813         to md5 module.
18814
18815 2006-08-22  Simon Josefsson  <jas@extundo.com>
18816
18817         * MODULES.html.sh: Add "Support for maintaining and release
18818         projects".
18819
18820         * build-aux/gnupload: New file, from coreutils.
18821
18822 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
18823
18824         Avoid the need for AC_LIBSOURCES in m4 macros.
18825         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
18826         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
18827         * modules/check-version (EXTRA_DIST): Add check-version.h.
18828         * modules/crc (EXTRA_DIST): Add crc.h.
18829         * modules/des (EXTRA_DIST): Add des.h.
18830         * modules/gc (EXTRA_DIST): Add gc.h.
18831         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
18832         * modules/getline (EXTRA_DIST): Add getline.h.
18833         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
18834         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
18835         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
18836         * modules/md2 (EXTRA_DIST): Add md2.h.
18837         * modules/md4 (EXTRA_DIST): Add md4.h.
18838         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
18839         * modules/read-file (EXTRA_DIST): Add read-file.h.
18840         * modules/readline (EXTRA_DIST): Add readline.h.
18841         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
18842         rijndael-api-fst.h.
18843
18844 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
18845
18846         * m4/rijndael.m4 (gl_ARCFOUR):
18847         * m4/arctwo.m4 (gl_ARCTWO):
18848         * m4/check-version.m4 (gl_CHECK_VERSION):
18849         * m4/crc.m4 (gl_CRC):
18850         * m4/des.m4 (gl_DES):
18851         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
18852         * m4/gc.m4 (gl_GC):
18853         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
18854         * m4/getline.m4 (gl_FUNC_GETLINE):
18855         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
18856         * m4/hmac-md5.m4 (gl_HMAC_MD5):
18857         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
18858         * m4/md2.m4 (gl_MD2):
18859         * m4/md4.m4 (gl_MD4):
18860         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
18861         * m4/read-file.m4 (gl_FUNC_READ_FILE):
18862         * m4/readline.m4 (gl_FUNC_READLINE):
18863         * m4/rijndael.m4 (gl_RIJNDAEL):
18864         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
18865         to get the necessary .h files and whatnot.
18866
18867 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
18868
18869         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
18870         gnulib rather than the other way around.
18871         * config/srclistvars.sh (COREUTILS): Remove.
18872
18873 2006-08-22  Jim Meyering  <jim@meyering.net>
18874
18875         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
18876
18877         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
18878
18879 2006-08-22  Eric Blake  <ebb9@byu.net>
18880
18881         * modules/regexprops-generic: New file.
18882         * MODULES.html.sh (Support for building documentation): List it.
18883
18884 2006-08-22  Eric Blake  <ebb9@byu.net>
18885
18886         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
18887         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
18888         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
18889         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
18890
18891 2006-08-22  Bruno Haible  <bruno@clisp.org>
18892
18893         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
18894         and lib_LTLIBRARIES like the other lib_* variables.
18895
18896 2006-08-22  Bruno Haible  <bruno@clisp.org>
18897
18898         * build-aux/x-to-1.in: New file, from GNU gettext.
18899
18900 2006-08-22  Bruno Haible  <bruno@clisp.org>
18901
18902         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
18903         <utmpx.h> exists.
18904
18905 2006-08-22  Bruno Haible  <bruno@clisp.org>
18906
18907         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
18908         <utmpx.h> exists.
18909
18910 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
18911
18912         BeOS portability.
18913         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
18914         exist.
18915         Problem reported by Bruno Haible.
18916
18917 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
18918
18919         Avoid the need for AC_LIBSOURCES in m4 macros.
18920         * modules/acl (EXTRA_DIST): Add acl.h.
18921         * modules/argmatch (Files): Add m4/argmatch.m4.
18922         (configure.ac): Add gl_ARGMATCH.
18923         (EXTRA_DIST): Renamed from lib_SOURCES, for
18924         consistency with the other modules.  Remove argmatch.c.
18925         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
18926         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
18927         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
18928         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
18929         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
18930         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
18931         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
18932         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
18933         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
18934         * modules/closeout (EXTRA_DIST): Add closeout.h.
18935         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
18936         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
18937         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
18938         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
18939         dirname.h; remove basename.c and stripslash.c.
18940         * modules/exclude (EXTRA_DIST): Add exclude.h.
18941         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
18942         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
18943         * modules/file-type (EXTRA_DIST): Add file-type.h.
18944         * modules/filemode (EXTRA_DIST): Add filemode.h.
18945         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
18946         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
18947         * modules/fpending (EXTRA_DIST): Add __fpending.h.
18948         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
18949         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
18950         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
18951         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
18952         * modules/getdate (EXTRA_DIST): Add getdate.c.
18953         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
18954         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
18955         * modules/getpass (EXTRA_DIST): Add getpass.h.
18956         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
18957         * modules/group-member (EXTRA_DIST): Add group-member.h.
18958         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
18959         * modules/hash (EXTRA_DIST): Add hash.h.
18960         * modules/human (EXTRA_DIST): Add human.h.
18961         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
18962         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
18963         * modules/lchown (EXTRA_DIST): Add lchown.h.
18964         * modules/long-options (EXTRA_DIST): Add long-options.h.
18965         * modules/lstat (EXTRA_DIST): Add lstat.h.
18966         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
18967         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
18968         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
18969         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
18970         * modules/memxor (EXTRA_DIST): Add memxor.h.
18971         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
18972         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
18973         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
18974         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
18975         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
18976         * modules/physmem (EXTRA_DIST): Add physmem.h.
18977         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
18978         * modules/posixver (EXTRA_DIST): Add posixver.h.
18979         * modules/quote (EXTRA_DIST): Add quote.h.
18980         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
18981         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
18982         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
18983         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
18984         regex_internal.h regexec.c.
18985         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
18986         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
18987         * modules/same (EXTRA_DIST): Add same.h.
18988         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
18989         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
18990         * modules/savedir (EXTRA_DIST): Add savedir.h.
18991         * modules/sha1 (EXTRA_DIST): Add sha1.h.
18992         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
18993         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
18994         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
18995         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
18996         * modules/strdup (EXTRA_DIST): Add strdup.h.
18997         * modules/strftime (EXTRA_DIST): Add strftime.h.
18998         * modules/strndup (EXTRA_DIST): Add strndup.h.
18999         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
19000         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
19001         * modules/time_r (EXTRA_DIST): Add time_r.h.
19002         * modules/timespec (EXTRA_DIST): Add timespec.h.
19003         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
19004         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
19005         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
19006         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
19007         * modules/userspec (EXTRA_DIST): Add userspec.h.
19008         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
19009         * modules/utimens (EXTRA_DIST): Add utimens.h.
19010         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
19011         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
19012         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
19013         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
19014         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
19015         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
19016         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
19017         * modules/yesno (EXTRA_DIST): Add yesno.h.
19018
19019 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
19020
19021         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
19022
19023         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
19024         * m4/dev-ino.m4, same-inode.m4: Remove.
19025
19026         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
19027         * m4/acl.m4 (AC_FUNC_ACL):
19028         * m4/backupfile.m4 (gl_BACKUPFILE):
19029         * m4/c-strtod.m4 (gl_C99_STRTOLD):
19030         * m4/canon-host.m4 (gl_CANON_HOST):
19031         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
19032         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
19033         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
19034         * m4/cloexec.m4 (gl_CLOEXEC):
19035         * m4/close-stream.m4 (gl_CLOSE_STREAM):
19036         * m4/closeout.m4 (gl_CLOSEOUT):
19037         * m4/dirfd.m4 (gl_FUNC_DIRFD):
19038         * m4/dirname.m4 (gl_DIRNAME):
19039         * m4/exclude.m4 (gl_EXCLUDE):
19040         * m4/exitfail.m4 (gl_EXITFAIL):
19041         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
19042         * m4/file-type.m4 (gl_FILE_TYPE):
19043         * m4/filemode.m4 (gl_FILEMODE):
19044         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
19045         * m4/fpending.m4 (gl_FUNC_FPENDING):
19046         * m4/fprintftime.m4 (gl_FPRINTFTIME):
19047         * m4/fts.m4 (gl_FUNC_FTS):
19048         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
19049         * m4/getdate.m4 (gl_GETDATE):
19050         * m4/gethrxtime.m4 (gl_GETHRXTIME):
19051         * m4/getpagesize.m4 (gl_GETPAGESIZE):
19052         * m4/getpass.m4 (gl_FUNC_GETPASS):
19053         * m4/gettime.m4 (gl_GETTIME):
19054         * m4/getugroups.m4 (gl_GETUGROUPS):
19055         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
19056         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
19057         * m4/hard-locale.m4 (gl_HARD_LOCALE):
19058         * m4/hash.m4 (gl_HASH):
19059         * m4/idcache.m4 (gl_IDCACHE):
19060         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
19061         * m4/lchown.m4 (gl_FUNC_LCHOWN):
19062         * m4/long-options.m4 (gl_LONG_OPTIONS):
19063         * m4/lstat.m4 (gl_FUNC_LSTAT):
19064         * m4/md5.m4 (gl_MD5):
19065         * m4/memcasecmp.m4 (gl_MEMCASECMP):
19066         * m4/memcoll.m4 (gl_MEMCOLL):
19067         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
19068         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
19069         * m4/memxor.m4 (gl_MEMXOR):
19070         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
19071         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
19072         * m4/modechange.m4 (gl_MODECHANGE):
19073         * m4/mountlist.m4 (gl_MOUNTLIST):
19074         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
19075         * m4/openat.m4 (gl_FUNC_OPENAT):
19076         * m4/pathmax.m4 (gl_PATHMAX):
19077         * m4/physmem.m4 (gl_PHYSMEM):
19078         * m4/posixtm.m4 (gl_POSIXTM):
19079         * m4/posixver.m4 (gl_POSIXVER):
19080         * m4/quote.m4 (gl_QUOTE):
19081         * m4/quotearg.m4 (gl_QUOTEARG):
19082         * m4/readtokens.m4 (gl_READTOKENS):
19083         * m4/readutmp.m4 (gl_READUTMP):
19084         * m4/regex.m4 (gl_REGEX):
19085         * m4/safe-read.m4 (gl_SAFE_READ):
19086         * m4/safe-write.m4 (gl_SAFE_WRITE):
19087         * m4/same.m4 (gl_SAME):
19088         * m4/save-cwd.m4 (gl_SAVE_CWD):
19089         * m4/savedir.m4 (gl_SAVEDIR):
19090         * m4/settime.m4 (gl_SETTIME):
19091         * m4/sha1.m4 (gl_SHA1):
19092         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
19093         * m4/stat-macros.m4 (gl_STAT_MACROS):
19094         * m4/stat-time.m4 (gl_STAT_TIME):
19095         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
19096         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
19097         * m4/strdup.m4 (gl_FUNC_STRDUP):
19098         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
19099         * m4/strndup.m4 (gl_FUNC_STRNDUP):
19100         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
19101         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
19102         * m4/time_r.m4 (gl_TIME_R):
19103         * m4/timespec.m4 (gl_TIMESPEC):
19104         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
19105         * m4/unlinkdir.m4 (gl_UNLINKDIR):
19106         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
19107         * m4/userspec.m4 (gl_USERSPEC):
19108         * m4/utimecmp.m4 (gl_UTIMECMP):
19109         * m4/utimens.m4 (gl_UTIMENS):
19110         * m4/xalloc.m4 (gl_XALLOC):
19111         * m4/xgetcwd.m4 (gl_XGETCWD):
19112         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
19113         * m4/xreadlink.m4 (gl_XREADLINK):
19114         * m4/xstrtod.m4 (gl_XSTRTOD):
19115         * m4/yesno.m4 (gl_YESNO):
19116         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
19117         to get the necessary .h files and whatnot.
19118
19119 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
19120             Bruno Haible  <bruno@clisp.org>
19121
19122         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
19123         /bin/sh understanding of '!' conditional negation.
19124
19125 2006-08-21  Jim Meyering  <jim@meyering.net>
19126
19127         * modules/openat (Depends-on): Really alphabetize.
19128
19129         * modules/acl (Depends-on): Add error and quote.
19130
19131         * check-module (find_included_lib_files): Add at-func.c to the
19132         ok-to-include-more-than-once white list.
19133
19134         * modules/openat (Depends-on): Add lstat.  Alphabetize.
19135
19136 2006-08-21  Bruno Haible  <bruno@clisp.org>
19137
19138         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19139         Emit a pkgdata_DATA variable only if some snippets add contents to it.
19140         Reported by Martin Lambers <marlam@marlam.de>.
19141
19142 2006-08-21  Bruno Haible  <bruno@clisp.org>
19143
19144         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
19145         specify an installation location, don't emit a noinst_LIBRARIES or
19146         noinst_LTLIBRARIES assignment.
19147
19148 2006-08-21  Bruno Haible  <bruno@clisp.org>
19149
19150         BeOS portability.
19151         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
19152         BeOS has mbrtowc() but no <wctype.h>.
19153
19154 2006-08-21  Bruno Haible  <bruno@clisp.org>
19155
19156         BeOS portability.
19157         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
19158         exist.
19159
19160 2006-08-21  Bruno Haible  <bruno@clisp.org>
19161
19162         BeOS portability.
19163         * lib/mbchar.h: Include <wctype.h> only if it exists.
19164
19165 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
19166
19167         Remove files that are no longer needed by their respective modules.
19168         * m4/obstack.m4: Remove.
19169         * m4/strerror_r.m4: Remove.
19170         * m4/uint32_t.m4: Remove.
19171         * m4/uintptr_t.m4: Remove.
19172         * m4/ullong_max.m4: Remove.
19173         * m4/xstrtoimax.m4: Remove.
19174         * m4/xstrtoumax.m4: Remove.
19175
19176         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
19177         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
19178         dependencies now capture this.
19179
19180         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
19181         Do not use AC_LIBSOURCES, since gnulib modules now do this.
19182         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
19183         * m4/human.m4 (gl_HUMAN): Likewise.
19184         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
19185         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
19186
19187         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
19188
19189         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
19190         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
19191         stdint.
19192         * m4/human.m4 (gl_HUMAN): Likewise.
19193         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
19194         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
19195         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
19196         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
19197         * m4/xstrtol (gl_XSTRTOL): Likewise.
19198
19199         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
19200         AC_TYPE_LONG_LONG_INT.
19201         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
19202         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
19203         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
19204         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
19205
19206         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
19207         on stdbool.
19208
19209         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
19210         (gl_PREREQ_XSTRTOUL): Remove.
19211
19212         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
19213
19214         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
19215         mode.
19216
19217 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
19218
19219         Add and change modules to make it easier for coreutils to use
19220         gnulib-tool.
19221         * modules/backupfile (Files): Remove m4/d-ino.m4.
19222         (Depends-on): Add d-ino.
19223         * modules/cycle-check (Depends-on): Add stdint.
19224         (lib_SOURCES): Add cycle-check.h.
19225         * modules/d-ino: New module.
19226         * modules/d-type: New module.
19227         * modules/error (Files): Remove m4/strerror_r.m4.
19228         * modules/filemode (Files): Add m4/st_dm_mode.m4.
19229         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
19230         m4/inttypes_h.m4, m4/uintmax_t.m4.
19231         (Depends-on): Add stdint.
19232         (lib_SOURCES): Add fsusage.h.
19233         * modules/getcwd (Files): Remove d-ino.m4.
19234         (Depends-on): Add d-ino.
19235         * modules/getndelim2 (Depends-on): Add stdint.
19236         * modules/glob (Files): Remove m4/d-type.m4.
19237         (Depends-on): Add d-type.
19238         * modules/host-os: New module.
19239         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
19240         m4/inttypes_h.m4, m4/uintmax_t.m4.
19241         * Depends-on: Add stdint.
19242         (lib_SOURCES): Add human.h.
19243         * modules/inttostr (Files): Remove m4/intmax_t.m4,
19244         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
19245         m4/uintmax_t.m4, m4/ulonglong.m4.
19246         (Depends-on): Add stdint.
19247         (EXTRA_DIST): Add inttostr.h.
19248         * modules/lchmod: New module.
19249         * modules/link-follow: New module.
19250         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
19251         (Depends-on): Add lchmod.
19252         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
19253         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
19254         (Depends-on): Add stdint.
19255         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
19256         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
19257         (Depends-on): Add stdint.
19258         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
19259         * modules/perl: New module.
19260         * modules/regex (Depends-on): Add stdint.
19261         * modules/rmdir-errno: New module.
19262         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
19263         m4/intmax_t.m4.
19264         (Depends-on): Add stdint.
19265         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
19266         m4/uintmax_t.m4.
19267         (Depends-on): Add stdint.
19268         * modules/unlink-busy: New module.
19269         * modules/utimecmp (Depends-on): Add stdint.
19270         * modules/uptime: New module.
19271         * modules/winsz-ioctl: New module.
19272         * modules/winsz-termios: New module.
19273         * modules/xnanosleep (Depends-on): Add nanosleep.
19274         * modules/ullong_max: Remove.
19275         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
19276         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
19277         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
19278         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
19279         (Depends-on): Add inttypes.
19280         (lib_SOURCES): Add xstrtol.h.
19281         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
19282         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
19283         * MODULES.html.sh: Move 'assert' into the assert section.
19284         Move 'dummy' into the linking section.
19285         Remove ullong_max.
19286         Add section for compatibility checks for POSIX:2001 functions,
19287         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
19288         winsz-ioctl, and winsz-termios into it.
19289         Add lchmod.
19290         Add top-level Misc section and put host-os, perl, and uptime
19291         into it.
19292
19293 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
19294
19295         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
19296         now assume the stdint module.  Do not include inttypes.h.
19297         * lib/fsusage.h: Likewise.
19298         * lib/getndelim2.c: Likewise.
19299         * lib/human.h: Likewise.
19300         * lib/inttostr.h: Likewise.
19301         * lib/obstack.c: Likewise.
19302         * lib/regex_internal.h: Likewise.
19303         * lib/tempname.c: Likewise.
19304         * lib/utimecmp.c: Likewise.
19305         * lib/xstrtol.h: Likewise.
19306
19307         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
19308
19309         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
19310         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
19311         * lib/xtime.h: Likewise.
19312
19313 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
19314
19315         * modules/openat (Files): Add lib/fchmodat.c.
19316         Fixes problem reported by Jay Youngman.
19317
19318 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
19319
19320         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
19321         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
19322
19323 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
19324             Bruno Haible  <bruno@clisp.org>
19325
19326         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
19327         and is a script that invokes bison. Tighten the code. Add comments.
19328
19329 2006-08-18  Jim Meyering  <jim@meyering.net>
19330
19331         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
19332         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
19333         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
19334         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
19335
19336 2006-08-18  Bruno Haible  <bruno@clisp.org>
19337
19338         * modules/bison-i18n: New file.
19339         * MODULES.html.sh (Internationalization functions): Add it.
19340
19341 2006-08-18  Bruno Haible  <bruno@clisp.org>
19342
19343         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
19344         sys/statvfs.h. When getmntinfo was found, check its declaration and
19345         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
19346
19347 2006-08-18  Bruno Haible  <bruno@clisp.org>
19348
19349         * m4/bison-i18n.m4: New file, from bison.
19350
19351 2006-08-18  Bruno Haible  <bruno@clisp.org>
19352
19353         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
19354         (ME_DUMMY): Treat "kernfs" as a dummy.
19355         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
19356
19357 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
19358
19359         Update from coreutils.
19360
19361         2006-08-15  Jim Meyering  <jim@meyering.net>
19362
19363         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
19364
19365         2006-01-17  Jim Meyering  <jim@meyering.net>
19366
19367         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
19368
19369         2006-01-11  Jim Meyering  <jim@meyering.net>
19370
19371         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
19372         Check for the lchmod function.
19373
19374 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
19375
19376         Update from coreutils.
19377
19378         * lib/__fpending.h: Add copyright notice.
19379         * lib/fprintftime.h: Likewise.
19380         * lib/savedir.c: Use (C) in copyright notice.
19381         * lib/savedir.h: Likewise.
19382
19383         2006-08-15  Jim Meyering  <jim@meyering.net>
19384
19385         * lib/at-func.c: New file, with the logic of all emulated at-functions.
19386         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
19387         in support of the EXPECTED_ERRNO macro.
19388         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
19389         definitions.  Instead, define the appropriate symbols and include
19390         "at-func.c".
19391         * lib/mkdirat.c (mkdirat): Likewise.
19392         * lib/fchmodat.c (fchmodat): Likewise.
19393         (ENOSYS): Remove definition.
19394         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
19395         it.  Don't include "unistd--.h" -- it wasn't ever used.
19396
19397         2006-01-17  Jim Meyering  <jim@meyering.net>
19398
19399         Rewrite fts.c not to change the current working directory,
19400         by using openat, fstatat, fdopendir, etc..
19401
19402         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
19403         (HAVE_OPENAT_SUPPORT): Define.
19404         [_LIBC] (fchdir): Don't undef or define; no longer used.
19405         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
19406         Now, this `function' always succeeds, and consumes its file descriptor
19407         parameter -- so callers must not close such FDs.  Update callers.
19408         (diropen_fd, opendirat, cwd_advance_fd): New functions.
19409         (diropen): Add parameter, SP.  Adjust all callers.
19410         Implement using diropen_fd, rather than open.
19411         (fts_open): Initialize new member, fts_cwd_fd.
19412         Remove fts_rft-setting code.
19413         (fts_close): Close fts_cwd_fd, if necessary.
19414         (__opendir2): Define in terms of opendir or opendirat,
19415         depending on whether the FST_NOCHDIR flag is set.
19416         (fts_build): Since fts_safe_changedir consumes its FD, and since
19417         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
19418         and close the dup'd file descriptor upon failure.
19419         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
19420         (fts_safe_changedir): Tweak semantics to reflect that this function
19421         now calls cwd_advance_fd and hence consumes its FD argument.
19422         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
19423         [struct FTS] (fts_rft): Remove now-unused member.
19424         [struct FTS] (fts_cycle.state): Improve comment.
19425
19426         * lib/openat.c (openat_needs_fchdir): New function.
19427         * lib/openat.h (openat_needs_fchdir): Declare it.
19428
19429 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
19430
19431         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
19432         Problem and fix reported by Pádraig Brady in
19433         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
19434
19435 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19436
19437         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
19438
19439 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19440
19441         * lib/memcoll.c (memcoll): Optimize for the common case where the
19442         arguments are bytewise equal.
19443
19444 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19445
19446         * doc/regexprops-generic.texi: Add a copyright notice.
19447
19448 2006-08-15  Bruno Haible  <bruno@clisp.org>
19449
19450         * modules/tmpdir (License): Change to LGPL.
19451
19452 2006-08-15  Bruno Haible  <bruno@clisp.org>
19453
19454         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
19455         module.
19456
19457 2006-08-14  Simon Josefsson  <jas@extundo.com>
19458
19459         * config/srclist.txt: Add gnupload.
19460
19461 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19462
19463         Change copyright notice from LGPL 2 to GPL 2, since that's the
19464         standard form used in the gnulib repository.
19465         * tests/test-lock.c: Likewise.
19466         * tests/test-stdint.c: Likewise.
19467         * tests/test-tls.c: Likewise.
19468
19469         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
19470         prelude-manager.  User shorter URLs for GNU projects, without '?'.
19471         Add copyright notice.
19472
19473         * check-module: Add copyright notice.  Output a copyright
19474         notice if "--version" is specified.
19475         * modules/COPYING: New file.
19476         * tests/test-getaddrinfo.c: Add copyright notice.
19477         * tests/test-verify.c: Likewise.
19478
19479 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19480
19481         Change copyright notice from LGPL 2 to GPL 2, since that's the
19482         standard form used in the gnulib repository.
19483         * lib/lock.c: LGPL -> GPL.
19484         * lib/lock.h: Likewise.
19485         * lib/strnlen1.c: Likewise.
19486         * lib/strnlen1.h: Likewise.
19487         * lib/tls.c: Likewise.
19488         * lib/tls.h: Likewise.
19489         * lib/tmpdir.c: Likewise.
19490
19491         * lib/TODO: Remove; this belongs only in coreutils.
19492
19493 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19494
19495         Add copyright notices to long-enough files that lack them, since
19496         otherwise the files aren't clearly free.  Use the same notice that
19497         getdate.texi already uses.
19498         * doc/alloca-opt.texi: Add copyright notice.
19499         * doc/alloca.texi: Likewise.
19500         * doc/ctime.texi: Likewise.
19501         * doc/functions.texi: Likewise.
19502         * doc/gcd.texi: Likewise.
19503         * doc/gnulib-tool.texi: Likewise.
19504         * doc/inet_ntoa.texi: Likewise.
19505         * doc/visibility.texi: Likewise.
19506
19507         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
19508         * doc/quote.texi: Add copyright notice.
19509
19510         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
19511         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
19512         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
19513         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
19514         is now obsolete, and give a pointer to the Sun list.
19515         Add copyright notice.
19516
19517 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
19518
19519         * config/srclistvars.sh: Add copyright notice.
19520
19521 2006-08-14  Eric Blake  <ebb9@byu.net>
19522
19523         Import the following change from libc:
19524
19525         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
19526
19527         Upstream bug 2997.
19528         * lib/misc/error.c: Add space between program name and message if file
19529         name is missing.
19530
19531 2006-08-12  Karl Berry  <karl@gnu.org>
19532
19533         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
19534         remove, these originate in gnulib now.
19535
19536 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19537
19538         * doc/Makefile (standards.info standards.html standards.dvi):
19539         Also depend on make-stds.texi.
19540
19541 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
19542
19543         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
19544         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
19545
19546         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
19547         in wchar_t.  Problem reported by Eric Blake.
19548
19549         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
19550         LEN is smaller than SIZE.  Suggested by Bruno Haible.
19551         Also, help the compiler to keep LEN in a register.
19552
19553 2006-08-11  Eric Blake  <ebb9@byu.net>
19554
19555         * users.txt: Sort.  Add tar.
19556
19557 2006-08-11  Bruno Haible  <bruno@clisp.org>
19558
19559         * users.txt: New file.
19560
19561 2006-08-11  Bruno Haible  <bruno@clisp.org>
19562
19563         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
19564         before <wchar.h>. Needed for OSF/1 and BSD/OS.
19565
19566 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
19567
19568         * modules/snprintf (Depends-on): Remove minmax.
19569         (Maintainer): Add self and Bruno.
19570
19571 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
19572
19573         * lib/.cppi-disable: Add snprintf.h, socket_.h.
19574         * lib/snprintf.c: Include <errno.h> and <limits.h>.
19575         (EOVERFLOW): Define if the system does not.
19576         Do not include "minmax.h"; it wasn't used.
19577         (snprintf): Don't assume size_t promotes to an unsigned type.
19578         Fix bug when generated string was too long for the buffer: the
19579         buffer's contents are supposed to be the initial prefix of the
19580         output.  Don't assume vasnprintf returns EOVERFLOW if the size
19581         exceeds INT_MAX; do the check ourselves.
19582
19583         Import the following changes from libc:
19584
19585         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
19586
19587         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
19588         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
19589         set wc to the byte which couldn't be converted.
19590         (re_string_reconstruct): Don't clear valid_raw_len before calling
19591         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
19592         tip_context using re_string_context_at.
19593
19594         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
19595
19596         * lib/posix/regex.h: g++ still cannot handled [restrict].
19597
19598         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
19599
19600         * lib/posix/regex.h: Remove special handling for VMS.
19601
19602 2006-08-10  Jim Meyering  <jim@meyering.net>
19603
19604         * modules/same-inode: New module.
19605         * modules/dev-ino: New module.
19606         * modules/cycle-check: Depend on these modules, rather than simply
19607         including their .h files.
19608         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
19609         required via m4/cycle-check.m4.
19610         * modules/same: Depend on new same-inode module, rather than
19611         including same-inode.h.
19612         * modules/chdir-safer: New file.
19613
19614         * modules/chown (Depends-on): Add stat-macros.
19615
19616 2006-08-10  Jim Meyering  <jim@meyering.net>
19617
19618         * m4/cycle-check.m4: New file.
19619         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
19620         * m4/dev-ino.m4, m4/same-inode.m4: New files.
19621
19622 2006-08-10  Eric Blake  <ebb9@byu.net>
19623
19624         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
19625         in from original proposal.
19626
19627 2006-08-10  Eric Blake  <ebb9@byu.net>
19628         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
19629
19630         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
19631         namespace.
19632
19633 2006-08-10  Bruno Haible  <bruno@clisp.org>
19634
19635         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
19636         as well.
19637
19638 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
19639
19640         Sync from coreutils.
19641
19642         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
19643
19644         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
19645         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
19646
19647 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
19648
19649         * modules/restrict: Remove; no longer needed now that we assume
19650         Autoconf 2.59 or later.
19651         * MODULES.html.sh: Remove 'restrict'.
19652         * modules/argp (Depends-on): Remove 'restrict'.
19653         * modules/base64 (Depends-on): Likewise.
19654         * modules/gc (Depends-on): Likewise.
19655         * modules/getaddrinfo (Depends-on): Likewise.
19656         * modules/glob (Depends-on): Likewise.
19657         * modules/inet_ntop (Depends-on): Likewise.
19658         * modules/inet_pton (Depends-on): Likewise.
19659         * modules/memxor (Depends-on): Likewise.
19660         * modules/regex (Depends-on): Likewise.
19661         * modules/strtok_r (Depends-on): Likewise.
19662         * modules/time_r (Depends-on): Likewise.
19663
19664 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
19665
19666         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
19667         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
19668         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
19669         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
19670         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
19671         * m4/memxor.m4 (gl_MEMXOR): Likewise.
19672         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
19673         gl_C_RESTRICT replaced by AC_C_RESTRICT.
19674
19675         Merge from coreutils.
19676         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
19677         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
19678         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
19679         * m4/time_r.m4 (gl_TIME_R): Likewise.
19680
19681 2006-08-09  Karl Berry  <karl@gnu.org>
19682
19683         * config/srclist.txt: no more gettext-tools, per Bruno.
19684
19685 2006-08-08  Eric Blake  <ebb9@byu.net>
19686
19687         * modules/verror: New module.
19688         * MODULES.html.sh: Document it.
19689
19690 2006-08-08  Eric Blake  <ebb9@byu.net>
19691
19692         * lib/verror.h, lib/verror.c: New files.
19693
19694 2006-08-08  Eric Blake  <ebb9@byu.net>
19695
19696         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
19697         verror_at_line output complies with GNU Coding Standards even when
19698         file is NULL.
19699
19700 2006-08-07  Bruno Haible  <bruno@clisp.org>
19701
19702         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
19703         versions of AIX.
19704         Reported by Ralf Wildenhues.
19705
19706 2006-08-07  Bruno Haible  <bruno@clisp.org>
19707
19708         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
19709         in an AC_DEFUN. Needed so that the autoconf snippets can use
19710         AC_REQUIRE.
19711
19712 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19713
19714         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19715         Initialize pkgdata_DATA.
19716         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
19717         overriding it.
19718
19719 2006-08-06  Eric Blake  <ebb9@byu.net>
19720
19721         * lib/error.h: Fold in some upstream changes from glibc.
19722         * lib/error.c: Likewise.
19723
19724 2006-08-04  Bruno Haible  <bruno@clisp.org>
19725
19726         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19727         Make the mostlyclean-local rule depend on mostlyclean-generic.
19728         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
19729
19730 2006-07-31  Bruno Haible  <bruno@clisp.org>
19731
19732         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
19733         <stdlib.h>, <string.h>.
19734
19735 2006-07-30  Bruno Haible  <bruno@clisp.org>
19736
19737         * modules/readlink (License): Change to LGPL.
19738
19739 2006-07-30  Bruno Haible  <bruno@clisp.org>
19740
19741         * modules/javaversion (Makefile.am): Distribute javaversion.java and
19742         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
19743         set PKGDATADIR to point to it.
19744
19745 2006-07-30  Bruno Haible  <bruno@clisp.org>
19746
19747         * modules/csharpexec (configure.ac): Comment out macro invocation.
19748         * modules/javaexec (configure.ac): Likewise.
19749         * modules/javacomp-script (configure.ac): Likewise.
19750
19751         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
19752
19753 2006-07-30  Bruno Haible  <bruno@clisp.org>
19754
19755         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
19756         linked-list.
19757
19758 2006-07-30  Bruno Haible  <bruno@clisp.org>
19759
19760         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
19761
19762 2006-07-30  Bruno Haible  <bruno@clisp.org>
19763
19764         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19765         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
19766         get removed.
19767
19768 2006-07-29  Bruno Haible  <bruno@clisp.org>
19769
19770         Make it possible for gnulib-tool to work with locally modified or
19771         augmented gnulib repositories.
19772         * gnulib-tool (func_usage): Document --local-dir option.
19773         (local_gnulib_dir): New variable.
19774         Handle --local-dir option.
19775         (func_lookup_file): New function.
19776         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
19777         (func_get_description, func_get_filelist, func_get_description,
19778         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
19779         func_get_automake_snippet, func_get_include_directive,
19780         func_get_license, func_get_maintainer): Use func_lookup_file.
19781         (func_import, func_create_testdir): Use func_lookup_file.
19782
19783 2006-07-29  Bruno Haible  <bruno@clisp.org>
19784
19785         * modules/setenv (Depends-on): Add unistd.
19786
19787 2006-07-29  Bruno Haible  <bruno@clisp.org>
19788
19789         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
19790
19791 2006-07-29  Bruno Haible  <bruno@clisp.org>
19792
19793         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
19794
19795 2006-07-29  Bruno Haible  <bruno@clisp.org>
19796
19797         * gnulib-tool (import, update): If there is no Makefile.am, look at
19798         aclocal.m4, instead of bailing out.
19799
19800 2006-07-29  Bruno Haible  <bruno@clisp.org>
19801
19802         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
19803         Categorize the options by when they are useful.
19804
19805 2006-07-29  Bruno Haible  <bruno@clisp.org>
19806
19807         * gnulib-tool (func_usage): Document option --no-libtool.
19808         Handle option --no-libtool.
19809         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
19810         for changed semantics of $libtool variable.
19811         (func_import): Likewise. If libtool is not used, show this through
19812         an option --no-libtool.
19813         (func_create_testdir): Update.
19814
19815 2006-07-29  Bruno Haible  <bruno@clisp.org>
19816
19817         * gnulib-tool (func_import): Extend error message about missing
19818         --doc-base.
19819
19820 2006-07-29  Bruno Haible  <bruno@clisp.org>
19821
19822         * gnulib-tool (func_import): Don't create the $docbase directory if
19823         there is no file to store there.
19824
19825 2006-07-29  Bruno Haible  <bruno@clisp.org>
19826
19827         * gnulib-tool (autoconf_minversion): If a --dir option is given and
19828         relevant, look for configure.ac there, not in the current directory.
19829         Also use a simple search for AC_PREREQ, not "autoconf --trace".
19830
19831 2006-07-29  Bruno Haible  <bruno@clisp.org>
19832
19833         * gnulib-tool (SORT): New variable.
19834         (func_usage): Undocument --assume-autoconf option.
19835         Remove --assume-autoconf option handling.
19836         (autoconf_minversion): Determine from the contents of configure.ac.
19837         (func_import): Remove autoconf_minversion handling.
19838         Suggested by Eric Blake.
19839
19840 2006-07-29  Bruno Haible  <bruno@clisp.org>
19841
19842         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
19843
19844 2006-07-29  Bruno Haible  <bruno@clisp.org>
19845
19846         * config/srclist.txt (*setenv.[ch]): Remove rules.
19847
19848 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19849
19850         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
19851
19852 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
19853
19854         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
19855         arpa/inet.h.
19856
19857 2006-07-28  Simon Josefsson  <jas@extundo.com>
19858
19859         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
19860         * modules/inet_pton (Depends-on): Likewise.
19861
19862 2006-07-28  Simon Josefsson  <jas@extundo.com>
19863
19864         * m4/netinet_in_h.m4: New file.
19865
19866 2006-07-28  Simon Josefsson  <jas@extundo.com>
19867
19868         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
19869         #include's.
19870
19871 2006-07-28  Simon Josefsson  <jas@extundo.com>
19872
19873         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
19874         #include's.
19875
19876 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
19877
19878         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
19879         setgid on directories only if they set these bits.
19880         * lib/modechange.h: Remove obsolete comment about masks.
19881
19882 2006-07-28  Eric Blake  <ebb9@byu.net>
19883
19884         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
19885         macro expansion.
19886
19887 2006-07-28  Bruno Haible  <bruno@clisp.org>
19888
19889         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
19890
19891 2006-07-28  Bruno Haible  <bruno@clisp.org>
19892
19893         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
19894
19895 2006-07-28  Bruno Haible  <bruno@clisp.org>
19896
19897         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
19898         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
19899         Define fallbacks.
19900         Avoids link error on FreeBSD 4.x.
19901         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
19902
19903         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
19904         encoding.
19905         * lib/mbswidth.c (iswcntrl): Likewise.
19906
19907 2006-07-27  Bruno Haible  <bruno@clisp.org>
19908
19909         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
19910         test.
19911
19912 2006-07-27  Bruno Haible  <bruno@clisp.org>
19913
19914         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
19915         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
19916         defined.
19917
19918 2006-07-26  Eric Blake  <ebb9@byu.net>
19919
19920         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
19921
19922 2006-07-26  Eric Blake  <ebb9@byu.net>
19923
19924         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
19925         like mingw that lack mkstemp.
19926         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
19927         avoid compilation warning on mingw.
19928
19929 2006-07-26  Bruno Haible  <bruno@clisp.org>
19930
19931         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
19932         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
19933         INT_FAST*_MIN, INTPTR_MIN.
19934
19935 2006-07-25  Bruno Haible  <bruno@clisp.org>
19936
19937         * modules/version-etc (Depends-on): Add stdarg.
19938
19939 2006-07-25  Bruno Haible  <bruno@clisp.org>
19940
19941         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
19942         complex commands.
19943
19944 2006-07-25  Bruno Haible  <bruno@clisp.org>
19945
19946         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
19947         defined in <stdarg.h> or config.h.
19948
19949 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
19950
19951         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
19952         (gl_STDIO_SAFER): Remove.
19953
19954 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
19955
19956         * MODULES.html.sh (File stream based Input/Output):
19957         Add fopen-safer, tmpfile-safer; remove stdio-safer.
19958         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
19959         * modules/fopen-safer, modules/tmpfile-safer: New files.
19960         * modules/stdio-safer: Remove.
19961
19962 2006-07-24  Bruno Haible  <bruno@clisp.org>
19963
19964         * modules/tmpdir: New file.
19965         * MODULES.html.sh (File system functions): Add it.
19966
19967 2006-07-24  Bruno Haible  <bruno@clisp.org>
19968
19969         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
19970         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
19971
19972 2006-07-24  Bruno Haible  <bruno@clisp.org>
19973
19974         * modules/clean-temp: New file.
19975
19976 2006-07-24  Bruno Haible  <bruno@clisp.org>
19977
19978         * m4/tmpdir.m4: New file, from GNU gettext.
19979
19980 2006-07-24  Bruno Haible  <bruno@clisp.org>
19981
19982         * lib/tmpdir.h: New file, from GNU gettext.
19983         * lib/tmpdir.c: New file, from GNU gettext.
19984
19985 2006-07-24  Bruno Haible  <bruno@clisp.org>
19986
19987         * lib/clean-temp.h: New file, from GNU gettext.
19988         * lib/clean-temp.c: New file, from GNU gettext.
19989
19990 2006-07-23  Eric Blake  <ebb9@byu.net>
19991
19992         * modules/stdio-safer (Files): Add tmpfile-safer.c.
19993         (Depends-on): Add binary-io.
19994
19995 2006-07-23  Eric Blake  <ebb9@byu.net>
19996
19997         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
19998
19999 2006-07-23  Eric Blake  <ebb9@byu.net>
20000
20001         * lib/tmpfile-safer.c: New file.
20002         * lib/stdio-safer.h (fopen_safer): Add prototype.
20003         * lib/stdio--.h (tmpfile): Make safer.
20004
20005 2006-07-23  Bruno Haible  <bruno@clisp.org>
20006
20007         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
20008         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
20009         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
20010         gl_linked_remove_at): Use it.
20011
20012 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20013         and Simon Josefsson <jas@extundo.com>
20014
20015         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
20016
20017         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
20018
20019 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20020
20021         * modules/close-stream: New file.
20022         * modules/closeout (Description): Make it clear that it exits
20023         with a diagnostic on error.
20024         (Depends-on): Add close-stream.  Remove fpending, stdbool.
20025         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
20026
20027 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20028
20029         * m4/close-stream.m4: New file.
20030
20031 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20032
20033         * lib/close-stream.c, lib/close-stream.h: New files.
20034
20035 2006-07-22  Bruno Haible  <bruno@clisp.org>
20036
20037         Merge from GNU gettext 0.15.
20038
20039         2006-05-01  Bruno Haible  <bruno@clisp.org>
20040
20041                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
20042
20043         2006-07-22  Bruno Haible  <bruno@clisp.org>
20044
20045                 * modules/javaversion: New file.
20046                 * MODULES.html.sh (Java): Add javaversion.
20047
20048         2006-03-12  Bruno Haible  <bruno@clisp.org>
20049
20050                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
20051
20052         2005-12-04  Bruno Haible  <bruno@clisp.org>
20053
20054                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
20055                 (untested).
20056
20057         2006-06-21  Bruno Haible  <bruno@clisp.org>
20058
20059                 Avoid warnings from recent versions of mcs.
20060                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
20061                 -o, -L, -r any more. Use options documented since mcs-1.0
20062                 instead. Similarly for -g.
20063
20064         2005-12-04  Bruno Haible  <bruno@clisp.org>
20065
20066                 * build-aux/csharpcomp.sh.in: Suffix for resources is
20067                 .resources, not .resource.
20068
20069         2005-07-09  Bruno Haible  <bruno@clisp.org>
20070
20071                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
20072                 add a .dll suffix.
20073                 Reported by Mark Junker <mjscod@gmx.de>.
20074
20075         2006-07-22  Bruno Haible  <bruno@clisp.org>
20076
20077                 * modules/gettext: Upgrade to gettext-0.15.
20078                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
20079                 m4/visibility.m4.
20080                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
20081
20082 2006-07-22  Bruno Haible  <bruno@clisp.org>
20083
20084         Merge from GNU gettext 0.15.
20085
20086         2006-03-25  Bruno Haible  <bruno@clisp.org>
20087
20088                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
20089
20090         2006-07-21  Bruno Haible  <bruno@clisp.org>
20091
20092                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
20093                 "1.1".
20094
20095         2006-05-09  Bruno Haible  <bruno@clisp.org>
20096
20097                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
20098                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
20099                 for the conftestver execution.
20100
20101         2006-05-01  Bruno Haible  <bruno@clisp.org>
20102
20103                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
20104                 optional target-version argument. Verify that the compiler
20105                 groks source of the specified source-version, or add -source
20106                 option as necessary. Verify that the compiler produces
20107                 bytecode in the specified target-version, or add -target and
20108                 -source options as necessary. Make the result of the test
20109                 available as variable CONF_JAVAC. Also log error output in
20110                 config.log.
20111
20112         2006-03-11  Bruno Haible  <bruno@clisp.org>
20113
20114                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
20115
20116         2006-05-09  Bruno Haible  <bruno@clisp.org>
20117
20118                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
20119                 CLASSPATH_SEPARATOR to a semicolon.
20120
20121         2006-03-12  Bruno Haible  <bruno@clisp.org>
20122
20123                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
20124                 available as variable CONF_JAVA, for subsequent autoconf
20125                 tests. Also log error output in config.log.
20126
20127         2006-07-19  Bruno Haible  <bruno@clisp.org>
20128
20129                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
20130                 that getline works on glibc2 systems. Needed to avoid trouble
20131                 in relocatable.c.
20132                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
20133
20134         2005-12-04  Bruno Haible  <bruno@clisp.org>
20135
20136                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
20137                 launcher (untested).
20138
20139         2005-12-04  Bruno Haible  <bruno@clisp.org>
20140
20141                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
20142
20143         2006-07-22  Bruno Haible  <bruno@clisp.org>
20144
20145                 * gettext.m4: Update from GNU gettext-0.15.
20146                 * nls.m4: Likewise.
20147                 * po.m4: Likewise.
20148                 * inttypes-pri.m4: Likewise.
20149                 * inttypes-h.m4: Renamed from inttypes.m4.
20150                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
20151
20152 2006-07-22  Bruno Haible  <bruno@clisp.org>
20153
20154         Merge from GNU gettext 0.15.
20155
20156         2005-07-05  Bruno Haible  <bruno@clisp.org>
20157
20158                 * printf-args.c (printf_fetchargs): Work around broken
20159                 definition of wint_t on mingw.
20160
20161         2005-02-12  Bruno Haible  <bruno@clisp.org>
20162
20163                 * xallocsa.h: Add extern "C" for C++.
20164
20165         2006-05-17  Bruno Haible  <bruno@clisp.org>
20166
20167                 Cygwin portability.
20168                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
20169
20170         2006-04-30  Bruno Haible  <bruno@clisp.org>
20171
20172                 * progreloc.c: Include <mach-o/dyld.h> if available.
20173                 (find_executable): Use _NSGetExecutablePath when possible.
20174
20175         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
20176
20177                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
20178                 function.
20179
20180         2005-12-29  Bruno Haible  <bruno@clisp.org>
20181
20182                 * progreloc.c (set_program_name_and_installdir): Fix
20183                 compilation error.
20184
20185         2005-12-04  Bruno Haible  <bruno@clisp.org>
20186
20187                 Cygwin portability.
20188                 * progreloc.c: Include <windows.h> also on Cygwin.
20189                 (find_executable): Add support for Cygwin.
20190                 (set_program_name_and_installdir): Handle also platforms with
20191                 nonempty EXEEXT.
20192
20193         2006-07-11  Bruno Haible  <bruno@clisp.org>
20194
20195                 * javacomp.c: Fix a comment.
20196                 Reported by Jim Meyering.
20197
20198         2006-04-30  Bruno Haible  <bruno@clisp.org>
20199
20200                 * javacomp.h (compile_java_class): Add source_version,
20201                 target_version arguments.
20202                 * javacomp.c: Rewritten to choose only a compiler that
20203                 respects the specified source_version and target_version.
20204
20205         2006-06-27  Bruno Haible  <bruno@clisp.org>
20206
20207                 Assume correct S_ISDIR macro.
20208                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
20209
20210         2006-07-22  Bruno Haible  <bruno@clisp.org>
20211
20212                 * javaversion.h: New file, from GNU gettext.
20213                 * javaversion.c: New file, from GNU gettext.
20214                 * javaversion.java: New file, from GNU gettext.
20215                 * javaversion.class: New file, from GNU gettext.
20216
20217         2006-05-17  Bruno Haible  <bruno@clisp.org>
20218
20219                 Cygwin portability.
20220                 * javaexec.c (execute_java_class): Test for jview program
20221                 also on Cygwin.
20222
20223         2006-04-09  Bruno Haible  <bruno@clisp.org>
20224
20225                 * fatal-signal.c: Don't include string.h.
20226                 (at_fatal_signal): Use a copying loop instead of memcpy.
20227
20228         2005-12-04  Bruno Haible  <bruno@clisp.org>
20229
20230                 * csharpexec.c: Add support for 'clix' launcher (untested).
20231                 (execute_csharp_using_sscli): New function.
20232                 (execute_csharp_program): Call it.
20233
20234         2006-06-21  Bruno Haible  <bruno@clisp.org>
20235
20236                 Avoid warnings from recent versions of mcs.
20237                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
20238                 -o, -L, -r any more. Use options documented since mcs-1.0
20239                 instead. Similarly for -g.
20240
20241         2005-07-09  Bruno Haible  <bruno@clisp.org>
20242
20243                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
20244                 add a .dll suffix.
20245                 Reported by Mark Junker <mjscod@gmx.de>.
20246
20247         2006-06-17  Bruno Haible  <bruno@clisp.org>
20248
20249                 * config.charset: Update for NetBSD 3.0.
20250
20251         2006-05-17  Bruno Haible  <bruno@clisp.org>
20252
20253                 Cygwin portability.
20254                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
20255
20256         2006-05-16  Bruno Haible  <bruno@clisp.org>
20257
20258                 * localcharset.c [CYGWIN]: Include <windows.h>.
20259                 (get_charset_aliases): For Cygwin, return the same CPxxx
20260                 aliases list as under WIN32.
20261                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
20262                 the environment variables. Fall back to GetACP().
20263
20264         2006-04-05  Bruno Haible  <bruno@clisp.org>
20265
20266                 * config.charset: Update Juan Manuel Guerrero's address.
20267
20268         2005-02-12  Bruno Haible  <bruno@clisp.org>
20269
20270                 * allocsa.h: Add extern "C" for C++.
20271
20272         2005-02-10  Bruno Haible  <bruno@clisp.org>
20273
20274                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
20275                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
20276
20277         2006-07-22  Bruno Haible  <bruno@clisp.org>
20278
20279                 * gettext.h: Update to GNU gettext-0.15.
20280
20281 2006-07-22  Bruno Haible  <bruno@clisp.org>
20282
20283         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
20284         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
20285         lib-prefix.m4, longdouble.m4, ssize_t.m4.
20286
20287 2006-07-21  Eric Blake  <ebb9@byu.net>
20288
20289         * modules/stdlib-safer: New file.
20290         * MODULES.html.sh (File stream based Input/Output): Add
20291         stdlib-safer.
20292
20293 2006-07-21  Eric Blake  <ebb9@byu.net>
20294
20295         * lib/stdlib-safer.h: New file from coreutils, required by
20296         stdlib--.h.
20297
20298 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
20299
20300         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
20301
20302 2006-07-20  Bruno Haible  <bruno@clisp.org>
20303
20304         * gnulib-tool: Recognize new option --assume-autoconf.
20305         (autoconf_minversion): New variable.
20306         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
20307
20308 2006-07-20  Bruno Haible  <bruno@clisp.org>
20309
20310         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
20311
20312 2006-07-19  Derek R. Price  <derek@ximbiot.com>
20313
20314         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
20315         Reindent and repaginate.
20316
20317 2006-07-19  Derek Price  <derek@ximbiot.com>
20318
20319         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
20320         Correct grammar.
20321
20322 2006-07-17  Bruno Haible  <bruno@clisp.org>
20323
20324         * modules/list: New file.
20325         * modules/array-list: New file.
20326         * modules/carray-list, modules/carray-list-tests: New files.
20327         * modules/linked-list, modules/linked-list-tests: New files.
20328         * modules/avltree-list, modules/avltree-list-tests: New files.
20329         * modules/rbtree-list, modules/rbtree-list-tests: New files.
20330         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
20331         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
20332         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
20333         * modules/oset: New file.
20334         * modules/array-oset: New file.
20335         * modules/avltree-oset, modules/avltree-oset-tests: New files.
20336         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
20337         * tests/test-carray_list.c: New file.
20338         * tests/test-linked_list.c: New file.
20339         * tests/test-avltree_list.c: New file.
20340         * tests/test-rbtree_list.c: New file.
20341         * tests/test-linkedhash_list.c: New file.
20342         * tests/test-avltreehash_list.c: New file.
20343         * tests/test-rbtreehash_list.c: New file.
20344         * tests/test-avltree_oset.c: New file.
20345         * tests/test-rbtree_oset.c: New file.
20346         * MODULES.html.sh (Container data structures): New section.
20347
20348 2006-07-17  Bruno Haible  <bruno@clisp.org>
20349
20350         * m4/gl_list.m4: New file.
20351
20352 2006-07-17  Bruno Haible  <bruno@clisp.org>
20353
20354         * lib/gl_list.h: New file.
20355         * lib/gl_list.c: New file.
20356         * lib/gl_array_list.h: New file.
20357         * lib/gl_array_list.c: New file.
20358         * lib/gl_carray_list.h: New file.
20359         * lib/gl_carray_list.c: New file.
20360         * lib/gl_linked_list.h: New file.
20361         * lib/gl_linked_list.c: New file.
20362         * lib/gl_anylinked_list1.h: New file.
20363         * lib/gl_anylinked_list2.h: New file.
20364         * lib/gl_avltree_list.h: New file.
20365         * lib/gl_avltree_list.c: New file.
20366         * lib/gl_anyavltree_list1.h: New file.
20367         * lib/gl_anyavltree_list2.h: New file.
20368         * lib/gl_rbtree_list.h: New file.
20369         * lib/gl_rbtree_list.c: New file.
20370         * lib/gl_anyrbtree_list1.h: New file.
20371         * lib/gl_anyrbtree_list2.h: New file.
20372         * lib/gl_anytree_list1.h: New file.
20373         * lib/gl_anytree_list2.h: New file.
20374         * lib/gl_linkedhash_list.h: New file.
20375         * lib/gl_linkedhash_list.c: New file.
20376         * lib/gl_anyhash_list1.h: New file.
20377         * lib/gl_anyhash_list2.h: New file.
20378         * lib/gl_avltreehash_list.h: New file.
20379         * lib/gl_avltreehash_list.c: New file.
20380         * lib/gl_rbtreehash_list.h: New file.
20381         * lib/gl_rbtreehash_list.c: New file.
20382         * lib/gl_anytreehash_list1.h: New file.
20383         * lib/gl_anytreehash_list2.h: New file.
20384
20385         * lib/gl_oset.h: New file.
20386         * lib/gl_oset.c: New file.
20387         * lib/gl_array_oset.h: New file.
20388         * lib/gl_array_oset.c: New file.
20389         * lib/gl_avltree_oset.h: New file.
20390         * lib/gl_avltree_oset.c: New file.
20391         * lib/gl_rbtree_oset.h: New file.
20392         * lib/gl_rbtree_oset.c: New file.
20393         * lib/gl_anytree_oset.h: New file.
20394
20395 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
20396
20397         * m4/mkancesdirs.m4: New file.
20398         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
20399         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
20400         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
20401         it.
20402
20403 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
20404
20405         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
20406         * lib/mkancesdirs.h: New files.
20407         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
20408         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
20409         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
20410         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
20411         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
20412         callers changed.  Revamp internals significantly, by not
20413         attempting to create directories that are temporarily more
20414         permissive than the final results.  Do not attempt to use
20415         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
20416         This removes some race conditions, fixes some bugs, and simplifies
20417         things.  Use new dirchownmod function to do owner and mode changes.
20418         * lib/mkdir-p.h: Likewise.
20419         * lib/modechange.c (octal_to_mode): New function.
20420         (struct mode_change): New member mentioned.
20421         (make_node_op_equals): New arg mentioned.  All callers changed.
20422         (mode_compile): Keep track of which mode bits the user has explicitly
20423         mentioned.
20424         (mode_adjust): New arg DIR, so that we implement the X op correctly.
20425         New arg PMODE_BITS, to keep track of which mode bits the user
20426         mentioned; it treats S_ISUID and S_ISGID speciall.
20427         All callers changed.
20428         * lib/modechange.h: Likewise.
20429
20430 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
20431
20432         * MODULES.html.sh: Add mkancestors.
20433         * modules/mkancesdirs: New module.
20434         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
20435         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
20436         The chdir-safer and afs files are now orphans; I'll remove them
20437         unless someone speaks up.
20438         Add lib/dirchownmod.c, lib/dirchownmod.h.
20439         (Depends-on): Remove alloca, chown, save-cwd, dirname.
20440         Add lchown, mkancesdirs.
20441         (Maintainer): Add self.
20442
20443 2006-07-15  Karl Berry  <karl@gnu.org>
20444
20445         * gnulib-tool: help message wording/arrangement.
20446
20447 2006-07-14  Simon Josefsson  <jas@extundo.com>
20448
20449         * doc/gnulib.texi (Libtool and Windows): New section.
20450
20451 2006-07-12  Simon Josefsson  <jas@extundo.com>
20452
20453         * modules/gendocs (License): Fix license, approved by Karl.
20454
20455 2006-07-12  Eric Blake  <ebb9@byu.net>
20456
20457         * MODULES.html.sh: Add gendocs.
20458
20459 2006-07-11  Eric Blake  <ebb9@byu.net>
20460
20461         * modules/fdl: New module, to install doc/fdl.texi.
20462         * MODULES.html.sh: Add new section for documentation modules.
20463         * gnulib-tool: Avoid space-tab.
20464         (--doc-base): New option, to manage files from doc.
20465
20466 2006-07-11  Eric Blake  <ebb9@byu.net>
20467
20468         * m4/absolute-header.m4: Fix comments to match recent change.
20469
20470 2006-07-11  Eric Blake  <ebb9@byu.net>
20471
20472         * gnulib-tool: List --doc-base before --tests-base.
20473
20474 2006-07-11  Derek R. Price  <derek@ximbiot.com>
20475
20476         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
20477
20478 2006-07-11  Bruno Haible  <bruno@clisp.org>
20479
20480         * README: Mention where to put documentation.
20481
20482 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20483
20484         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
20485
20486 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
20487
20488         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
20489         to stdint.m4.
20490
20491 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
20492
20493         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
20494         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
20495         "no/such/file/stdint.h" when there is no such file, so that
20496         the resulting C code can be parsed by dodgy compilers.
20497         Problems reported by Bob Proulx.
20498
20499 2006-07-10  Derek R. Price  <derek@ximbiot.com>
20500
20501         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
20502         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
20503         macros into the GNU _D_EXACT_NAMLEN.
20504         * lib/savedir.c:  Likewise.
20505         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
20506
20507 2006-07-10  Derek R. Price  <derek@ximbiot.com>
20508         and Paul Eggert  <eggert@cs.ucla.edu>
20509
20510         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
20511         * m4/savedir.m4:
20512         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
20513         macros into the GNU _D_EXACT_NAMLEN.
20514
20515 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20516
20517         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
20518         around the absolute name, to work around a problem with the HP-UX
20519         11.23 native C compiler, reported by Bob Proulx.
20520
20521 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20522
20523         * doc/maintain.texi, make-stds.texi: Sync from
20524         <http://savannah.gnu.org/projects/gnustandards>.
20525
20526 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
20527
20528         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
20529
20530 2006-07-09  Jim Meyering  <jim@meyering.net>
20531
20532         * m4/glob.m4: Remove a doubled word in a comment.
20533
20534 2006-07-09  Jim Meyering  <jim@meyering.net>
20535
20536         * lib/argp-pv.c: Remove a doubled word in a comment.
20537         * lib/check-version.c (check_version): Likewise.
20538         * lib/javacomp.c (compile_java_class): Likewise.
20539
20540 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
20541
20542         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
20543         for the benefit of people using Autoconf 2.60.  If you want to
20544         support older Autoconf versions you can copy m4/onceonly_2_57.m4
20545         (or m4/onceonly.m4, if pre-2.57) manually.
20546
20547 2006-07-08  Jim Meyering  <jim@meyering.net>
20548
20549         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
20550         comment.
20551         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
20552         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
20553         comment.
20554
20555 2006-07-08  Jim Meyering  <jim@meyering.net>
20556
20557         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
20558
20559 2006-07-07  Simon Josefsson  <jas@extundo.com>
20560
20561         * tests/test-crc.c: Change expected crc value, the test vector
20562         were probably computed using the old broken crc.c?
20563
20564 2006-07-06  Simon Josefsson  <jas@extundo.com>
20565
20566         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
20567         now the canonical place for the M4 file).
20568
20569         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
20570         from the sys_socket dependency now.
20571
20572         * modules/inet_pton (Files): Ditto.
20573
20574         * modules/inet_ntop (Files): Ditto.
20575
20576 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
20577
20578         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
20579         not gl_PREREQ_GETUSERSHELL.
20580
20581 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20582
20583         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
20584         with only one argument, for Autoconf 2.60.
20585         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
20586         expand to nothing, so add a shell command to avoid syntax error.
20587         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
20588
20589 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20590
20591         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
20592
20593 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
20594
20595         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
20596         no longer needed.  Check for isblank decl.
20597         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
20598         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
20599         of existence.
20600
20601 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
20602
20603         * lib/getloadavg.c: Use __VMS, not VMS.
20604         * lib/getopt.c: Likewise.
20605         * lib/getpagesize.h: Likewise.
20606         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
20607         and probably does not work.
20608
20609 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
20610
20611         * lib/.cppi-disable: Add wcwidth.
20612         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
20613         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
20614         (ISGRAPH): Remove.  All uses changed to isgraph.
20615         (FOLD) [!defined _LIBC]: Remove special case.
20616         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
20617         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
20618         HAVE_ISBLANK.
20619         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
20620         case.
20621
20622 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
20623
20624         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
20625         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
20626         brackets.  Other minor changes to suppress some compiler
20627         warnings.
20628
20629 2006-07-06  Derek R. Price  <derek@ximbiot.com>
20630         and Paul Eggert  <eggert@cs.ucla.edu>
20631
20632         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
20633         of invoking obsolescent AC_HEADER_DIRENT macro.
20634         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
20635         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
20636         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
20637         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
20638         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
20639         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
20640         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
20641         * m4/readdir.m4: Remove; no longer needed.
20642
20643 2006-07-06  Derek R. Price  <derek@ximbiot.com>
20644         and Paul Eggert  <eggert@cs.ucla.edu>
20645
20646         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
20647         Don't worry about this obsolete case any more.
20648         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
20649         directories.
20650         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
20651         worry about this obsolete case any more.
20652         * lib/fts.c: Likewise.
20653         * lib/getcwd.c: Likewise.
20654         * lib/glob.h: Likewise.
20655         * lib/savedir.c: Likewise.
20656
20657 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
20658
20659         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
20660         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
20661         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
20662         needed.
20663         All uses removed.
20664         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
20665         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
20666         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
20667         needed.
20668         * m4/getdate.m4 (gl_GETDATE): Likewise.
20669         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
20670         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
20671         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
20672         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
20673         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
20674         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20675         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
20676         needed.
20677
20678 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
20679
20680         * lib/memcasecmp.c: Include <limits.h>.
20681         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
20682         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
20683         Don't assume isdigit succeeds only on '0' through '9'.
20684
20685 2006-07-05  Eric Blake  <ebb9@byu.net>
20686
20687         * modules/getaddrinfo (Depends-on): Add snprintf.
20688
20689 2006-07-05  Eric Blake  <ebb9@byu.net>
20690
20691         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
20692         to avoid 'header present but could not be compiled' on cygwin.
20693
20694 2006-07-05  Eric Blake  <ebb9@byu.net>
20695
20696         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
20697         missing from netdb.h.
20698         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
20699
20700 2006-07-05  Derek R. Price  <derek@ximbiot.com>
20701
20702         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
20703         no longer needed.
20704         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
20705         * m4/getdate.m4 (gl_GETDATE): Likewise.
20706         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
20707         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
20708         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
20709         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
20710         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
20711
20712 2006-07-05  Derek R. Price  <derek@ximbiot.com>
20713
20714         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
20715         All uses of is_space replaced by isspace.
20716         * lib/exit.h: Don't talk about STDC_HEADERS.
20717         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
20718         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
20719         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
20720         replaced by isprint etc.
20721         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
20722         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
20723         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
20724         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
20725         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
20726         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
20727
20728 2006-07-05  Bruno Haible  <bruno@clisp.org>
20729
20730         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
20731         the function exists, before testing against AIX.
20732         Reported by Martin Lambers <marlam@marlam.de>.
20733
20734 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
20735
20736         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
20737         From Mark D. Baushke.
20738
20739 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
20740
20741         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
20742         to the absolute name, not just one, to bypass Sun C 5.8's
20743         "warning: #include of /usr/include/... may be non-portable".
20744
20745 2006-07-04  Eric Blake  <ebb9@byu.net>
20746
20747         * modules/dirname-tests: New test module.
20748         * tests/test-dirname.c: New file, replacing dirname.c
20749         TEST_DIRNAME section that was recently deleted.
20750
20751 2006-07-04  Bruno Haible  <bruno@clisp.org>
20752
20753         Assume ANSI C header files and <ctype.h> functions.
20754         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
20755         (mbsnwidth): Use isprint, iscntrl instead.
20756
20757 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
20758
20759         Merge from coreutils.
20760         * MODULES.html.sh: Add xstrtold.
20761         * modules/xstrtold: New file.
20762         * modules/cycle-check (Files): Add lib/same-inode.h.
20763         * modules/dirname (Files): Add m4/double-slash-root.m4.
20764         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
20765         * modules/mkdir-p (Files): Add lib/same-inode.h.
20766         * modules/same (Files): Add lib/same-inode.h.
20767
20768 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
20769
20770         * m4/absolute-header.m4: Renamed from full-header-path.m4.
20771         This is to keep the terminology clean; POSIX talks about
20772         "absolute pathnames", not "full pathnames", but the GNU
20773         Coding Standards say to use "path" for something else;
20774         so use "absolute" to keep both sides happy.
20775         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
20776         Set gl_absolute_header, not gl_full_header_path.
20777         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
20778         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
20779         All uses changed.
20780
20781         Merge from coreutils.
20782
20783         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
20784
20785         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
20786         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
20787         want to require the building of c-strtod.o.
20788         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
20789         needs -lm directly.
20790         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
20791
20792         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
20793
20794         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
20795         --as-needed option if available.  Problem reported by Albert Chin in
20796         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
20797         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
20798         cc merely issues a bunch of annoying warnings for --as-needed
20799         (this problem was reported by Bob Proulx).  Also, try linking with
20800         -lm to detect a bug in binutils 2.16 (this problem was reported
20801         by Ralf Wildenhues).
20802
20803         2006-06-18  Jim Meyering  <jim@meyering.net>
20804
20805         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
20806         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
20807         macro.
20808         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
20809         also check for glibc-2.4's abort-inducing bug.
20810
20811         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
20812         Low-probability clean-up should be to use rmdir to get rid of
20813         the just-created directory, not unlink.
20814
20815         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
20816         configure fail, and request a bug report to inform us about it.
20817         Add a comment that, barring reports to the contrary, in 2007 we'll
20818         assume ftruncate is universally available.
20819
20820         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
20821
20822         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
20823
20824         2006-03-12  Jim Meyering  <jim@meyering.net>
20825
20826         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
20827         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
20828         * m4/same.m4 (gl_SAME): Likewise.
20829         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
20830
20831         2006-03-11  Eric Blake  <ebb9@byu.net>
20832
20833         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
20834         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
20835         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
20836         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
20837
20838 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
20839
20840         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
20841         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
20842         reported by Mark D. Baushke, one in
20843         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
20844
20845         Merge from coreutils.
20846
20847         * lib/.cppi-disable: Add stdint_.h.
20848         * lib/.cvsignore: Add stdint.h.
20849
20850         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
20851
20852         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
20853         both double and long double versions.
20854         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
20855         * lib/xstrtold.c: New file.
20856         * lib/xstrtod.h (xstrtold): New decl.
20857
20858         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
20859
20860         * lib/filemode.c (setst): Remove.
20861         (strmode): Rewrite to avoid setst.  This makes the code shorter,
20862         (arguably) clearer, and the generated code is a bit smaller on my
20863         Debian GNU/Linux stable x86 host.
20864
20865         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
20866
20867         * lib/filemode.c: Include "filemode.h" first, to test the interface.
20868         Assume that filemode.h includes sys/types.h and sys/stat.h.
20869         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
20870         (ftypelet): Reorder to put common cases first, for efficiency.
20871         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
20872         to do 'M'.
20873         (strmode): Renamed from mode_string, and now stores 12 bytes instead
20874         of 10, for compatibility with FreeBSD.  All callers changed.
20875         (filemodestring): Now stores 12 bytes instead of 10, and sets file
20876         types that can't be deduced solely from st_mode.  First arg is now a
20877         const pointer.
20878         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
20879         (strmode): Renamed from mode_string.
20880         (filemodestring): New decl.
20881         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
20882         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
20883         needed.
20884         (S_ISPORT, S_ISWHT): New macros, if not already defined.
20885
20886         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
20887
20888         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
20889         fsusage.h now does that.  Include fsusage.h first, to test interface.
20890         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
20891         at most one method (the old code could have generated decls that
20892         didn't conform to C89, not that this was ever exercised).
20893         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
20894
20895         2006-03-19  Jim Meyering  <jim@meyering.net>
20896
20897         Work even in a chroot where d_ino values for entries in "/"
20898         don't match the stat.st_ino values for the same names.
20899         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
20900         number, iterate through all entries again, using lstat instead.
20901         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
20902         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
20903
20904         * lib/getcwd.c (__getcwd): Clarify a comment.
20905         Use memcpy in place of a call to strcpy.
20906
20907         2006-03-12  Jim Meyering  <jim@meyering.net>
20908
20909         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
20910         matches that of the current directory (which we're about to chdir ".."
20911         out of), then save the dev-ino of the parent, instead.
20912
20913         * lib/same-inode.h (SAME_INODE): New file/macro.
20914         * lib/chdir-safer.c (SAME_INODE): Remove definition.
20915         Include "same-inode.h", instead.
20916         * lib/same.c: Likewise.
20917         * lib/cycle-check.h: Include "same-inode.h".
20918         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
20919         * lib/cycle-check.c (SAME_INODE): Remove definition.
20920         * lib/root-dev-ino.h: Include "same-inode.h".
20921
20922         2006-03-11  Eric Blake  <ebb9@byu.net>
20923
20924         * lib/same.c (same_name): s/base_name/last_component/
20925         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
20926         * lib/filenamecat.c (file_name_concat): Likewise.
20927
20928         2006-03-11  Eric Blake  <ebb9@byu.net>,
20929                     Paul Eggert  <eggert@cs.ucla.edu>
20930
20931         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
20932         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
20933         drive prefix.
20934         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
20935         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
20936         (last_component): New method.
20937         * lib/dirname.c (dir_len): Determine when drive letters need a
20938         subsequent slash.  Preserve // when it is special.
20939         (dir_name): Don't append dot when drive letter is absolute.
20940         [TEST_DIRNAME]: Move into a full-blown gnulib test.
20941         * lib/basename.c (base_name): New semantics - malloc the result.
20942         Preserve // when it is special.  Preserve relative files that look
20943         like drive letters.
20944         (base_len): Preserve // when it is special.
20945         (last_component): New method, similar to old base_name semantics.
20946         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
20947         base_name.  Strip redundant slashes from ///.
20948
20949 2006-07-03  Jim Meyering  <jim@meyering.net>
20950
20951         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
20952         macro is used before the first cycle_check call.
20953
20954 2006-07-03  Eric Blake  <ebb9@byu.net>
20955
20956         * modules/dirname (Depends-on): Add xstrndup.
20957
20958 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
20959
20960         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
20961         test cases, so that config.log is a bit easier to follow.
20962
20963 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
20964
20965         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
20966         both are 64 bits, since this seems to be the tradition, and this
20967         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
20968         we ever run into a host that prefers long long to long in this
20969         case, we'll need another configure-time test.  Problem reported by
20970         Jim Meyering.
20971
20972 2006-07-02  Eric Blake  <ebb9@byu.net>
20973
20974         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
20975
20976 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
20977
20978         * modules/inttypes (Depends-on): No longer depends on stdint.
20979         * modules/stdint (Description): Say more about assumptions.
20980         Say that the fast types might differ.  Say macros are used.
20981         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
20982         (Makefile.am): Revise list of substituted symbols to match
20983         new stdint.m4.
20984         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
20985         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
20986         * tests/test-stdint.c (verify_same_types)
20987         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
20988         the code conforms to C99/C89.
20989         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
20990         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
20991
20992 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
20993
20994         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
20995         but fix a bug, by requiring at least 64 bits.
20996         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
20997         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
20998         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
20999         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
21000
21001         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
21002         changes.  Make 2.59 a prerequisite.  Check and substitute for
21003         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
21004         inttypes.h.  Do not use special include files; just use the
21005         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
21006         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
21007         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
21008         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
21009         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
21010         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
21011         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
21012         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
21013         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
21014         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
21015         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
21016         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
21017         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
21018         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
21019         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
21020         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
21021         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
21022         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
21023         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
21024         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
21025         WINT_MAX.  Check for C99 conformance more strictly, by detecting
21026         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
21027         not check for things that C99 does not require, e.g., int8_t.  If
21028         a test isn't needed unless <stdint.h> isn't working, and is
21029         unlikely to be needed for any other reason, then don't do it
21030         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
21031         size_t, since we assume C89 freestanding at least.  Do not check
21032         for sig_atomic_t, wchar_t, or wint_t, since the code now does
21033         the right thing even if the types are not defined.  Instead use:
21034         (gl_STDINT_TYPE_PROPERTIES): New macro.
21035         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
21036         testing whether <sys/types.h> clashes, as Autoconf does this for
21037         us now.  All uses removed.
21038         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
21039         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
21040         (gl_CHECK_TYPE_SAME):
21041         Remove; no longer needed.
21042         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
21043         exists, since we'll return 0 anyway in that case.
21044         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
21045
21046 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21047
21048         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
21049         possible collision with system files.
21050         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
21051         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
21052         WCHAR_MIN and WCHAR_MAX in this case.
21053         (<stddef.h>): Do not include; no longer needed.
21054         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
21055         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
21056         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
21057         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
21058         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
21059         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
21060         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
21061         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
21062         !defined(__c99))]: Include in this case too, since it's harmless
21063         now.
21064         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
21065         dangerous to do so.
21066         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
21067         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
21068         (_STDINT_MIN, _STDINT_MAX): New macros.
21069         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
21070         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
21071         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
21072         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
21073         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
21074         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
21075         macros, not typedefs; this simplifies things quite a bit.
21076         Use long int for all types narrower than int64_t.
21077         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
21078         Define in terms of long long int or int64_t or long int,
21079         not int64_t or int32_t.  This saves some compile-time testing.
21080         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
21081         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
21082         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
21083         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
21084         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
21085         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
21086         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
21087         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
21088         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
21089         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
21090         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
21091         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
21092         undef any previous version and define our own version, for
21093         simplicity and consistency with the new macros for types.
21094         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
21095         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
21096         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
21097         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
21098         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
21099         @WINT_T_SUFFIX@ to keep things simple here.
21100         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
21101         Simplify by assuming typical 8/16/32/64 host, since we're
21102         already doing that elsewhere anyway.
21103         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
21104         and assume long long int is 64 bits if available.  This
21105         speeds up 'configure'.
21106
21107 2006-07-01  Eric Blake  <ebb9@byu.net>
21108
21109         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
21110         Reported by Andreas Buening.
21111
21112 2006-07-01  Eric Blake  <ebb9@byu.net>
21113
21114         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
21115
21116 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
21117
21118         * lib/getaddrinfo.c: fixed typo
21119
21120 2006-06-29  Jim Meyering  <jim@meyering.net>
21121
21122         * modules/strftime (Maintainer): Add my name, since with the
21123         FPRINTFTIME changes strftime.c has forked from glibc.
21124
21125 2006-06-29  Eric Blake  <ebb9@byu.net>
21126
21127         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
21128
21129 2006-06-29  Eric Blake  <ebb9@byu.net>
21130
21131         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
21132
21133 2006-06-29  Eric Blake  <ebb9@byu.net>
21134
21135         * lib/stat_.h: New file.
21136
21137 2006-06-29  Eric Blake  <ebb9@byu.net>
21138
21139         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
21140         unused static function.
21141
21142 2006-06-29  Eric Blake  <ebb9@byu.net>
21143
21144         * doc/functions.texi (Function Portability): Document missing lstat
21145         on mingw.
21146
21147 2006-06-29  Eric Blake  <ebb9@byu.net>
21148
21149         * MODULES.html.sh: Add sys_stat.
21150         * modules/sys_stat: New module.
21151         * modules/mkstemp (Depends-on): Add sys_stat.
21152
21153 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21154
21155         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
21156
21157 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21158
21159         * m4/c-bs-a.m4: Removed.
21160
21161 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21162
21163         * lib/strftime.c: Assume strftime() exists.
21164
21165 2006-06-29  Derek Price  <derek@ximbiot.com>
21166
21167         * modules/c-bs-a: Removed - \a is C89.
21168         * MODULES.html.sh: Remove c-bs-a.
21169
21170 2006-06-29  Bruno Haible  <bruno@clisp.org>
21171
21172         * modules/wcwidth (License): Change to LGPL.
21173
21174 2006-06-28  Simon Josefsson  <jas@extundo.com>
21175
21176         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
21177         on _WIN32.
21178
21179         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
21180         getnameinfo.
21181
21182 2006-06-28  Simon Josefsson  <jas@extundo.com>
21183
21184         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
21185
21186 2006-06-28  Simon Josefsson  <jas@extundo.com>
21187
21188         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
21189         functions there.  It will succeed on Windows XP, but on Windows
21190         2000 and (presumably) earlier, it will fail, and use the internal
21191         re-implementation.
21192         (use_win32_p): New function.
21193         (getaddrinfo): Use strtoul on servname, to support numeric ports.
21194         Support AI_NUMERICSERV to disable getservbyname.
21195         (getnameinfo): New function, only supports
21196         NI_NUMERICHOST|NI_NUMERICSERV for now.
21197
21198         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
21199         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
21200         getnameinfo.
21201
21202 2006-06-28  Eric Blake  <ebb9@byu.net>
21203
21204         * modules/wcwidth: New file.
21205         * modules/mbchar (Depends-on): Add wcwidth.
21206         * modules/mbswidth (Depends-on): Add wcwidth.
21207         * MODULES.html.sh: Add wcwidth.
21208
21209 2006-06-28  Eric Blake  <ebb9@byu.net>
21210
21211         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
21212         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
21213
21214 2006-06-28  Eric Blake  <ebb9@byu.net>
21215
21216         * lib/xvasprintf.h: Fix comments.
21217
21218 2006-06-28  Eric Blake  <ebb9@byu.net>
21219
21220         * lib/mbchar.h (wcwidth): Include wcwidth.h.
21221         * lib/mbswidth.c (wcwidth): Move from here...
21222         * lib/wcwidth.h: ...to this new file.
21223
21224 2006-06-28  Derek R. Price  <derek@ximbiot.com>
21225
21226         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
21227
21228         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
21229         it's obsolete.
21230         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
21231
21232 2006-06-28  Derek R. Price  <derek@ximbiot.com>
21233
21234         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
21235         Autoconf 2.60 says this stuff was obsolete.
21236
21237 2006-06-28  Bruno Haible  <bruno@clisp.org>
21238
21239         * modules/wcwidth (Files): Add m4/wchar_t.m4.
21240
21241 2006-06-28  Bruno Haible  <bruno@clisp.org>
21242
21243         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
21244         gt_TYPE_WCHAR_T.
21245
21246 2006-06-28  Bruno Haible  <bruno@clisp.org>
21247
21248         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
21249         declaration for wcwidth.
21250         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
21251
21252 2006-06-28  Bruno Haible  <bruno@clisp.org>
21253
21254         * lib/mkdtemp.c [MINGW]: Include <io.h>.
21255         (mkdir): Define using _mkdir.
21256
21257 2006-06-28  Bruno Haible  <bruno@clisp.org>
21258
21259         * lib/getaddrinfo.h: Fix POSIX URL.
21260         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
21261         _WIN32.
21262         (use_win32_p): Make static.
21263         (getaddrinfo): Reject service name if it is empty or does not consist
21264         solely of decimal digits, or if its value is > 65535.
21265         (getnameinfo): Remove useless casts.
21266
21267 2006-06-27  Simon Josefsson  <jas@extundo.com>
21268
21269         * modules/sys_select: New file, suggested by Bruno Haible, Paul
21270         Eggert and Martin Lambers.
21271
21272 2006-06-27  Simon Josefsson  <jas@extundo.com>
21273
21274         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
21275         Eggert and Martin Lambers.
21276
21277 2006-06-27  Bruno Haible  <bruno@clisp.org>
21278
21279         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
21280         result to 0, not to empty.
21281         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
21282
21283 2006-06-27  Bruno Haible  <bruno@clisp.org>
21284
21285         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
21286
21287 2006-06-26  Simon Josefsson  <jas@extundo.com>
21288
21289         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
21290         present.
21291
21292 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
21293
21294         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
21295         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
21296         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
21297
21298 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
21299
21300         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
21301
21302 2006-06-26  Bruno Haible  <bruno@clisp.org>
21303
21304         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
21305
21306 2006-06-26  Bruno Haible  <bruno@clisp.org>
21307
21308         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
21309
21310 2006-06-26  Bruno Haible  <bruno@clisp.org>
21311
21312         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
21313         SGI C compiler in pre-C99 mode.
21314         Suggested by Mark D. Baushke and Larry Jones.
21315
21316 2006-06-26  Bruno Haible  <bruno@clisp.org>
21317
21318         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
21319         WCHAR_MAX.
21320         Reported by Mark D. Baushke and Larry Jones.
21321
21322 2006-06-26  Bruno Haible  <bruno@clisp.org>
21323
21324         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
21325         in pre-C99 mode.
21326         Suggested by Mark D. Baushke and Larry Jones.
21327
21328 2006-06-23  Simon Josefsson  <jas@extundo.com>
21329             Bruno Haible  <bruno@clisp.org>
21330
21331         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
21332         Emit mostlyclean-local rule.
21333         (func_emit_tests_Makefile_am): Likewise.
21334         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
21335
21336 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
21337
21338         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
21339
21340 2006-06-23  Bruno Haible  <bruno@clisp.org>
21341
21342         * tests/test-stdint.c: Update to match ISO C 99 Technical
21343         Corrigendum 1.
21344
21345 2006-06-23  Bruno Haible  <bruno@clisp.org>
21346
21347         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
21348
21349 2006-06-23  Bruno Haible  <bruno@clisp.org>
21350
21351         * lib/stdint_.h: Treat IRIX like OpenBSD.
21352
21353 2006-06-23  Bruno Haible  <bruno@clisp.org>
21354
21355         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
21356         ISO C 99 Technical Corrigendum 1.
21357
21358 2006-06-22  Simon Josefsson  <jas@extundo.com>
21359
21360         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
21361         MinGW.
21362
21363 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
21364
21365         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
21366         needed.  Some compiler complained about some of them.  Problem reported
21367         by Larry Jones in
21368         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
21369
21370 2006-06-21  Simon Josefsson  <jas@extundo.com>
21371
21372         * tests/test-getaddrinfo.c: New file.
21373
21374         * modules/getaddrinfo-tests: New file.
21375
21376         * MODULES.html.sh: Add inet_pton.
21377
21378         * modules/inet_pton: New file.
21379
21380 2006-06-21  Simon Josefsson  <jas@extundo.com>
21381
21382         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
21383         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
21384         of using the (limited) gnulib implementation on Windows XP.
21385
21386         * m4/inet_pton.m4: New file.
21387
21388 2006-06-21  Simon Josefsson  <jas@extundo.com>
21389
21390         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
21391         variable.
21392
21393         * lib/socket_.h: Don't define WINVER.
21394
21395         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
21396         slightly modified to work in gnulib.
21397
21398 2006-06-21  Simon Josefsson  <jas@extundo.com>
21399
21400         * doc/gnulib.texi (Windows sockets): Add.
21401
21402 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
21403
21404         * lib/read-file.c (fread_file): Start with buffer allocation of
21405         0 bytes rather than 1 byte; this simplifies the code.
21406         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
21407         code to free buffer and save/restore errno.
21408         (internal_read_file): Remove unused local.
21409
21410 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
21411
21412         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
21413         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
21414         Problem reported by Denis Excoffier in
21415         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
21416
21417 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
21418
21419         * modules/sys_socket, modules/socklen: Include sys/types since
21420         FreeBSD 4.x's sys/socket.h needs it.
21421
21422 2006-06-19  Simon Josefsson  <jas@extundo.com>
21423
21424         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
21425
21426 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
21427
21428         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
21429
21430 2006-06-19  Bruno Haible  <bruno@clisp.org>
21431
21432         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
21433         and FULL_PATH_INTTYPES_H in angle brackets.
21434         Reported by Mark D. Baushke <mdb@gnu.org>.
21435
21436 2006-06-17  Eric Blake  <ebb9@byu.net>
21437
21438         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
21439         errno.
21440
21441 2006-06-17  Bruno Haible  <bruno@clisp.org>
21442
21443         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
21444         <sys/inttypes.h>.
21445
21446 2006-06-17  Bruno Haible  <bruno@clisp.org>
21447
21448         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
21449         whether errno is declared. Assume <errno.h> declares errno.
21450
21451 2006-06-17  Bruno Haible  <bruno@clisp.org>
21452
21453         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
21454
21455 2006-06-17  Bruno Haible  <bruno@clisp.org>
21456
21457         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
21458         problem on Solaris 2.5.1.
21459
21460 2006-06-16  Eric Blake  <ebb9@byu.net>
21461
21462         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
21463         * lib/unicodeio.c [!defined errno]: Likewise.
21464         * lib/strtol.c [!defined errno]: Likewise.
21465         * lib/strtod.c [!defined errno]: Likewise.
21466
21467 2006-06-15  Eric Blake  <ebb9@byu.net>
21468
21469         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
21470
21471 2006-06-15  Eric Blake  <ebb9@byu.net>
21472
21473         * config/srclist.txt (ssize_t.m4): Lose sync.
21474
21475 2006-06-15  Bruno Haible  <bruno@clisp.org>
21476
21477         * modules/stdint (Files): Include m4/full-header-path.m4,
21478         m4/size_max.m4, m4/wchar_t.m4.
21479         (Makefile.am): Many more substitutions.
21480         * modules/stdint-tests: New file.
21481         * tests/test-stdint.c: New file.
21482
21483 2006-06-15  Bruno Haible  <bruno@clisp.org>
21484
21485         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
21486         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
21487         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
21488         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
21489         gl_CHECK_TYPE_SAME): New macros.
21490
21491 2006-06-15  Bruno Haible  <bruno@clisp.org>
21492
21493         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
21494
21495 2006-06-15  Bruno Haible  <bruno@clisp.org>
21496
21497         * lib/stdint_.h: Rewritten to be fully auto-configured.
21498         Fixes bug on HP-UX/IA64.
21499
21500 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
21501
21502         * lib/getdate.y (__attribute__): Don't define if already defined.
21503         Problem reported by Larry Jones.
21504         * lib/utimens.c (__attribute__): Likewise.
21505
21506 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
21507
21508         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
21509         reported by Andreas Schwab.
21510
21511 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21512             Bruno Haible  <bruno@clisp.org>
21513
21514         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
21515         check for the declaration of strnlen and a run test that exposes the
21516         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
21517         rpl_strndup.
21518
21519 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21520             Bruno Haible  <bruno@clisp.org>
21521
21522         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
21523
21524 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21525
21526         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
21527         compile test, for Tru64 4.0D.
21528
21529 2006-05-28  Karl Berry  <karl@gnu.org>
21530
21531         * config/srclist.txt (printf-args.c): lose sync.
21532
21533 2006-05-26  Martin Lambers  <marlam@marlam.de>
21534
21535         * lib/getpass.c: Updates the test for the native W32 API, and adds
21536         missing includes, thus fixing compilation warnings.
21537
21538 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
21539
21540         * lib/exclude.c (exclude_fnmatch): New function.
21541         (excluded_file_name): Call exclude_fnmatch.
21542         * lib/exclude.h (excluded_file_name): New prototype
21543
21544 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
21545
21546         * lib/tempname.c (small_open, large_open): New macros.
21547         (__open, __open64) [!_LIBC]: Remove.
21548         (__gen_tempname): Use small_open and large_open instead of __open
21549         and __open64.  This fixes a portability bug on HP-UX 11.11i
21550         reported by Simon Wing-Tang in
21551         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
21552
21553 2006-05-24  Bruno Haible  <bruno@clisp.org>
21554
21555         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
21556         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
21557         Reported by Thorsten Maerz <torte@netztorte.de> via
21558         Aaron Stone <aaron@serendipity.cx>.
21559
21560 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
21561
21562         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
21563         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
21564         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
21565         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
21566         not really conditional on the cache.
21567         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
21568
21569 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
21570
21571         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
21572         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
21573         (my_usleep): Don't mishandle maximum value.
21574
21575 2006-05-19  Jim Meyering  <jim@meyering.net>
21576
21577         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
21578
21579 2006-05-17  Bruno Haible  <bruno@clisp.org>
21580
21581         Cygwin portability.
21582         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
21583
21584 2006-05-17  Bruno Haible  <bruno@clisp.org>
21585
21586         * lib/stdint_.h: Fix recognition of Cygwin.
21587
21588 2006-05-15  Bruno Haible  <bruno@clisp.org>
21589
21590         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
21591         on libtool patch by Ralf Wildenhues.
21592
21593 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
21594
21595         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
21596         test for C99 conformance; (bool) 0.5 is an integer constant
21597         expression, but (bool) -0.5 is not.  Problem reported by Fedor
21598         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
21599
21600 2006-05-11  Simon Josefsson  <jas@extundo.com>
21601
21602         * m4/xvasprintf.m4: Fix obvious typo.
21603
21604 2006-05-11  Jim Meyering  <jim@meyering.net>
21605
21606         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
21607         James Lemley.
21608
21609 2006-05-10  Simon Josefsson  <jas@extundo.com>
21610
21611         * lib/md4.c: Typo fix, update copyright years.
21612         (K1, K2): Don't use L because it turn computations into 64-bit on
21613         64-bit platforms.
21614
21615 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
21616
21617         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
21618         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
21619         unwanted sign propagation, e.g., on hosts with 64-bit int.
21620         There still are some problems with reeelly weird theoretical hosts
21621         (e.g., 33-bit int) but it's not worth worrying about now.
21622         * lib/sha1.c (rol): Likewise.
21623         (K1, K2, K3, K4): Remove unnecessary L suffix.
21624
21625 2006-05-10  Bruno Haible  <bruno@clisp.org>
21626
21627         * lib/des.c: Cast to avoid warnings.
21628
21629 2006-05-09  Bruno Haible  <bruno@clisp.org>
21630
21631         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
21632         (Depends-on): Depend also on xsize, stdarg.
21633         (configure.ac): Add gl_XVASPRINTF.
21634
21635 2006-05-09  Bruno Haible  <bruno@clisp.org>
21636
21637         * m4/xvasprintf.m4: New file.
21638
21639 2006-05-09  Bruno Haible  <bruno@clisp.org>
21640
21641         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
21642         (EOVERFLOW): Define fallback value.
21643         (xstrcat): New function.
21644         (xvasprintf): Recognize the special case of a string concatenation.
21645
21646 2006-05-08  Eric Blake  <ebb9@byu.net>
21647
21648         * gnulib-tool (func_version): Base copyright year on CVS date.
21649         (func_emit_copyright_notice): New function.
21650         (func_emit_lib_Makefile_am): Use it.
21651         (func_emit_tests_Makefile_am): Likewise.
21652         (func_import): Likewise.
21653
21654 2006-05-08  Bruno Haible  <bruno@clisp.org>
21655
21656         * modules/stdarg: New file.
21657         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
21658
21659 2006-05-08  Bruno Haible  <bruno@clisp.org>
21660
21661         * m4/stdarg.m4: New file, from GNU gettext.
21662
21663 2006-05-08  Bruno Haible  <bruno@clisp.org>
21664
21665         * config/srclist.txt (build-aux/config.rpath): different from latest
21666         release.
21667
21668 2006-05-08  Bruno Haible  <bruno@clisp.org>
21669
21670         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
21671
21672 2006-05-05  Jim Meyering  <jim@meyering.net>
21673
21674         * m4/warning.m4: New file, derived from bison's file by the same name.
21675
21676 2006-05-03  Bruno Haible  <bruno@clisp.org>
21677
21678         * lib/stdint_.h: Shorter URL.
21679         * lib/inttypes.h: Likewise.
21680
21681 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
21682
21683         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
21684
21685 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
21686
21687         * lib/verify.h: Document the internals better.  Most of this change
21688         was written by Bruno Haible.
21689
21690 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
21691
21692         * doc/verify.texi: New file, partly based on a proposal by
21693         Bruno Haible.
21694
21695 2006-05-02  Bruno Haible  <bruno@clisp.org>
21696
21697         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
21698         test from here...
21699         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
21700
21701 2006-04-29  Bruno Haible  <bruno@clisp.org>
21702
21703         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
21704         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
21705
21706 2006-04-29  Bruno Haible  <bruno@clisp.org>
21707
21708         * gnulib-tool: Make --update option actually work.
21709
21710 2006-04-29  Bruno Haible  <bruno@clisp.org>
21711
21712         * doc/gcd.texi: New file.
21713         * doc/gnulib.texi: Include it.
21714
21715 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
21716
21717         * lib/getdate.y (get_date): When adding relative date, start with the
21718         initial time, not with the result of the first mktime call.
21719
21720 2006-04-25  Bruno Haible  <bruno@clisp.org>
21721
21722         * gnulib-tool (func_import): Output the include directives in three
21723         blocks, sorted separately.
21724         Reported by Ben Pfaff <blp@cs.stanford.edu>.
21725
21726 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
21727
21728         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
21729         to define main with arguments, for C++.  Reported by Eric Blake.
21730         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
21731         Prefer 'int main ()' to 'int main (void)', for C++.
21732         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
21733         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
21734         for 'main', for C99 and C++.
21735
21736 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
21737
21738         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
21739         Don't assume that exit status -1 is valid.
21740         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
21741         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
21742         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
21743         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
21744         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
21745         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
21746         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
21747         functions can be used without declaring them, or that you can
21748         exit with status -1.
21749         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
21750
21751 2006-04-24  Karl Berry  <karl@gnu.org>
21752
21753         * config/srclist.txt (longdouble.m4): sync lost.
21754
21755 2006-04-24  Eric Blake  <ebb9@byu.net>
21756
21757         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
21758
21759 2006-04-24  Bruno Haible  <bruno@clisp.org>
21760
21761         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
21762         poll() implementation in AIX.
21763         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
21764
21765 2006-04-24  Bruno Haible  <bruno@clisp.org>
21766
21767         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
21768         assigned exactly once.
21769
21770 2006-04-23  Claudio Fontana  <claudio@gnu.org>
21771             Bruno Haible  <bruno@clisp.org>
21772
21773         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
21774         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
21775         for AM_CPPFLAGS.
21776
21777 2006-04-23  Bruno Haible  <bruno@clisp.org>
21778
21779         * modules/copy-file: Depend on unistd.
21780         * modules/execute: Likewise.
21781         * modules/fatal-signal: Likewise.
21782         * modules/findprog: Likewise.
21783         * modules/mkdtemp : Likewise.
21784         * modules/pipe: Likewise.
21785         * modules/wait-process: Likewise.
21786
21787 2006-04-23  Bruno Haible  <bruno@clisp.org>
21788
21789         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
21790         condition was already detected.
21791         Reported by Ben Pfaff <blp@cs.stanford.edu>.
21792
21793 2006-04-23  Bruno Haible  <bruno@clisp.org>
21794
21795         * lib/copy-file.c: Include <unistd.h> unconditionally.
21796         * lib/execute.c: Likewise.
21797         * lib/fatal-signal.c: Likewise.
21798         * lib/findprog.c: Likewise.
21799         * lib/mkdtemp.c: Likewise.
21800         * lib/pipe.h: Likewise.
21801         * lib/pipe.c: Likewise.
21802         * lib/wait-process.h: Likewise.
21803
21804 2006-04-23  Bruno Haible  <bruno@clisp.org>
21805
21806         * gnulib-tool (func_usage): Fix --import description. Document
21807         --update.
21808         (func_import): Create temporary file in a temporary directory, if
21809         --dry-run is specified. Silence errors from 'grep' when there are no
21810         m4 files in $m4dir.
21811         (func_create_testdir): Silence errors from 'grep' when there are no
21812         m4 files in $m4dir.
21813         Reported by Karl Berry <karl@freefriends.org>.
21814
21815 2006-04-20  Bruno Haible  <bruno@clisp.org>
21816
21817         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
21818         one argument, so that the code will be portable to Autoconf 2.60.
21819         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
21820         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
21821         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
21822
21823 2006-04-19  Derek Price  <derek@ximbiot.com>
21824             Eric Blake  <ebb9@byu.net>
21825
21826         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
21827         rather than "/full/path.h".  Update comment to match.  Shorten &
21828         generalize m4_translit call via AS_TR_CPP.
21829
21830 2006-04-19  Derek Price  <derek@ximbiot.com>
21831             Eric Blake  <ebb9@byu.net>
21832
21833         * lib/inttypes.h: Correct grammar in comment.
21834
21835 2006-04-18  Derek Price  <derek@ximbiot.com>
21836             Paul Eggert  <eggert@cs.ucla.edu>
21837
21838         * modules/inttypes: New file.
21839         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
21840
21841 2006-04-18  Derek Price  <derek@ximbiot.com>
21842             Paul Eggert  <eggert@cs.ucla.edu>
21843
21844         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
21845         New files.
21846
21847 2006-04-18  Derek Price  <derek@ximbiot.com>
21848             Paul Eggert  <eggert@cs.ucla.edu>
21849
21850         * lib/inttypes.h: New file.
21851         * lib/strtoimax.c: Assume <inttypes.h>.
21852
21853 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
21854
21855         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
21856         isn't mounted.  Problem reported by Kir Kolyshkin.
21857
21858 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
21859
21860         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
21861         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
21862         Derek R. Price.
21863         * lib/regex.h (RE_DUP_MAX): Update comment to match current
21864         implementation.
21865
21866 2006-04-12  Eric Blake  <ebb9@byu.net>
21867
21868         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
21869         is now done automatically by the corresponding Autoconf macro.
21870
21871 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
21872
21873         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
21874         time_r.h.
21875
21876 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
21877
21878         Merge regex changes from libc, removing some of our
21879         POSIX-conformance changes that were rejected and redoing them in a
21880         less-intrusive way.
21881
21882         * lib/regcomp.c (re_compile_internal, init_dfa):
21883         Length arg is now size_t, not Idx.  All uses changed.
21884         (peek_token): Forward decl now says internal_function.
21885         (__re_error_msgid, __re_error_msgid_idx):
21886         Now static rather than extern with attribute_hidden.
21887         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
21888         For some reason libc prefers K&R style defns for external functions.
21889         (regerror) [!defined _LIBC]: Likewise.
21890         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
21891         (seek_collating_symbol_entry, lookup_collation_sequence_value):
21892         (build_range_exp, build_collating_symbol):
21893         Use K&R-style defn.
21894         (re_compile_fastmap): Use '\0' to memset, not 0.
21895         (utf8_sb_map): Make the calculations more obvious.
21896         (init_dfa, parse_bracket_exp, build_charclass_op):
21897         Call calloc and cast result, as glibc does.
21898         (init_word_char, fetch_token, peek_token, peek_token_bracket):
21899         (build_range_exp, build_collating_symbol):
21900         Now internal functions.
21901
21902         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
21903
21904         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
21905         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
21906         Don't depend on VMS; depend on __VMS instead, for POSIX
21907         namespace cleanness.
21908         (regoff_t): Define to ssize_t, not long int.
21909
21910         Remove the REG_ macros named below.  Instead, make the old names
21911         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
21912         __USE_GNU_REGEX.
21913         (REG_BACKSLASH_ESCAPE_IN_LISTS):
21914         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
21915         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
21916         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
21917         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
21918         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
21919         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
21920         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
21921         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
21922         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
21923         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
21924         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
21925         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
21926         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
21927         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
21928         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
21929         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
21930         (REG_NREGS):
21931         Remove.  All uses replaced by the old RE_* names.
21932         (RE_BACKSLASH_ESCAPE_IN_LISTS):
21933         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
21934         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
21935         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
21936         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
21937         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
21938         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
21939         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
21940         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
21941         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
21942         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
21943         Don't bother having these macros be independent of each others'
21944         values, since they no longer exist in the POSIX name space.
21945
21946         Rename the following member names back to their old names,
21947         unless !__USE_GNU_REGEX.  All uses changed back.
21948         (buffer): Renamed from re_buffer.
21949         (allocated): Renamed from re_allocated.
21950         (used): Renamed from re_used.
21951         (syntax): Renamed from re_syntax.
21952         (fastmap): Renamed from re_fastmap.
21953         (translate): Renamed from re_translate.
21954         (can_be_null): Renamed from re_can_be_null.
21955         (regs_allocated): Renamed from re_regs_allocated.
21956         (fastmap_accurate): Renamed from re_fastmap_accurate.
21957         (no_sub): Renamed from re_no_sub.
21958         (not_bol): Renamed from re_not_bol.
21959         (not_eol): Renamed from re_not_eol.
21960         (newline_anchor): Renamed from re_newline_anchor.
21961         (num_regs): Renamed from rm_num_regs.
21962         (start): Renamed from rm_start.
21963         (end): Renamed from rm_end.
21964
21965         (free_state): Move up a bit.
21966
21967         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
21968         #define to be empty.
21969         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
21970         when that is what is intended.
21971         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
21972         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
21973         (MAX): New macro.
21974         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
21975         All uses changed back to re_malloc, etc.  It's now the caller's
21976         responsibility to check for overflow; all callers changed.
21977         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
21978         (re_x2nrealloc): Remove.
21979         (free_state): Remove decl.
21980
21981         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
21982         (re_set_registers, re_exec):
21983         Use K&R-style defn.
21984
21985         2006-01-31  Roland McGrath  <roland@redhat.com>
21986
21987         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
21988         Reported by Mike Frysinger <vapier@gentoo.org>.
21989
21990         2006-01-15  Andreas Jaeger  <aj@suse.de>
21991
21992         [BZ #1950]
21993         * lib/regex_internal.c (re_string_reconstruct): Adjust for
21994         build_wcs_upper_buffer change.
21995         (build_wcs_upper_buffer): Change return type.
21996
21997         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
21998
21999         * lib/regex_internal.h: Include <stdint.h> if available.
22000
22001         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
22002
22003         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
22004
22005         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
22006
22007         * lib/regcomp.c: Adjust for changed secondary hash function.
22008
22009         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
22010
22011         * lib/regex.h: Pretty printing.
22012         Clean up namespace a bit.
22013
22014         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
22015
22016         * lib/regexec.c (update_cur_sifted_state, check_arrival,
22017         check_arrival_add_next_nodes): Avoid using uninitialized variable.
22018
22019         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
22020                     Ulrich Drepper  <drepper@redhat.com>
22021
22022         [BZ #1302]
22023         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
22024         changed.
22025         (bitset_word_t): Renamed from bitset_word.  All uses changed.
22026
22027         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
22028
22029         [BZ #281]
22030         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
22031         * lib/regcomp.c: Remove unnecessary uses of
22032         unsigned RE_TRANSLATE_TYPE.
22033         * lib/regex_internal.h: Likewise.
22034         * lib/regex_internal.c: Likewise.
22035         * lib/regexec.c: Likewise.
22036         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
22037
22038         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
22039
22040         * lib/regexec.c (find_recover_state): Remove unnecessary
22041         initialization.
22042         (transit_state_bkref): Make DFA a const pointer.
22043         (get_subexp): Likewise.
22044         (check_arrival): Likewise.
22045         (update_cur_sifted_state): Likewise.
22046         (re_search_internal): Likewise.
22047         (prune_impossible_nodes): Likewise.
22048         (acquire_init_state_context): Likewise.
22049         (proceed_next_node): Likewise.
22050         (set_regs): Likewise.
22051         (free_fail_stack_return): Likewise.
22052         (check_arrival_expand_ecl): Mark DFA parameter as const.
22053         (check_arrival_expand_ecl_sub): Likewise.
22054         (check_subexp_limits): Likewise.
22055         (sub_epsilon_src_nodes):  Likewise.
22056         (add_epsilon_src_nodes):  Likewise.
22057         (merge_state_array): Likewise.
22058         (update_regs): Likewise.
22059         (build_trtable): Likewise.
22060         (sift_states_backward): Mark MCTX parameter as const.
22061         (build_sifted_states): Likewise.
22062         (update_cur_sifted_state): Likewise.
22063         (sift_states_mkref): Likewise.
22064         (check_arrival_expand_ecl): Mark eclosure as const.
22065         (check_dst_limits_calc_pos_1): Likewise.
22066         * lib/regex_internal.h (re_match_context_t): Make dfa a const
22067         pointer.
22068
22069         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
22070
22071         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
22072         (transit_state_sb): Likewise.
22073         (transit_state_mb): Likewise.
22074         (sift_states_iter_mb): Likewise.
22075         (check_arrival_add_next_nodes): Likewise.
22076         (check_node_accept_bytes): Change first parameter to pointer-to-const.
22077         [_LIBC] (re_search_2_stub): Use mempcpy.
22078
22079         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
22080         mbrtowc for very simple UTF-8 case.
22081
22082         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
22083         a pointer-to-const.
22084         (re_acquire_state_context): Likewise.
22085         * lib/regex_internal.h: Adjust prototypes.
22086
22087         * lib/regex.c: Prevent using C++ compilers.
22088
22089         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
22090         (re_acquire_state_context): Likewise.
22091
22092 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22093
22094         * modules/regex (Depends-on): Add ssize_t.
22095
22096 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22097
22098         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
22099         translation table.
22100
22101 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22102
22103         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
22104
22105 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
22106             Bruno Haible  <bruno@clisp.org>
22107
22108         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
22109         <sys/types.h> and <inttypes.h>.
22110
22111 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22112
22113         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
22114         `__error_t_defined', so argp.h will not typedef the former.
22115
22116 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
22117
22118         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
22119         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
22120         glibc names.  Even if glibc is changed to conform to POSIX, the
22121         traditional names will be available anyway, since regex depends on
22122         the extensions module.  Also, fix a longstanding typo in the
22123         implementation of Spencer ERE test #75 from grep 2.3.  Problems
22124         reported by Emanuele Giaquinta.  Also, change sense of cached
22125         variable, so that the message makes sense.
22126
22127 2006-03-24  Simon Josefsson  <jas@extundo.com>
22128
22129         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
22130         including some doc fixes.
22131         (base64_encode_alloc): Fix +1 bug on allocation failures.
22132
22133 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22134
22135         * lib/base64.c (base64_encode): Do not read past end of array with
22136         unsanitized input on systems with CHAR_BIT > 8.
22137
22138 2006-03-24  Eric Blake  <ebb9@byu.net>
22139
22140         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
22141
22142 2006-03-22  Karl Berry  <karl@gnu.org>
22143
22144         * config/srclist.txt (*setenv.[ch]): get from coreutils.
22145         * config/srclistvars.sh (COREUTILS): new var.
22146
22147 2006-03-17  Jim Meyering  <jim@meyering.net>
22148
22149         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
22150         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
22151
22152 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
22153
22154         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
22155         no longer needs it.  Instead, check that regoff_t is as least
22156         as wide as ptrdiff_t.
22157
22158         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
22159         so that our regex.h stays compatible with the installed regex.
22160         This is helpful for installers who configure --without-included-regex.
22161         Problem reported by Emanuele Giaquinta.
22162
22163 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
22164
22165         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
22166         Typedef to long int, not to off_, as POSIX will likely change
22167         in that direction.
22168
22169 2006-03-15  Eric Blake  <ebb9@byu.net>
22170
22171         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
22172
22173 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
22174
22175         * lib/argp-help.c (validate_uparams): Fix typo
22176         * lib/argp-parse.c (argp_default_options): Consistently begin help
22177         messages with a lowercase letter.
22178
22179 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
22180
22181         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
22182         overrun buffers and shouldn't be used (much as gets shouldn't be
22183         used).
22184         * lib/time_r.c (asctime_r, ctime_r): Likewise.
22185
22186 2006-03-08  Simon Josefsson  <jas@extundo.com>
22187
22188         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
22189         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22190
22191 2006-03-08  Simon Josefsson  <jas@extundo.com>
22192
22193         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
22194         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22195
22196 2006-03-08  Simon Josefsson  <jas@extundo.com>
22197
22198         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
22199         signal that configure disabled the device.
22200
22201 2006-03-08  Simon Josefsson  <jas@extundo.com>
22202
22203         * build-aux/maint.mk: Fix refresh-po, to handle no translated
22204         languages.
22205
22206 2006-03-07  Simon Josefsson  <jas@extundo.com>
22207
22208         * modules/getopt (Depends-on): Add unistd.
22209
22210         * modules/unistd: New file.
22211
22212 2006-03-07  Simon Josefsson  <jas@extundo.com>
22213
22214         * modules/gc-random: New file.
22215
22216 2006-03-07  Simon Josefsson  <jas@extundo.com>
22217
22218         * m4/unistd_h.m4: New file.
22219
22220 2006-03-07  Simon Josefsson  <jas@extundo.com>
22221
22222         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
22223         test to be side-effect free by storing the result in the cache
22224         variable gl_cv_lib_readline, and moving the assignment of
22225         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
22226         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22227
22228 2006-03-07  Simon Josefsson  <jas@extundo.com>
22229
22230         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
22231         error on missing devices (the functions will return an error).
22232
22233         * m4/gc.m4: Move random stuff to gc-random.m4
22234
22235 2006-03-07  Simon Josefsson  <jas@extundo.com>
22236
22237         * lib/unistd_.h: New file.
22238
22239 2006-03-07  Simon Josefsson  <jas@extundo.com>
22240
22241         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
22242
22243 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
22244
22245         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
22246         Problem reported by Juan Manuel Guerrero.
22247
22248 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
22249
22250         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
22251         the unistd module.
22252         * lib/getlogin_r.c: Likewise.
22253         * lib/getlogin_r.h: Likewise.
22254         * lib/glob.c: Likewise.
22255         * lib/pagealign_alloc.c: Likewise.
22256         * lib/unistd_.h: Remove; no longer needed.
22257
22258 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
22259
22260         * MODULES.html.sh (Support for systems lacking POSIX:2001):
22261         Add unistd.
22262         * modules/c-stack (Depends-on): Add unistd.
22263         * modules/getlogin_r: Likewise.
22264         * modules/glob: Likewise.
22265         * modules/pagealign_alloc: Likewise.
22266         * modules/unistd (Files): Remove lib/unistd_.h.
22267         (EXTRA_DIST): Remove.
22268         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
22269         need unistd_.h.
22270         (MOSTLYCLEANFILES): Remove unistd.h-t.
22271
22272 2006-03-03  Simon Josefsson  <jas@extundo.com>
22273
22274         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
22275
22276 2006-03-03  Simon Josefsson  <jas@extundo.com>
22277
22278         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
22279         libidn and bison.
22280
22281 2006-03-03  Simon Josefsson  <jas@extundo.com>
22282
22283         * build-aux/maint.mk: Add indent target.
22284
22285 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
22286
22287         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
22288         our replacement poll.h in any case, to avoid a differing
22289         declaration from a system header.  Seen on AIX.
22290
22291 2006-03-01  Simon Josefsson  <jas@extundo.com>
22292
22293         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
22294         <kasal@ucw.cz>.
22295
22296 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
22297
22298         * modules/gettime (Depends-on): Add extensions module.
22299         * modules/nanosleep (Depends-on): Likewise.
22300         * modules/settime (Depends-on): Likewise.
22301
22302 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
22303
22304         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
22305         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
22306         pedantically.
22307         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
22308         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
22309
22310         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
22311         not "==".  Reported by Ralf Wildenhues.
22312
22313 2006-03-01  Karl Berry  <karl@gnu.org>
22314
22315         * doc/Copyright/request-*: new files, synced from gnuorg.
22316
22317 2006-03-01  Karl Berry  <karl@gnu.org>
22318
22319         * config/srclist.txt (Copyright/*): new entries.
22320
22321 2006-02-28  Simon Josefsson  <jas@extundo.com>
22322
22323         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
22324
22325 2006-02-27  Simon Josefsson  <jas@extundo.com>
22326
22327         * lib/base64.h: Indent #define's.  From Jim Meyering
22328         <jim@meyering.net>.
22329
22330 2006-02-27  Jim Meyering  <jim@meyering.net>
22331
22332         Revert the change of 2006-02-24, so these files can continue
22333         to be sync'd from gettext.
22334         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
22335         of `config.h'.
22336
22337 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
22338
22339         * modules/intprops: New file.
22340         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
22341         Add intprops.
22342         * modules/getloadavg (Files): Remove lib/intprops.h.
22343         (Depends-on): Add intprops.
22344         * modules/human: Likewise.
22345         * modules/inttostr: Likewise.
22346         * modules/openat: Likewise.
22347         * modules/sig2str: Likewise.
22348         * modules/userspec: Likewise.
22349         * modules/utimecmp: Likewise.
22350         * modules/xnanosleep: Likewise.
22351         * modules/xstrtol: Likewise.
22352
22353 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
22354
22355         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
22356         * modules/lock-tests (TESTS): Use $(EXEEXT).
22357         * modules/tls-tests: Likewise.
22358         * modules/argp-tests: Likewise.
22359         (check_PROGRAMS): New var, replacing...
22360         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
22361
22362 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22363
22364         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
22365         `config.h'.
22366
22367 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
22368
22369         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
22370
22371 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22372
22373         Sync from coreutils.
22374         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
22375         gl_CHDIR_SAFER.
22376
22377 2006-02-22  Jim Meyering  <jim@meyering.net>
22378
22379         Sync from coreutils.
22380         * m4/chdir-safer.m4: New file.
22381
22382 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
22383
22384         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
22385         AT_FDCWD exceeds INT_MAX.
22386         * lib/openat.h (AT_FDCWD): Likewise.
22387
22388 2006-02-17  Eric Blake  <address@hidden>
22389
22390         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
22391
22392 2006-02-16  Simon Josefsson  <jas@extundo.com>
22393
22394         * modules/getaddrinfo (Depends-on): Add sys_socket.
22395
22396 2006-02-15  Simon Josefsson  <jas@extundo.com>
22397
22398         * build-aux/maint.mk: Add dsyntax-check rule.
22399
22400 2006-02-15  Eric Blake  <ebb9@byu.net>
22401
22402         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
22403         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
22404         'present but cannot compile' warnings on cygwin.
22405         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
22406         use ws2tcpip.h if sys/socket.h works.
22407         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
22408         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
22409
22410 2006-02-14  Simon Josefsson  <jas@extundo.com>
22411
22412         * modules/maintainer-makefile (Files): Rename.
22413
22414         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
22415         and (the local) Makefile.cfg to maint-cfg.mk.
22416
22417         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
22418         to the latter.
22419
22420         * modules/maintainer-makefile: New module.
22421
22422         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
22423         severaly stripped to make it possible to build it up from scratch
22424         with reliable tests.
22425
22426         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
22427         fixes to permit overriding the default actions when configure and
22428         makefile are not available.
22429
22430 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
22431
22432         Sync from coreutils.
22433         * modules/lstat (Depends-on): Don't depend on xalloc.
22434         (License): Change from GPL to LGPL, since this is now simply a
22435         replacement for a libc function.
22436
22437 2006-02-14  Jim Meyering  <jim@meyering.net>
22438
22439         Sync from coreutils.
22440
22441         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
22442         failure on deficient systems, and simplify gnulib lgpl dependencies.
22443         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
22444         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
22445
22446         * lib/xalloc-die.c: Remove unused definition of N_.
22447
22448 2006-02-14  Jim Meyering  <jim@meyering.net>
22449
22450         Sync from coreutils.
22451         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
22452         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
22453         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
22454         double-quote uses of that variable, to accommodate the rare case in
22455         which getmntent is available in none of the libraries checked.  This
22456         happens at least on FreeBSD 5.0.
22457
22458 2006-02-13  Simon Josefsson  <jas@extundo.com>
22459
22460         * gnulib-tool (Usage): Fix --import, from
22461         karl@freefriends.org (Karl Berry).
22462
22463 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
22464
22465         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
22466
22467 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
22468
22469         * lib/argp-namefrob.h: Restore changes accidentally lost during the
22470         "autoupdate" on 2005-12-12.
22471
22472 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
22473
22474         * modules/closeout (Depends-on): Remove atexit.
22475
22476 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
22477
22478         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
22479         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
22480
22481 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
22482
22483         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
22484         __EXTENSIONS__ if this causes compilation to fail.  Problem
22485         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
22486         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
22487
22488 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
22489
22490         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
22491         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
22492         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
22493         All uses changed.
22494
22495 2006-01-26  Simon Josefsson  <jas@extundo.com>
22496
22497         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
22498         prototype is visible on mingw32.
22499
22500         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
22501         for mingw32.
22502
22503         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
22504         mingw32).
22505
22506 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
22507
22508         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
22509         attempt to open for write; this always fails, at least on POSIX
22510         hosts.  This reinstates the 2006-01-09 change, which was
22511         inadvertently removed.
22512
22513 2006-01-26  Bruno Haible  <bruno@clisp.org>
22514
22515         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
22516         Reported by Paul Eggert.
22517
22518 2006-01-26  Bruno Haible  <bruno@clisp.org>
22519             Paul Eggert  <eggert@cs.ucla.edu>
22520
22521         * lib/stdbool_.h (_Bool)
22522         [(! (defined __cplusplus || defined __BEOS__)
22523           && !defined __GNUC__
22524           && !(defined __HP_cc || defined __xlc__
22525                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
22526                || defined __sgi))]:
22527         #define to signed char in these cases too; this simplifies
22528         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
22529         etc., separately) and makes it more conservative.
22530
22531 2006-01-25  Simon Josefsson  <jas@extundo.com>
22532
22533         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
22534         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
22535         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
22536
22537 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
22538
22539         * lib/argp-namefrob.h: Bugfix. Remove stray #
22540
22541 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
22542
22543         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
22544         so that we test the test.
22545         Check for yet another HP-UX cc bug involving *bool |= bool.
22546
22547 2006-01-25  Karl Berry  <karl@gnu.org>
22548
22549         * config/srclist.txt (vasnprintf.c): sync lost.
22550
22551 2006-01-25  Jim Meyering  <jim@meyering.net>
22552
22553         Sync from the stable (b5) branch of coreutils:
22554
22555         * lib/fts.c (fts_children): Don't let close() clobber errno from
22556         failed fchdir().
22557
22558         * lib/fts.c (fts_stat): When following a symlink-to-directory,
22559         don't necessarily interpret stat-fails+lstat-succeeds as indicating
22560         a dangling symlink.  That can also happen at least for ELOOP.
22561         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
22562         FYI, this bug predates the inclusion of fts.c in coreutils.
22563
22564         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
22565         in their own block, so pre-c99 compilers don't object.
22566
22567         Avoid the double-free (first in fts_read, second in fts_close) that
22568         would occur when an `active' directory is made inaccessible (e.g.,
22569         via chmod a-x) during a traversal.
22570         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
22571         before returning.  Reproduce this failure by
22572         mkdir -p a/b; cd a; chmod a-x . b
22573         Reported by Stavros Passas.
22574
22575 2006-01-25  Jim Meyering  <jim@meyering.net>
22576
22577         * lib/fileblocks.c: Remove more useless parentheses.
22578         * lib/readutmp.h: Likewise.
22579
22580 2006-01-25  Bruno Haible  <bruno@clisp.org>
22581
22582         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
22583         warnings.
22584         Reported by Paul Eggert.
22585
22586 2006-01-25  Bruno Haible  <bruno@clisp.org>
22587
22588         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
22589         rid of a trap command. For Solaris sh.
22590         Reported by Mark D. Baushke <mdb@gnu.org>.
22591
22592 2006-01-24  Simon Josefsson  <jas@extundo.com>
22593
22594         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
22595         Bruno.
22596
22597 2006-01-24  Karl Berry  <karl@gnu.org>
22598
22599         * config/srclist.txt (argp-namefrob.h): sync lost.
22600
22601 2006-01-24  Jim Meyering  <jim@meyering.net>
22602
22603         * modules/openat (Files): Add lib/intprops.h.
22604         From Mark D. Baushke.
22605
22606 2006-01-24  Jim Meyering  <jim@meyering.net>
22607
22608         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
22609         Reported by Mark D. Baushke.
22610
22611 2006-01-24  Jim Meyering  <jim@meyering.net>
22612
22613         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
22614
22615 2006-01-24  Bruno Haible  <bruno@clisp.org>
22616
22617         * modules/strnlen (Maintainer): Change from glibc to all.
22618
22619 2006-01-24  Bruno Haible  <bruno@clisp.org>
22620
22621         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
22622         Patch by Paul Eggert.
22623
22624 2006-01-24  Bruno Haible  <bruno@clisp.org>
22625
22626         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
22627         already has it.
22628         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
22629         2005-11-26.
22630
22631         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
22632         'signed char' to avoid problems with the built-in _Bool type.
22633         Reported by Paul Eggert on 2005-11-26.
22634
22635 2006-01-24  Bruno Haible  <bruno@clisp.org>
22636
22637         * gnulib-tool (func_import): Avoid constructing complicated sed
22638         expressions inside backquote.
22639         Report and solution by Mark D. Baushke <mdb@gnu.org>.
22640
22641 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
22642
22643         These changes imported from libc.
22644         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
22645         test and two separate function calls.
22646         * lib/strndup.c (__strndup): Add libc_hidden_def.
22647
22648 2006-01-23  Simon Josefsson  <jas@extundo.com>
22649
22650         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
22651         Remove the test_*_SOURCES variable: automake infers it by default.
22652         * modules/tls-tests: Likewise.
22653
22654 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
22655
22656         Work around porting bugs reported by Dieter in
22657         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
22658         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
22659         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
22660         Include "getopt.h" first, to check interface.
22661         (getenv): Declare only if defined HAVE_DECL_GETENV &&
22662         !HAVE_DECL_GETENV.
22663         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
22664         (__strndup): Revert to K&R-style function dfns, the glibc style.
22665         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
22666         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
22667         Include strnlen.h first, to get prototype properly.
22668         (strnlen): Renamed from __strnlen.
22669         Remove weak alias.
22670
22671 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
22672
22673         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
22674
22675 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
22676
22677         * config/srclist.txt: Adjust to reflect glibc reorganization.
22678         This affects only comments.
22679
22680 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
22681
22682          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
22683          Reported by Bruce Korb <bkorb@gnu.org>.
22684
22685 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
22686
22687         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
22688         to pacify gcc -Wswitch-default.
22689
22690 2006-01-22  Bruno Haible  <bruno@clisp.org>
22691
22692         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
22693         temporary buffer for sprintf, take into account the precision also
22694         for 'd', 'i', 'u', 'o', 'x', 'X'.
22695
22696 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
22697
22698         * modules/argp-tests: New module
22699         * tests/test-argp.c: New file
22700         * tests/test-argp-2.sh: New file
22701
22702 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
22703
22704         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
22705         (__argp_base_name): Removed
22706         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
22707         typo.
22708         (__argp_base_name): Provide macro definition or extern declaration
22709         depending on the configuration
22710
22711 2006-01-20  Simon Josefsson  <jas@extundo.com>
22712
22713         * modules/inet_ntop (Depends-on): Depend on sys_socket.
22714
22715 2006-01-20  Simon Josefsson  <jas@extundo.com>
22716
22717         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
22718
22719 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
22720
22721         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
22722         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
22723         Suggested by Bruno Haible.
22724
22725 2006-01-20  Karl Berry  <karl@gnu.org>
22726
22727         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
22728         until changes propagate, I guess.
22729
22730 2006-01-19  Simon Josefsson  <jas@extundo.com>
22731
22732         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
22733
22734 2006-01-19  Simon Josefsson  <jas@extundo.com>
22735
22736         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
22737
22738 2006-01-19  Simon Josefsson  <jas@extundo.com>
22739
22740         * gnulib-tool: Set check_PROGRAMS.
22741
22742         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
22743         modules/des-tests, modules/gc-arcfour-tests,
22744         modules/gc-arctwo-tests, modules/gc-des-tests,
22745         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
22746         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
22747         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
22748         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
22749         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
22750         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
22751         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
22752         test_*_SOURCES.
22753
22754 2006-01-18  Simon Josefsson  <jas@extundo.com>
22755
22756         * modules/socklen (Depends-on): Depend on sys_socket.
22757
22758 2006-01-18  Simon Josefsson  <jas@extundo.com>
22759
22760         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
22761         modules/des-tests, modules/gc-arcfour-tests,
22762         modules/gc-arctwo-tests, modules/gc-des-tests,
22763         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
22764         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
22765         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
22766         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
22767         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
22768         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
22769         $(EXEEXT) to automake TESTS variable, for mingw32.
22770
22771 2006-01-17  Simon Josefsson  <jas@extundo.com>
22772
22773         * modules/socklen (Include): Need sys/socket.h.
22774
22775 2006-01-17  Bruno Haible  <bruno@clisp.org>
22776
22777         * modules/ssize_t (Include): Add <sys/types.h>.
22778
22779 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
22780
22781         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
22782         it's not portable and it doesn't work with cross-compiles.
22783         Problem reported by Bruno Haible.  Fix missing-$ typo in
22784         'test "gl_cv_ignore_unused_libraries" ...' that prevented
22785         -zignore from being used with Sun's C compiler.
22786
22787 2006-01-12  Simon Josefsson  <jas@extundo.com>
22788
22789         * lib/base64.c: Fix warning, reported by Bruno Haible
22790         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
22791
22792 2006-01-12  Bruno Haible  <bruno@clisp.org>
22793
22794         * modules/ldd: New file.
22795         * build-aux/ldd.sh.in: New file.
22796         * MODULES.html.sh (Support for building libraries and executables): Add
22797         ldd.
22798
22799 2006-01-12  Bruno Haible  <bruno@clisp.org>
22800
22801         * m4/ldd.m4: New file.
22802
22803 2006-01-12  Bruno Haible  <bruno@clisp.org>
22804
22805         * gnulib-tool (func_import, func_create_testdir): Don't go into an
22806         endless loop while replacing $auxdir with build-aux.
22807
22808 2006-01-11  Simon Josefsson  <jas@extundo.com>
22809
22810         * lib/stdint_.h (SIZE_MAX): Add missing (.
22811
22812 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
22813
22814         Sync from coreutils.
22815         * lib/md5.c: Fix commentary typos.
22816         (alignof, UNALIGNED_P): No need for a GCC-specific version.
22817         * lib/md5.h (__attribute__): Remove; unused.
22818         * lib/sha1.c: Fix commentary to match md5 better.
22819         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
22820         so that we don't need to worry about alignment.  All uses changed.
22821         This merges the 2005-10-28 md5 change into sha1.
22822
22823 2006-01-11  Jim Meyering  <jim@meyering.net>
22824
22825         Sync from coreutils.
22826         * lib/md5.c (OP): Fix spacing.
22827
22828 2006-01-11  Bruno Haible  <bruno@clisp.org>
22829
22830         Ensure automatic ordering between gl_LOCK and gl_ARGP.
22831         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
22832         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
22833
22834 2006-01-11  Bruno Haible  <bruno@clisp.org>
22835
22836         Ensure automatic ordering between gl_LOCK and gl_ARGP.
22837         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
22838         the "early" section as well.
22839
22840 2006-01-11  Bruno Haible  <bruno@clisp.org>
22841
22842         Avoid "ar: no archive members specified" error on MacOS X.
22843         * gnulib-tool (func_modules_add_dummy): New function.
22844         (func_import, func_create_testdir): Invoke it.
22845
22846 2006-01-11  Bruno Haible  <bruno@clisp.org>
22847
22848         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
22849         with $auxdir in AC_CONFIG_FILES statements.
22850
22851 2006-01-11  Bruno Haible  <bruno@clisp.org>
22852
22853         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
22854         Initialize also noinst_HEADERS to empty.
22855
22856 2006-01-11  Bruno Haible  <bruno@clisp.org>
22857
22858         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
22859         variables.
22860         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
22861         autoreconf.
22862
22863 2006-01-11  Bruno Haible  <bruno@clisp.org>
22864
22865         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
22866         overridable by the user.
22867         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22868
22869 2006-01-10  Simon Josefsson  <jas@extundo.com>
22870
22871         * modules/sys_socket: New file.
22872
22873 2006-01-10  Simon Josefsson  <jas@extundo.com>
22874
22875         * m4/sys_socket_h.m4: New file.
22876
22877 2006-01-10  Simon Josefsson  <jas@extundo.com>
22878
22879         * lib/socket_.h: New file.
22880
22881 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
22882
22883         * modules/readutmp (Maintainer): Add myself.
22884
22885 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
22886
22887         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
22888         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
22889         People who are still concerned with buggy memcmp implementations
22890         can invoke gl_FUNC_MEMCMP themselves.
22891
22892 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
22893
22894         * lib/regex_internal.h (BITSET_WORD_BITS):
22895         Work around a bug in 64-bit PGC (before version 6.1-2), where the
22896         preprocessor mishandles large unsigned values as if they were signed.
22897         Problem reported by Claudio Fontana in
22898         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
22899
22900 2006-01-10  Jim Meyering  <jim@meyering.net>
22901
22902         Avoid the double-free (first in fts_read, second in fts_close) that
22903         would occur when an `active' directory is made inaccessible (e.g.,
22904         via chmod a-x) during a traversal.
22905         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
22906         before returning.  Reproduce this failure by
22907         mkdir -p a/b; cd a; chmod a-x . b
22908         Reported by Stavros Passas.
22909
22910         Sync from coreutils.
22911         * lib/sha1.c: Tweak grammar in a comment.
22912
22913 2006-01-10  Jim Meyering  <jim@meyering.net>
22914
22915         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
22916         Patch by Joerg Sonnenberger.
22917
22918 2006-01-10  Bruno Haible  <bruno@clisp.org>
22919
22920         * modules/readutmp: Depend on module free.
22921         * modules/strtok_r: Depend on module restrict.
22922
22923 2006-01-10  Bruno Haible  <bruno@clisp.org>
22924
22925         * modules/gettext (configure.ac): Add an invocation of
22926         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
22927
22928 2006-01-10  Bruno Haible  <bruno@clisp.org>
22929
22930         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
22931         Reported by Werner Lemberg <wl@gnu.org>.
22932
22933 2006-01-10  Bruno Haible  <bruno@clisp.org>
22934
22935         * lib/localcharset.c: Update from GNU gettext.
22936
22937 2006-01-10  Bruno Haible  <bruno@clisp.org>
22938
22939         * lib/argp.h (__const): Remove macro. Use const instead.
22940         * lib/argp-fmtstream.h (__const): Likewise.
22941         * lib/glob_.h (__const): Remove macro.
22942         * lib/glob-libc.h: Use const instead of __const.
22943
22944 2006-01-10  Bruno Haible  <bruno@clisp.org>
22945
22946         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
22947         variable.
22948         Needed to avoid an automake error regarding the 'gettext' module.
22949
22950 2006-01-09  Simon Josefsson  <jas@extundo.com>
22951
22952         * modules/inet_ntop (Depends-on): Add restrict.
22953
22954 2006-01-09  Simon Josefsson  <jas@extundo.com>
22955
22956         * modules/gc-rijndael-tests (License): Put under LGPL.
22957
22958         * modules/gc-des-tests (License): Likewise.
22959
22960         * modules/gc-arcfour-tests (License): Likewise.
22961
22962         * modules/gc-arctwo-tests (License): Likewise.
22963
22964         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
22965
22966         * modules/gc-hmac-sha1-tests (Files): Likewise.
22967
22968         * modules/gc-hmac-md5-tests (License): Likewise.
22969
22970         * modules/gc-sha1-tests (License): Likewise.
22971
22972         * modules/gc-md5-tests (License): Likewise.
22973
22974         * modules/gc-md4-tests (License): Likewise.
22975
22976         * modules/gc-md2-tests (License): Likewise.
22977
22978         * modules/gc-tests (License): Likewise.
22979
22980         * modules/des-tests (License): Likewise.
22981
22982         * modules/md4-tests (License): Likewise.
22983
22984         * modules/md2-tests (License): Likewise.
22985
22986 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
22987
22988         Sync from coreutils:
22989
22990         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
22991         * modules/lib-ignore: New file.
22992         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
22993         chdir-safer.m4, lchmod.m4.
22994         * modules/openat: Add mkdirat.c, openat-priv.h.
22995
22996 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
22997
22998         Sync from coreutils.
22999         * m4/lib-ignore.m4: New file.
23000         * m4/lchmod.m4: New file.
23001
23002 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23003
23004         Sync from coreutils.
23005         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
23006         for write access: POSIX says that must fail.
23007         * lib/fts.c (diropen): Likewise.
23008         * lib/save-cwd.c (save_cwd): Likewise.
23009         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
23010         well, for minor improvements on hosts that lack O_DIRECTORY.
23011         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
23012         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
23013         Fall back on chown if open failed with EACCES.
23014
23015         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
23016         Report an error at compile-time if only a 1-second nominal clock
23017         resolution is found.
23018
23019         * lib/lchmod.h: New file.
23020         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
23021         (make_dir_parents): Use lchown rather than chown, and
23022         lchmod rather than chmod.
23023
23024         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
23025         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
23026         "proc" reported by n0dalus.
23027
23028         * lib/mountlist.c: Include <limits.h>.
23029         (dev_from_mount_options)
23030         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
23031         New function.  It no longer assumes "dev=" has the System V meaning
23032         on Linux (since it doesn't).  It also parses "dev=" more carefully.
23033         (read_file_system_list)
23034         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
23035         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
23036         dev= in that case.
23037
23038         * lib/posixtm.h (PDS_PRE_2000): New macro.
23039         * lib/posixtm.c (year): Arg is now syntax_bits rather than
23040         allow_century.  All usages changed.  Reject dates outside the range
23041         1969-1999 if PDS_PRE_2000 is used.
23042
23043 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23044
23045         Sync from coreutils.
23046         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
23047         (Time of day items): Mention the possibility of leap seconds.
23048         Problem reported by Dr. David Alan Gilbert.
23049
23050 2006-01-09  Jim Meyering  <jim@meyering.net>
23051
23052         Sync from coreutils.
23053
23054         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
23055
23056         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
23057
23058         * lib/modechange.c (mode_compile): Reject an invalid mode string
23059         that starts with an octal digit.  From Andreas Gruenbacher.
23060
23061         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
23062         and dup to open_safer and dup_safer, respectively.
23063         (openat_permissive): Fix typo in comment.
23064
23065         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
23066         "gettext.h"; either no longer needed or are guaranteed by openat.h.
23067         (_): Remove; no longer needed.
23068         (openat): Renamed from rpl_openat; no need for rpl_openat
23069         since openat.h renames openat for us.
23070         Replace most of the body with a call to openat_permissive,
23071         to avoid duplicate code.
23072         Port to (probably hypothetical) environments were mode_t is
23073         wider than int.
23074         (openat_permissive): Require mode arg, so that we can check
23075         types better.  Put it just after flags.  Change cwd failure
23076         indicator from pointer-to-bool to pointer-to-errno-value.
23077         All callers changed.
23078         Invoke openat_save_fail and/or openat_restore_fail if
23079         cwd_errno is null, so that openat can call us.
23080         (openat_permissive, fdopendir, fstatat, unlinkat):
23081         Simplify errno handling to avoid some duplicate code,
23082         as it's OK to set errno on success.
23083         * lib/openat.h: Revamp code so that function macros depend on
23084         __OPENAT_PREFIX only, not also on AT_FDCWD.
23085         (openat_ro): Remove.  Caller changed to use openat_permissive.
23086         (openat_permissive): Now a macro, if not a function.
23087         (openat_restore_fail, openat_save_fail): Now always functions,
23088         since mkdirat needs them even if __OPENAT_PREFIX is defined.
23089
23090         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
23091         and openat.c.
23092         * lib/mkdirat.c: Include openat-priv.h.
23093         Remove definitions of macros defined therein.
23094         * lib/openat.c: Likewise.
23095
23096         * lib/mkdirat.c (mkdirat): New file and function.
23097         * lib/openat.h (mkdirat): Declare.
23098
23099         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
23100
23101         * lib/openat.h (openat_permissive): Declare.
23102         (openat_ro): Define.
23103
23104         * lib/openat.c (EXPECTED_ERRNO): New macro.
23105         (openat_permissive): New function -- used in remove.c rewrite.
23106         (all functions): Set errno just before returning, only if there
23107         was an actual failure.
23108         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
23109
23110         Emulate openat-family functions using Linux's procfs, if possible.
23111         Idea and some code based on Ulrich Drepper's glibc changes.
23112
23113         * lib/openat.c: (BUILD_PROC_NAME): New macro.
23114         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
23115         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
23116         before falling back on save_cwd and restore_cwd.
23117         (fdopendir, fstatat, unlinkat): Likewise.
23118
23119         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
23120         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
23121
23122         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
23123         as second argument to va_arg.  Otherwise, some versions of gcc
23124         warn that `if this code is reached, the program will abort'.
23125
23126 2006-01-09  Jim Meyering  <jim@meyering.net>
23127
23128         Sync from coreutils.
23129         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
23130         Require openat-priv.h.
23131
23132 2006-01-09  Bruno Haible  <bruno@clisp.org>
23133
23134         * modules/strnlen (Include): Use strnlen.h.
23135
23136 2006-01-09  Bruno Haible  <bruno@clisp.org>
23137
23138         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
23139
23140 2006-01-09  Bruno Haible  <bruno@clisp.org>
23141
23142         * lib/sysexit_.h (EX_OK): New macro.
23143         Suggested by Martin Lambers <marlam@marlam.de>.
23144
23145 2006-01-09  Bruno Haible  <bruno@clisp.org>
23146
23147         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
23148         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
23149
23150 2006-01-09  Bruno Haible  <bruno@clisp.org>
23151
23152         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
23153         numbers.
23154
23155 2006-01-09  Bruno Haible  <bruno@clisp.org>
23156
23157         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
23158         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
23159         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
23160         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
23161
23162 2006-01-09  Bruno Haible  <bruno@clisp.org>
23163
23164         * build-aux/javacomp.sh.in: New file, moved from lib/.
23165         * modules/javacomp-script (Files): Update.
23166         (configure.ac): Add AC_CONFIG_FILES invocation.
23167         (EXTRA_DIST): Remove variable.
23168
23169         * build-aux/javaexec.sh.in: New file, moved from lib/.
23170         * modules/javaexec (Files): Update.
23171         (configure.ac): Add AC_CONFIG_FILES invocation.
23172         (EXTRA_DIST): Remove javaexec.sh.in.
23173
23174         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
23175         * modules/csharpcomp-script (Files): Update.
23176         (configure.ac): Add AC_CONFIG_FILES invocation.
23177         (EXTRA_DIST): Remove variable.
23178
23179         * build-aux/csharpexec.sh.in: New file, moved from lib/.
23180         * modules/csharpexec (Files): Update.
23181         (configure.ac): Add AC_CONFIG_FILES invocation.
23182         (EXTRA_DIST): Remove csharpexec.sh.in.
23183
23184 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
23185
23186         Sync from coreutils.
23187
23188         Add POSIX ACL support
23189         * lib/acl.h (copy_acl, set_acl): Add declarations.
23190         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
23191         systems other than Linux.
23192         (chmod_or_fchmod): New function: use fchmod when possible,
23193         and chmod otherwise.
23194         (file_has_acl): Add a POSIX ACL implementation, with a
23195         Linux-specific subcase.
23196         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
23197         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
23198         acls are unsupported.
23199         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
23200         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
23201         are unsupported.
23202
23203 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
23204
23205         Sync from coreutils.
23206         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
23207
23208 2006-01-07  Bruno Haible  <bruno@clisp.org>
23209
23210         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
23211         gl_EARLY.
23212
23213 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
23214
23215         * lib/strftime.c (tzname): Don't declare if it is already #defined.
23216         Problem reported for Mingw by Mark Junker.
23217
23218 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
23219
23220         * README: Gnulib normally doesn't generate a tarball.
23221
23222 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
23223
23224         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
23225         long int, not int, for nanosecond counts, so that people who are
23226         used to POSIX struct timespec won't be surprised.  Reported by Jim
23227         Meyering.
23228
23229 2005-12-28  Bruno Haible  <bruno@clisp.org>
23230
23231         * build-aux/config.rpath: Update from GNU gettext.
23232
23233 2005-12-16  Jim Meyering  <jim@meyering.net>
23234
23235         * modules/fprintftime: New module.
23236         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
23237
23238 2005-12-16  Jim Meyering  <jim@meyering.net>
23239
23240         * m4/fprintftime.m4: New file.
23241
23242 2005-12-16  Jim Meyering  <jim@meyering.net>
23243
23244         * lib/fprintftime.c, lib/fprintftime.h: New files.
23245
23246 2005-12-15  Simon Josefsson  <jas@extundo.com>
23247
23248         * modules/socklen (configure.ac): Fix M4 macro name, to align with
23249         new m4/socklen.m4.
23250
23251 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
23252
23253         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
23254         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
23255
23256 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
23257
23258         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
23259         * lib/argp-help.c (fill_in_uparams): Check if the constructed
23260         struct uparams is valid. Fall back to the default values if it is
23261         not.
23262
23263 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
23264
23265         * modules/argp (Files): Add argp-pin.c
23266         (Depends-on): dirname
23267         (lib_SOURCES): Add argp-pin.c
23268
23269 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
23270
23271         * m4/argp.m4:  Check if program_invocation_name and
23272         program_invocation_short_name are declared and define appropriate
23273         macros if they are not.
23274
23275 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
23276
23277         * lib/argp-help.c (__argp_base_name): New function
23278         (__argp_short_program_name): Rewrite using __argp_base_name
23279         * lib/argp-namefrob.h: Define program_invocation_name and
23280         program_invocation_short_name if requested
23281         (__argp_base_name): Add prototype
23282         * lib/argp-parse.c (argp_def): Use gettext wrappers
23283         (argp_default_parser): Use __argp_base_name
23284         * lib/argp-pin.c: New file. Defines program_invocation_name and
23285         program_invocation_short_name on systems that lack them.
23286
23287 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
23288
23289         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
23290         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
23291         porting problem reported by Georg Schwarz in
23292         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
23293
23294 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
23295
23296         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
23297         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
23298         porting problem reported by Georg Schwarz in
23299         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
23300
23301 2005-12-05  Bruno Haible  <bruno@clisp.org>
23302
23303         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
23304         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
23305         Reported by Mark Junker <mjscod@gmx.de>.
23306
23307 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
23308
23309         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
23310         Use implementation from Albert Chin, with some
23311         comments/corrections by Stepan Kasal and myself.
23312
23313 2005-12-02  Bruno Haible  <bruno@clisp.org>
23314
23315         * gnulib-tool (func_import): Accept GPLed build tool modules when
23316         --lgpl is given.
23317         * modules/csharpcomp-script: New file.
23318         * modules/csharpcomp: Depend on it.
23319         * modules/javacomp-script: New file.
23320         * modules/javacomp: Depend on it.
23321         Suggested by Simon Josefsson.
23322
23323 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
23324
23325         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
23326         statement, to work around an HP-UX 10.20 compiler bug reported by
23327         Peter O'Gorman.
23328
23329 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
23330
23331         * modules/savedir (Depends-on): Add openat.
23332
23333 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
23334
23335         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
23336         (uintmax_t) [defined uintmax_t]: Do not declare.
23337         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
23338         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
23339         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
23340         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
23341         sake of portability to weird hosts that C allows (though we don't
23342         know of any practical examples).
23343
23344         * lib/savedir.h (fdsavedir): New decl.
23345         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
23346         contains most of the former guts of savedir.
23347         (savedir): Use savedirstream.
23348         Include "openat.h".
23349
23350 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
23351
23352         * modules/obstack (Files): Add m4/ulonglong.m4.
23353         Problem reported by Davide Angelocola.
23354
23355 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
23356
23357         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
23358         coreutils no longer futzes with rounding modes.
23359
23360 2005-11-14  Jim Meyering  <jim@meyering.net>
23361
23362         * lib/mkstemp-safer.c: Include <config.h>, required for possible
23363         replacement of mkstemp.
23364
23365 2005-11-10  Simon Josefsson  <jas@extundo.com>
23366
23367         * lib/readline.c: Remove EOL.
23368
23369 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
23370
23371         * modules/gethrxtime (Depends-on): Add gettime.
23372
23373 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
23374
23375         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
23376         or gettimeofday; no longer needed.
23377
23378 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
23379
23380         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
23381         time business.
23382         (gethrxtime) [! (HAVE_NANOUPTIME
23383         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
23384         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
23385         our own approximation.
23386
23387 2005-11-08  Eric Blake  <ebb9@byu.net>
23388
23389         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
23390
23391 2005-11-08  Eric Blake  <ebb9@byu.net>
23392
23393         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
23394
23395 2005-11-04  Bruno Haible  <bruno@clisp.org>
23396
23397         * gnulib-tool: Implement --update mode.
23398
23399 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
23400
23401         Fix porting problem reported by Theodoros V. Kalamatianos.
23402         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
23403         Don't assume that futimes failing means we must fail.
23404
23405 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
23406
23407         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
23408         variables to suggest the intended function of the PATH_MAX check.
23409
23410 2005-10-30  Kean Johnston  <jkj@sco.com>
23411
23412         Trivial changes to support SCO systems.
23413         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
23414         as PATH_MAX.
23415         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
23416         where __ptr is null when no I/O is pending.
23417
23418 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
23419
23420         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
23421         leave errno alone.  Problem reported by Dmitry V. Levin.
23422
23423 2005-10-28  Simon Josefsson  <jas@extundo.com>
23424
23425         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
23426         Test more.
23427
23428         * tests/test-gc-md2.c, tests/test-md2.c: New files.
23429
23430         * modules/md2, modules/md2-tests: New files.
23431
23432 2005-10-28  Simon Josefsson  <jas@extundo.com>
23433
23434         * m4/inet_ntop.m4: More tests.
23435
23436         * m4/gc-md2.m4, md2.m4: New file.
23437
23438 2005-10-28  Simon Josefsson  <jas@extundo.com>
23439
23440         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
23441         "restrict" keywords, as per POSIX.  Protect the function
23442         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
23443         Don't use K&R prototypes.  Check the sprintf return values.
23444         Re-define EAFNOSUPPORT if not present.  Indent.
23445
23446         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
23447         suggested by Bruno Haible <bruno@clisp.org>.
23448
23449         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
23450
23451         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
23452
23453         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
23454         libgcrypt).
23455
23456         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
23457
23458         * lib/md2.h, lib/md2.c: New files.
23459
23460 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
23461
23462         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
23463         errno alone.  Problem reported by Frederic Jolliton.
23464
23465 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
23466
23467         * modules/verify (License): Change from GPL to LGPL.  This is a
23468         tiny module and there are apparently near-equivalents that are
23469         under the BSD license.
23470
23471 2005-10-24  Simon Josefsson  <jas@extundo.com>
23472
23473         * modules/sha1: Relicense to LGPL.
23474
23475 2005-10-24  Simon Josefsson  <jas@extundo.com>
23476
23477         * lib/md4.h: Shrink buffer size, now that we changed the type.
23478
23479 2005-10-23  Simon Josefsson  <jas@extundo.com>
23480
23481         * gnulib-tool (func_import): Fix --tests-base.
23482
23483 2005-10-22  Simon Josefsson  <jas@extundo.com>
23484
23485         * modules/arcfour (Depends-on): Need stdint.
23486
23487 2005-10-22  Simon Josefsson  <jas@extundo.com>
23488
23489         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
23490         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
23491
23492 2005-10-22  Simon Josefsson  <jas@extundo.com>
23493
23494         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
23495         suggested by Bruno Haible <bruno@clisp.org>.
23496
23497 2005-10-22  Simon Josefsson  <jas@extundo.com>
23498
23499         * lib/crc.h: Include stddef.h, for size_t.
23500
23501 2005-10-22  Simon Josefsson  <jas@extundo.com>
23502
23503         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
23504         arcfour_context struct (simplify test vector testing in GNU
23505         Shishi).
23506
23507 2005-10-21  Simon Josefsson  <jas@extundo.com>
23508
23509         * modules/des, modules/des-tests: New files.
23510
23511         * modules/gc-des, modules/gc-des-tests: New files.
23512
23513         * tests/test-des.c, tests/test-gc-des.c: New file.
23514
23515 2005-10-21  Simon Josefsson  <jas@extundo.com>
23516
23517         * modules/arctwo, modules/arctwo-tests: New files.
23518
23519         * tests/test-arctwo.c: New file.
23520
23521         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
23522
23523         * tests/test-gc-arctwo.c: New file.
23524
23525 2005-10-21  Simon Josefsson  <jas@extundo.com>
23526
23527         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
23528         Bruno Haible <bruno@clisp.org>.
23529
23530         * m4/gc-des.m4: New file.
23531
23532 2005-10-21  Simon Josefsson  <jas@extundo.com>
23533
23534         * m4/arctwo.m4: New file.
23535
23536         * m4/gc-arctwo.m4: New file.
23537
23538 2005-10-21  Simon Josefsson  <jas@extundo.com>
23539
23540         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
23541         block.
23542
23543 2005-10-21  Simon Josefsson  <jas@extundo.com>
23544
23545         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
23546         <bruno@clisp.org>.
23547
23548         * lib/hmac-sha1.c (hmac_sha1): Likewise.
23549
23550         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
23551         Bruno Haible <bruno@clisp.org>.
23552
23553         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
23554         <bruno@clisp.org>.
23555
23556 2005-10-21  Simon Josefsson  <jas@extundo.com>
23557
23558         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
23559
23560 2005-10-21  Simon Josefsson  <jas@extundo.com>
23561
23562         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
23563
23564 2005-10-21  Simon Josefsson  <jas@extundo.com>
23565
23566         * lib/des.h, lib/des.c: New files.
23567
23568         * lib/gc-gnulib.c: Support DES.c
23569
23570 2005-10-21  Simon Josefsson  <jas@extundo.com>
23571
23572         * lib/arctwo.h, lib/arctwo.c: New files.
23573
23574         * lib/gc-gnulib.c: Support ARCTWO.
23575
23576 2005-10-21  Simon Josefsson  <jas@extundo.com>
23577
23578         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
23579         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23580
23581 2005-10-21  Simon Josefsson  <jas@extundo.com>
23582
23583         * gnulib-tool (func_import, func_create_testdir): Define automake
23584         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
23585         Makefile.am snippet),
23586         suggested by Bruno Haible <bruno@clisp.org>.
23587
23588         * modules/gc (Makefile.am): Use it.
23589
23590 2005-10-21  Bruno Haible  <bruno@clisp.org>
23591
23592         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
23593         patch.
23594
23595 2005-10-19  Simon Josefsson  <jas@extundo.com>
23596
23597         * tests/test-gc-rijndael.c: New file.
23598
23599         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
23600
23601 2005-10-19  Simon Josefsson  <jas@extundo.com>
23602
23603         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
23604         interface too.
23605
23606 2005-10-19  Simon Josefsson  <jas@extundo.com>
23607
23608         * tests/test-gc-arcfour.c: New file.
23609
23610         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
23611
23612 2005-10-19  Simon Josefsson  <jas@extundo.com>
23613
23614         * modules/gc-md4, modules/gc-md4-tests: New file.
23615
23616         * tests/test-gc-md4.c: New file.
23617
23618 2005-10-19  Simon Josefsson  <jas@extundo.com>
23619
23620         * m4/gc-md4.m4: New file.
23621
23622 2005-10-19  Simon Josefsson  <jas@extundo.com>
23623
23624         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
23625         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
23626         <kasal@ucw.cz>.
23627
23628 2005-10-19  Simon Josefsson  <jas@extundo.com>
23629
23630         * m4/gc-arcfour.m4: New file.
23631
23632         * m4/gc-rijndael.m4: New file.
23633
23634 2005-10-19  Simon Josefsson  <jas@extundo.com>
23635
23636         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
23637
23638 2005-10-19  Simon Josefsson  <jas@extundo.com>
23639
23640         * lib/gc-gnulib.c: Support ARCFOUR.
23641
23642 2005-10-19  Simon Josefsson  <jas@extundo.com>
23643
23644         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
23645         support.
23646
23647         * lib/gc.h: Add ECB enum type.
23648
23649         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
23650
23651 2005-10-18  Simon Josefsson  <jas@extundo.com>
23652
23653         * tests/test-md5.c: New file.
23654
23655         * modules/md5-tests: New file.
23656
23657 2005-10-18  Simon Josefsson  <jas@extundo.com>
23658
23659         * tests/test-md4.c: New file.
23660
23661         * modules/md4, modules/md4-tests: New files.
23662
23663 2005-10-18  Simon Josefsson  <jas@extundo.com>
23664
23665         * m4/md4.m4: New file.
23666
23667 2005-10-18  Simon Josefsson  <jas@extundo.com>
23668
23669         * lib/md4.h, lib/md4.c: New files, based on md5.?.
23670
23671 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
23672
23673         * gnulib-tool (func_create_testdir): Omit the second check whether
23674         BUILT_SOURCES in nonempty.
23675
23676 2005-10-17  Simon Josefsson  <jas@extundo.com>
23677
23678         * tests/test-rijndael.c: New file.
23679
23680 2005-10-17  Simon Josefsson  <jas@extundo.com>
23681
23682         * modules/sha1: Depend on stdint instead of md5.
23683
23684         * modules/md5: Depend on stdint, remove uint32_t.
23685
23686 2005-10-17  Simon Josefsson  <jas@extundo.com>
23687
23688         * modules/gc-sha1-tests: New file.
23689
23690         * tests/test-gc-sha1.c: New file.
23691
23692 2005-10-17  Simon Josefsson  <jas@extundo.com>
23693
23694         * m4/md5.m4: Remove call to uint32_t.m4.
23695
23696 2005-10-17  Simon Josefsson  <jas@extundo.com>
23697
23698         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
23699
23700         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
23701         md5.h.
23702
23703         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
23704
23705         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
23706
23707 2005-10-17  Simon Josefsson  <jas@extundo.com>
23708
23709         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
23710
23711 2005-10-17  Simon Josefsson  <jas@extundo.com>
23712
23713         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
23714
23715 2005-10-17  Simon Josefsson  <jas@extundo.com>
23716
23717         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
23718
23719         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
23720
23721 2005-10-17  Bruno Haible  <bruno@clisp.org>
23722
23723         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
23724         that it can also be used in a test.
23725
23726 2005-10-16  Bruno Haible  <bruno@clisp.org>
23727
23728         * gnulib-tool (func_emit_tests_Makefile_am): Also define
23729         TESTS_ENVIRONMENT, so that individual tests can augment it.
23730
23731         * gnulib-tool (func_create_testdir): Use an intermediate target for
23732         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
23733         macros, like $(ALLOCA_H), which cannot be passed through the command
23734         line.
23735
23736 2005-10-15  Simon Josefsson  <jas@extundo.com>
23737
23738         * modules/rijndael-tests: New file.
23739
23740         * modules/rijndael: New file.
23741
23742 2005-10-15  Simon Josefsson  <jas@extundo.com>
23743
23744         * m4/rijndael.m4: New file.
23745
23746 2005-10-15  Simon Josefsson  <jas@extundo.com>
23747
23748         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
23749
23750         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
23751
23752 2005-10-14  Simon Josefsson  <jas@extundo.com>
23753
23754         * tests/test-arcfour.c: New file.
23755
23756         * modules/arcfour, modules/arcfour-tests: New files.
23757
23758 2005-10-14  Simon Josefsson  <jas@extundo.com>
23759
23760         * m4/arcfour.m4: New file.
23761
23762 2005-10-14  Simon Josefsson  <jas@extundo.com>
23763
23764         * lib/arcfour.h, lib/arcfour.c: New files.
23765
23766 2005-10-14  Roland McGrath  <roland@redhat.com>
23767
23768         Import from libc.  [BZ #1331]
23769         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
23770         macro argument.
23771         Reported by Matej Vela <vela@debian.org>.
23772
23773 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
23774
23775         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
23776         include <wchar.h>; no longer needed.
23777
23778 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
23779
23780         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
23781
23782 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
23783         and  Ulrich Drepper  <drepper@redhat.com>
23784
23785         Import from libc.
23786         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
23787         instead of inline stream orientation test and two separate
23788         function calls.  Pay no attention to USE_IN_LIBIO.
23789
23790 2005-10-13  Simon Josefsson  <jas@extundo.com>
23791
23792         * modules/gc-hmac-md5-tests: New file.
23793
23794         * tests/test-gc-hmac-sha1.c: New file.
23795
23796         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
23797
23798         * modules/gc-hmac-md5-tests: New file.
23799
23800         * tests/test-gc-md5.c: New file.
23801
23802         * modules/gc-md5-tests: New file.
23803
23804 2005-10-13  Simon Josefsson  <jas@extundo.com>
23805
23806         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
23807         Move memory allocation outside of loop.
23808
23809 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
23810
23811         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
23812         intermediate directory is in a read-only file system.  Problem
23813         reported by Eric Blake.
23814
23815 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
23816
23817         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
23818
23819 2005-10-12  Simon Josefsson  <jas@extundo.com>
23820
23821         * tests/test-hmac-sha1.c: New file.
23822
23823         * modules/hmac-sha1-tests: New file.
23824
23825         * modules/hmac-sha1: New file.
23826
23827 2005-10-12  Simon Josefsson  <jas@extundo.com>
23828
23829         * modules/gc-sha1: New file.
23830
23831 2005-10-12  Simon Josefsson  <jas@extundo.com>
23832
23833         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
23834
23835         * tests/test-gc-pbkdf2-sha1.c: New file.
23836
23837 2005-10-12  Simon Josefsson  <jas@extundo.com>
23838
23839         * modules/gc-md5, modules/gc-hmac-md5: New files.
23840
23841         * modules/gc (Files): Remove md5, memxor and hmac files.
23842
23843 2005-10-12  Simon Josefsson  <jas@extundo.com>
23844
23845         * m4/gc-pbkdf2-sha1.m4: New file.
23846
23847         * m4/gc-hmac-sha1.m4: New file.
23848
23849         * m4/gc-sha1: New file.
23850
23851         * m4/hmac-sha1.m4: New file.
23852
23853 2005-10-12  Simon Josefsson  <jas@extundo.com>
23854
23855         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
23856
23857         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
23858
23859 2005-10-12  Simon Josefsson  <jas@extundo.com>
23860
23861         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
23862         suggested by Bruno Haible <bruno@clisp.org>.
23863
23864 2005-10-12  Simon Josefsson  <jas@extundo.com>
23865
23866         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
23867
23868 2005-10-12  Simon Josefsson  <jas@extundo.com>
23869
23870         * lib/gc-pbkdf2-sha1.c: New file.
23871
23872         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
23873
23874 2005-10-12  Simon Josefsson  <jas@extundo.com>
23875
23876         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
23877
23878         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
23879
23880 2005-10-12  Simon Josefsson  <jas@extundo.com>
23881
23882         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
23883         GC_USE_HMAC_MD5, respectively.
23884
23885         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
23886         (gc_md5): Fix typo.
23887
23888         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
23889
23890         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
23891
23892         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
23893
23894 2005-10-12  Bruno Haible  <bruno@clisp.org>
23895
23896         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
23897         Reported by Stepan Kasal <kasal@ucw.cz>.
23898
23899 2005-10-11  Simon Josefsson  <jas@extundo.com>
23900
23901         * tests/test-crc.c: New file.
23902
23903         * modules/crc, modules/crc-tests: New files.
23904
23905 2005-10-11  Simon Josefsson  <jas@extundo.com>
23906
23907         * m4/crc.m4: New file.
23908
23909 2005-10-11  Simon Josefsson  <jas@extundo.com>
23910
23911         * lib/gc.h: Add gc_hash and gc_hash_buffer.
23912
23913         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
23914
23915         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
23916
23917 2005-10-11  Simon Josefsson  <jas@extundo.com>
23918
23919         * lib/crc.h, lib/crc.c: New files.
23920
23921         * lib/gc.h (gc_hash_buffer): Add doc.
23922
23923 2005-10-11  Bruno Haible  <bruno@clisp.org>
23924
23925         * modules/c-strcasestr: New file.
23926         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
23927
23928 2005-10-11  Bruno Haible  <bruno@clisp.org>
23929
23930         * modules/c-strcase: New file.
23931         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
23932
23933 2005-10-11  Bruno Haible  <bruno@clisp.org>
23934
23935         * lib/strcasecmp.c: Include limits.h.
23936         (strcasecmp): Avoid integer overflow on exotic platforms.
23937         * lib/strncasecmp.c: Include limits.h.
23938         (strncasecmp): Avoid integer overflow on exotic platforms.
23939         Reported by Paul Eggert.
23940
23941 2005-10-11  Bruno Haible  <bruno@clisp.org>
23942
23943         * lib/c-strcasestr.h: New file, from GNU gettext.
23944         * lib/c-strcasestr.c: New file, from GNU gettext.
23945
23946 2005-10-11  Bruno Haible  <bruno@clisp.org>
23947
23948         * lib/c-strcase.h: New file, from GNU gettext.
23949         * lib/c-strcasecmp.c: New file, from GNU gettext.
23950         * lib/c-strncasecmp.c: New file, from GNU gettext.
23951
23952 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
23953
23954         * modules/mempcpy (License): GPL -> LGPL.
23955         * modules/strchrnul (License): Likewise.
23956         * modules/sysexits (License): Likewise.
23957
23958 2005-10-08  Simon Josefsson  <jas@extundo.com>
23959
23960         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
23961
23962 2005-10-07  Simon Josefsson  <jas@extundo.com>
23963
23964         * m4/memxor.m4: Remove gl_C_RESTRICT call.
23965
23966 2005-10-06  Simon Josefsson  <jas@extundo.com>
23967
23968         * tests/test-hmac-md5.c: New file.
23969
23970         * modules/hmac-md5-tests: New file.
23971
23972         * modules/hmac-md5: New file.
23973
23974 2005-10-06  Simon Josefsson  <jas@extundo.com>
23975
23976         * m4/hmac-md5.m4: New file.
23977
23978         * m4/memxor.m4: Require gl_C_RESTRICT.
23979
23980 2005-10-06  Simon Josefsson  <jas@extundo.com>
23981
23982         * lib/memxor.c (memxor): Avoid casts and warnings.
23983
23984 2005-10-06  Simon Josefsson  <jas@extundo.com>
23985
23986         * lib/hmac-md5.c: New file.
23987
23988         * lib/hmac.h: New file.
23989
23990 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
23991
23992         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
23993         promotes to int, not unsigned int, to catch the AIX 5.3
23994         compiler bug.
23995
23996 2005-10-05  Simon Josefsson  <jas@extundo.com>
23997
23998         * modules/memxor: New file.
23999
24000         * modules/iconv (Files): Move config.rpath to havelib, it is used
24001         there.
24002
24003         * modules/havelib (Files): Add config.rpath.
24004
24005 2005-10-05  Simon Josefsson  <jas@extundo.com>
24006
24007         * m4/memxor.m4: New file.
24008
24009 2005-10-05  Simon Josefsson  <jas@extundo.com>
24010
24011         * lib/memxor.c (memxor): Fix compiler error.
24012
24013         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
24014         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
24015
24016         * lib/memxor.h, lib/memxor.c: New files.
24017
24018         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
24019         we assume all systems have it, suggested by Jim Meyering
24020         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
24021         any systems lack sys/socket.h; mingw32 is known to lack it, but we
24022         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
24023         same reasons.
24024
24025 2005-10-05  Simon Josefsson  <jas@extundo.com>
24026
24027         * config/srclist.txt: Add glibc bug 1423 for md5.h.
24028
24029 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
24030
24031         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
24032         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
24033         needed, since the source code now assumes these .h files.
24034
24035 2005-10-05  Derek Price  <derek@ximbiot.com>
24036
24037         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
24038
24039 2005-10-05  Bruno Haible  <bruno@clisp.org>
24040
24041         * modules/stdint (License): Change to LGPL.
24042
24043 2005-10-04  Simon Josefsson  <jas@extundo.com>
24044
24045         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
24046         D. Baushke" <mdb@gnu.org>.
24047
24048 2005-10-04  Bruno Haible  <bruno@clisp.org>
24049
24050         * lib/verify.h (verify_true): Provide alternative definition for C++.
24051
24052 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
24053
24054         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
24055         (SSIZE_MAX): New macro, if not already defined.
24056         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
24057         than 2 GiB.
24058
24059 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24060
24061         Sync from coreutils.
24062         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
24063         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
24064         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
24065         ULLONG_MAX doesn't work with 2.7.2.1.
24066
24067 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24068
24069         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
24070         From Ben Pfaff.
24071
24072         * modules/exclude (Depends-on): Depend on verify.
24073         * modules/strtoimax (Depends-on): Likewise.
24074         * modules/utimecmp (Depends-on): Likewise.
24075
24076 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24077
24078         * lib/exclude.c: Include verify.h.
24079         (verify): Remove.  All callers changed to use verify.h's version.
24080         * lib/strtoimax.c: Likewise.
24081         * lib/utimecmp.c: Likewis.e
24082
24083         Sync from coreutils.
24084         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
24085         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
24086         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
24087         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
24088         bother returning ENOSYS if settimeofday or stime fails; just let
24089         them return whatever errno they want to return.
24090         * lib/utimens.c: Include unistd.h, for dup2.
24091         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
24092         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
24093
24094 2005-10-02  Jim Meyering  <jim@meyering.net>
24095
24096         Sync from coreutils.
24097         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
24098         from glibc-2.2.5 that fails for read-only files.
24099
24100 2005-10-02  Jim Meyering  <jim@meyering.net>
24101
24102         Sync from coreutils.
24103         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
24104         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
24105         `#if HAVE_CONFIG_H'.
24106         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
24107         Remove AT_FDCWD test.
24108         Do not consume the fd unless successful.
24109         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
24110         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
24111         block, so that we don't even try to compile it if settimeofday is
24112         available.  This works around a compilation failure on OSF1 V5.1,
24113         due to stime requiring a `long int*' while tv_sec is `int'.
24114
24115 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
24116
24117         Sync from coreutils.
24118         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
24119         against `yes', rather than just testing for nonempty.
24120
24121 2005-10-01  Simon Josefsson  <jas@extundo.com>
24122
24123         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
24124         and Darwin.
24125
24126         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
24127         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
24128         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
24129         freeaddrinfo and gai_strerror are declared by the POSIX headers.
24130         Check if struct addrinfo is declared.
24131
24132 2005-10-01  Simon Josefsson  <jas@extundo.com>
24133
24134         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
24135         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
24136         AI_* and EAI_* definitions.  Protect function declarations.
24137
24138 2005-10-01  Jim Meyering  <jim@meyering.net>
24139
24140         Sync from coreutils.
24141
24142         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
24143         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
24144         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
24145         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
24146         in the inet and nsl libraries.  Required on Solaris 5.7.
24147
24148 2005-10-01  Jim Meyering  <jim@meyering.net>
24149
24150         Sync from coreutils.
24151         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
24152         in the inet and nsl libraries.  Required on Solaris 5.7.
24153
24154 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
24155
24156         * lib/getdelim.c (getdelim): Remove unused variables.
24157
24158 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
24159
24160         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
24161         so that the code works even with ancient cpp.  Portability problem
24162         with GCC 2.7.2.1 reported by Thomas M.Ott.
24163
24164 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
24165
24166         * modules/regex (Depends-on): Add strcase.
24167
24168         * modules/gethostname (Licence): Change from GPL to LGPL, since
24169         gethostname.c is a trivial implementation of a standard library
24170         function.
24171         * modules/poll (License): Change from GPL to LGPL, since it's
24172         derived from LGPL code.
24173
24174 2005-09-27  Jim Meyering  <jim@meyering.net>
24175
24176         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
24177         HAVE_CONFIG_H.
24178
24179         * lib/intprops.h (signed_type_or_expr__): Define.
24180         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
24181         for unsigned types.
24182
24183 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
24184
24185         * lib/verify.h (verify_expr): Remove, replacing with:
24186         (verify_true): New macro that returns true instead of void.
24187         (verify_type__): Remove.
24188         (verify): Use verify_true rather than verify_type__.
24189
24190 2005-09-26  Bruno Haible  <bruno@clisp.org>
24191
24192         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
24193         is necessary.
24194         (lib_SOURCES): Remove mbchar.c.
24195         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
24196         (Files): Add m4/mbrtowc.m4.
24197         * modules/mbiter: Likewise.
24198         * modules/mbuiter: Likewise.
24199
24200 2005-09-26  Bruno Haible  <bruno@clisp.org>
24201
24202         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
24203         compile mbchar.c if they are not both present.
24204         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
24205         * m4/mbiter.m4 (gl_MBITER): Likewise.
24206         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
24207         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
24208         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
24209
24210 2005-09-25  Jim Meyering  <jim@meyering.net>
24211
24212         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
24213         also uses socklen_t.
24214
24215 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
24216
24217         * lib/utimens.c (ENOSYS): Define if not already defined.
24218         (futimens): Support having a null PATH if the file descriptor
24219         is nonnegative.
24220
24221         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
24222         Remove.
24223         (__attribute): Define to empty unless GCC 3.1 or later.
24224         This works around a core dump on OpenBSD 3.4, which has GCC
24225         2.95.3, which dumps core when given __attribute__(()).  It also
24226         simplifies other tests, since we really don't want to bother with
24227         worrying about which ancient version of GCC supported what.
24228         Original problem reported by Yoann Vandoorselaere, with part of
24229         the fix suggested by Derek Price.
24230
24231 2005-09-24  Jim Meyering  <jim@meyering.net>
24232
24233         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
24234         so we can once again use a positive bitfield width of 1 -- now we
24235         don't have to explain why we were using a bitfield width of 2.
24236
24237 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
24238
24239         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
24240         and similarly for the other external symbols.  Problem reported
24241         by James Gallager.
24242
24243         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
24244         bug reported by Jim Meyering.
24245
24246         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
24247         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
24248         not needed, since socklen is a prerequisite module.
24249
24250 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
24251
24252         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
24253         Problem reported by Eric Blake.
24254         (getaddrinfo): Initialize se so that it's not garbage.
24255         Redo internal storage allocation so that it doesn't make unportable
24256         assumptions about alignment.
24257         Fix a memory leak.
24258
24259         * lib/utimens.c (futimens): Use futimesat if available.
24260         Prefer it to futimes since it doesn't have the futimes bug.
24261
24262         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
24263         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
24264         Instead, declare a function that returns a pointer to an array,
24265         and use verify_type__ to declare the size of the array.
24266         Problem and germ of a solution reported by Bruno Haible.
24267         (verify_type__): Use 2, not 1, for bitfield size, to avoid
24268         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
24269
24270 2005-09-23  Jim Meyering  <jim@meyering.net>
24271
24272         Sync from coreutils.
24273         Correct build failure (socklen_t not defined) on at least
24274         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
24275         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
24276
24277 2005-09-23  Jim Meyering  <jim@meyering.net>
24278
24279         * modules/getaddrinfo (Depends-on): Add socklen.
24280
24281 2005-09-23  Bruno Haible  <bruno@clisp.org>
24282
24283         * tests/test-verify.c: New file.
24284
24285 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
24286
24287         Sync from coreutils.
24288
24289         * modules/argmatch (Depends-on): Add verify.
24290         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
24291         unistd-safer.
24292         * modules/save-cwd (Depends-on): Likewise.
24293
24294         * modules/openat (Files): Add lib/openat-die.c.
24295         (Depends-on): Remove error, exitfail.
24296         Add dirname.
24297
24298         * modules/verify: New file.
24299         * MODULES.html.sh (Diagnostics <assert.h>): New section,
24300         with "verify" module.
24301
24302 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
24303
24304         Sync from coreutils.
24305
24306         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
24307         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
24308         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
24309         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
24310         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
24311         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
24312         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
24313         Don't bother checking for string.h, stdlib.h, unistd.h.
24314         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
24315         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
24316         module's job.
24317         * m4/jm-macros.m4 (gl_MACROS): Likewise.
24318         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
24319
24320         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
24321         (gl_GETDATE): Use it.
24322
24323         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
24324
24325 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
24326
24327         Sync from coreutils.
24328
24329         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
24330         stat-time.h.
24331         * lib/argmatch.h: Include verify.h
24332         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
24333         (ARGMATCH_ASSERT): Remove; unused.
24334         * lib/canonicalize.c: Assume STDC_HEADERS.
24335         * lib/exclude.c: Include "strcase.h".
24336         * lib/regex_internal.h [!defined _LIBC]: Likewise.
24337         * lib/getusershell.c: Include stdio--.h rather than stdio.h
24338         and stdio-safer.h.
24339         (getusershell): Call fopen, not fopen_safer.
24340         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
24341         Do not include unistd-safer.h.
24342         (save_cwd): Don't call fd_safer; no longer needed
24343         now that we include fcntl--.h.
24344
24345         * lib/getdate.y (relative_time): New type.
24346         (RELATIVE_TIME_0): New constant.
24347         (parser_control): Use relative_time instead of doing it ourselves.
24348         (%union): Add new relative_time rel member.
24349         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
24350         Now typeless.
24351         (relunit, relunit_snumber): Now of type rel.
24352         (zone, rel, relunit, get_date): Adjust to above changes.
24353
24354         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
24355         Do not include unistd-safer.h.
24356         (getloadavg): Don't call fd_safer; no longer needed
24357         now that we include fcntl--.h.
24358
24359         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
24360         (make_dir_parents): Treat ENOSYS like EEXIST.
24361
24362         Improve quality of diagnostics on restore_cwd failure.
24363         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
24364         (make_dir_parents): Last arg is now int * (for errno), not bool *.
24365         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
24366         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
24367         each time through the loop.  Do not diagnose restore_cwd failure;
24368         that is the caller's job (and perhaps the caller does not care).
24369
24370         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
24371         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
24372         If the file already exists but is not a directory, don't bother
24373         to try to make its parents.
24374         Close potential file descriptor leak if we can't chdir("/") (!).
24375         Don't always return true if chdir($PWD) fails; return true only
24376         if the requested action was done successfully (except for the
24377         chdir($PWD)).
24378         Don't log final directory unless we actually made it.
24379         Refactor to avoid duplicate code to fix up permissions.
24380         Don't attempt to fix up parent permissions if chdir($PWD) fails.
24381
24382         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
24383         to make it a bit faster and (I hope) clearer.
24384         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
24385         Fix bug in formats like %2N.
24386
24387         * lib/verify.h: New file.
24388
24389 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
24390
24391         Sync from coreutils.
24392         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
24393
24394 2005-09-22  Jim Meyering  <jim@meyering.net>
24395
24396         Sync from coreutils.
24397
24398         * m4/lstat.m4 (gl_FUNC_LSTAT):
24399         Use AC_LIBSOURCES to require lstat.c and lstat.h.
24400         Remove obsolete comment.
24401         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
24402         * m4/xstrtod.m4: Likewise.
24403
24404         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
24405
24406 2005-09-22  Jim Meyering  <jim@meyering.net>
24407
24408         Sync from coreutils.
24409
24410         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
24411
24412         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
24413         the .tm_year member, since otherwise gcc-4.0 would now warn about
24414         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
24415
24416         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
24417         order to avoid an unsuppressible warning from gcc on 64-bit systems.
24418
24419         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
24420         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
24421         when run in a time zone for which daylight savings time is in effect
24422         for the starting date.
24423
24424         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
24425         stop us from restricting permissions of just-created absolute-named
24426         directories.
24427         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
24428         to restore initial working directory.
24429         * lib/mkdir-p.c (make_dir_parents): New parameter:
24430         different_working_dir, to tell caller if/when we change the working
24431         directory and are unable to return to the initial one.
24432         * lib/mkdir-p.h (make_dir_parents): Update prototype.
24433         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
24434         `return false'.  This fixes a bug introduced on 2004-07-30.
24435
24436         * lib/openat.c (fdopendir): Be sure to close the supplied
24437         file descriptor before returning.  This makes our replacement
24438         implementation a little closer to Solaris's, where fdopendir
24439         ties the file descriptor to the returned DIR* pointer.
24440         * lib/openat.c (unlinkat): New function.
24441         * lib/openat.h (unlinkat): Add prototype.
24442         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
24443         (openat_restore_fail): Rename from openat_restore_die.
24444         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
24445
24446         Provide an alternative to exiting immediately upon save_cwd or
24447         restore_cwd failure.  Now, an application can arrange e.g.,
24448         to perform a longjump in that case.
24449         * lib/openat.c: Include dirname.h.
24450         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
24451         (rpl_openat, fdopendir, fstatat): Call openat_save_die
24452         and openat_restore_die rather than calling error directly.
24453         Don't include "error.h" or "exitfail.h"; they're no longer needed.
24454
24455         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
24456         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
24457         define.
24458
24459         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
24460         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
24461                             int utc, int nanoseconds);
24462         Background:
24463         date should not have to allocate a megabyte of virtual memory to
24464         handle a format argument like +%1048575T.  When implemented with
24465         strftime, it must allocate such a buffer, use strftime to fill it
24466         in, print it, then free it.
24467         With fprintftime, it simply prints everything and exits.
24468         With no need for memory allocation, that's one fewer way to fail.
24469         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
24470         optional field width, not before, so we accept %9:z, not %:9z.
24471         (my_strftime): Be sure to use L_('x') for literals.
24472
24473         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
24474         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
24475         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
24476         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
24477         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
24478         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
24479         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
24480         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
24481         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
24482         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
24483         * lib/xgethostname.c, lib/xreadlink.c:
24484         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
24485
24486         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
24487         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
24488         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
24489         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
24490         and don't include <sys/file.h>).
24491
24492 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
24493
24494         Sync from coreutils.
24495
24496         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
24497         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
24498         [!LDAV_DONE]: Avoid unused variable warning.
24499
24500 2005-09-21  Bruno Haible  <bruno@clisp.org>
24501
24502         * lib/unicodeio.h (unicode_to_mb): New declaration.
24503
24504 2005-09-20  Derek Price  <derek@ximbiot.com>
24505
24506         * lib/getaddrinfo.c: Don't include <netdb.h> included from
24507         getaddrinfo.h.
24508
24509 2005-09-20  Bruno Haible  <bruno@clisp.org>
24510
24511         * gnulib-tool: Remove trailing slashes from the values specified for
24512         --source-base, --m4-base, --tests-base, --aux-dir.
24513         Suggested by Simon Josefsson <jas@extundo.com>.
24514
24515 2005-09-20  Bruno Haible  <bruno@clisp.org>
24516
24517         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
24518         func_modules_to_filelist, func_import, func_create_testdir): Make all
24519         sorting results locale-independent, so that gnulib-cache.m4 doesn't
24520         change when gnulib-tool is invoked in a different locale.
24521
24522 2005-09-19  Simon Josefsson  <jas@extundo.com>
24523
24524         * m4/socklen.m4: Fix typo.
24525
24526 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24527
24528         Use a consistent style for including <config.h>.
24529         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
24530         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
24531         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
24532         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
24533         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
24534         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
24535         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
24536         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
24537         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
24538         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
24539         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
24540         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
24541         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
24542         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
24543         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
24544         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
24545         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
24546         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
24547         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
24548         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
24549         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
24550         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
24551         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
24552         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
24553         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
24554         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
24555         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
24556         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
24557         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
24558         lib/xstrtoumax.c, lib/yesno.c:
24559         Standardize inclusion of config.h.
24560         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
24561         lib/inttostr.h:  Removed inclusion of config.h from header files.
24562         * lib/inttostr.c:  Adjusted in-tree users.
24563         * lib/timespec.h: Remove superfluous warning to include config.h.
24564         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
24565         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
24566         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
24567         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
24568         config.h with HAVE_CONFIG_H.
24569
24570 2005-09-19  Jim Meyering  <jim@meyering.net>
24571
24572         * modules/pathmax (License): Change to LGPL.
24573
24574 2005-09-19  Derek Price  <derek@ximbiot.com>
24575
24576         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
24577
24578 2005-09-19  Bruno Haible  <bruno@clisp.org>
24579
24580         * gnulib-tool (import): Provide default for --tests-base.
24581
24582 2005-09-19  Bruno Haible  <bruno@clisp.org>
24583
24584         * doc/quote.texi: New file, extracted from gnulib.texi.
24585         * doc/ctime.texi: New file, extracted from gnulib.texi.
24586         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
24587         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
24588         * doc/gnulib.texi: Include them.
24589
24590 2005-09-18  Bruno Haible  <bruno@clisp.org>
24591
24592         Portability fix.
24593         * gnulib-tool (func_readlink): New function.
24594         (func_ln_if_changed): Use it.
24595
24596 2005-09-18  Bruno Haible  <bruno@clisp.org>
24597
24598         * gnulib-tool: Support --with-tests also with --import.
24599         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
24600         (func_import): Use variables $testsbase and $inctests. Emit a
24601         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
24602         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
24603         SUBDIRS += $testsdir.
24604         (func_create_testdir): Update.
24605
24606 2005-09-18  Bruno Haible  <bruno@clisp.org>
24607
24608         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
24609         instead of $dry_run.
24610         (func_cp_if_changed, func_mv_if_changed): Remove functions.
24611         (func_ln_if_changed): Don't handle dry-run here.
24612         (func_import): In dry-run mode, detect more precisely which actions
24613         would be performed, and don't use "...ing" verbs.
24614
24615 2005-09-18  Bruno Haible  <bruno@clisp.org>
24616
24617         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
24618         (func_import): Use join on two temporary files instead of three nested
24619         loops, in order to determine which files are new or old.
24620
24621 2005-09-18  Bruno Haible  <bruno@clisp.org>
24622
24623         * gnulib-tool (func_import): Comment out code that spits out the
24624         new files with --dry-run.
24625
24626 2005-09-18  Bruno Haible  <bruno@clisp.org>
24627
24628         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
24629
24630 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
24631
24632         * lib/stat-time.h: New file.
24633         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
24634         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
24635         in a different way.
24636         (timespec_cmp): New function.
24637         * lib/utimecmp.c: Include stat-time.h.
24638         (SYSCALL_RESOLUTION): Depend on whether various struct stat
24639         members exist, not on the obsolescent ST_MTIM_NSEC.
24640         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
24641
24642 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
24643
24644         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
24645
24646 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
24647
24648         * MODULES.html.sh (File system functions): Add stat-time.
24649         * modules/stat-time: New file.
24650         * modules/timespec (Files): Remove m4/st_mtim.m4; this
24651         is now done in a different way, by the stat-time module.
24652         * modules/utimecmp (Depends-on): Add stat-time.
24653
24654 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
24655
24656         * m4/st_mtim.m4: Remove.  Superseded by...
24657         * m4/stat-time.m4: New file.
24658         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
24659         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
24660
24661 2005-09-15  Derek Price  <derek@ximbiot.com>
24662
24663         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
24664
24665 2005-09-15  Derek Price  <derek@ximbiot.com>
24666
24667         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
24668         * lib/regex_internal.c: Ditto, using this...
24669         (__GNUC_PREREQ): ...new macro.
24670         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
24671         using...
24672         (__GNUC_PREREQ): ...this new macro.
24673
24674         * lib/strstr.h: Include string.h. Define strstr as a macro here.
24675
24676 2005-09-15  Derek Price  <derek@ximbiot.com>
24677             Paul Eggert  <eggert@cs.ucla.edu>
24678
24679         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
24680         changes, consolidating in...
24681         * lib/regex_internal.h: ...this file.
24682
24683 2005-09-13  Jim Meyering  <jim@meyering.net>
24684
24685         * lib/canon-host.c: Filter through gnu indent and reword comments
24686         slightly.
24687         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
24688
24689 2005-09-13  Derek Price  <derek@ximbiot.com>
24690
24691         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
24692         failure.
24693         Reported by Jim Meyering  <jim@meyering.net>.
24694
24695 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
24696
24697         * lib/base64.c: Typo.
24698         (base64_encode): Put b64str in initialized data section.
24699
24700 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
24701
24702         Merge glibc and coreutils changes into gnulib, plus a few
24703         extra fixes.
24704         * lib/md5.c: Use #error rather than a string.
24705         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
24706         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
24707         (__attribute__): Define to empty for non recent-GCC.
24708         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
24709         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
24710         Renamed from their non-__ counterparts, with new macros replacing
24711         them if not _LIBC.  Add __THROW attribute.
24712         (rol): Remove.
24713         (struct md5_ctx): Align buffer if using GCC.
24714         * lib/sha1.h (struct sha1_ctx): Likewise.
24715         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
24716         The old name was backwards.
24717         (NOTSWAP): Remove; not used.
24718         (rol): New macro, moved here from md5.h.
24719         (sha1_process_block): Remove a FIXME that doesn't make sense.
24720
24721 2005-09-12  Derek Price  <derek@ximbiot.com>
24722
24723         Return usable errors from canon-host.
24724         * lib/canon-host.h: New file.
24725         * lib/canon-host.c (canon_host): Wrap...
24726         (canon_host_r): ...this new function, which now relies exclusively on
24727         getaddrinfo.
24728         (ch_strerror): New function.
24729         (last_cherror): New global.
24730         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
24731         interface.
24732         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
24733         void *.
24734         (freeaddrinfo): Free ai->ai_canonname when set.
24735
24736 2005-09-12  Derek Price  <derek@ximbiot.com>
24737
24738         Make canon-host require getaddrinfo.
24739         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
24740         AC_LIBSOURCE canon-host.h.  Call...
24741         (gl_PREREQ_CANON_HOST): ...this new function, which requires
24742         gl_GETADDRINFO.
24743         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
24744
24745 2005-09-12  Derek Price  <derek@ximbiot.com>
24746
24747         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
24748         LGPL.
24749         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
24750
24751 2005-09-12  Derek Price  <derek@ximbiot.com>
24752
24753         * lib/gai_strerror.c: Include config.h when available.  Include
24754         getaddrinfo.h before other headers to test interface.
24755         Reported by Larry Jones <lawrence.jones@ugs.com>.
24756
24757 2005-09-12  Derek Price  <derek@ximbiot.com>
24758             Paul Eggert  <eggert@cs.ucla.edu>
24759
24760         * modules/glob (Files): Add glob-libc.h.
24761
24762 2005-09-12  Derek Price  <derek@ximbiot.com>
24763             Paul Eggert  <eggert@cs.ucla.edu>
24764
24765         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
24766         glob_.h, glob-libc.h.
24767         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
24768
24769 2005-09-12  Derek Price  <derek@ximbiot.com>
24770             Paul Eggert  <eggert@cs.ucla.edu>
24771
24772         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
24773         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
24774         protecting things that should be done only in gnulib contexts.
24775         * lib/glob_.h: New file, containing only the glob things needed for
24776         gnulib.
24777         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
24778         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
24779         (glob, globfree, glob_pattern_p): Now defined simply in terms of
24780         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
24781         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
24782         and to respect the namespace rules better.
24783
24784 2005-09-08  Simon Josefsson  <jas@extundo.com>
24785
24786         * modules/socklen: New file.
24787
24788 2005-09-08  Simon Josefsson  <jas@extundo.com>
24789
24790         * m4/socklen.m4: New file.
24791
24792 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
24793
24794         * modules/utimens (Files): Add m4/utimbuf.m4, since
24795         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
24796         Reported by Sergey Poznyakoff.
24797
24798 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
24799
24800         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
24801         definitions, since that's the preferred style in glibc.
24802         Fix a minor spacing issue, and update copyright notice to match
24803         glibc's.
24804
24805 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
24806
24807         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
24808
24809 2005-09-06  Simon Josefsson  <jas@extundo.com>
24810
24811         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
24812         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
24813
24814 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
24815
24816         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
24817         warning.
24818
24819 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
24820
24821         * config/srclist.txt: Add glibc bug 1302.
24822
24823 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
24824
24825         Change bitset word type from unsigned int to unsigned long int,
24826         as this has better performance on typical 64-bit hosts.
24827         Port bitset code to hosts with unusual word sizes.
24828         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
24829         (build_collating_symbol):
24830         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
24831         argument is a bitset.  This is merely a style issue, but it makes
24832         it clearer that an entire array is expected.
24833         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
24834         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
24835         Port to the case where bitset_word is not the same as unsigned int.
24836         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
24837         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
24838         Likewise.
24839         * lib/regexec.c (check_dst_limits_calc_pos_1,
24840         check_subexp_matching_top):
24841         (build_trtable, group_nodes_into_DFAstates):
24842         Likewise.
24843         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
24844         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
24845         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
24846         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
24847         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
24848         * lib/regcomp.c (optimize_subexps, lower_subexp):
24849         Work even if bitset_word has holes in its bitwise representation.
24850         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
24851         * lib/regexec.c (check_dst_limits_calc_pos_1,
24852         check_subexp_matching_top):
24853         Likewise.
24854         * lib/regex_internal.c (re_string_reconstruct):
24855         Don't assume UCHAR_MAX == 255.
24856         * lib/regex_internal.h (bitset_set_all): Likewise.
24857         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
24858         All uses changed.
24859         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
24860         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
24861         All uses changed.
24862         (BITSET_WORD_MAX): New macro.
24863         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
24864         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
24865         (bitset_empty, bitset_copy):
24866         Prefer sizeof (bitset) to multiplying it out ourselves.
24867         (bitset_not_merge): Remove; unused.
24868         (bitset_contain): Return bool, not unsigned int with one bit on.
24869         All callers changed.
24870         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
24871         alignment than re_node_set; do this by defining a new internal
24872         type struct dests_alloc and using it to allocate memory.
24873
24874 2005-09-05  Bruno Haible  <bruno@clisp.org>
24875
24876         * gnulib-tool (func_import): Fix comparison in handling of symbolic
24877         links.
24878
24879 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
24880
24881         * modules/size_max (Makefile.am): Add size_max.h
24882
24883 2005-09-04  Derek Price  <derek@ximbiot.com>
24884
24885         * gnulib-tool (func_import): Fix reversed $symbolic logic.
24886
24887 2005-09-03  Simon Josefsson  <jas@extundo.com>
24888
24889         * gnulib-tool: Fix typo.
24890
24891 2005-09-03  Simon Josefsson  <jas@extundo.com>
24892
24893         * config/srclist.txt: Add glibc bug 1293.
24894
24895 2005-09-03  Derek Price  <derek@ximbiot.com>
24896
24897         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
24898         From Larry Jones <lawrence.jones@ugs.com>.
24899
24900 2005-09-02  Simon Josefsson  <jas@extundo.com>
24901
24902         * modules/socklen: New file.
24903
24904 2005-09-02  Simon Josefsson  <jas@extundo.com>
24905
24906         * modules/havelib: New module.
24907
24908         * modules/gettext, modules/iconv, modules/lock, modules/readline:
24909         Use havelib.
24910
24911 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
24912
24913         Check for arithmetic overflow when calculating sizes, to prevent
24914         some buffer-overflow issues.  These patches are conservative, in the
24915         sense that when I couldn't determine whether an overflow was possible,
24916         I inserted a run-time check.
24917         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
24918         macros.
24919         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
24920         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
24921         (re_xnrealloc, re_x2nrealloc): New inline functions.
24922         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
24923         parse_bracket_exp):
24924         (build_equiv_class, build_charclass): Check for arithmetic overflow
24925         in size expression calculations.
24926         * lib/regex_internal.c (re_string_realloc_buffers):
24927         (build_wcs_upper_buffer, re_node_set_add_intersect):
24928         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
24929         (re_dfa_add_node, register_state): Likewise.
24930         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
24931         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
24932         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
24933         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
24934
24935 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
24936
24937         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
24938         m4/ulonglong.m4.  Problem reported by Martin Lambers.
24939
24940 2005-09-02  Bruno Haible  <bruno@clisp.org>
24941
24942         Support for lib vs. lib64 distinction on biarch platforms.
24943         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
24944         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
24945         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
24946
24947 2005-09-02  Bruno Haible  <bruno@clisp.org>
24948
24949         * gnulib-tool (import): In the other first-use case, provide defaults
24950         as well.
24951
24952 2005-09-02  Bruno Haible  <bruno@clisp.org>
24953
24954         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
24955         patches not yet found in the latest gettext release.
24956
24957 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
24958
24959         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
24960         to avoid a collision with bits/local_lim.h in glibc.
24961         All uses changed.  Problem reported by Dmitry V. Levin in
24962         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
24963
24964         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
24965         bugs in int versus size_t comparisons.
24966         (re_string_context_at): Fix bug where the code assumed that
24967         Idx is signed.
24968
24969         Use bool where appropriate.
24970         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
24971         All callers changed.
24972         (calc_eclosure_iter): Likewise, for ROOT arg.
24973         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
24974         (build_charclass_op): Likewise, for NON_MATCH arg.
24975         * lib/regex_internal.c (re_string_allocate, re_string_construct):
24976         (re_string_construct_common): Likewise, for ICASE arg.
24977         * lib/regexec.c (re_search_2_stub, re_search_stub):
24978         Likewise, for RET_LEN arg.
24979         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
24980         (set_regs): Likewise, for FL_BACKTRACK arg.
24981         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
24982         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
24983         (calc_eclosure_iter, parse_bracket_exp):
24984         Use bool for internal variables that are booleans.
24985         * lib/regexec.c (re_search_internal, check_matching,
24986         proceed_next_node):
24987         (set_regs, build_sifted_states, sift_states_bkref):
24988         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
24989         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
24990         (find_collation_sequence_value):
24991         Likewise.
24992         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
24993         (re_node_set_compare):
24994         Return bool, not int. All callers changed.
24995         * lib/regexec.c (check_halt_node_context, check_dst_limits):
24996         (build_trtable, check_node_accept): Likewise.
24997         * lib/regex_internal.h: Include stdbool.h.
24998
24999         Fix bugs uncovered when converting to bool.
25000         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
25001         failure instead of charging ahead blindly.
25002         * lib/regex_internal.c (register_state): Likewise.
25003         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
25004         for freeing internal storage.
25005         (group_nodes_into_DFA_states): Use unsigned int, not int, for
25006         bitset pieces used as boolean, to avoid undefined behavior
25007         on hosts that do int overflow checking.
25008
25009 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
25010
25011         * config/srclist.txt: Add glibc bugs 1285-1287.
25012
25013 2005-09-01  Jim Meyering  <jim@meyering.net>
25014
25015         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
25016         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
25017         Require gl_STAT_MACROS, too.
25018
25019 2005-09-01  Bruno Haible  <bruno@clisp.org>
25020
25021         * gnulib-tool (import): In the first-use case, provide defaults.
25022
25023 2005-09-01  Bruno Haible  <bruno@clisp.org>
25024
25025         * gnulib-tool (func_import): Remove the .tmp files.
25026
25027 2005-09-01  Bruno Haible  <bruno@clisp.org>
25028
25029         * gnulib-tool (func_import): Fix handling of symbolic links.
25030
25031 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25032
25033         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
25034         old glibc regex code mishandles strings longer than 2**31 bytes.
25035         This patch fixes this when the regex code is used in gnulib
25036         (i.e., outside glibc).
25037
25038         This patch should not affect the use of the regex code inside
25039         glibc.  No doubt this problem also needs to be handled for glibc
25040         as well, but the result will be an incompatible change to the
25041         glibc ABI, and the old ABI will have to be supported too.  That
25042         can be the the subject for another patch.
25043
25044         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
25045         governing whether the rest of this patch is active.  By default,
25046         the macro is disabled and the patch has no effect.
25047         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
25048         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
25049         (struct re_pattern_buffer, re_search, re_search_2, re_match):
25050         (re_match_2, re_set_registers): Use the new types.
25051         * lib/regex_internal.h (Idx, re_hashval_t): New types.
25052         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
25053         New macros.
25054         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
25055         (re_string_context_at, bin_tree_t, re_dfastate_t):
25056         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
25057         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
25058         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
25059         (re_string_char_size_at, re_string_wchar_at):
25060         (re_string_elem_size_at):
25061         Use the new types and macros to port to 64-bit hosts.
25062         Use unsigned types for internal values, so that the code
25063         mostly works even for arrays larger than SSIZE_MAX.
25064         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
25065         (search_duplicated_node, calc_eclosure_iter, fetch_number):
25066         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
25067         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
25068         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
25069         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
25070         (calc_inveclosure, parse_dup_op, build_range_exp):
25071         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
25072         (fetch_number, create_token_tree, mark_opt_subexp):
25073         Likewise.
25074         * lib/regex_internal.c (re_string_construct_common,
25075         create_ci_newstate):
25076         (create_cd_newstate, re_string_allocate, re_string_construct):
25077         (re_string_realloc_buffers, build_wcs_upper_buffer):
25078         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
25079         (re_string_reconstruct, re_string_peek_byte_case):
25080         (re_string_fetch_byte_case, re_string_context_at):
25081         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
25082         (re_node_set_init_copy, re_node_set_add_intersect):
25083         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
25084         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
25085         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
25086         (re_acquire_state, re_acquire_state_context, register_state):
25087         Likewise.
25088         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
25089         search_cur_bkref_entry):
25090         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
25091         (re_search_internal, re_search_2_stub, re_search_stub)
25092         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
25093         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
25094         (update_cur_sifted_state, check_dst_limits):
25095         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
25096         (check_subexp_limits, sift_states_bkref, merge_state_array):
25097         (check_subexp_matching_top, get_subexp, get_subexp_sub):
25098         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
25099         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
25100         (expand_bkref_cache, check_node_accept_bytes):
25101         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
25102         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
25103         (acquire_init_state_context, check_halt_node_context):
25104         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
25105         (sift_states_backward, clean_state_log_if_needed):
25106         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
25107         (find_recover_state, transit_state_sb, transit_state_mb):
25108         (transit_state_bkref, build_trtable, match_ctx_clean):
25109         Likewise.
25110         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
25111         to work around an assumption that REG_MISSING is negative.
25112
25113         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
25114         (seek_collating_symbol_entry) [defined _LIBC]:
25115         (lookup_collation_sequence_value) [defined _LIBC]:
25116         (build_range_exp, build_collating_symbol) [defined _LIBC]:
25117         Use prototypes rather than old-style function definitions.
25118         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
25119         (transit_state_sb) [0]:
25120         (find_collation_sequence_value) [defined _LIBC]: Likewise.
25121
25122         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
25123         rm_eo.
25124
25125         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
25126         (optimize_subexps, lower_subexp):
25127         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
25128         since the signed shift might overflow.  Use 1u<<31 instead.
25129         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
25130         Likewise.
25131         * lib/regexec.c (check_dst_limits_calc_pos_1,
25132         check_subexp_matching_top): Likewise.
25133
25134         * lib/regcomp.c (optimize_subexps, lower_subexp):
25135         Use CHAR_BIT rather than 8, for clarity.
25136         * lib/regexec.c (check_dst_limits_calc_pos_1):
25137         (check_subexp_matching_top): Likewise.
25138         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
25139         have to worry about portability issues when shifting it left.
25140         Remove no-longer-needed test for table_size > 0.
25141         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
25142         in a word, as the resulting behavior is undefined.
25143         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
25144         in one case, a <= should have been an <, and in another case the
25145         whole test was missing.
25146         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
25147         the standard name CHAR_BIT.
25148         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
25149         this is not true on one's complement and signed-magnitude hosts.
25150
25151         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
25152         next_last_offset.
25153         (struct re_dfa_t): Remove unused member states_alloc.
25154         * lib/regcomp.c (init_dfa): Don't initialize unused members.
25155
25156 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25157
25158         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
25159         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
25160         and large-file glibc and in 32-bit large-file Solaris.
25161
25162 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25163
25164         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
25165         lengths fit in regoff_t; this isn't true if regoff_t is the same
25166         width as size_t.
25167         * lib/regex.c (re_search_internal): 5th arg is LAST_START
25168         (= START + RANGE) instead of RANGE.  This avoids overflow
25169         problems when regoff_t is the same width as size_t.
25170         All callers changed.
25171         (re_search_2_stub): Check for overflow when adding the
25172         sizes of the two strings.
25173         (re_search_stub): Check for overflow when adding START
25174         to RANGE; if it occurs, substitute the extreme value.
25175
25176 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25177
25178         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
25179
25180 2005-08-31  Jim Meyering  <jim@meyering.net>
25181
25182         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
25183         a pointer-to-const.
25184         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
25185         (register_state): Likewise.
25186         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
25187         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
25188         (group_nodes_into_DFAstates): Likewise.
25189
25190 2005-08-31  Jim Meyering  <jim@meyering.net>
25191
25192         * check-module: Add a FIXME comment.
25193
25194 2005-08-31  Eric Blake  <ebb9@byu.net>
25195
25196         * modules/unistd-safer (Files): Add unistd--.h.
25197         * modules/stdio-safer (Files): Add stdio--.h.
25198
25199 2005-08-31  Derek Price  <derek@ximbiot.com>
25200
25201         * lib/getdelim.c (getdelim): Return EOF on EOF.
25202         Reported by Larry Jones <lawrence.jones@ugs.com>.
25203
25204 2005-08-31  Bruno Haible  <bruno@clisp.org>
25205
25206         Avoid unnecessary diffs in the generated lib/Makefile.am.
25207         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
25208         the generated files.
25209         (func_import): Don't set cmd.
25210
25211 2005-08-31  Bruno Haible  <bruno@clisp.org>
25212
25213         * lib/strstr.c: Include <stddef.h>, for NULL.
25214         * lib/strcasestr.c: Likewise.
25215         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
25216
25217 2005-08-31  Bruno Haible  <bruno@clisp.org>
25218
25219         * gnulib-tool: New option --macro-prefix.
25220         (func_import): Use macro_prefix.
25221         (import): Handle option --macro-prefix.
25222
25223 2005-08-31  Bruno Haible  <bruno@clisp.org>
25224
25225         * gnulib-tool (import): Rename most ac_* variables to cached_*.
25226         Also use new variables cached_lgpl, cached_libtool.
25227
25228 2005-08-31  Bruno Haible  <bruno@clisp.org>
25229
25230         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
25231         always instantiating them.
25232
25233 2005-08-31  Bruno Haible  <bruno@clisp.org>
25234
25235         * gnulib-tool (func_import): Read the previous cached settings
25236         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
25237         earlier added by gnulib but are now dropped. Warn when a gnulib file
25238         overwrites a non-gnulib file.
25239
25240 2005-08-31  Bruno Haible  <bruno@clisp.org>
25241
25242         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
25243         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
25244         projects that don't keep autogenerated files in CVS. Put into
25245         actioncmd only the specified modules, not the transitive closure.
25246
25247 2005-08-31  Bruno Haible  <bruno@clisp.org>
25248
25249         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
25250         Create directories that shall be filled.
25251         (import): Don't look for gl_* macros in configure.ac. Recurse across
25252         all directories containing a gnulib-cache.m4 files, if meaningful.
25253
25254 2005-08-31  Bruno Haible  <bruno@clisp.org>
25255
25256         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
25257         (import): Set seen_libtool when we see gl_LIBTOOL.
25258
25259 2005-08-31  Bruno Haible  <bruno@clisp.org>
25260
25261         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
25262         declaration macro definitions from generated gnulib.m4.
25263
25264 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
25265
25266         * lib/iconvme.h: Add prototype for iconv_alloc.
25267
25268 2005-08-29  Simon Josefsson  <jas@extundo.com>
25269
25270         * lib/iconvme.c: Fix errno.
25271
25272 2005-08-29  Bruno Haible  <bruno@clisp.org>
25273
25274         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
25275         that it works when the directory contains spaces.
25276
25277 2005-08-29  Bruno Haible  <bruno@clisp.org>
25278
25279         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
25280
25281 2005-08-29  Bruno Haible  <bruno@clisp.org>
25282
25283         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
25284         Emit more advice.
25285
25286 2005-08-29  Bruno Haible  <bruno@clisp.org>
25287         and Stepan Kasal  <kasal@ucw.cz>
25288
25289         * check-module: If more parameters are given, check each of them
25290         separately; add more exceptions, as noted by Jim Meyering.
25291         (check_module): New procedure.
25292         (%exempt_header): Now contains all exceptions.
25293
25294 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
25295
25296         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
25297
25298 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
25299
25300         * lib/iconvme.c: Split iconv_string into iconv_alloc.
25301
25302 2005-08-28  Bruno Haible  <bruno@clisp.org>
25303
25304         * m4/gnulib-tool.m4: New file.
25305
25306 2005-08-27  Jim Meyering  <jim@meyering.net>
25307
25308         * modules/unistd-safer (Files): Add pipe-safer.c.
25309         * modules/fcntl-safer (Files): Add creat-safer.c.
25310
25311 2005-08-27  Jim Meyering  <jim@meyering.net>
25312
25313         * m4/stdlib-safer.m4: New file.  From coreutils.
25314         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
25315         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
25316         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
25317         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
25318         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
25319
25320 2005-08-27  Jim Meyering  <jim@meyering.net>
25321
25322         * lib/fopen-safer.c: Merge minor changes from coreutils.
25323         * lib/dup-safer.c: Likewise.
25324         * lib/fd-safer.c: Likewise.
25325
25326         Merge from coreutils.
25327         * lib/stdio--.h: New file.
25328         * lib/stdlib--.h: New file.
25329         * lib/mkstemp-safer.c: New file.
25330
25331         GNU tar needs these.
25332         * lib/pipe-safer.c: New file.
25333         * lib/creat-safer.c: New file.
25334         * lib/fcntl--.h (creat): Define to creat_safer.
25335         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
25336         * lib/unistd--.h (pipe): Define to pipe_safer.
25337         * lib/unistd-safer.h: Declare pipe_safer.
25338
25339 2005-08-26  Simon Josefsson  <jas@extundo.com>
25340
25341         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
25342         Haible <bruno@clisp.org>.
25343
25344 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
25345
25346         * lib/regex_internal.h: Remove all references to
25347         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
25348         or better.
25349         (bitset_not, bitset_merge, bitset_not_merge):
25350         (bitset_mask, re_string_allocate, re_string_construct):
25351         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
25352         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
25353         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
25354         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
25355         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
25356         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
25357         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
25358         (re_acquire_state_context):
25359         Remove unnecessary forward decls.
25360         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
25361         Put __attribute at function definition,
25362         now that the function decl has been removed.
25363         * lib/regex_internal.c (re_string_peek_byte_case):
25364         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
25365         Likewise.
25366
25367 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
25368
25369         * m4/regex.m4: Add AC_PREREQ(2.50).
25370         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
25371
25372 2005-08-25  Simon Josefsson  <jas@extundo.com>
25373
25374         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
25375         __fsetlocking.
25376
25377 2005-08-25  Simon Josefsson  <jas@extundo.com>
25378
25379         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
25380         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
25381         GLIBC specific code.
25382
25383 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
25384
25385         Make regex safe for g++.  This fixes one real bug (an "err"
25386         that should have been "*err").  g++ problem reported by
25387         Sam Steingold.
25388         * lib/regex_internal.h (re_calloc): New macro, consistent with
25389         re_malloc etc.  All callers of calloc changed to use re_calloc.
25390         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
25391         not int.  All callers changed.
25392         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
25393         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
25394         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
25395         (find_recover_state): Change "err" to "*err"; this fixes what
25396         appears to be a real bug.
25397         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
25398         versus int.
25399
25400 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
25401
25402         * modules/regex (Depends-on): Add malloc, since the code
25403         assumes that !malloc(0) means failure.
25404
25405 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
25406
25407         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
25408
25409         alloca modernization/simplification for regex.
25410         * lib/regex.c: Remove portability cruft for alloca.  This no longer
25411         needs to be at the start of the file, and can be moved into
25412         regex_internal.h and simplified.
25413         * lib/regex_internal.h: Include <alloca.h>.
25414         (__libc_use_alloca) [!defined _LIBC]: New macro.
25415         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
25416         now works outside glibc.
25417
25418 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
25419
25420         * config/srclist.txt: Add glibc bugs 1241, 1245.
25421
25422 2005-08-25  Jim Meyering  <jim@meyering.net>
25423
25424         * lib/open-safer.c: Include <config.h>.
25425         Otherwise, we'd lose LARGEFILE support in any file using
25426         e.g. "fcntl--.h"
25427
25428 2005-08-25  Bruno Haible  <bruno@clisp.org>
25429
25430         * m4/minmax.m4: Require autoconf 2.52.
25431         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
25432         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
25433         alternatives of translit over the alphabet.
25434         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
25435
25436 2005-08-24  Simon Josefsson  <jas@extundo.com>
25437
25438         * tests/test-getpass.c: New file.
25439
25440 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
25441
25442         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
25443         for GNU regex features.
25444
25445 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
25446
25447         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
25448         * lib/regex.h (regerror): Likewise.
25449
25450         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
25451         requires this.  (The code never needed it.)
25452
25453         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
25454         All uses of recently-renamed identifiers changed to use the new,
25455         POSIX-compliant names.  The code will build and run just fine
25456         without these changes, but it's better to eat our own dog food
25457         and use the standard-conforming names.
25458
25459         * lib/regex.h: Fix a multitude of POSIX name space violations.
25460         These changes have an effect only for programs that define
25461         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
25462         do not change anything for programs compiled in the normal way.
25463         Also, there is no effect on the ABI.
25464
25465         (_REGEX_SOURCE): New macro.
25466         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
25467         defined and _GNU_SOURCE is not; this fixes a name space violation.
25468
25469         Rename the following macros to obey POSIX requirements.
25470         The old names are still visible as macros if _REGEX_SOURCE is defined.
25471         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
25472         RE_BACKSLASH_ESCAPE_IN_LISTS.
25473         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
25474         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
25475         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
25476         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
25477         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
25478         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
25479         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
25480         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
25481         (REG_INTERVALS): renamed from RE_INTERVALS.
25482         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
25483         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
25484         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
25485         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
25486         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
25487         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
25488         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
25489         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
25490         RE_UNMATCHED_RIGHT_PAREN_ORD.
25491         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
25492         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
25493         (REG_DEBUG): renamed from RE_DEBUG.
25494         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
25495         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
25496         unusual, since we can't clash with the POSIX REG_ICASE.
25497         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
25498         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
25499         (REG_NO_SUB): renamed from RE_NO_SUB.
25500         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
25501         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
25502         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
25503         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
25504         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
25505         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
25506         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
25507         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
25508         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
25509         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
25510         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
25511         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
25512         RE_SYNTAX_POSIX_MINIMAL_BASIC.
25513         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
25514         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
25515         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
25516         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
25517         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
25518         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
25519         (REG_FIXED): Renamed from REGS_FIXED.
25520         (REG_NREGS): Renamed from RE_NREGS.
25521
25522         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
25523         of other REG_* macros, since POSIX says the user is allowed to
25524         #undef these macros selectively.
25525
25526         (reg_errcode_t): Update comment stating what other tables need
25527         to be consistent.
25528
25529         Rename the following enum values to obey POSIX requirements.
25530         The old names are still visible as macros.
25531         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
25532         is not defined, since GNU is supposed to be a superset of POSIX as
25533         much as possible, and since we want reg_errcode_t to be a signed
25534         type for implementation consistency.
25535         (_REG_NOERROR): Renamed from REG_NOERROR.
25536         (_REG_NOMATCH): Renamed from REG_NOMATCH.
25537         (_REG_BADPAT): Renamed from REG_BADPAT.
25538         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
25539         (_REG_ECTYPE): Renamed from REG_ECTYPE.
25540         (_REG_EESCAPE): Renamed from REG_EESCAPE.
25541         (_REG_ESUBREG): Renamed from REG_ESUBREG.
25542         (_REG_EBRACK): Renamed from REG_EBRACK.
25543         (_REG_EPAREN): Renamed from REG_EPAREN.
25544         (_REG_EBRACE): Renamed from REG_EBRACE.
25545         (_REG_BADBR): Renamed from REG_BADBR.
25546         (_REG_ERANGE): Renamed from REG_ERANGE.
25547         (_REG_ESPACE): Renamed from REG_ESPACE.
25548         (_REG_BADRPT): Renamed from REG_BADRPT.
25549         (_REG_EEND): Renamed from REG_EEND.
25550         (_REG_ESIZE): Renamed from REG_ESIZE.
25551         (_REG_ERPAREN): Renamed from REG_ERPAREN.
25552         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
25553         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
25554         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
25555         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
25556
25557         (_REG_RE_NAME, _REG_RM_NAME): New macros.
25558         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
25559         changed.  But support the old name if the new one is not defined
25560         and if _REGEX_SOURCE.
25561
25562         Change the following member names in struct re_pattern_buffer.
25563         The old names are still supported if !_REGEX_SOURCE.
25564         The new names are always supported, regardless of _REGEX_SOURCE.
25565         (re_buffer): Renamed from buffer.
25566         (re_allocated): Renamed from allocated.
25567         (re_used): Renamed from used.
25568         (re_syntax): Renamed from syntax.
25569         (re_fastmap): Renamed from fastmap.
25570         (re_translate): Renamed from translate.
25571         (re_can_be_null): Renamed from can_be_null.
25572         (re_regs_allocated): Renamed from regs_allocated.
25573         (re_fastmap_accurate): Renamed from fastmap_accurate.
25574         (re_no_sub): Renamed from no_sub.
25575         (re_not_bol): Renamed from not_bol.
25576         (re_not_eol): Renamed from not_eol.
25577         (re_newline_anchor): Renamed from newline_anchor.
25578
25579         Change the following member names in struct re_registers.
25580         The old names are still supported if !_REGEX_SOURCE.
25581         The new names are always supported, regardless of _REGEX_SOURCE.
25582         (rm_num_regs): Renamed from num_regs.
25583         (rm_start): Renamed from start.
25584         (rm_end): Renamed from end.
25585
25586         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
25587         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
25588         Prepend __ to parameter names.
25589
25590         Undo yesterday's changes.
25591
25592 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
25593
25594         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
25595         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
25596         lib/regex.c.
25597
25598 2005-08-24  Jim Meyering  <jim@meyering.net>
25599
25600         Sync from coreutils.
25601         * m4/fcntl-safer.m4: New file.
25602
25603         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
25604         and object files for this module.
25605
25606 2005-08-24  Jim Meyering  <jim@meyering.net>
25607
25608         Sync from coreutils.
25609         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
25610
25611 2005-08-24  Jim Meyering  <jim@meyering.net>
25612
25613         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
25614         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
25615
25616 2005-08-24  Jim Meyering  <jim@meyering.net>
25617
25618         * modules/fcntl-safer: New module.
25619         * modules/fts (Depends-on): Add fcntl-safer.
25620         * MODULES.html.sh (File descriptor based Input/Output):
25621         Add fcntl-safer.
25622
25623 2005-08-24  Bruno Haible  <bruno@clisp.org>
25624
25625         Support for unit test modules.
25626         * modules/README: Mention tests modules.
25627         * modules/TEMPLATE-TESTS: New file.
25628         * gnulib-tool: New options --extract-tests-module, --with-tests and
25629         --tests-base (unused for the moment).
25630         (testsbase, inctests): New variables.
25631         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
25632         (func_verify_module): Exclude TEMPLATE-TESTS.
25633         (func_verify_nontests_module, func_verify_tests_module): New functions.
25634         (func_get_dependencies): Add implicit dependency for tests modules.
25635         (func_get_tests_module): New function.
25636         (func_modules_transitive_closure): When --with-tests was specified,
25637         include the unit tests as well, unless explicitly avoided.
25638         (func_emit_lib_Makefile_am): Ignore the tests modules here.
25639         (func_emit_tests_Makefile_am): New function.
25640         (func_create_testdir): When --with-tests was specified, emit a
25641         tests/ directory.
25642         * MODULES.html.sh (Future developments): Update.
25643
25644 2005-08-24  Bruno Haible  <bruno@clisp.org>
25645
25646         * modules/tls-tests: New file.
25647         * tests/test-tls.c: New file, from GNU gettext.
25648
25649 2005-08-24  Bruno Haible  <bruno@clisp.org>
25650
25651         * modules/lock-tests: New file.
25652         * tests/test-lock.c: New file, from GNU gettext.
25653
25654 2005-08-24  Bruno Haible  <bruno@clisp.org>
25655
25656         * lib/lock.h: Add multiple inclusion guard.
25657         * lib/tls.h: Add multiple inclusion guard.
25658
25659 2005-08-24  Bruno Haible  <bruno@clisp.org>
25660
25661         * gnulib-tool: Add support for the --aux-dir option to
25662         --create-testdir, --create-megatestdir, --test, --megatest.
25663         (func_create_testdir, func_create_megatestdir): Optionally emit a
25664         AC_CONFIG_AUX_DIR directive.
25665         (create-testdir, create-megatestdir, test, megatest): Provide a
25666         default value for $auxdir.
25667
25668 2005-08-24  Bruno Haible  <bruno@clisp.org>
25669
25670         * gnulib-tool (import): Use compound statement instead of subshell
25671         where possible.
25672
25673 2005-08-24  Bruno Haible  <bruno@clisp.org>
25674
25675         * gnulib-tool (import): Change --aux-dir default to "build-aux".
25676
25677 2005-08-24  Bruno Haible  <bruno@clisp.org>
25678
25679         * gnulib-tool (func_version): Update.
25680
25681 2005-08-24  Bruno Haible  <bruno@clisp.org>
25682
25683         * gnulib-tool (func_import, func_create_testdir,
25684         func_create_megatestdir): Quote all autoconf macro arguments.
25685
25686 2005-08-24  Bruno Haible  <bruno@clisp.org>
25687
25688         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
25689         option --force, because --force causes the aclocal.m4 of each
25690         subdirectory to be newer than the corresponding config.h.in.
25691
25692 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
25693
25694         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
25695         All contents moved to gl_REGEX.
25696         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
25697         assume that it does.
25698
25699 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
25700
25701         * lib/regex.h (REG_NOSYS)
25702         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
25703         Define, since POSIX requires it as of 2001.
25704         (_REG_ENOSYS)
25705         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
25706         New private symbol, used to keep the enum signed in all cases.
25707         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
25708         Youngman in
25709         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
25710
25711         * lib/regex_internal.c (re_string_skip_chars, register_state):
25712         (calc_state_hash):
25713         Remove forward decls; no longer needed now that we use prototypes.
25714         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
25715         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
25716         (clean_state_log_if_needed): Likewise.
25717
25718 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
25719
25720         * config/srclist.txt: Add glibc bugs 1231-1233.
25721
25722 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
25723
25724         Fix problems reported by Sam Steingold in
25725         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
25726         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
25727         assumed that reg_errcode_t is a signed type, which is not
25728         necessarily true if _XOPEN_SOURCE is not defined.
25729         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
25730         since some compilers warn about it otherwise.
25731
25732 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
25733
25734         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
25735         (init_word_char, create_initial_state, duplicate_node_closure):
25736         (fetch_token, peek_token_bracket, build_range_exp):
25737         (build_collating_symbol): Remove forward decls; no longer needed
25738         now that we use prototypes.
25739
25740         * lib/regcomp.c:
25741         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
25742         (re_compile_fastmap_iter, regcomp, regerror, regfree):
25743         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
25744         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
25745         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
25746         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
25747         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
25748         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
25749         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
25750         (build_range_exp, build_collating_symbol, parse_bracket_exp):
25751         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
25752         (build_charclass, build_charclass_op, fetch_number, create_tree):
25753         (create_token_tree, mark_opt_subexp, duplicate_tree):
25754         Use prototypes rather than old-style definitions.
25755
25756         * lib/regex_internal.c:
25757         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
25758         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
25759         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
25760         (re_string_reconstruct, re_string_peek_byte_case):
25761         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
25762         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
25763         (re_node_set_init_copy, re_node_set_add_intersect):
25764         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
25765         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
25766         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
25767         (re_acquire_state, re_acquire_state_context, register_state):
25768         (create_ci_newstate, create_cd_newstate, free_state):
25769         Likewise.
25770         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
25771         re_search_2):
25772         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
25773         (re_search_internal, prune_impossible_nodes):
25774         (acquire_init_state_context, check_matching, static):
25775         (check_halt_node_context, check_halt_state_context, proceed_next_node):
25776         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
25777         (update_regs, sift_states_backward, build_sifted_states):
25778         (clean_state_log_if_needed, merge_state_array):
25779         (update_cur_sifted_state, add_epsilon_src_nodes):
25780         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
25781         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
25782         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
25783         (find_recover_state, check_subexp_matching_top, transit_state_mb):
25784         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
25785         (check_arrival, check_arrival_add_next_nodes):
25786         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
25787         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
25788         (check_node_accept_bytes, check_node_accept, extend_buffers):
25789         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
25790         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
25791         (sift_ctx_init):
25792         Likewise.
25793
25794         * lib/regex_internal.h:
25795         (re_string_allocate, re_string_construct, re_string_reconstruct):
25796         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
25797         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
25798         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
25799         (re_string_context_at, re_string_peek_byte_case):
25800         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
25801         is defined, since we now use prototypes always.
25802
25803         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
25804         C89 or better.  All uses removed.
25805
25806 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
25807
25808         * config/srclist.txt: Add glibc bugs 1220-1227.
25809
25810 2005-08-20  Jim Meyering  <jim@meyering.net>
25811
25812         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
25813         of unused local, dfa.
25814
25815 2005-08-20  Bruno Haible  <bruno@clisp.org>
25816
25817         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
25818
25819 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
25820
25821         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
25822         (re_node_set_insert_last, re_dfa_add_node):
25823         Rename local variables to avoid GCC shadowing warnings.
25824
25825 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
25826
25827         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
25828         [defined lint]: Suppress bogus uninitialized-variable warnings.
25829
25830         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
25831         and let the caller return REG_ESPACE if out of space.  This
25832         removes an uninitialied-variable warning with GCC 4.0.1, and also
25833         avoids taking the address of a local variable.  All callers
25834         changed.
25835
25836 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
25837
25838         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
25839         $LIBCSRC/posix/regexec.c.
25840         Add glibc bug 1217 for regcomp.c.
25841
25842 2005-08-19  Jim Meyering  <jim@meyering.net>
25843
25844         * lib/regexec.c (proceed_next_node): Redo local variables to
25845         avoid GCC shadowing warnings.
25846
25847 2005-08-18  Bruno Haible  <bruno@clisp.org>
25848
25849         * lib/strstr.c (strstr): Fix return value in multibyte case.
25850         * lib/strcasestr.c (strcasestr): Likewise.
25851
25852 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
25853
25854         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
25855
25856 2005-08-17  Jim Meyering  <jim@meyering.net>
25857
25858         Make the %s format (seconds since the epoch) work for a negative
25859         number and when used with a zero-padded field width, e.g. %015s.
25860
25861         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
25862         label so that it precedes the code to set `digits'.  Otherwise,
25863         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
25864         print `00-22'.  Now, it prints `-0022', as it should.
25865
25866 2005-08-17  Bruno Haible  <bruno@clisp.org>
25867
25868         * modules/strstr (Files): Add m4/mbrtowc.m4.
25869         (Depends-on): Add mbuiter.
25870
25871 2005-08-17  Bruno Haible  <bruno@clisp.org>
25872
25873         * modules/strcasestr: New file.
25874         * MODULES.html.sh (String handling, based on ANSI C 89): Add
25875         strcasestr.
25876
25877 2005-08-17  Bruno Haible  <bruno@clisp.org>
25878
25879         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
25880
25881 2005-08-17  Bruno Haible  <bruno@clisp.org>
25882
25883         * modules/mbuiter: New file.
25884         * MODULES.html.sh (Extended multibyte and wide character utilities):
25885         Add mbuiter.
25886
25887 2005-08-17  Bruno Haible  <bruno@clisp.org>
25888
25889         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
25890         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
25891
25892 2005-08-17  Bruno Haible  <bruno@clisp.org>
25893
25894         * m4/strcasestr.m4: New file.
25895
25896 2005-08-17  Bruno Haible  <bruno@clisp.org>
25897
25898         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
25899         * lib/strstr.c: Completely rewritten, with multibyte locale support.
25900
25901 2005-08-17  Bruno Haible  <bruno@clisp.org>
25902
25903         * lib/strcasestr.h: New file.
25904         * lib/strcasestr.c: New file.
25905
25906 2005-08-17  Bruno Haible  <bruno@clisp.org>
25907
25908         * lib/strcasecmp.c: Use mbuiter.h.
25909
25910 2005-08-17  Bruno Haible  <bruno@clisp.org>
25911
25912         * lib/mbuiter.h: New file.
25913
25914 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
25915
25916         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
25917         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
25918         and gl_GETOPT are both invoked via different paths (as happens
25919         with GNU tar CVS because it uses both argp and getopt), the former
25920         wins.
25921
25922 2005-08-16  Bruno Haible  <bruno@clisp.org>
25923
25924         * modules/tls: New file.
25925         * MODULES.html.sh (Multithreading): Add tls.
25926
25927 2005-08-16  Bruno Haible  <bruno@clisp.org>
25928
25929         * modules/strnlen1: New file.
25930         * MODULES.html.sh (String handling): Add strnlen1.
25931
25932 2005-08-16  Bruno Haible  <bruno@clisp.org>
25933
25934         * modules/strcase (Files): Add m4/mbrtowc.m4.
25935         (Depends-on): Add strnlen1, mbchar.
25936
25937 2005-08-16  Bruno Haible  <bruno@clisp.org>
25938
25939         * modules/mbiter: New file.
25940         * MODULES.html.sh (Extended multibyte and wide character utilities):
25941         Add mbiter.
25942
25943 2005-08-16  Bruno Haible  <bruno@clisp.org>
25944
25945         * modules/mbfile: New file.
25946         * MODULES.html.sh (Extended multibyte and wide character utilities):
25947         Add mbfile.
25948
25949 2005-08-16  Bruno Haible  <bruno@clisp.org>
25950
25951         * modules/mbchar: New file.
25952         * MODULES.html.sh (Extended multibyte and wide character utilities):
25953         New section.
25954
25955 2005-08-16  Bruno Haible  <bruno@clisp.org>
25956
25957         * m4/tls.m4: New file, from GNU gettext.
25958
25959 2005-08-16  Bruno Haible  <bruno@clisp.org>
25960
25961         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
25962         always.
25963         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
25964
25965 2005-08-16  Bruno Haible  <bruno@clisp.org>
25966
25967         * m4/mbiter.m4: New file.
25968
25969 2005-08-16  Bruno Haible  <bruno@clisp.org>
25970
25971         * m4/mbfile.m4: New file.
25972
25973 2005-08-16  Bruno Haible  <bruno@clisp.org>
25974
25975         * m4/mbchar.m4: New file.
25976
25977 2005-08-16  Bruno Haible  <bruno@clisp.org>
25978
25979         * lib/tls.h: New file, from GNU gettext.
25980         * lib/tls.c: New file, from GNU gettext.
25981
25982 2005-08-16  Bruno Haible  <bruno@clisp.org>
25983
25984         * lib/strnlen1.h: New file.
25985         * lib/strnlen1.c: New file.
25986
25987 2005-08-16  Bruno Haible  <bruno@clisp.org>
25988
25989         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
25990         (mbi_init): Update.
25991         (mbi_avail, mbi_advance): Let the iteration end before the terminating
25992         NUL byte, not after it.
25993
25994 2005-08-16  Bruno Haible  <bruno@clisp.org>
25995
25996         * lib/strcase.h (strcasecmp): Add note in comments.
25997         * lib/strncasecmp.c: Use code from strcasecmp.c.
25998         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
25999         (strcasecmp): Work correctly in multibyte locales.
26000
26001 2005-08-16  Bruno Haible  <bruno@clisp.org>
26002
26003         * lib/mbiter.h: New file.
26004
26005 2005-08-16  Bruno Haible  <bruno@clisp.org>
26006
26007         * lib/mbfile.h: New file.
26008
26009 2005-08-16  Bruno Haible  <bruno@clisp.org>
26010
26011         * lib/mbchar.h: New file.
26012         * lib/mbchar.c: New file.
26013
26014 2005-08-16  Bruno Haible  <bruno@clisp.org>
26015
26016         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
26017         the valid ones. Makes the comparison operations transitive:
26018         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
26019         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
26020
26021 2005-08-15  Simon Josefsson  <jas@extundo.com>
26022
26023         * modules/ssize_t (License): Change to 'unlimited'.
26024
26025         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
26026
26027 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
26028
26029         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
26030         Add comments for each pending glibc patch.
26031
26032 2005-08-15  Bruno Haible  <bruno@clisp.org>
26033
26034         * lib/regex.h (__restrict_arr): Don't define to __restrict if
26035         __cplusplus is defined.
26036
26037 2005-08-14  Jim Meyering  <jim@meyering.net>
26038
26039         Sync from coreutils.
26040
26041         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
26042         Use the hash-table-based cycle-detection code not just when
26043         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
26044         Reported by James Youngman in
26045         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
26046         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
26047         FTS_TIGHT_CYCLE_CHECK.
26048         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
26049         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
26050         once again.
26051         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
26052         * lib/fts.c (fd_safer): Remove decl.
26053         Include fcntl--.h rather than unistd-safer.h
26054         (fts_safe_changedir): Don't call fd_safer; no longer needed
26055         now that we include fcntl--.h.
26056
26057 2005-08-12  Simon Josefsson  <jas@extundo.com>
26058
26059         * modules/getndelim2: Use ssize_t module.
26060         * modules/getnline: Likewise.
26061         * modules/safe-read: Likewise.
26062         * modules/xreadlink: Likewise.
26063
26064         * modules/ssize_t: New file.
26065
26066 2005-08-12  Simon Josefsson  <jas@extundo.com>
26067
26068         * m4/readline.m4: Look for termcap, curses or ncurses if required.
26069
26070 2005-08-12  Simon Josefsson  <jas@extundo.com>
26071
26072         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26073         ssize_t.
26074
26075 2005-08-12  Simon Josefsson  <jas@extundo.com>
26076
26077         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
26078         readline, getdelim and check_version.
26079         (Support for systems lacking ISO C 99: Sizes of integer types):
26080         Add size_max.
26081
26082 2005-08-12  Bruno Haible  <bruno@clisp.org>
26083
26084         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
26085
26086 2005-08-11  Simon Josefsson  <jas@extundo.com>
26087
26088         * modules/readline: New file.
26089
26090         * modules/strnlen (Files): Add strnlen.h.
26091
26092 2005-08-11  Simon Josefsson  <jas@extundo.com>
26093
26094         * m4/readline.m4: New file.
26095
26096 2005-08-11  Simon Josefsson  <jas@extundo.com>
26097
26098         * lib/readline.h, readline.c: New file.
26099
26100 2005-08-11  Simon Josefsson  <jas@extundo.com>
26101
26102         * doc/gnulib.texi (Initial import, Finishing touches): Mention
26103         gl_AVOID.
26104
26105 2005-08-11  Bruno Haible  <bruno@clisp.org>
26106
26107         * lib/strnlen.h (strnlen): Change parameter name to match comment.
26108
26109 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
26110
26111         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
26112
26113 2005-08-10  Simon Josefsson  <jas@extundo.com>
26114
26115         * tests/test-iconvme.c: New file.
26116
26117 2005-08-10  Simon Josefsson  <jas@extundo.com>
26118
26119         * m4/strnlen.m4: New file.
26120
26121         * m4/strndup.m4: Don't check for strnlen declaration, done in
26122         strnlen.m4.
26123
26124 2005-08-10  Simon Josefsson  <jas@extundo.com>
26125
26126         * lib/strndup.c: Use strnlen.h.
26127
26128         * lib/strnlen.h: New file.
26129
26130 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
26131
26132         * README: Typos.
26133
26134 2005-08-02  Simon Josefsson  <jas@extundo.com>
26135
26136         * modules/readline: New file.
26137
26138 2005-08-02  Simon Josefsson  <jas@extundo.com>
26139
26140         * modules/getdelim: New file.
26141
26142         * modules/getline: Rewrite, don't use getndelim2.
26143
26144 2005-08-02  Simon Josefsson  <jas@extundo.com>
26145
26146         * m4/getline.m4: Separate out getdelim stuff into separate module.
26147
26148         * m4/getdelim.m4: New file.
26149
26150 2005-08-02  Simon Josefsson  <jas@extundo.com>
26151
26152         * lib/getline.h, getline.c: Rewrite.
26153
26154         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
26155
26156 2005-07-31  Bruno Haible  <bruno@clisp.org>
26157
26158         * lib/lock.h (gl_lock_initializer): New macro.
26159         (gl_lock_define_initialized): Use it.
26160         (gl_rwlock_initializer): New macro.
26161         (gl_rwlock_define_initialized): Use it.
26162         (gl_recursive_lock_initializer): New macro.
26163         (gl_recursive_lock_define_initialized): Use it.
26164
26165 2005-07-30  Karl Berry  <karl@gnu.org>
26166
26167         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
26168         Report from Ben Pfaff, regarding getopt.
26169
26170 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
26171
26172         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
26173         normal way.
26174         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
26175         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
26176         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
26177         (gl_GETOPT): Use the new macros.  Most of the implementation
26178         is moved to the new macros.  This is for programs like Emacs
26179         that don't want all the functionality of gl_GETOPT.
26180
26181 2005-07-26  Bruno Haible  <bruno@clisp.org>
26182
26183         * m4/lock.m4: Update from GNU gettext.
26184
26185 2005-07-26  Bruno Haible  <bruno@clisp.org>
26186
26187         * lib/lock.h: Update from GNU gettext.
26188         * lib/lock.c: Update from GNU gettext.
26189
26190 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
26191
26192         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
26193         obsolescent AC_TRY_RUN.  Include the default includes files, for
26194         'exit'.
26195
26196 2005-07-24  Bruno Haible  <bruno@clisp.org>
26197
26198         * modules/visibility: New file.
26199         * MODULES.html.sh (Misc): Add visibility.
26200
26201 2005-07-24  Bruno Haible  <bruno@clisp.org>
26202
26203         * m4/visibility.m4: New file.
26204
26205 2005-07-24  Bruno Haible  <bruno@clisp.org>
26206
26207         * doc/visibility.texi: New file.
26208
26209 2005-07-22  Bruno Haible  <bruno@clisp.org>
26210
26211         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
26212         $(ALLOCA_H), redundant through BUILT_SOURCES.
26213         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
26214         redundant through BUILT_SOURCES.
26215         * modules/byteswap (Makefile.am): Remove explicit dependency on
26216         $(BYTESWAP_H), redundant through BUILT_SOURCES.
26217         * modules/fnmatch (Makefile.am): Remove explicit dependency on
26218         $(FNMATCH_H), redundant through BUILT_SOURCES.
26219         * modules/getopt (Makefile.am): Remove explicit dependency on
26220         $(GETOPT_H), redundant through BUILT_SOURCES.
26221         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
26222         redundant through BUILT_SOURCES.
26223         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
26224         redundant through BUILT_SOURCES.
26225         * modules/stdbool (Makefile.am): Remove explicit dependency on
26226         $(STDBOOL_H), redundant through BUILT_SOURCES.
26227         * modules/stdint (Makefile.am): Remove explicit dependency on
26228         $(STDINT_H), redundant through BUILT_SOURCES.
26229         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
26230         Remove explicit dependency on $(SYSEXITS_H).
26231         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
26232
26233 2005-07-18  Simon Josefsson  <jas@extundo.com>
26234
26235         * lib/check-version.c (check_version): Accept identical versions too.
26236
26237 2005-07-18  Bruno Haible  <bruno@clisp.org>
26238
26239         * modules/lock: New file.
26240         * MODULES.html.sh (Multithreading): New section.
26241
26242 2005-07-18  Bruno Haible  <bruno@clisp.org>
26243
26244         * m4/lock.m4: New file, from GNU gettext.
26245
26246 2005-07-18  Bruno Haible  <bruno@clisp.org>
26247
26248         * lib/lock.h: New file, from GNU gettext.
26249         * lib/lock.c: New file, from GNU gettext.
26250
26251 2005-07-18  Bruno Haible  <bruno@clisp.org>
26252
26253         * lib/lock.h (gl_once_t): New type.
26254         (gl_once_define, gl_once): New macros.
26255         * lib/lock.c (fresh_once): New variable.
26256         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
26257         functions.
26258
26259 2005-07-16  Simon Josefsson  <jas@extundo.com>
26260
26261         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
26262         workaround, suggested by Bruno.
26263
26264 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
26265
26266         * modules/xalloc (Depends-on): Add xalloc-die.
26267         * modules/xvasprintf (Depends-on): Add xalloc-die.
26268
26269 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
26270
26271         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
26272         with a minor change.
26273
26274 2005-07-15  Bruno Haible  <bruno@clisp.org>
26275
26276         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
26277         When using lib/poll.c, define poll as rpl_poll.
26278
26279 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
26280
26281         * modules/argp (Depends-on): Remove unlocked-io.
26282
26283 2005-07-14  Derek Price  <derek@ximbiot.com>
26284
26285         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
26286         for glob symlink bug.
26287
26288 2005-07-14  Bruno Haible  <bruno@clisp.org>
26289
26290         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
26291         Instead, test for *_unlocked function declarations directly.
26292
26293 2005-07-11  Simon Josefsson  <jas@extundo.com>
26294
26295         * modules/size_max: New file.
26296
26297         * modules/xsize: Depend on size_max module for size_max.m4.
26298
26299 2005-07-11  Simon Josefsson  <jas@extundo.com>
26300
26301         * lib/size_max.h: New file.
26302
26303 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
26304
26305         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
26306         copyright symbol and the year.
26307         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
26308         (version_etc_va): Use parameterized copyright notice.
26309         Reword to conform to the current GNU coding standards.
26310
26311 2005-07-11  Karl Berry  <karl@gnu.org>
26312
26313         * doc/gnulib.texi (Quoting): new node.
26314         (Initial import): more info, from Patrice.
26315
26316 2005-07-11  Bruno Haible  <bruno@clisp.org>
26317
26318         * gnulib-tool (func_usage): Document option --avoid.
26319         (Command line options): Handle --avoid.
26320         (func_acceptable): New function.
26321         (func_modules_transitive_closure): Use it.
26322
26323 2005-07-11  Bruno Haible  <bruno@clisp.org>
26324
26325         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
26326         Reported by Jim Meyering.
26327
26328 2005-07-10  Bruno Haible  <bruno@clisp.org>
26329
26330         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
26331         Needed when size_t is smaller than 'unsigned int'.
26332         Reported by Paul Eggert.
26333
26334 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
26335
26336         * modules/argp (Depends-on): Add unlocked-io
26337
26338 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
26339
26340         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
26341         block of defines.
26342
26343 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
26344
26345         * config/srclist.txt: Comment out regcomp.c, since we have a porting
26346         fix now.
26347
26348 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
26349         and Paul Eggert  <eggert@cs.ucla.edu>
26350
26351         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
26352         in wint_t, not wchar_t.  Remove now-unnecessary cast.
26353
26354 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
26355
26356         * modules/regex (Files): Add lib/regex_internal.c,
26357         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
26358         (Depends-on): Add extensions.
26359         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
26360
26361 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
26362
26363         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
26364         pathconf.
26365         * m4/same.m4 (gl_SAME): Likewise.
26366         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
26367
26368         * m4/regex.m4: Adjust to new libc regex implementation.
26369         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
26370         all the .c and .h parts of (the new) regex.
26371         Quote the m4 stuff better.
26372         Check for RE_ICASE bug of old gnulib.
26373         Check for REG_STARTEND of recent libc.
26374         Rename local variables from jm_* to gl_*.
26375         Quote operand of "test -f".
26376         Say "recent enough" version of libc, not "version 2".
26377         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
26378         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
26379         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
26380         Remove check for btowc, isascii.
26381         Require AM_LANGINFO_CODESET.
26382
26383 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
26384
26385         * lib/regex.c, regex.h: Sync from libc.
26386         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
26387         * lib/regexec.c:
26388         New files, synced from libc, except that regex_internal.h
26389         currently has a small porting fix.
26390
26391 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
26392
26393         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
26394         regex_internal.c, regexec.c.
26395         Add regex_internal.h too, but as a comment, since the libc version
26396         is currently broken in gnulib mode.
26397
26398 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
26399
26400         Support programs like Emacs that use gnulib but not gettext.
26401         * MODULES.html.sh (Internationalization functions): Add gettext-h.
26402         * modules/gettext-h: New file.
26403         * modules/gettext (Files): Remove lib/gettext.h.
26404         (Depends-on): Add gettext-h.
26405         (Makefile.am): Remove lib_SOURCES.
26406         * modules/argmatch, modules/c-stack, modules/closeout:
26407         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
26408         * modules/execute, modules/file-type, modules/getaddrinfo:
26409         * modules/getopt, modules/human, modules/javacomp:
26410         * modules/javaexec, modules/mkdir-p, modules/obstack:
26411         * modules/openat, modules/pagealign_alloc, modules/pipe:
26412         * modules/quotearg, modules/regex, modules/rpmatch:
26413         * modules/unicodeio, modules/userspec, modules/version-etc:
26414         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
26415         * modules/xsetenv:
26416         Depend on gettext-h, not gettext.
26417
26418 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
26419
26420         * gnulib-tool (func_import): Add support for 'public domain' license.
26421         * modules/alloca, modules/atexit, modules/memmove:
26422         Now public domain, not GPL.
26423         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
26424         * modules/realloc, modules/strerror, modules/strtod:
26425         Now LGPL, not GPL.
26426
26427 2005-07-05  Bruno Haible  <bruno@clisp.org>
26428
26429         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
26430         autoconf CVS. Needed for mingw.
26431
26432 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
26433
26434         Remove the dependency of the strftime module on the tzset module.
26435         * modules/strftime (Depends-on): Remove dependency on tzset.
26436
26437 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
26438
26439         Remove the dependency of the strftime module on the tzset module.
26440         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
26441         gl_FUNC_TZSET_CLOBBER.
26442
26443 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
26444
26445         Remove the dependency of the strftime module on the tzset module.
26446         * lib/strftime.c (my_strftime)
26447         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
26448         Copy the input structure, to work around some of the bug with
26449         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
26450         Solaris releases, you should also use the tzset module, but we won't
26451         require it as a dependency any more since we don't want LGPLed code
26452         to depend on GPLed code.
26453
26454 2005-07-02  Jim Meyering  <jim@meyering.net>
26455
26456         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
26457         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
26458         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
26459         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
26460
26461 2005-07-02  Jim Meyering  <jim@meyering.net>
26462
26463         * lib/backupfile.c (backup_args): Change a `0' to NULL.
26464
26465 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
26466
26467         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
26468         declares only 'struct timespec;' (!).
26469
26470 2005-07-01  Jim Meyering  <jim@meyering.net>
26471
26472         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
26473         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
26474         * lib/save-cwd.c, tempname.c:
26475         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
26476         and don't include <sys/file.h>).
26477
26478 2005-06-29  Jim Meyering  <jim@meyering.net>
26479
26480         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
26481         type name.  Use the variable name instead.
26482         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
26483         Likewise.
26484
26485 2005-06-28  Simon Josefsson  <jas@extundo.com>
26486
26487         * modules/check-version (Files): Add check-version.m4.
26488
26489 2005-06-28  Simon Josefsson  <jas@extundo.com>
26490
26491         * m4/check-version.m4: New file, suggested by Jim Meyering
26492         <jim@meyering.net>.
26493
26494 2005-06-28  Simon Josefsson  <jas@extundo.com>
26495
26496         * lib/check-version.h, lib/check-version.c: New files.
26497
26498 2005-06-28  Simon Josefsson  <jas@extundo.com>
26499
26500         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
26501         collision with global variable.  Better indentation.  Don't
26502         increment buffer pointer beyond buffer end.  Based on comments
26503         from Paul Eggert <eggert@cs.ucla.edu>.
26504
26505         * lib/base64.h: Indent.
26506
26507 2005-06-28  Simon Josefsson  <jas@extundo.com>
26508
26509         * doc/gnulib.texi (Library version handling): New section.
26510
26511 2005-06-28  Jim Meyering  <jim@meyering.net>
26512
26513         * check-module (find_included_lib_files): Hard-code another
26514         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
26515         but modules/fts-lgpl (correctly) does not list those files.
26516
26517         * modules/canonicalize (Files): Add lib/pathmax.h.
26518
26519 2005-06-25  Simon Josefsson  <jas@extundo.com>
26520
26521         * modules/check-version: New file.
26522
26523 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
26524
26525         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
26526         initializer of struct addrinfo, as an indication that we don't
26527         care how many members the structure has.
26528
26529 2005-06-24  Derek Price  <derek@ximbiot.com>
26530         and Bruno Haible  <bruno@clisp.org>
26531
26532         Remove stat module & update lstat.
26533         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
26534         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
26535         * m4/stat.m4: Remove this file.
26536
26537 2005-06-24  Derek Price  <derek@ximbiot.com>
26538         and Bruno Haible  <bruno@clisp.org>
26539
26540         Remove stat module & update lstat.
26541         * lib/stat.c: Remove this file...
26542         (slash_aware_lstat): ...moving this content and its support...
26543         * lib/lstat.c (rpl_lstat): ...into here.
26544         * lib/lstat.h: New file.
26545
26546 2005-06-24  Derek Price  <derek@ximbiot.com>
26547         and Bruno Haible  <bruno@clisp.org>
26548
26549         Remove stat module & update lstat.
26550         * config/srclist.txt (libc sources): Remove stat.
26551
26552 2005-06-24  Derek Price  <derek@ximbiot.com>
26553         and Bruno Haible  <bruno@clisp.org>
26554
26555         Remove stat module & update lstat.
26556         * MODULES.html.sh (stat): Remove.
26557         * MODULES.html: Regenerated.
26558         * modules/lstat (Description): Correct function name.
26559         (Files): Add "lstat.h".
26560         (Depends-on): Remove stat, add xalloc, stat-macros.
26561         * modules/stat: Remove this file.
26562         (Include): Add "lstat.h", remove <sys/stat.h>.
26563
26564 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26565
26566         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
26567         (ranged_convert): Don't save conversion in a temporary struct.
26568         This causes a warning with GCC 4.0.0, and anyway in the typical
26569         case it's not worth the extra 100 bytes or so of code.
26570         (ranged_convert, __mktime_internal): When calling a function via a
26571         pointer P, use P () rather than (*P) (), as we now assume C89 or
26572         better.
26573
26574 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
26575
26576         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
26577         "who -r" failed to give output.  Problem reported by Tim Waugh.
26578
26579         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
26580         (xcalloc): Use it to avoid needless tests.
26581         Problem reported by Jim Meyering.
26582
26583 2005-06-20  Derek Price  <derek@ximbiot.com>
26584
26585         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
26586         unnecessary for Autoconfs > 2.59c.
26587
26588 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
26589
26590         * lib/argp.h (__option_is_short): Check upper limit of
26591         __key. Isprint() requires its argument to have the value
26592         of an unsigned char or EOF.
26593
26594 2005-06-16  Jim Meyering  <jim@meyering.net>
26595
26596         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
26597         when either N or S is zero.
26598
26599 2005-06-16  Derek Price  <derek@ximbiot.com>
26600
26601         * m4/bison.m4: Declare YACC & YFLAGS precious.
26602
26603 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
26604
26605         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
26606         multibyte string or pattern, fall back on unibyte matching.
26607         Problem reported by James Youngman.
26608
26609 2005-06-08  Bruno Haible  <bruno@clisp.org>
26610
26611         * modules/csharpcomp: New file.
26612         * MODULES.html.sh (C#): Add csharpcomp.
26613
26614 2005-06-08  Bruno Haible  <bruno@clisp.org>
26615
26616         * m4/csharpcomp.m4: New file, from GNU gettext.
26617
26618 2005-06-08  Bruno Haible  <bruno@clisp.org>
26619
26620         * lib/csharpcomp.h: New file, from GNU gettext.
26621         * lib/csharpcomp.c: New file, from GNU gettext.
26622         * lib/csharpcomp.sh.in: New file, from GNU gettext.
26623
26624 2005-06-08  Bruno Haible  <bruno@clisp.org>
26625
26626         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
26627         warning on mingw.
26628
26629 2005-06-07  Derek Price  <derek@ximbiot.com>
26630
26631         Sync from CVS.
26632         * lib/glob_.h: Indent nested #ifdef.
26633
26634 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
26635
26636         Sync from coreutils.
26637         Use "file name" when talking about file names, instead of "filename"
26638         or "path", as per the GNU coding standards.
26639         * lib/mkdir-p.c: Renamed from makepath.c.
26640         (make_dir_parents): Renamed from make_path.  All callers changed.
26641         * lib/mkdir-p.h: Likewise.  All includers changed.
26642         * lib/filenamecat.c: Renamed from path-concat.c.
26643         (file_name_concat): Renamed from path_concat.  All callers changed.
26644         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
26645         * lib/filenamecat.h: Likewise.  All includers changed.
26646         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
26647         in comments or local variable names.
26648         * lib/basename.c: Likewise.
26649         * lib/canonicalize.c, canonicalize.h: Likewise.
26650         * lib/dirname.c, dirname.h: Likewise.
26651         * lib/euidaccess.c: Likewise.
26652         * lib/exclude.c: Likewise
26653         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
26654         * lib/fsusage.c, fsuage.h: Likewise.
26655         * lib/fts.c, fts_.h: Likewise.
26656         * lib/getcwd.c: Likewise.
26657         * lib/getloadavg.c: Likewise.
26658         * lib/mkstemp.c: Likewise.
26659         * lib/mountlist.c, mountlist.h: Likewise.
26660         * lib/openat.c, openat.h: Likewise.
26661         * lib/readlink-stub.c: Likewise.
26662         * lib/readutmp.c, readutmp.h: Likewise.
26663         * lib/rename.c: Likewise.
26664         * lib/rmdir.c: Likewise.
26665         * lib/same.c: Likewise.
26666         * lib/savedir.c: Likewise.
26667         * lib/stripslash.c: Likewise.
26668         * lib/tempname.c: Likewise.
26669         * lib/xreadlink.c: Likewise.
26670         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
26671         All uses changed.
26672         * lib/exclude.h: Likewise.
26673
26674         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
26675         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
26676         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
26677         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
26678         * lib/pathmax.h: Include <limits.h> unconditionally, since other
26679         files have been getting away with it for years (MORE/BSD 4.3
26680         is extinct now).
26681         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
26682         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
26683
26684         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
26685         Define to 256, not 255, as per modern POSIX.
26686
26687 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
26688
26689         Sync from coreutils.
26690         Use "file name" when talking about file names, instead of "filename"
26691         or "path", as per the GNU coding standards.
26692         * MODULES.html.sh: mkdir-p renamed from makepath.
26693         filenamecat renamed from path-concat.
26694         * modules/filenamecat: Renamed from modules/path-concat.
26695         (Files): filenamecat.h and filenamecat.c renamed from
26696         path-concat.h and path-concat.c.
26697         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
26698         (Include): filenamecat.h, not path-concat.h.
26699         * modules/mkdir-p: Renamed from modules/makepath.
26700         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
26701         makepath.c.
26702         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
26703         (Include): mkdir-p.h, not makepath.h.
26704
26705 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
26706
26707         Sync from coreutils.
26708         * m4/mkdir-p.m4: Renamed from makepath.m4.
26709         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
26710         Rename files from makepath.c to mkdir-p.c, and from
26711         makepath.h to mkdir-p.h.
26712         * m4/filenamecat.m4: Renamed from path-concat.m4.
26713         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
26714         Rename files from path-concat.c to filenamecat.c,
26715         and from path-concat.h to filenamecat.h.
26716         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
26717         "file name" in local variables or comments.
26718         * m4/rename.m4: Likewise.
26719
26720 2005-06-01  Bruno Haible  <bruno@clisp.org>
26721
26722         * modules/csharpexec: New file.
26723         * MODULES.html.sh (C#): New section.
26724
26725 2005-06-01  Bruno Haible  <bruno@clisp.org>
26726
26727         * m4/csharp.m4: New file, from GNU gettext.
26728         * m4/csharpexec.m4: New file, from GNU gettext.
26729
26730 2005-06-01  Bruno Haible  <bruno@clisp.org>
26731
26732         * lib/csharpexec.h: New file, from GNU gettext.
26733         * lib/csharpexec.c: New file, from GNU gettext.
26734         * lib/csharpexec.sh.in: New file, from GNU gettext.
26735
26736 2005-05-31  Derek Price  <derek@ximbiot.com>
26737             Paul Eggert  <eggert@cs.ucla.edu>
26738
26739         Sync from cvs.
26740         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
26741
26742 2005-05-31  Derek Price  <derek@ximbiot.com>
26743             Paul Eggert  <eggert@cs.ucla.edu>
26744
26745         Sync from cvs.
26746         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
26747
26748 2005-05-29  Derek Price  <derek@ximbiot.com>
26749
26750         * config/srclist.txt (glob_.h, glob.c): Add these files.
26751
26752 2005-05-29  Derek Price  <derek@ximbiot.com>
26753
26754         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
26755         * modules/glob: New file.
26756         * modules/getlogin_r: Add link to POSIX spec in description.
26757
26758 2005-05-29  Derek Price  <derek@ximbiot.com>
26759             Paul Eggert  <eggert@cs.ucla.edu>
26760
26761         * m4/glob.m4: New file.
26762
26763 2005-05-29  Derek Price  <derek@ximbiot.com>
26764             Paul Eggert  <eggert@cs.ucla.edu>
26765
26766         * lib/glob_.h, lib/glob.c: New files.
26767
26768 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
26769
26770         * modules/fts (Files): Remove m4/inttypes-pri.m4.
26771         * modules/fts-lgpl (Depends-on): Remove gettext.
26772
26773 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
26774
26775         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
26776         and don't require gt_INTTYPES_PRI.
26777
26778 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
26779
26780         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
26781
26782         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
26783         the configuration hassle isn't worth it.
26784         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
26785         (LONGEST_MODIFIER, PRIuMAX): Remove.
26786
26787 2005-05-27  Bruno Haible  <bruno@clisp.org>
26788
26789         * lib/getlogin_r.h: Remove second include of <stddef.h>.
26790
26791 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
26792
26793         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
26794         _POSIX_PTHREAD_SEMANTICS for Solaris.
26795
26796 2005-05-25  Derek Price  <derek@ximbiot.com>
26797
26798         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
26799
26800 2005-05-25  Derek Price  <derek@ximbiot.com>
26801             Paul Eggert  <eggert@cs.ucla.edu>
26802
26803         * modules/getlogin_r, m4/getlogin_r.m4: New files.
26804         * lib/getlogin_r.c, getlogin_r.h: New files.
26805
26806 2005-05-25  Bruno Haible  <bruno@clisp.org>
26807             Derek Price  <derek@ximbiot.com>
26808
26809         * lib/getlogin_r.h: Simplify API documentation.
26810
26811 2005-05-23  Derek Price  <derek@ximbiot.com>
26812
26813         * modules/minmax (Files): Add m4/minmax.m4.
26814         (configure.ac): Add gl_MINMAX.
26815
26816 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
26817
26818         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
26819         so that unistd-safer.h (GPL'ed code) need not be included.
26820
26821 2005-05-22  Bruno Haible  <bruno@clisp.org>
26822
26823         * m4/minmax.m4: New file.
26824         Based on a patch by Derek Price <derek@ximbiot.com>.
26825
26826 2005-05-22  Bruno Haible  <bruno@clisp.org>
26827
26828         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
26829         (INT64_MIN): Fix definition.
26830         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
26831
26832         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
26833         NEED_SIGNED_INT_TYPES.
26834
26835         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
26836         HAVE_SYSTEM_INTTYPES.
26837
26838 2005-05-22  Bruno Haible  <bruno@clisp.org>
26839
26840         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
26841         Also include <sys/param.h> if it defines MIN, MAX.
26842         Based on a patch by Derek Price <derek@ximbiot.com>.
26843
26844 2005-05-21  Jim Meyering  <jim@meyering.net>
26845
26846         * modules/fts (Files): Add m4/inttypes-pri.m4.
26847         (Depends-on): Add lstat and remove gettext.  Alphabetize.
26848
26849 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
26850
26851         New fts module.
26852         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
26853         (setup_dir, free_dir): New functions.
26854         (enter_dir, leave_dir): Define trivial
26855         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
26856         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
26857         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
26858         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
26859         Move to fts-cycle.c.
26860         (fts_open): Use setup_dir.
26861         (fts_close): Use free_dir.
26862         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
26863         This adds a label and some gotos, but the alternatives were messier.
26864         Check for memory allocation failure when entering a dir.
26865         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
26866         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
26867         (FTS): New member fts_cycle, that is a union that contains the
26868         old active_dir_ht and cycle_state.  All uses changed to mention
26869         fts_cycle.ht and fts_cycle.state.
26870         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
26871         fts.c, with the following changes:
26872         (setup_dir, free_dir): New functions.
26873         (enter_dir): Now returns bool.  Return true if successful, false
26874         if memory exhausted.  All callers changed.
26875         Do not bother partly cleaning up on
26876         memory allocation failure; that is free_dir's job.
26877         However, free ad if hash_insert fails, to avoid memory leak.
26878         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
26879         fts->fts_options to see which union member to use.
26880
26881 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
26882
26883         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
26884         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
26885
26886 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
26887
26888         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
26889
26890 2005-05-20  Jim Meyering  <jim@meyering.net>
26891
26892         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
26893         Now a macro, to pacify GCC.
26894
26895 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
26896
26897         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
26898         of -1.
26899
26900 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
26901
26902         * lib/chown.c (rpl_chown): Return -1 on failure.
26903
26904 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
26905
26906         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
26907         Don't check for stddef.h.
26908         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
26909         don't use its results.
26910         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
26911         since we include them unconditionally.  Don't require
26912         AM_STDBOOL_H, since stdbool is a prerequisite.
26913         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
26914         since we assume C89 or better.
26915         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
26916         as we don't use their results.
26917         Don't check for fchdir, memmove, memset, strrchr, as we use
26918         them unconditionally.
26919         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
26920         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
26921
26922 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
26923
26924         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
26925         Include <stddef.h> unconditionally, since we assume C89 now.
26926         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
26927         * lib/fts.c: Include fts_.h first, to check interface.
26928         Do not include intprops.h; no longer needed.
26929         Include cycle-check.h and hash.h, since fts_.h no longer does.
26930         Remove unnecessary casts of closedir to void.
26931         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
26932         decide whether to decrement nlinks.
26933         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
26934         (FTS): Use struct hash_table * instead of Hash_table, so that
26935         we no longer need to include hash.h here.
26936
26937 2005-05-18  Jim Meyering  <jim@meyering.net>
26938
26939         * modules/dirfd (License): Change to LGPL.  Most of the code
26940         is already in the public domain.
26941
26942 2005-05-18  Jim Meyering  <jim@meyering.net>
26943
26944         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
26945         Reported by Yoann Vandoorselaere.
26946
26947 2005-05-17  Jim Meyering  <jim@meyering.net>
26948
26949         * m4/fts.m4: New file, from coreutils.
26950
26951 2005-05-17  Jim Meyering  <jim@meyering.net>
26952
26953         * lib/fts.c, lib/fts_.h: New files, from coreutils.
26954
26955 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
26956
26957         Sync from coreutils.
26958         * m4/unlinkdir.m4: New file.
26959
26960 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
26961
26962         Sync from coreutils.
26963         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
26964         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
26965         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
26966         White space changes only.
26967         * lib/makepath.c (make_path): Port to hosts where leading "//" is
26968         special.
26969         * lib/yesno.c: Include getline.h, not ctype.h.
26970         (yesno): Don't remove leading white space; POSIX doesn't allow it.
26971         Use getline to remove arbitrary restriction on response length.
26972
26973 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
26974
26975         * config/srclist-update: Spell out "Street" in FSF postal
26976         mail address; this is the style the FSF seems to prefer.
26977
26978         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
26979         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
26980         this updates FSF postal mail address.
26981
26982         Sync from coreutils.
26983         * modules/unlinkdir: New file.
26984         * modules/yesno (Depends-on): Add getline.
26985         * MODULES.html.sh (File system functions): Add unlinkdir.
26986
26987 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
26988
26989         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
26990         lib/strsep.h:
26991         Change the initial comment to refer to GPL, not LGPL.
26992         gnulib-tool will change it to LGPL as needed.
26993
26994         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
26995         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
26996         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
26997         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
26998         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
26999         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
27000         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
27001         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
27002         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
27003         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
27004         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
27005         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
27006         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
27007         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
27008         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
27009         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
27010         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
27011         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
27012         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
27013         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
27014         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
27015         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
27016         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
27017         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
27018         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
27019         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
27020         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
27021         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
27022         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
27023         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
27024         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
27025         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
27026         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
27027         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
27028         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
27029         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
27030         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
27031         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
27032         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
27033         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
27034         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
27035         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
27036         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
27037         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
27038         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
27039         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
27040         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
27041         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
27042         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
27043         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
27044         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
27045         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
27046         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
27047         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
27048         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
27049         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
27050         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
27051         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
27052         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
27053         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
27054         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
27055         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
27056         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
27057         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
27058         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
27059         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
27060         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
27061         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
27062         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
27063         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
27064         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
27065         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
27066         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
27067         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
27068         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
27069         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
27070         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
27071         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
27072         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
27073         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
27074         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
27075         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
27076         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
27077         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
27078         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
27079         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
27080         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
27081         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
27082         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
27083         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
27084         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
27085         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
27086         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
27087         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
27088         lib/yesno.c, lib/yesno.h:
27089         Update FSF postal mail address.
27090
27091 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
27092
27093         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
27094         tests/test-memmem.c, tests/test-stpncpy.c:
27095         Update FSF postal mail address.
27096
27097 2005-05-13  Bruno Haible  <bruno@clisp.org>
27098
27099         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
27100         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
27101         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
27102         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
27103         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
27104         Add support for 64-bit integers in the MSVC compiler.
27105
27106 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
27107
27108         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
27109
27110 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
27111
27112         * gnulib-tool (func_import): Sort and uniquify recommended includes.
27113
27114 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
27115
27116         * doc/getdate.texi (General date syntax): Don't say that date
27117         date --iso-8601=ns generates acceptable dates; it doesn't yet.
27118         Problem reported by Nic Ferrier.
27119
27120 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27121
27122         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
27123         specified in ai_socktype. Fix invalid ai_protocol
27124         check. ai_protocol is usually set to 0 or depending on
27125         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
27126         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
27127         ai_socktype / ai_protocol in the returned addrinfo structure.
27128
27129 2005-05-10  Simon Josefsson  <jas@extundo.com>
27130
27131         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
27132         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
27133
27134 2005-05-10  Karl Berry  <karl@gnu.org>
27135
27136         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
27137         (from http://www.gnu.org/licenses).
27138         * doc/COPYING.LIB: also rename to COPYING.LESSER.
27139         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
27140         fdl.texi suffices.
27141
27142 2005-05-10  Karl Berry  <karl@gnu.org>
27143
27144         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
27145         (COPYING.DOC): remove.
27146
27147         * config/srclist-update: new FSF address.
27148
27149 2005-05-10  Derek Price  <derek@ximbiot.com>
27150
27151         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
27152         possible.
27153
27154 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27155             Bruno Haible  <bruno@clisp.org>
27156
27157         * modules/inet_ntop: New file.
27158         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
27159         inet_ntop.
27160
27161 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27162             Bruno Haible  <bruno@clisp.org>
27163
27164         * m4/inet_ntop.m4: New file.
27165
27166 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27167             Bruno Haible  <bruno@clisp.org>
27168
27169         * lib/inet_ntop.h: New file.
27170         * lib/inet_ntop.c: New file, from glibc with modifications.
27171
27172 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
27173
27174         * modules/time_r (License): Change to LGPL.
27175         * modules/extensions (License): Change to LGPL.  Actually,
27176         the license is more permissive than that, but currently gnulib-tool
27177         doesn't know how to handle more-permissive licenses.
27178
27179         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
27180         Problem reported by Dave Love.
27181
27182 2005-05-08  Jim Meyering  <jim@meyering.net>
27183
27184         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
27185         blank.
27186
27187 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
27188
27189         * modules/argmatch (Depends-on): Add stdbool.
27190         * modules/backupfile (Depends-on): Likewise.
27191         * modules/chdir-long (Depends-on): Likewise.
27192         * modules/closeout (Depends-on): Likewise.
27193         * modules/cycle-check (Depends-on): Likewise.
27194         * modules/dirname (Depends-on): Likewise.
27195         * modules/fnmatch (Depends-on): Likewise.
27196         * modules/fsusage (Depends-on): Likewise.
27197         * modules/fwriteerror (Depends-on): Likewise.
27198         * modules/getcwd (Depends-on): Likewise.
27199         * modules/getloadavg (Depends-on): Likewise.
27200         * modules/hard-locale (Depends-on): Likewise.
27201         * modules/makepath (Depends-on): Likewise.
27202         * modules/mountlist (Depends-on): Likewise.
27203         * modules/nanosleep (Depends-on): Likewise.
27204         * modules/posixtm (Depends-on): Likewise.
27205         * modules/quotearg (Depends-on): Likewise.
27206         * modules/readtokens (Depends-on): Likewise.
27207         * modules/readtokens0 (Depends-on): Likewise.
27208         * modules/readutmp (Depends-on): Likewise.
27209         * modules/save-cwd (Depends-on): Likewise.
27210         * modules/strftime (Depends-on): Likewise.
27211         * modules/userspec (Depends-on): Likewise.
27212         * modules/utimecmp (Depends-on): Likewise.
27213         * modules/xgetcwd (Depends-on): Likewise.
27214         * modules/xnanosleep (Depends-on): Likewise.
27215         * modules/xstrtod (Depends-on): Likewise.
27216         * modules/yesno (Depends-on): Likewise.
27217
27218 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
27219
27220         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
27221         needless checks.
27222
27223 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
27224
27225         Merge from coreutils.  Among other things,
27226         add bulletproofing for cases where stdin, stdout, or stderr are closed.
27227         * lib/fd-safer.c: New file.
27228         * lib/fcntl-safer.h, open-safer.c: Remove.
27229         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
27230         * lib/dup-safer.c: Include unistd-safer.h first.
27231         Don't include errno.h.
27232         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
27233         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
27234         * lib/file-type.c: Rely on file-type.h change.
27235         * lib/getloadavg.c: Include unistd-safer.h.
27236         (getloadavg): Use safer open.
27237         * lib/getusershell.c: Include "stdio-safer.h".
27238         (getusershell): Use safer fopen.
27239         * lib/long-options.c (long_options): Use NULL rather than 0.
27240         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
27241         'free'.
27242         * lib/modechange.c: Likewise.
27243         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
27244         (MODE_DONE): New constant.
27245         (struct mode_change): Remove 'next' member.
27246         (make_node_op_equals): New function; like the old one of the
27247         same name, except it allocates an array.
27248         (mode_compile, mode_create_from_ref): Use it.
27249         (mode_compile): Allocate result as an array, not a linked list.
27250         Parse octal string ourself, so that we catch mistakes like "+0".
27251         (mode_adjust): Arg is an array, not a linked list.
27252         * lib/modechange.c: Include stat-macros.h, xalloc.h.
27253         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
27254         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
27255         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
27256         Remove.  This is now stat-macros.h's job.
27257         (talloc): Remove.  All callers replaced by xalloc, so that
27258         our invokers don't have to worry about reporting memory failures.
27259         (make_node_op_equals): Remove.
27260         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
27261         New constants.
27262         (struct mode_change): Moved here from modechange.h.
27263         (mode_append_entry): Remove.
27264         (mode_compile): Remove MASKED_OPS arg, since it encouraged
27265         apps to have incorrect behavior.  Use simpler algorithm for head
27266         and tail.  Don't futz with umask; that's now the job of mode_adjust.
27267         Detect more invalid usages rather than having somewhat-random behavior.
27268         Don't insert an "a=" action, as that leads to incorrect behavior.
27269         (mode_compile, mode_create_from_ref): Return NULL on error instead
27270         of an enum, since now there's only one way to have an error.  All
27271         callers changed.
27272         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
27273         at the correct time.  Simplify calculation of "+u" and its ilk.
27274         Don't mishandle "+X".
27275         (mode_free): Remove "register" and localize decls.
27276         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
27277         (struct mode_change): Move to modechange.c; callers don't
27278         need to see this stuff.
27279         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
27280         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
27281         (mode_change, mode_adjust): Reflect the new signatures noted above.
27282         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
27283         that might redefine system include files.
27284         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
27285         (my_usleep): Use NULL rather than (void *) 0.
27286         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
27287         Use siginterrupt to specify that system calls should be interrupted.
27288         (rpl_nanosleep): Move initialization of suspended closer to call of
27289         my_usleep.
27290         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
27291         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
27292         (desirable_utmp_entry): New function.
27293         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
27294         using x2nrealloc, to simplify logic.
27295         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
27296         size calculation.  Do not assume utmp file is a regular file.
27297         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
27298         (READ_UTMP_CHECK_PIDS): New constant.
27299         * lib/save-cwd.c: Include unistd-safer.h.
27300         (save_cwd): Use fd_safer.
27301         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
27302         [!_LIBC] Include "stat-macros.h" instead.
27303         * lib/unistd-safer.h (fd_safer): New decl.
27304
27305 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
27306
27307         * modules/getloadavg (Depends-on): Add unistd-safer.
27308         * modules/getusershell (Depends-on): Add stdio-safer.
27309         * modules/lstat (Depends-on): Remove xalloc.
27310         * modules/mkstemp (Depends-on): Add stat-macros.
27311         * modules/modechange (Depends-on): Remove xstrtol.
27312         Add stat-macros, xalloc.
27313         * modules/save-cwd (Depends-on): Add unistd-safer.
27314         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
27315         * modules/unistd-safer (Files): Add lib/fd-safer.c
27316         (Makefile.am): Remove lib_SOURCES.
27317
27318         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
27319         Remove fcntl-safer; unistd-safer supersedes it.
27320
27321 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
27322
27323         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
27324         AC_HEADER_STAT.
27325         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
27326         (gl_PREREQ_CHOWN): Remove.
27327         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
27328         it.  Don't require AC_HEADER_STAT.
27329         (gl_PREREQ_LSTAT): Remove.
27330         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
27331         Don't require AC_HEADER_STAT.
27332         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
27333         (gl_PREREQ_RMDIR): Remove.
27334         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
27335         mention stat-macros.h or AC_HEADER_STAT, since we'll make
27336         the stat-macros module a prerequisite.
27337         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
27338         * m4/filemode.m4 (gl_FILEMODE): Likewise.
27339         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
27340         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
27341         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
27342         variable names.
27343         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
27344         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
27345         variable prefixes.
27346         * m4/fcntl-safer.m4: Remove.
27347         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
27348         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
27349         Invoke gl_PREREQ_FD_SAFER.
27350         (gl_PREREQ_FD_SAFER): New macro.
27351         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
27352         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
27353         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
27354         Remove duplicate call to AC_LIBOBJ(readutmp).
27355         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
27356
27357         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
27358         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
27359
27360 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
27361
27362         * MODULES.html.sh (Misc): Add byteswap.
27363
27364 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
27365
27366         * modules/getcwd (Depends-on): Add extensions.
27367         * modules/openat (Depends-on): Likewise.
27368
27369 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
27370
27371         * modules/byteswap: New file.
27372
27373 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
27374
27375         * m4/byteswap.m4: New file.
27376
27377 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
27378
27379         * lib/byteswap_.h: New file.
27380
27381 2005-04-25  Karl Berry  <karl@gnu.org>
27382
27383         * m4/gettext.m4: Update from GNU gettext 0.14.4.
27384
27385 2005-04-25  Albert Chin  <china@thewrittenword.com>
27386
27387         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
27388         Toolkit C bug.
27389
27390 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
27391
27392         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
27393         (func_ln_if_changed) Remove forcibly for no error message
27394         in case file does not exist.
27395
27396 2005-04-19  Simon Josefsson  <jas@extundo.com>
27397
27398         * gnulib-tool (Options): Make --symlink mean --symbolic.
27399
27400 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
27401
27402         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
27403
27404 2005-04-16  Simon Josefsson  <jas@extundo.com>
27405
27406         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
27407
27408 2005-04-15  Simon Josefsson  <jas@extundo.com>
27409
27410         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
27411
27412 2005-04-15  Simon Josefsson  <jas@extundo.com>
27413
27414         * gnulib-tool: Rename --symlink to --symbolic.
27415
27416 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
27417
27418         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
27419         symbolic links to files instead of copying/moving.  Add --aux-dir,
27420         specifying directory relative --dir where auxiliary build tools
27421         are placed.
27422
27423 2005-04-14  Bruno Haible  <bruno@clisp.org>
27424
27425         * modules/allocsa (License): Change to LGPL.
27426         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
27427
27428 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
27429
27430         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
27431         that "UTC +1 second" continues to work.  Problem reported
27432         by Dmitry V. Levin.
27433         (relunit_snumber): New rule.
27434         (relunit): Use it.
27435
27436 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
27437
27438         * lib/getdate.y (universal_time_zone_table): New constant.
27439         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
27440         universal_time_zone_table.
27441         (lookup_zone): Prefer universal_time_zone_table to
27442         local_time_zone_table, so that "GMT" time stamps are allowed in
27443         London during the summer.  Problem reported by Ian Abbott.
27444
27445 2005-04-12  Jim Meyering  <jim@meyering.net>
27446
27447         * lib/human.c (humblock): Set *options even when returning due to
27448         xstrtoumax conversion failure.  Thanks to a used-uninitialized
27449         warning from gcc-4.
27450
27451 2005-04-09  Jim Meyering  <jim@meyering.net>
27452
27453         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
27454         -Wuninitialized: initialize tm0.tm_year.
27455
27456 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
27457
27458         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
27459         count, since there's no maximum.  All uses changed.
27460         Add member dsts_seen.
27461         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
27462         not being INT_MAX.
27463         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
27464         Use pc_rels_seen to decide whther a date is absolute.
27465
27466         * lib/getdate.y (number): Don't overwrite year.
27467         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
27468         check.
27469
27470 2005-04-02  Simon Josefsson  <jas@extundo.com>
27471
27472         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
27473         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
27474
27475 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
27476
27477         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
27478         where no absolute path name can be longer than PATH_MAX.
27479
27480 2005-03-27  Jim Meyering  <jim@meyering.net>
27481
27482         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
27483
27484 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
27485
27486         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
27487         "one's complement" -> "ones' complement" in comment, as per Knuth.
27488         "value of type" -> "type or expression" in comment.
27489         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
27490
27491 2005-03-26  Jim Meyering  <jim@meyering.net>
27492
27493         Comment nits.
27494         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
27495         Correct typos: s/or/of/.
27496
27497 2005-03-26  Jim Meyering  <jim@meyering.net>
27498
27499         * modules/check-include-files: Move to ../ and rename to...
27500         * check-module: ...this.
27501
27502 2005-03-25  Jim Meyering  <jim@meyering.net>
27503
27504         * modules/xvasprintf (Files): Add xalloc.h.
27505
27506 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
27507
27508         * modules/gettext (Files): config/config.rpath ->
27509         build-aux/config.rpath
27510         * modules/iconv (Files): Likewise.
27511         Problem reported by Oskar Liljeblad.
27512
27513 2005-03-23  Jim Meyering  <jim@meyering.net>
27514
27515         * modules/check-include-files: New script to check for
27516         missing dependencies, multiple includes, etc.
27517
27518         * modules/c-strtold (Depends-on): Add xalloc.
27519         * modules/c-strtod (Depends-on): Add xalloc.
27520         * modules/hash (Depends-on): Add xalloc.
27521         (Files): Remove lib/xalloc.h.
27522
27523         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
27524         * modules/userspec (Files): Add lib/inttostr.h.
27525
27526 2005-03-23  Jim Meyering  <jim@meyering.net>
27527
27528         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
27529
27530 2005-03-22  Jim Meyering  <jim@meyering.net>
27531
27532         * modules/stat-macros: New module.
27533         * modules/canonicalize, modules/euidaccess, modules/file-type,
27534         * modules/filemode, modules/lchown, modules/makepath,
27535         * modules/rmdir, modules/stat: Depend on new stat-macros module
27536         rather than listing lib/stat-macros.h manually.
27537         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
27538
27539 2005-03-22  Jim Meyering  <jim@meyering.net>
27540
27541         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
27542
27543 2005-03-22  Bruno Haible  <bruno@clisp.org>
27544
27545         * config/srclist.txt: Replace target directory 'config' with
27546         'build-aux'.
27547         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
27548         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
27549         ../build-aux/.
27550
27551 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
27552
27553         * modules/chdir-long (Depends-on): Add mempcpy.
27554
27555         * modules/acl, modules/backupfile, modules/c-strtod,
27556         modules/c-strtold, modules/canon-host, modules/canonicalize,
27557         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
27558         modules/exclude, modules/exitfail, modules/file-type,
27559         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
27560         modules/getdate, modules/getline, modules/getpagesize,
27561         modules/getpass, modules/getugroups, modules/group-member,
27562         modules/hard-locale, modules/hash, modules/human, modules/idcache,
27563         modules/inttostr, modules/long-options, modules/makepath,
27564         modules/md5, modules/memcasecmp, modules/memcoll,
27565         modules/modechange, modules/mountlist, modules/path-concat,
27566         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
27567         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
27568         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
27569         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
27570         modules/strftime, modules/strndup, modules/strverscmp,
27571         modules/timespec, modules/unlocked-io, modules/userspec,
27572         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
27573         modules/yesno:
27574         Remove lib_SOURCES line from Makefile.am section, as this is now
27575         done automatically by the corresponding Autoconf macro.
27576
27577 2005-03-21  Jim Meyering  <jim@meyering.net>
27578
27579         Changes imported from coreutils.
27580
27581         * lib/cycle-check.c: Don't include xalloc.h.
27582
27583         * lib/path-concat.c: Don't include assert.h.
27584         (path_concat): Remove assertion that would have triggered
27585         for ABASE starting with more than one slash.
27586         Reported by Andreas Schwab.
27587
27588         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
27589         properly when ABASE is an absolute file name.
27590         Correct the description of this function.
27591         Include <assert.h>.
27592         Add an assertion and a test driver.
27593         This fixes a bug introduced on 2004-07-02.
27594         Andreas Schwab reported the resulting failure of cp --parents:
27595         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
27596
27597 2005-03-21  Jim Meyering  <jim@meyering.net>
27598
27599         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
27600         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
27601
27602 2005-03-21  Jim Meyering  <jim@meyering.net>
27603         and  Paul Eggert  <eggert@cs.ucla.edu>
27604
27605         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
27606         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
27607         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
27608         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
27609         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
27610         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
27611         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
27612         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
27613         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
27614         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
27615         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
27616         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
27617         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
27618         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
27619         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
27620         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
27621         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
27622         for these modules.
27623
27624 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
27625
27626         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
27627         (which shouldn't happen), generate nothing instead of returning 0
27628         immediately, so that nstrftime (NULL, ...) doesn't return 0.
27629
27630 2005-03-16  Bruno Haible  <bruno@clisp.org>
27631
27632         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
27633         HAVE_LONGLONG_64BIT.
27634
27635 2005-03-16  Bruno Haible  <bruno@clisp.org>
27636
27637         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
27638         HAVE_LONGLONG_64BIT.
27639
27640 2005-03-16  Bruno Haible  <bruno@clisp.org>
27641
27642         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
27643         HAVE_LONGLONG_64BIT.
27644
27645 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
27646
27647         * lib/strftime.c (my_strftime): Prepend space to format so that we can
27648         reliably distinguish strftime failure from empty output on POSIX
27649         hosts.
27650
27651 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
27652
27653         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
27654         (iconv_string): Don't guess a size-zero buffer, as that might cause
27655         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
27656         result would be 'too large', where 'too large' is (heuristically)
27657         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
27658         overflow concerns.  This will prevent some unwanted malloc failures
27659         when the inputs are very large.
27660
27661 2005-03-15  Karl Berry  <karl@gnu.org>
27662
27663         * config/srclist.txt (config.rpath): from gettext.
27664         * config/config.rpath: update.
27665
27666 2005-03-15  Bruno Haible  <bruno@clisp.org>
27667
27668         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
27669         to 'negate'.
27670
27671         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
27672         variable.
27673
27674         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
27675         results.
27676
27677 2005-03-14  Simon Josefsson  <jas@extundo.com>
27678
27679         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
27680         <fx@gnu.org>.
27681
27682 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
27683
27684         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
27685         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
27686         intprops.h.
27687         * lib/strtol.c: Likewise.
27688
27689 2005-03-14  Jim Meyering  <jim@meyering.net>
27690
27691         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
27692         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
27693         to be nonzero so that we (and caller) can detect the difference
27694         between a valid zero-length expansion and an error return, even
27695         when the underlying strftime fails before writing anything into
27696         that location.
27697
27698 2005-03-14  Bruno Haible  <bruno@clisp.org>
27699
27700         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
27701         Update from GNU gettext 0.14.3.
27702
27703 2005-03-10  Jim Meyering  <jim@meyering.net>
27704
27705         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
27706
27707 2005-03-10  Jim Meyering  <jim@meyering.net>
27708
27709         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
27710         so that this module works on systems without fchdir.
27711
27712 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
27713
27714         Factor int-properties macros into a single file, except for
27715         glibc-related files.
27716         * lib/intprops.h: New file.
27717         * lib/getloadavg.c: Include it instead of limits.h.
27718         (INT_STRLEN_BOUND): Remove.
27719         * lib/human.c: Include intprops.h.
27720         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
27721         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
27722         302/1000.
27723         * lib/inttostr.h: Include intprops.h instead of limits.h.
27724         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
27725         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
27726         for consistency with intprops.h.
27727         (time_t_is_integer, twos_complement_arithmetic): Use them.
27728         * lib/sig2str.h: Include <signal.h>, intprops.h.
27729         (INT_STRLEN_BOUND): Remove.
27730         * lib/strftime.c (TYPE_SIGNED): Remove.
27731         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
27732         * lib/strtol.c: Adjust comments to match intprops.h.
27733         * lib/userspec.c: Include intprops.h.
27734         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
27735         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
27736         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
27737         instead of rolling our own expressions.
27738         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
27739
27740         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
27741         instead of int.
27742         (my_strftime): Do not mishandle years close to INT_MAX, by doing
27743         the right thing even if adding 1900 would overflow.  Similarly
27744         for tm_mon + 1 and tm_yday + 1.
27745         Make %Y always equivalent to %C%y, and similarly for %G and %g.
27746         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
27747         (DO_SIGNED_NUMBER): New macro.
27748         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
27749
27750 2005-03-07  Bruno Haible  <bruno@clisp.org>
27751
27752         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
27753
27754 2005-03-07  Bruno Haible  <bruno@clisp.org>
27755
27756         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
27757
27758 2005-03-04  Derek R. Price  <derek@ximbiot.com>
27759
27760         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
27761         (func_import): Only replace files via --import when they have actually
27762         changed.
27763
27764 2005-03-03  Derek R. Price  <derek@ximbiot.com>
27765
27766         * m4/mmap-anon.m4: New file.
27767         * m4/pagealign_alloc.m4: New file.
27768
27769 2005-03-03  Derek R. Price  <derek@ximbiot.com>
27770             Bruno Haible  <bruno@clisp.org>
27771
27772         * modules/pagealign_alloc: New file.
27773         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
27774
27775 2005-03-03  Derek R. Price  <derek@ximbiot.com>
27776             Bruno Haible  <bruno@clisp.org>
27777
27778         * lib/pagealign_alloc.h: New file.
27779         * lib/pagealign_alloc.c: New file.
27780
27781 2005-03-03  Bruno Haible  <bruno@clisp.org>
27782
27783         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
27784         Use an all-permissive copyright notice, recommended by RMS.
27785
27786 2005-03-02  Bruno Haible  <bruno@clisp.org>
27787
27788         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
27789         of AIX, the replacement has to be done only after <string.h> is
27790         included, therefore not in config.h. stpncpy.h does the replacement,
27791         and stpncpy.c uses it.
27792
27793 2005-03-02  Bruno Haible  <bruno@clisp.org>
27794
27795         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
27796         stpncpy.c uses it.
27797
27798 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
27799
27800         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
27801         The workaround isn't strictly needed for POSIX conformance, and
27802         it's too much of a pain to configure and maintain.  We'll ask
27803         people to fix their kernels instead.
27804         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
27805         (NANOSLEEP_BUG_WORKAROUND): Remove.
27806         (xnanosleep): Remove the workaround.
27807
27808 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
27809
27810         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
27811         Reported by Derek Price.
27812         (Include): Add "timespec.h".
27813
27814         * modules/xnanosleep (Depends-on): Remove gethrxtime.
27815
27816 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
27817
27818         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
27819         to detect nanosleep bug.
27820
27821 2005-03-01  Bruno Haible  <bruno@clisp.org>
27822
27823         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
27824
27825 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
27826
27827         * modules/gethrxtime: New file.
27828         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
27829         (Depends-on): Add gethrxtime.
27830         (configure.ac): Add gl_XNANOSLEEP.
27831         (Makefile.am): Remove lib_SOURCES line.
27832
27833 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
27834
27835         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
27836         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
27837
27838 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
27839
27840         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
27841         * lib/timespec.h (gettime): Return void, since it always
27842         succeeds now.  All uses changed.
27843         * lib/gettime.c (gettime) Likewise.
27844         [HAVE_NANOTIME]: Prefer nanotime.
27845         Assume gettimeofday succeeds, as POSIX requires.
27846         Assime time () succeeds, since other code already does.
27847         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
27848         (timespec_subtract): Remove.
27849         (NANOSLEEP_BUG_WORKAROUND): New constant.
27850         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
27851         things considerably.  Use it only on GNU/Linux hosts, since the
27852         workaround shouldn't be needed elsewhere.
27853
27854 2005-02-24  Bruno Haible  <bruno@clisp.org>
27855
27856         * modules/gettext (Files): Add m4/glibc2.m4.
27857
27858 2005-02-24  Bruno Haible  <bruno@clisp.org>
27859
27860         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
27861         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
27862         * m4/progtest.m4:
27863         Update from GNU gettext 0.14.2.
27864         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
27865
27866 2005-02-24  Bruno Haible  <bruno@clisp.org>
27867
27868         * lib/localcharset.c: Update from GNU gettext 0.14.2.
27869         * lib/config.charset: Update from GNU gettext 0.14.2.
27870
27871 2005-02-24  Bruno Haible  <bruno@clisp.org>
27872
27873         * lib/gettext.h: Update from GNU gettext 0.14.2.
27874
27875 2005-02-23  Simon Josefsson  <jas@extundo.com>
27876
27877         * m4/iconvme.m4: New file.
27878
27879 2005-02-23  Jim Meyering  <jim@meyering.net>
27880
27881         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
27882         change.
27883         Thanks to Bruno Haible for catching it.
27884
27885 2005-02-22  Simon Josefsson  <jas@extundo.com>
27886
27887         * modules/iconvme: New file.
27888
27889         * MODULES.html.sh: Add iconvme.
27890
27891 2005-02-22  Simon Josefsson  <jas@extundo.com>
27892
27893         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
27894
27895 2005-02-22  Simon Josefsson  <jas@extundo.com>
27896
27897         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
27898
27899 2005-02-22  Jim Meyering  <jim@meyering.net>
27900
27901         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
27902         s/ifndef/ifdef/.
27903
27904 2005-02-20  Neil Conway  <neilc@samurai.com>
27905
27906         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
27907         returned by OSX/Darwin if the specified buffer is not large
27908         enough for the hostname.
27909
27910 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
27911
27912         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
27913         pass it to _help, otherwise the latter coredumps trying to
27914         dereference state.root_argp.
27915
27916 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
27917
27918         * modules/chdir-long (Depends-on): Add memrchr.
27919         * modules/memrchr (Files): Add lib/memrchr.h.
27920         (Include): "memrchr.h".
27921
27922 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
27923
27924         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
27925
27926 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
27927
27928         * lib/memrchr.h: New file.
27929         * lib/chdir-long.c: Include it.
27930         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
27931         Don't bother including stddef.h.
27932
27933 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
27934
27935         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
27936         inclusion.
27937         Include <sys/types.h>, for dev_t.
27938         (ME_DUMMY, ME_REMOTE): Move from here....
27939         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
27940         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
27941         Dmitry V. Levin.
27942         Include mountlist.h first, to test the interface.
27943
27944 2005-01-29  Bruno Haible  <bruno@clisp.org>
27945
27946         * lib/progname.c (program_name): Initialize.
27947         Needed when linking statically on MacOS X.
27948
27949 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
27950
27951         Sync from coreutils.
27952         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
27953         (Depends-on): Add c-strtod.
27954         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
27955
27956 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
27957
27958         Sync from coreutils.
27959         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
27960
27961         Remove files that are specific to coreutils.
27962         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
27963
27964 2005-01-28  Bruno Haible  <bruno@clisp.org>
27965
27966         * modules/javacomp: New file.
27967         * MODULES.html.sh (Java): Add javacomp.
27968
27969 2005-01-28  Bruno Haible  <bruno@clisp.org>
27970
27971         * m4/javacomp.m4: New file, from GNU gettext.
27972
27973 2005-01-28  Bruno Haible  <bruno@clisp.org>
27974
27975         * lib/javacomp.sh.in: New file, from GNU gettext.
27976         * lib/javacomp.h: New file, from GNU gettext.
27977         * lib/javacomp.c: New file, from GNU gettext.
27978
27979 2005-01-26  Simon Josefsson  <jas@extundo.com>
27980
27981         * lib/gai_strerror.c: Use GPL in header.
27982
27983 2005-01-26  Bruno Haible  <bruno@clisp.org>
27984
27985         * modules/javaexec: New file.
27986         * MODULES.html.sh (Java): Add javaexec.
27987
27988 2005-01-26  Bruno Haible  <bruno@clisp.org>
27989
27990         * m4/javaexec.m4: New file, from GNU gettext.
27991
27992 2005-01-26  Bruno Haible  <bruno@clisp.org>
27993
27994         * lib/javaexec.sh.in: New file, from GNU gettext.
27995         * lib/javaexec.h: New file, from GNU gettext.
27996         * lib/javaexec.c: New file, from GNU gettext.
27997
27998 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
27999
28000         * modules/lchown (Depends-on): Remove lchown.h
28001
28002 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28003
28004         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
28005         must be defined if the header file was not found, in order
28006         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
28007
28008 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28009
28010         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
28011         initializers for struct pentry_state.
28012         (__argp_error): Check return value of __asprintf
28013         (__argp_failure): Translate error message
28014
28015         * lib/argp-parse.c: Removed braces around the expansion of N_()
28016
28017 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
28018
28019         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
28020         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
28021         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
28022         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
28023         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
28024         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
28025         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
28026         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
28027         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
28028         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
28029         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
28030         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
28031         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
28032         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
28033         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
28034         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
28035         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
28036         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
28037         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
28038         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
28039         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
28040         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
28041         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
28042         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
28043         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
28044         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
28045         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
28046         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
28047         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
28048         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
28049         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
28050         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
28051         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
28052         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
28053         xstrtol.m4, xstrtoumax.m4, yesno.m4:
28054         Use an all-permissive copyright notice, recommended by RMS.
28055
28056 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
28057
28058         * modules/chdir-long (Depends-on): Remove mempcpy.
28059
28060 2005-01-21  Jim Meyering  <jim@meyering.net>
28061
28062         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
28063         same value as for Solaris 9.
28064
28065         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
28066         component length.  This included changing the parameter to be
28067         of type `char *' rather than `char const *'.
28068         * lib/chdir-long.h (chdir_long): Update prototype.
28069
28070         * lib/openat.c (fdopendir, fstatat): New functions.
28071         * lib/openat.h: Include headers required for use of DIR and struct
28072         stat.
28073         [AT_SYMLINK_NOFOLLOW]: Define.
28074         (fdopendir, fstatat): Add prototypes.
28075
28076 2005-01-21  Bruno Haible  <bruno@clisp.org>
28077
28078         * modules/classpath: New file.
28079         * MODULES.html.sh (Java): Add classpath.
28080
28081 2005-01-21  Bruno Haible  <bruno@clisp.org>
28082
28083         * lib/classpath.h: New file, from GNU gettext.
28084         * lib/classpath.c: New file, from GNU gettext.
28085
28086 2005-01-20  Simon Josefsson  <jas@extundo.com>
28087
28088         * modules/version-etc-fsf: New file.
28089
28090 2005-01-20  Simon Josefsson  <jas@extundo.com>
28091
28092         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
28093         * lib/version-etc.c: Remove version_etc_copyright.
28094         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
28095         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
28096
28097 2005-01-20  Simon Josefsson  <jas@extundo.com>
28098
28099         * lib/base64.h (isbase64): Add.
28100
28101         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
28102         using a unsigned prototype, don't inline.
28103         (base64_decode): Use it.
28104
28105 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28106
28107         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
28108         it.
28109
28110 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28111
28112         * lib/save-cwd.c (save_cwd): Remove code to support the case
28113         where fchdir is missing or flaky.
28114
28115 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28116
28117         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
28118
28119 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
28120
28121         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
28122         AC_LIBSOURCES now does this.
28123         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
28124         with new ullong_max module.
28125
28126 2005-01-19  Bruno Haible  <bruno@clisp.org>
28127
28128         * modules/sh-quote: New file.
28129         * MODULES.html.sh (Executing programs): Add sh-quote.
28130
28131 2005-01-19  Bruno Haible  <bruno@clisp.org>
28132
28133         * lib/sh-quote.h: New file, from GNU gettext.
28134         * lib/sh-quote.c: New file, from GNU gettext.
28135
28136 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28137
28138         Merge from coreutils.
28139         * m4/ullong_max.m4: New file.
28140         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
28141         (gl_MACROS): Assume localeconv exists.
28142
28143 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28144
28145         Merge changes from coreutils, as described below in several
28146         changelogs dated today.
28147
28148         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
28149         (O_DIRECTORY): Remove; not needed here, since "." must be
28150         a directory.  All uses removed.
28151         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
28152         universal on Suns, and we also need to test for IRIX.
28153         Revamp code to use 'if' rather than '#if'.
28154         Avoid unnecessary comparison of cwd->desc to 0.
28155
28156         * lib/utimens.c (futimens): Robustify the previous patch, by checking
28157         for known valid error numbers rather than observed invalid ones.
28158
28159 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28160
28161         * modules/ullong_max: New file.
28162
28163         * modules/chdir-long, modules/openat: New files.
28164         * modules/save-cwd (Depends-on): Depend on chdir-long.
28165         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
28166
28167 2005-01-18  Jim Meyering  <jim@meyering.net>
28168
28169         Merge from coreutils.
28170         * m4/chdir-long.m4, m4/openat.m4: New files.
28171         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
28172         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
28173         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
28174         is sane and DOES follow symlinks.  Besides, testing 20 different
28175         systems found no broken chown implementations.
28176         Prompted by a change in rsync's copy of this macro.
28177         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
28178
28179         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
28180
28181         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
28182         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
28183         NULL-means-set-to-current-time semantics.
28184         Remove temporary file immediately, rather than waiting
28185         for configure's at-exit trap code to do it.
28186
28187 2005-01-18  Jim Meyering  <jim@meyering.net>
28188
28189         * lib/version-etc.c (version_etc_copyright): Update copyright date.
28190
28191         * lib/utimens.c (futimens): Account for the fact that futimes
28192         can also fail with errno == ENOSYS or errno == ENOENT.
28193         Patch from Dmitry V. Levin.
28194
28195         Change the name of the robust chdir function from chdir to chdir_long.
28196         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
28197         (restore_cwd): Use chdir_long, not chdir.
28198         * lib/chdir-long.c: Renamed from chdir.c.
28199         * lib/chdir-long.h: Renamed from chdir.h.
28200         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
28201         Hurd.
28202
28203 2005-01-18  Bruno Haible  <bruno@clisp.org>
28204
28205         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
28206         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
28207         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
28208         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
28209         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
28210         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
28211         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
28212         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
28213         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
28214         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
28215         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
28216         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
28217         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
28218         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
28219         Use an all-permissive copyright notice, recommended by RMS.
28220
28221 2005-01-18  Bob Proulx  <bob@proulx.com>
28222
28223         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
28224         simplify offsetof() macro construct to avoid compile failure with
28225         native HP-UX 11.0 ANSI C compiler.
28226
28227 2005-01-17  Bruno Haible  <bruno@clisp.org>
28228
28229         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
28230         redundant because stpncpy.m4 takes care of it.
28231
28232 2005-01-17  Bruno Haible  <bruno@clisp.org>
28233
28234         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
28235
28236 2005-01-17  Bruno Haible  <bruno@clisp.org>
28237
28238         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
28239         used.
28240
28241 2005-01-17  Bruno Haible  <bruno@clisp.org>
28242
28243         * lib/fwriteerror.h (fwriteerror): Change specification to include
28244         fclose.
28245         * lib/fwriteerror.c: Include <stdbool.h>.
28246         (fwriteerror): At the end, close the file stream. Record whether
28247         stdout was already closed.
28248
28249 2005-01-17  Bruno Haible  <bruno@clisp.org>
28250
28251         * lib/execute.c (environ): Declare if needed.
28252         * lib/pipe.c (environ): Likewise.
28253         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
28254
28255 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28256
28257         * modules/argp: Depend on vsnprintf
28258
28259 2005-01-10  Jim Meyering  <jim@meyering.net>
28260
28261         * modules/closeout (Depends-on): Add atexit.
28262
28263 2005-01-06  Bruno Haible  <bruno@clisp.org>
28264
28265         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
28266
28267 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
28268
28269         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
28270         definitions to be after all include files, to avoid collisions.
28271         Problem reported by Bob Proulx.
28272
28273 2005-01-04  Jim Meyering  <jim@meyering.net>
28274
28275         Changes imported from coreutils.
28276         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
28277         as the mkstemp template, use a temporary directory and an
28278         8.3-friendly template to avoid trouble on systems like DJGPP.
28279         Reported by Juan M. Guerrero via Stepan Kasal.
28280         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
28281         close. Remove the temporary directory right away, rather than waiting
28282         for configure's at-exit trap code to do it.
28283         Suggestion from Stepan Kasal.
28284
28285 2005-01-01  Simon Josefsson  <jas@extundo.com>
28286
28287         * gnulib-tool: Print #include directives when --import'ing.
28288
28289 2004-12-28  Simon Josefsson  <jas@extundo.com>
28290
28291         * tests/test-base64.c: Include required header files.  Remove
28292         unused variables.
28293
28294 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
28295
28296         * modules/error (Depends-on): Remove gettext.
28297
28298 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
28299
28300         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
28301         not needed.  This removes a dependency on the gettext module.
28302         [defined _LIBC]: Do not include <libintl.h>; not needed.
28303
28304 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
28305
28306         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
28307         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
28308
28309 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
28310
28311         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
28312         HAVE_DECL_STRTOLD.
28313
28314 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
28315
28316         * modules/getdate (Depends-on): Remove alloca-opt.
28317
28318 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
28319
28320         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
28321
28322 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
28323
28324         * lib/argp-parse.c: Include <stddef.h>.
28325         (alignof, alignto): New macros.
28326         (parser_init): Don't assume that void * is aligned sufficiently
28327         for struct option.
28328
28329         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
28330         need to extend the stack.
28331         (YYINITDEPTH): New macro, so that the initial stack isn't overly
28332         large.
28333
28334 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28335
28336         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
28337
28338 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
28339
28340         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
28341         (2004-10-24) change.  Apparently this was a false alarm.
28342
28343         * modules/getdate: Depend on alloca-opt, not alloca.
28344
28345 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
28346
28347         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
28348         Remove now-obsolete comment about AIX.
28349         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
28350         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
28351         (YYMAXDEPTH): New macro.
28352
28353 2004-12-18  Simon Josefsson  <jas@extundo.com>
28354
28355         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
28356
28357 2004-12-18  Bruno Haible  <bruno@clisp.org>
28358
28359         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
28360
28361 2004-12-18  Bruno Haible  <bruno@clisp.org>
28362
28363         * lib/fatal-signal.c (fatal_signals): Make non-const.
28364         (init_fatal_signals): New function.
28365         (uninstall_handlers, install_handlers): Ignore signals that were set to
28366         SIG_IGN.
28367         (at_fatal_signal): Call init_fatal_signals.
28368         (init_fatal_signal_set): Likewise. Ignore signals that were set to
28369         SIG_IGN.
28370         Reported by Paul Eggert.
28371
28372 2004-12-18  Bruno Haible  <bruno@clisp.org>
28373
28374         * doc/alloca.texi: New file.
28375         * doc/alloca-opt.texi: New file.
28376
28377 2004-12-17  Jim Meyering  <jim@meyering.net>
28378
28379         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
28380         Otherwise, install-sh could exit with improper exit status when
28381         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
28382
28383 2004-12-16  Simon Josefsson  <jas@extundo.com>
28384
28385         * tests/test-base64.c: Add license.
28386
28387 2004-12-15  Stepan Kasal  <address@hidden>
28388
28389         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
28390
28391 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
28392
28393         * modules/getcwd (Files): Add m4/d-ino.m4.
28394         Suggested by Mark D. Baushke.
28395
28396 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
28397
28398         * lib/getdate.y (textint): New member "negative".
28399         (time_zone_hhmm): New function.
28400         Expect 14 shift-reduce conflicts, not 13.
28401         (o_colon_minutes): New rule.
28402         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
28403         (yylex): Set the "negative" member of signed numbers.
28404
28405 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
28406
28407         * doc/getdate.texi (Time of day items, Time zone items):
28408         Describe new formats +00:00, UTC+00:00.
28409
28410 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
28411
28412         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
28413         spurious "-l"s.  Problem reported by Stepan Kasal.
28414
28415 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
28416
28417         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
28418         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
28419
28420 2004-12-04  Simon Josefsson  <jas@extundo.com>
28421
28422         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
28423         Vandoorselaere <yoann@prelude-ids.org>.
28424
28425 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
28426
28427         Changes imported from coreutils.
28428         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
28429         exist.
28430         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
28431
28432 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
28433
28434         Changes imported from coreutils.
28435         * lib/hard-locale.c: Assume <locale.h> exists.
28436         Include "strdup.h".
28437         (GLIBC_VERSION): New macro.
28438         (hard_locale): Assume setlocale exists.
28439         Rewrite to avoid #ifdef.
28440         Use strdup rather than malloc + strcpy.
28441         * lib/human.c: Assume <locale.h> exists.
28442         (human_readable): Assume localeconv exists.
28443
28444 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
28445
28446         * modules/hard-locale (Depends-on): Add strdup.
28447
28448 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
28449
28450         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
28451         convert T2, not T.  (Imported from libc.)
28452
28453 2004-11-30  Simon Josefsson  <jas@extundo.com>
28454
28455         * modules/restrict (License): Change to LGPL.
28456
28457 2004-11-30  Simon Josefsson  <jas@extundo.com>
28458
28459         * m4/restrict.m4: Add copyright and copying conditions.
28460
28461 2004-11-30  Simon Josefsson  <jas@extundo.com>
28462
28463         * m4/base64.m4: New file.
28464
28465 2004-11-30  Simon Josefsson  <jas@extundo.com>
28466
28467         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
28468         base64.
28469
28470         * tests/test-base64.c: New file.
28471
28472         * modules/base64: New file.
28473
28474 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
28475
28476         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
28477         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
28478
28479         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
28480
28481 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
28482
28483         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
28484         (__getcwd.c): Don't restore errno; glibc doesn't.
28485         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
28486         first, falling back to our code only if its results look suspicious.
28487         Ensure that the resulting buffer is only as large as necessary.
28488
28489         * lib/readutmp.c: Include readutmp.h first.
28490         Include <errno.h>, since readutmp.h no longer does that.
28491         * lib/readutmp.h: Don't include <errno.h>,
28492         <sys/param.h>, <time.h>; not needed to establish interface.
28493         (errno): Remove decl.
28494         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
28495         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
28496         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
28497
28498 2004-11-28  Simon Josefsson  <jas@extundo.com>
28499
28500         * lib/base64.h, base64.c: New file.
28501
28502 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
28503
28504         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
28505
28506 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
28507
28508         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
28509         (Depends-on): Remove pathmax, same.  Add mempcpy.
28510         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
28511         (Makefile.am): Append getcwd.h to lib_SOURCES.
28512         (Include): Add getcwd.h.
28513         (Maintainer): Change from Jim Meyering to "all, glibc",
28514         since getdate now uses intended-for-glibc code.
28515         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
28516         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
28517
28518 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
28519
28520         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
28521         HP's ANSI C compiler.
28522         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
28523         Declaring int functions causes warnings on some modern systems and
28524         shouldn't be needed to compile on ancient ones.
28525         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
28526         defined.
28527
28528         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
28529         with the following changes.
28530         (__set_errno): Parenthesize properly.
28531         Include <stdbool.h>.
28532         (MIN, MAX, MATCHING_INO): New macros.
28533         (__getcwd): Define with prototype, not K&R form.
28534         Use heuristics to allocate default buffer on stack if possible.
28535         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
28536         behavior, and to avoid the PATH_MAX limit when computing
28537         ../../../../...
28538         Use MATCHING_INO to compare inode number to file.
28539         Check for arithmetic overflow in size calculations.
28540         Fix bug in reallocation of dot array that caused getcwd to fail
28541         on directories nested deeper than 75.
28542         Be more careful about saving errno on error.
28543         Do not use realloc; use only free+malloc, as this is a bit
28544         more flexible and avoids a needless copy operation.
28545         Do not inspect st_dev and st_ino for symbolic links; POSIX
28546         doesn't specify the latter.
28547         Check for closedir errors.
28548         Avoid needless casts.
28549         Use "#ifdef weak_alias" around weak_alias, to be like other
28550         glibc code.
28551         The following changes to getcwd.c have effect only when used in
28552         gnulib; they have no effect inside glibc proper.
28553         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
28554         as alloca isn't used.
28555         (alloca, __alloca): Likewise.
28556         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
28557         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
28558         unconditionally, as gnulib assumes C89 or better.
28559         Do not include <sys/param.h>.
28560         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
28561         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
28562         better.
28563         (NULL) [!defined NULL]: Remove; we assume C89 or better.
28564         Include <dirent.h> in a way that is compatible with modern Autoconf.
28565         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
28566         New macros, if not already defined.
28567         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
28568         Use "_LIBC", not "defined _LIBC", for consistency.
28569         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
28570         a mempcpy module.
28571         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
28572         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
28573         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
28574         credit only to Jim Meyering and adjust the copyright dates.
28575         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
28576         <stdlib.h>, <unistd.h>, "pathmax.h".
28577         Instead, include "xgetcwd.h" (first) and "getcwd.h".
28578         (INITIAL_BUFFER_SIZE): Remove.
28579         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
28580
28581 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
28582
28583         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
28584         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
28585         Use the _ONCE methods, for efficiency.
28586         Check for fcntl.h.  In test program, include <errno.h>
28587         and <fcntl.h> if available.  Remove old K&R cruft from
28588         test program.  Check for common errors in GNU/Linux,
28589         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
28590         don't do AC_LIBOBJ, as that's getcwd.m4's job.
28591         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
28592         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
28593         name accordingly.
28594         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
28595         accommodate new getcwd.c.
28596         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
28597         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
28598         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
28599         that's all we need now.
28600
28601 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28602
28603         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
28604         argp-parse.c depends on getopt internals, that means we should
28605         always use our getopt, to be on the safe side.
28606         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
28607         order not to spoil the result of an eventual previous invocation
28608         of gl_GETOPT_SUBSTITUTE.
28609
28610 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28611
28612         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
28613         redefinition warnings. To avoid them, include the defines
28614         in `#if !defined __need_getopt ... #endif'. The only place
28615         where __getopt_argv_const is used is in definitions
28616         of getopt_long and getopt_long_only below, which are as well
28617         protected by `#ifndef __need_getopt'.
28618         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
28619         __need_getopt after including <stdio.h> and <unistd.h> These
28620         headers might have defined it.
28621
28622 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
28623
28624         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
28625
28626 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
28627
28628         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
28629         (futimens): New function, which uses futimes if available.
28630         (futimens, utimens): Support timespec==NULL, with same semantics
28631         as utime and utimens.
28632         * lib/utimens.h (futimens): New decl.
28633
28634 2004-11-23  Jim Meyering  <jim@meyering.net>
28635
28636         * lib/getopt_.h: Remove trailing blanks.
28637
28638 2004-11-23  Jim Meyering  <jim@meyering.net>
28639
28640         * lib/__fpending.c: Add comment.
28641
28642 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
28643
28644         * modules/canonicalize (Depends-on): Add xreadlink.
28645         Problem reported by James Youngman.
28646
28647 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
28648
28649         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
28650         New macros.
28651         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
28652         optopt): Use them instead of invoking ## directly; otherwise, the
28653         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
28654
28655 2004-11-19  Bruno Haible  <bruno@clisp.org>
28656
28657         * lib/strtok_r.c: Move comments from here...
28658         * lib/strtok_r.h: ... to here.
28659
28660 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
28661
28662         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
28663         implementations that mishandle size_t overflow.
28664
28665 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
28666
28667         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
28668         might fail.  Problem reported by Yoann Vandoorselaere.
28669         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
28670         implementations that mishandle size_t overflow.
28671
28672 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28673
28674         * modules/canon-host (Depends-on): Add strdup.
28675
28676 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28677
28678         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
28679
28680 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28681
28682         * lib/canon-host.c: Include "strdup.h".
28683         (canon_host): Use getaddrinfo if available, so that IPv6 works.
28684         Use strdup instead of malloc/strcpy to duplicate strings.
28685
28686         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
28687         (human_space_before_unit): New constant.
28688         * lib/human.c (human_readable): Support it.
28689
28690         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
28691         (xgetcwd): Set errno correctly when failing.
28692         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
28693         the failure is actually due to a PATH_MAX problem.
28694
28695         Further getopt changes to make it more likely that glibc will
28696         buy the changes back.
28697         * lib/getopt.c (POSIXLY_CORRECT): New constant.
28698         (getopt): Use it, so to preserve glibc semantic
28699         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
28700         when compiling for libc.
28701         * lib/getopt_.h (__getopt_argv_const): Bring it back.
28702         (getopt_long, getopt_long_only): Use it.
28703
28704         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
28705         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
28706         (getopt): Argv is now char * const *, as per standard.
28707         (_getopt_internal_r, _getopt_internal): Argv is now char **,
28708         not char *__getopt_argv_const *.
28709         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
28710         _getopt_long_only_r): Likewise.
28711         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
28712         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
28713         _getopt_long_r, _getopt_long_only_r): Likewise.
28714         * lib/getopt_.h (__getopt_argv_const): Remove.
28715         (getopt): Argv is now char * const *, as per standard.
28716
28717         * lib/getdate.y (tORDINAL): New token.
28718         (day, relunit): Allow it for relative times.
28719         (relative_time_table): Use tORDINAL for ordinals.
28720
28721 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
28722
28723         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
28724         Document that "second" isn't allowed as an ordinal number.
28725
28726 2004-11-16  Jim Meyering  <jim@meyering.net>
28727
28728         * modules/closeout (Depends-on): Add fpending.
28729
28730 2004-11-15  Jim Meyering  <jim@meyering.net>
28731
28732         * lib/closeout.c: Include "__fpending.h" once again.
28733         Include <stdbool.h>.
28734         (close_stdout): Don't fail just because stdout was closed initially,
28735         since some programs don't write to stdout in the normal course of
28736         operation (other than --version and --help), and we don't want this
28737         function to make e.g. `touch file >&-' fail.
28738         But do fail if it was closed and someone has tried to write to it.
28739         E.g., `printf foo >&-' must fail.
28740
28741 2004-11-13  Jim Meyering  <jim@meyering.net>
28742
28743         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
28744
28745 2004-11-12  Simon Josefsson  <jas@extundo.com>
28746
28747         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
28748         small doc fix is still pending.
28749
28750 2004-11-11  Simon Josefsson  <jas@extundo.com>
28751
28752         * modules/strtok_r: New file.
28753
28754         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
28755         strtok_r.
28756
28757 2004-11-11  Simon Josefsson  <jas@extundo.com>
28758
28759         * m4/strtok_r.m4: New file.
28760
28761         * m4/getopt.m4: Replace opterr.
28762
28763 2004-11-11  Simon Josefsson  <jas@extundo.com>
28764
28765         * lib/strtok_r.h, strtok_r.c: New file.
28766
28767 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
28768
28769         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
28770         of replacing opterr, getopt, etc.  This should handle the
28771         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
28772
28773 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
28774
28775         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
28776         we can stop lying to compilers about the constness of argv when we
28777         are compiled outside glibc.
28778         (getopt, getopt_long, getopt_long_only): Use it.
28779         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
28780         _getopt_internal, getopt): Likewise.
28781         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
28782         _getopt_long_only_r): Likewise.
28783         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
28784         _getopt_long_r, _getopt_long_only_r): Likewise.
28785
28786         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
28787         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
28788         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
28789         the other external symbols.
28790         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
28791         declaration, since the above renaming now works around collisions.
28792
28793 2004-11-11  Jim Meyering  <jim@meyering.net>
28794
28795         * lib/linebreak.c: Remove trailing blanks.
28796         * lib/alloca_.h: Likewise.
28797         * lib/acosl.c: Likewise.
28798         * lib/euidaccess.c: Likewise.
28799         * lib/allocsa.h: Likewise.
28800
28801 2004-11-10  Simon Josefsson  <jas@extundo.com>
28802
28803         * m4/getaddrinfo.m4: New file.
28804
28805 2004-11-10  Simon Josefsson  <jas@extundo.com>
28806
28807         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
28808
28809 2004-11-10  Simon Josefsson  <jas@extundo.com>
28810
28811         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
28812         getaddrinfo.
28813
28814         * modules/getaddrinfo: New file.
28815
28816 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
28817
28818         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
28819
28820 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
28821
28822         * lib/mktime.c (SHR): New macro, which is a portable
28823         substitute for >> that should work even on Crays.
28824         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
28825         Problem reported by Mark D. Baushke in
28826         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
28827         * lib/getdate.y (SHR): Likewise.
28828         (tm_diff): Use it.
28829         * lib/strftime.c (SHR): Likewise.
28830         (tm_diff): Use it.
28831         * lib/quotearg.c (struct quoting_options): Use unsigned int for
28832         quote_these_too, so that right shifts are well defined.  All uses
28833         changed.
28834
28835 2004-11-10  Jim Meyering  <jim@meyering.net>
28836
28837         Ensure that no close failure goes unreported.
28838         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
28839         return early when it seems there's nothing to flush.
28840         Don't include __fpending.h.
28841
28842 2004-11-10  Jim Meyering  <jim@meyering.net>
28843
28844         * modules/closeout (Depends-on): Remove fpending.
28845
28846 2004-11-10  Jim Meyering  <jim@meyering.net>
28847
28848         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
28849
28850 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
28851
28852         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
28853         gl_FUNC_STRFTIME.
28854         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
28855         and AC_REQUIRE when possible, to avoid duplicate checks.
28856         Check for <wchar.h>.
28857
28858 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
28859
28860         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
28861
28862 2004-11-09  Bruno Haible  <bruno@clisp.org>
28863
28864         * m4/sockpfaf.m4: New file.
28865
28866 2004-11-05  Bruno Haible  <bruno@clisp.org>
28867
28868         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
28869         Reported by Mark D. Baushke <mdb@cvshome.org>.
28870
28871 2004-11-04  Bruno Haible  <bruno@clisp.org>
28872
28873         2004-09-11  Bruno Haible  <bruno@clisp.org>
28874                 * allocsa.valgrind: New file.
28875         2004-02-06  Bruno Haible  <bruno@clisp.org>
28876                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
28877                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
28878                 Reported by Christopher Seip <chris.seip@hp.com>.
28879
28880 2004-11-04  Bruno Haible  <bruno@clisp.org>
28881
28882         * modules/allocsa (Files): Add lib/allocsa.valgrind.
28883         (Makefile.am): Distribute it.
28884
28885 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
28886
28887         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
28888         with errno == ERANGE if the buffer is too small.
28889         Problem reported by Mark D. Baushke.
28890
28891 2004-11-03  Albert Chin  <china@thewrittenword.com>
28892             Paul Eggert  <eggert@cs.ucla.edu>
28893
28894         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
28895         equivalent, substitute $ac_type for equivalent type rather than
28896         blindly using uint32_t *always* which won't work if uint32_t is not
28897         available.  Define _UINT32_T to work around typedef of uint32_t if
28898         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
28899         2.5.1.
28900
28901 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
28902
28903         * m4/jm-macros.m4: Sync from coreutils.
28904         (gl_MACROS): Check for mbrlen, for pathchk.
28905         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
28906
28907 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
28908
28909         * lib/xreadlink.c (MAXSIZE): New macro.
28910         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
28911         size does not exceed MAXSIZE.  Avoid cast.
28912         As suggested by Mark D. Baushke in
28913         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
28914         if readlink fails with buffer size just under MAXSIZE, try again
28915         with MAXSIZE.
28916
28917 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
28918
28919         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
28920
28921 2004-11-02  Derek R. Price  <derek@ximbiot.com>
28922         and  Paul Eggert  <eggert@cs.ucla.edu>
28923
28924         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
28925         (get_date): Overparenthesize to avoid GCC warning.
28926
28927 2004-11-02  Bruno Haible  <bruno@clisp.org>
28928
28929         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
28930         returns void.
28931
28932 2004-11-02  Bruno Haible  <bruno@clisp.org>
28933
28934         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
28935         function returns void.
28936
28937 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
28938
28939         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
28940         fflush_unlocked, flockfile, funlockfile, funlockfile,
28941         fputs_unlocked, putc_unlocked.
28942
28943 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
28944
28945         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
28946         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
28947         already declared.
28948
28949 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
28950
28951         * modules/getdate (Files): Add doc/getdate.texi.
28952         (Depends-on): Add setenv, xalloc.
28953
28954 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
28955
28956         * lib/getdate.y: Add support for TZ="foo" within a date string.
28957         Fix some bugs near time_t boundaries.  Reject dates with
28958         out-of-range components, e.g., "Sept 31".
28959         Include <stdlib.h>, "setenv.h", "xalloc.h".
28960         (ISDIGIT_LOCALE): Remove; unused.
28961         Note that the TZ and time functions used here are not reentrant.
28962         (mktime_ok, get_tz): New functions.
28963         (TZBUFSIZE): New constant.
28964         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
28965         This requires that we sometimes generate our own TZ="XXX..." setting.
28966
28967 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
28968
28969         * doc/getdate.texi: New file, from coreutils with modifications for
28970         the new TZ parsing.
28971
28972 2004-10-27  Derek R. Price  <derek@ximbiot.com>
28973
28974         * lib/mktime.c (not_equal_tm): Remove redundant check.
28975
28976 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
28977
28978         * modules/regex (lib_SOURCES): Add regex.c.
28979         Reported by James Youngman in
28980         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
28981
28982 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
28983
28984         * lib/getdate.y: Use Bison 1.875 features, and some minor
28985         code cleanups.  This change does not affect semantics.
28986         Don't include <stdlib.h>; no longer needed.
28987         Don't include unlocked-io.h; only the "#if TEST" code uses
28988         stdio, and performance isn't crucial there.
28989         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
28990         Bison 1.875 features as described below.
28991         All uses of "PC." replaced by "pc->".
28992         (YYSTYPE): Add a forward declaration.
28993         (yylex, yyerror): Use full prototypes in forward decls.
28994         Use "%pure-parser" rather than obsolescent "%pure_parser".
28995         Use %parse-param and %lex-param instead of obsolescent
28996         YYPARSE_PARAM and YYLEX_PARAM.
28997         (meridian_table, month_and_day_table, time_units_table,
28998         relative_time_table, time_zone_table, military_table,
28999         lookup_zone, lookup_word, get_date):
29000         Use NULL instead of 0 where appropriate.
29001         (to_hour): Avoid abort (), to avoid a dependency on
29002         stdlib.h.
29003         (yyerror, yylex): Now accepts parser_control * arg.
29004         (main) [TEST]: Use '\0' rather than 0 for char.
29005
29006 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29007
29008         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
29009
29010 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29011
29012         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
29013         It's now the caller's responsibility to handle the case where
29014         !HAVE_GETPAGESIZE && !defined getpagesize.
29015
29016         * lib/mktime.c (leapyear): Arg is long int, not int.
29017
29018 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
29019
29020         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
29021
29022 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
29023
29024         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
29025         missing.  Problem reported by James Youngman.
29026
29027 2004-10-16  Simon Josefsson  <jas@extundo.com>
29028
29029         * gnulib-tool: Fix comments.  Fix parse problem.
29030         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
29031
29032 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
29033
29034         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
29035         implementation of getopt_long.  Problem reported by Alexander Taler in:
29036         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
29037
29038 2004-10-15  Bruno Haible  <bruno@clisp.org>
29039
29040         * gnulib-tool: Untabify. Initialize supplied_libname.
29041         (func_usage): More homogenous output.
29042         (func_modules_transitive_closure, func_modules_to_filelist,
29043         func_emit_lib_Makefile_am): New functions.
29044         (func_import): New function, extracted from big case statement. Use
29045         func_get_license, func_modules_transitive_closure,
29046         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
29047         opt_lgpl. Don't use test -a, as it's not portable.
29048         (func_create_testdir): Use func_modules_transitive_closure,
29049         func_modules_to_filelist, func_emit_lib_Makefile_am.
29050
29051 2004-10-15  Bruno Haible  <bruno@clisp.org>
29052
29053         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
29054
29055 2004-10-15  Bruno Haible  <bruno@clisp.org>
29056
29057         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
29058         the portions belonging to each module.
29059         Suggested by Derek Robert Price <derek@ximbiot.com>.
29060
29061 2004-10-12  Simon Josefsson  <jas@extundo.com>
29062
29063         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
29064         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
29065         to real functions.
29066
29067 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29068
29069         * modules/vsnprintf: New file.
29070
29071 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29072
29073         * m4/vsnprintf.m4: New file.
29074
29075 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29076
29077         * lib/vsnprintf.h: New file.
29078         * lib/vsnprintf.c: New file.
29079
29080 2004-10-11  Bruno Haible  <bruno@clisp.org>
29081
29082         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
29083         vsnprintf.
29084
29085 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
29086
29087         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
29088
29089 2004-10-07  Bruno Haible  <bruno@clisp.org>
29090
29091         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
29092         fits into the provided buffer.
29093
29094 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
29095
29096         * lib/diacrit.c, diacrit.h: Add GPL notice.
29097
29098         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
29099         notice.
29100         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
29101         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
29102         This avoids a potential constant-folding bug.
29103
29104 2004-10-05  Bruno Haible  <bruno@clisp.org>
29105
29106         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
29107         for the declaration of strsep.
29108
29109 2004-10-05  Bruno Haible  <bruno@clisp.org>
29110
29111         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
29112
29113 2004-10-04  Simon Josefsson  <jas@extundo.com>
29114
29115         * modules/memmem: New file.
29116         * tests/test-memmem.c: New file.
29117         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
29118
29119 2004-10-04  Simon Josefsson  <jas@extundo.com>
29120
29121         * m4/memmem.m4: New file.
29122
29123 2004-10-04  Simon Josefsson  <jas@extundo.com>
29124
29125         * lib/memmem.h: New file.
29126         * lib/memmem.c: New file, taken from glibc.
29127
29128 2004-10-04  Simon Josefsson  <jas@extundo.com>
29129
29130         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
29131         '#ifdef USE_UNLOCKED_IO'.
29132
29133 2004-10-04  Simon Josefsson  <jas@extundo.com>
29134
29135         * config/srclist.txt: Add memmem from glibc.
29136
29137 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29138
29139         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
29140
29141         * modules/argmatch, modules/argp, modules/closeout, modules/error,
29142         modules/exclude, modules/getdate, modules/getline,
29143         modules/getndelim2, modules/getpass, modules/getpass-gnu,
29144         modules/getusershell, modules/linebuffer, modules/md5,
29145         modules/mountlist, modules/posixtm, modules/readtokens,
29146         modules/readutmp, modules/regex, modules/sha1,
29147         modules/version-etc, modules/yesno:
29148         Remove dependency on unlocked-io.
29149
29150 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29151
29152         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
29153
29154         * m4/unlocked-io.m4: Add copyright notice.
29155         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
29156
29157 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29158
29159         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
29160         * lib/xmalloc.c (xmemdup): Likewise.
29161         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
29162         XFREE): Remove these long-obsolescent macros.
29163         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
29164         * lib/xstrdup.c: Remove.
29165
29166         * lib/regex.c (re_comp): Cast gettext return value to char *,
29167         Problem reported by Martin Neitzel via Mark D. Baushke.
29168
29169 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29170
29171         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
29172         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
29173         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
29174         regex.c, sha1.c, version-etc.c, yesno.c:
29175         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
29176         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
29177         the includer's responsibility.
29178
29179         Sync from coreutils.
29180
29181         * lib/modechange.c (mode_compile): Don't decrement a pointer that
29182         points to the start of a string, as the C Standard says the
29183         resulting behavior is undefined.
29184
29185         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
29186         simple -> simple_backups, numbered_existing ->
29187         numbered_existing_backups, numbered -> numbered_backups
29188         to avoid shadowing problems.  All uses changed.
29189         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
29190         * lib/backupfile.c (check_extension, numbered_backup):
29191         Rename locals to avoid shadowing 'basename'.
29192         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
29193         once.
29194
29195         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
29196         * lib/.cvsignore: Add getopt.h.
29197
29198 2004-10-04  Bruno Haible  <bruno@clisp.org>
29199
29200         * modules/README: New file.
29201         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
29202         not a module.
29203
29204 2004-10-02  Jim Meyering  <jim@meyering.net>
29205
29206         * lib/dirfd.h, getpagesize.h: Add copyright notice.
29207
29208 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29209
29210         * modules/strsep: New file.
29211
29212 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29213
29214         * m4/strsep.m4: New file.
29215
29216 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29217
29218         * lib/strsep.h: New file.
29219         * lib/strsep.c: New file.
29220
29221 2004-10-01  Simon Josefsson  <jas@extundo.com>
29222
29223         * lib/snprintf.c (snprintf): Handle size==0.
29224
29225 2004-10-01  Simon Josefsson  <jas@extundo.com>
29226             Bruno Haible  <bruno@clisp.org>
29227
29228         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
29229         (snprintf): Declare 'args'.
29230
29231 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
29232
29233         * lib/snprintf.c: Remove comments as to why each header is needed.
29234
29235 2004-10-01  Bruno Haible  <bruno@clisp.org>
29236
29237         * MODULES.html.sh: Add strsep.
29238
29239 2004-09-30  Simon Josefsson  <jas@extundo.com>
29240
29241         * modules/snprintf: New file.
29242
29243 2004-09-30  Simon Josefsson  <jas@extundo.com>
29244
29245         * m4/snprintf.m4: New file.
29246
29247 2004-09-30  Simon Josefsson  <jas@extundo.com>
29248
29249         * lib/snprintf.h, lib/snprintf.c: New files.
29250
29251 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29252
29253         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
29254         (hol_entry_help): Never translate an empty string.
29255         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
29256         * lib/argp.h (OPTION_NO_TRANS): New option.
29257
29258 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
29259
29260         * modules/argp (Maintainer): Replace Simon Josefsson
29261         by Sergey Poznyakoff.
29262
29263 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
29264
29265         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
29266         changes merged back into glibc.
29267
29268 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
29269
29270         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
29271
29272 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
29273
29274         * lib/xvasprintf.c: Include xalloc.h.
29275         (xvasprintf): Use xalloc_die, not xmalloc_die.
29276
29277 2004-09-29  Bruno Haible  <bruno@clisp.org>
29278
29279         * modules/alloca-opt: New file, derived from modules/alloca.
29280         * modules/allocsa: Depend on alloca-opt instead of alloca.
29281         * modules/setenv: Likewise.
29282         * modules/vasnprintf: Likewise.
29283         * MODULES.html.sh: Add alloca-opt.
29284
29285 2004-09-28  Simon Josefsson  <jas@extundo.com>
29286
29287         * gnulib-tool: New parameter --lgpl, to asseert that modules are
29288         LGPL, and to replace license template from GPL to LGPL.
29289
29290 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
29291
29292         * modules/dummy: Change license to LGPL.
29293
29294 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
29295
29296         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
29297
29298 2004-09-24  Simon Josefsson  <jas@extundo.com>
29299
29300         * modules/minmax (License): Change from GPL to LGPL.
29301
29302 2004-09-23  Simon Josefsson  <jas@extundo.com>
29303
29304         * gnulib-tool (--import): Typo.
29305
29306 2004-09-23  Simon Josefsson  <jas@extundo.com>
29307
29308         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
29309
29310 2004-09-22  Bruno Haible  <bruno@clisp.org>
29311
29312         * modules/*: Add 'License' field.
29313         * gnulib-tool: Accept --extract-license option.
29314         (func_get_license): New function.
29315
29316 2004-09-21  Bruno Haible  <bruno@clisp.org>
29317
29318         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
29319         Reported by Simon Josefsson.
29320
29321 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
29322
29323         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
29324         gl_AC_TYPE_LONG_LONG.
29325
29326 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
29327
29328         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
29329
29330 2004-09-18  Simon Josefsson  <jas@extundo.com>
29331         and  Paul Eggert  <eggert@cs.ucla.edu>
29332
29333         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
29334         calls with autoreconf.  Define GL_LIB.
29335
29336 2004-09-14  Karl Berry  <karl@gnu.org>
29337
29338         * config/srclist.txt: unsync setenv.c, sigh.
29339
29340 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
29341
29342         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
29343         Problem reported by Bruno Haible in:
29344         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
29345
29346 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
29347
29348         * config/srclist.txt: Comment out argp-pvh.c.
29349
29350 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
29351
29352         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
29353         in case some system header has #define'd it.  Problem reported by
29354         Soeren D. Schulze in
29355         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
29356
29357 2004-09-09  Karl Berry  <karl@gnu.org>
29358
29359         * regex.[ch]: delete from the root.  These were supposed to be
29360                 synced with emacs cvs, but this has not happened for about
29361                 a year, and anyway nothing else uses emacs regex.[ch].
29362                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
29363                 lib/regex[.ch] is untouched.
29364
29365 2004-09-09  Bruno Haible  <bruno@clisp.org>
29366
29367         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
29368
29369 2004-09-09  Bruno Haible  <bruno@clisp.org>
29370
29371         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
29372         modifications.
29373         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
29374
29375 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
29376
29377         * modules/xvasprintf: New file.
29378         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
29379
29380 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
29381
29382         * lib/xvasprintf.h: New file.
29383         * lib/xvasprintf.c: New file.
29384         * lib/xasprintf.c: New file.
29385
29386 2004-09-08  Bruno Haible  <bruno@clisp.org>
29387
29388         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
29389
29390 2004-09-08  Bruno Haible  <bruno@clisp.org>
29391
29392         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
29393         length is > INT_MAX.
29394         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
29395         more.
29396
29397 2004-09-08  Bruno Haible  <bruno@clisp.org>
29398
29399         * lib/stdint_.h: New file, taken from GNU clisp.
29400
29401 2004-09-08  Bruno Haible  <bruno@clisp.org>
29402             Oskar Liljeblad  <oskar@osk.mine.nu>
29403
29404         * modules/stdint: New file.
29405         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
29406
29407 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29408
29409         Import from coreutils.
29410         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
29411         strings on unbounded length.  alloca's performance benefits aren't
29412         that important here.
29413         (V_STRDUP): Remove.
29414         (parse_with_separator): New function, with most of the internals
29415         of the old parse_user_spec.  Allow user to omit both user and group,
29416         for compatibility with FreeBSD.
29417         Clone only the user name, not the entire spec.
29418         Do not set *uid, *gid unless entirely successful.
29419         Avoid memory leak in some failing cases.
29420         Fix regression for USER.GROUP reported by Dmitry V. Levin in
29421         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
29422         (parse_user_spec): Rewrite to use parse_with_separator.
29423
29424 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29425
29426         * modules/userspec: Don't depend on alloca.
29427
29428 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
29429
29430         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
29431
29432 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
29433
29434         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
29435         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
29436         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
29437
29438 2004-08-16  Simon Josefsson  <jas@extundo.com>
29439
29440         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
29441         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
29442         Add --dry-run for --import.
29443         Let user provided command line parameters override configure.ac
29444         settings.
29445
29446 2004-08-12  Simon Josefsson  <jas@extundo.com>
29447
29448         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
29449         as discussed with Paul Eggert in threads rooted at
29450         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
29451         and
29452         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
29453         Before, the test was empty, and relied on ELIDE_CODE in source
29454         code.)
29455         (gl_PREREQ_GETOPT): New macro.
29456         (gl_GETOPT): Use them.
29457
29458 2004-08-12  Simon Josefsson  <jas@extundo.com>
29459
29460         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
29461         * lib/getopt_.h: Renamed from getopt.h.
29462
29463 2004-08-12  Simon Josefsson  <jas@extundo.com>
29464
29465         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
29466         Change default library name from libfoo to libgnu.
29467         Now, if you have a configure.ac that says:
29468                 gl_SOURCE_BASE(gl)
29469                 gl_M4_BASE(gl/m4)
29470                 gl_MODULES(error getopt etcetera)
29471                 gl_INIT
29472         you can import all you need by running:
29473                 ../gnulib/gnulib-tool --import
29474
29475         * modules/getopt (Files): Rename getopt.h to getopt_.h.
29476         (Makefile.am): Rewrite, use logic from argz.
29477         (Include): Use <getopt.h> instead of "getopt.h".
29478
29479 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
29480
29481         * modules/argp (Files): Add m4/unlocked-io.m4.
29482         (Depends-on): Add extensions.
29483
29484 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
29485
29486         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
29487         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
29488         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
29489         Check for program_invocation_name, program_invocation_short_name,
29490         flockfile, funlockfile, features.h, _getopt_long_only_r.
29491
29492 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
29493
29494         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
29495         its complicated substitute.
29496         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
29497         and program_invocation_name.
29498         (__argp_basename) [!_LIBC]: Remove; the only use was
29499         replaced by its body.
29500         (__argp_short_program_name): Change condition from
29501         !defined __argp_short_program_name to
29502         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
29503         to match argp-namefrob.h.
29504         (__argp_failure): Don't assume strerror_r returns char *.
29505         * lib/argp-parse.c (N_): Define unconditionally.
29506         (argp_default_options): Fill out initializers with 0 to avoid
29507         gcc warnings.
29508
29509 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
29510
29511         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
29512         getopt1.c.
29513
29514 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
29515
29516         Merge from coreutils.
29517
29518         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
29519
29520         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
29521         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
29522
29523 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
29524
29525         Merge from coreutils.
29526
29527         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
29528         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
29529         for Reliant Unix 5.43.
29530
29531         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
29532         (union fooround): Use uintmax_t, not long int.
29533         The rest is a merge from libc:
29534         [defined _LIBC]: Include <shlib-compat.h>.
29535         (_obstack) [defined _LIBC]: Remove after 2.3.4.
29536
29537         * lib/settime.c (settime): Recode to avoid warning with
29538         Sun Forte C 6U2.
29539
29540         * lib/strverscmp.c: Convert to UTF-8.
29541
29542 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
29543
29544         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
29545         m4/uintmax_t.m4.
29546
29547 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
29548
29549         * modules/xalloc-die: New file.
29550         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
29551
29552         * modules/md5 (Files): Add m4/uint32_t.m4.
29553         * modules/sha1: Renamed from modules/sha.
29554         (Files):
29555         Rename lib/sha.h to lib/sha1.h.
29556         Rename lib/sha.c to lib/sha1.c.
29557         Rename m4/sha.m4 to m4/sha1.m4.
29558         (lib_SOURCES): Likewise.
29559         (configure.ac): Rename gl_SHA to gl_SHA1.
29560         (Include): sha.h -> sha1.h.
29561
29562 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
29563
29564         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
29565         * m4/sha1.m4: Renamed from sha.m4.
29566         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
29567
29568 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
29569
29570         * lib/obstack.h (obstack_empty_p):
29571         Don't assume that chunk->contents is suitably aligned.
29572         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
29573         Likewise. Problem reported by Benno in
29574         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
29575
29576         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
29577         readable.  This could be improved further but it'd take some work.
29578
29579 2004-08-08  Simon Josefsson  <jas@extundo.com>
29580
29581         * modules/xgethostname (Depends-on): Remove exit and error (not
29582         used).
29583
29584         * modules/getpass-gnu: Add getpass.h.
29585         (Depends-on): Add stdbool.
29586         * modules/getpass: Add getpass.h.
29587
29588 2004-08-08  Simon Josefsson  <jas@extundo.com>
29589
29590         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
29591         Check getpass declaration.
29592
29593 2004-08-08  Simon Josefsson  <jas@extundo.com>
29594
29595         * lib/xgethostname.c: Don't include error.h (not used).
29596
29597         * lib/getpass.h: Add.
29598         * lib/getpass.c: Include getpass.h first.
29599
29600 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
29601
29602         * lib/xalloc-die.c: New file.
29603         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
29604         All uses removed.
29605         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
29606         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
29607         xalloc-die.c.
29608         (_, N_, xalloc_die): Move to xalloc-die.c.
29609         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
29610         so that we needn't mess with xalloc_msg_memory_exhausted.
29611
29612         * lib/sha1.h: Renamed from sha.h.
29613         (SHA1_H): Renamed from _SHA_H.
29614         (sha1_ctx): Renamed from sha_ctx.
29615         (sha1_init_ctx): Renamed from sha_init_ctx.
29616         (sha1_process_block): Renamed from sha_process_block.
29617         (sha1_process_bytes): Renamed from sha_process_bytes.
29618         (sha1_finish_ctx): Renamed from sha_finish_ctx.
29619         (sha1_read_ctx): Renamed from sha_read_ctx.
29620         (sha1_stream): Renamed from sha_stream.
29621         (sha1_buffer): Renamed from sha_buffer.
29622         * lib/sha1.c: Likewise; renamed from sha.c.
29623         Do not include <sys/types.h>.
29624         Include <stddef.h> rather than <stdlib.h>.
29625
29626 2004-08-08  Bruno Haible  <bruno@clisp.org>
29627
29628         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
29629         FILESYSTEM_PREFIX_LEN.
29630         * lib/progreloc.c: Likewise.
29631         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
29632
29633 2004-08-06  Simon Josefsson  <jas@extundo.com>
29634
29635         * modules/progname (Depends-on): Don't depend on stdbool.
29636
29637 2004-08-06  Simon Josefsson  <jas@extundo.com>
29638
29639         * modules/getsubopt: New file.
29640         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29641         getsubopt.
29642
29643 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
29644
29645         More merge from coreutils.
29646
29647         * m4/utimens.m4, m4/utimecmp.m4: New files.
29648         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
29649         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
29650         prereq.m4, sha.m4: Import changes from coreutils.
29651
29652 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
29653
29654         More merge from coreutils.
29655         * modules/raise, modules/readtokens0, modules/utimens:
29656         * modules/utimecmp, module/xnanosleep: New files.
29657         * modules/strftime: Add lib/strftime.h.
29658         Change include from <time.h> to "strftime.h".
29659         * modules/yesno: Add lib/yesno.h.
29660         * modules/backupfile: Remove lib/addext.c.
29661         * modules/euidaccess: Add stat-macros.h.
29662         * modules/canonicalize, modules/euidaccess,
29663         modules/filemode, modules/lchown, modules/makepath,
29664         modules/rmdir, modules/stat: Likewise.
29665
29666 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
29667
29668         Merge from tar.
29669         * lib/argp-help.c (make_hol, hol_append): Don't assume that
29670         SIZE_MAX is a valid preprocessor constant.
29671         (__argp_basename): Change from "#ifndef _LIBC"
29672         to "#ifndef __argp_short_program_name", so that
29673         we don't compile these functions for tar.
29674
29675         More merges from coreutils.
29676         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
29677         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
29678         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
29679         * lib/addext.c: Remove; no longer needed.
29680         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
29681         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
29682         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
29683         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
29684         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
29685         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
29686         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
29687         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
29688         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
29689         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
29690         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
29691         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
29692         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
29693         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
29694         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
29695         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
29696         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
29697         Import changes from coreutils.
29698
29699 2004-08-05  Simon Josefsson  <jas@extundo.com>
29700
29701         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
29702
29703 2004-08-05  Simon Josefsson  <jas@extundo.com>
29704
29705         * m4/getsubopt.m4: New file.
29706
29707 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
29708
29709         Merge from coreutils.
29710
29711         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
29712         * m4/getcwd-path-max.m4: New files.
29713
29714         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
29715         FILESYSTEM_PREFIX_LEN ->
29716         FILE_SYSTEM_PREFIX_LEN.
29717         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
29718         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
29719         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
29720         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
29721
29722         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
29723         prerequisite modules now handle the DOS stuff.
29724         Don't check for unistd.h.
29725
29726 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
29727
29728         Merge from coreutils.
29729
29730         * lib/.gdb-history: Remove; this doesn't belong here.
29731
29732         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
29733         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
29734         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
29735         * lib/getcwd.c: New files.
29736
29737         * lib/dirname.h: Include <stdbool.h>.
29738         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
29739         for consistency with POSIX terminology.  All uses changed.
29740         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
29741         (strip_trailing_slashes): Use bool for booleans.
29742         * lib/stripslash.c (strip_trailing_slashes): Likewise.
29743
29744         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
29745         sometimes returns a positive errno value even when it succeeds.
29746         (print_errno_message) [!LIBC]: Fall back on strerror if
29747         __strerror_r fails.
29748
29749         * lib/path-concat.c (mempcpy): Don't define if a system header defines
29750         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
29751         (longest_relative_suffix): New function.
29752         (path_concat): Use it.  Assume first argument is not NULL.
29753         Port to DOS.  Omit redundant separators.
29754         Report an error instead of returning NULL.
29755         Use mempcpy instead of memcpy.
29756         (xpath_concat): Remove: not declared or used.
29757
29758         * lib/same.h: Include <stdbool.h>
29759         (same_name): Return bool, not int.
29760         * lib/same.c (same_name): Likewise.
29761         (errno): Don't declare; we assume C89 or better now.
29762
29763         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
29764         if not already defined.
29765
29766         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
29767         * lib/dup-safer.c (errno): Likewise.
29768
29769 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
29770
29771         Merge from coreutils.
29772         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
29773         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
29774         * modules/path-concat: Don't depend on strdup.
29775
29776 2004-08-03  Simon Josefsson  <jas@extundo.com>
29777
29778         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
29779         * lib/progname.h: Don't include stdbool.h.
29780
29781 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
29782
29783         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
29784         * MODULES.html.sh (func_all_modules): Remove fatal.
29785
29786 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
29787
29788         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
29789
29790 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
29791
29792         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
29793         working.
29794
29795 2004-08-02  Simon Josefsson  <jas@extundo.com>
29796
29797         * lib/getsubopt.h: New file, with comments from Bruno Haible.
29798         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
29799         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
29800
29801 2004-08-01  Simon Josefsson  <jas@extundo.com>
29802
29803         * lib/xgetdomainname.c: Include stdlib.h, for free().
29804
29805 2004-07-19  Bruno Haible  <bruno@clisp.org>
29806
29807         * MODULES.html.sh (func_all_modules): Add dummy.
29808
29809 2004-07-16  Simon Josefsson  <jas@extundo.com>
29810
29811         * modules/dummy: New file.
29812
29813 2004-07-16  Simon Josefsson  <jas@extundo.com>
29814
29815         * lib/dummy.c: New file.
29816
29817 2004-07-16  Bruno Haible  <bruno@clisp.org>
29818
29819         * lib/backupfile.h: Add extern "C" for C++.
29820         * lib/closeout.h: Likewise.
29821         * lib/copy-file.h: Likewise.
29822         * lib/findprog.h: Likewise.
29823         * lib/full-write.h: Likewise.
29824         * lib/pathname.h: Likewise.
29825         * lib/progname.h: Likewise.
29826         * lib/stpcpy.h: Likewise.
29827         * lib/stpncpy.h: Likewise.
29828         * lib/strcase.h: Likewise.
29829         * lib/strstr.h: Likewise.
29830         * lib/xalloc.h: Likewise.
29831
29832         * lib/mbswidth.h: Add extern "C" for C++.
29833         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
29834
29835 2004-07-13  Robert Millan  <robertmh@gnu.org>
29836
29837         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
29838
29839 2004-07-09  Simon Josefsson  <jas@extundo.com>
29840
29841         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
29842         failed without this.)
29843
29844 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
29845
29846         * modules/chown (Files): Add lib/fchown-stub.c, since
29847         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
29848
29849 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
29850
29851         * lib/fchown-stub.c: New file.
29852
29853 2004-06-24  Jim Meyering  <jim@meyering.net>
29854
29855         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
29856
29857 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
29858
29859         * modules/argz: Omit "#include".
29860
29861         * MODULES.html.sh (func_all_modules): Add calloc, to match
29862         2004-06-01 addition of calloc module.
29863
29864 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
29865
29866         * m4/argz.m4: New file, which is autoupdated from libtool.
29867
29868 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
29869
29870         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
29871         libtool.
29872
29873 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
29874
29875         * config/srclist-update: Don't insist on "USA." before the
29876         close-comment, as libtool omits the period and puts the */ on a
29877         separate line.
29878         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
29879         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
29880
29881 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
29882
29883         * modules/argz: New file.
29884         * MODULES.html.sh (func_all_modules): Add argz.
29885
29886 2004-06-12  Jim Meyering  <jim@meyering.net>
29887         and  Paul Eggert  <eggert@cs.ucla.edu>
29888
29889         * modules/hash (Files): Add lib/xalloc.h.
29890         * modules/pipe (Depends-on): Add wait-process.
29891         * modules/stat (Depends-on): Add xalloc.
29892         * modules/userspec (Files): Add lib/userspec.h.
29893         * modules/xstrto
29894
29895         Upgrade from gettext-0.13.
29896         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
29897         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
29898         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
29899
29900 2004-06-10  Jim Meyering  <jim@meyering.net>
29901
29902         * lib/calloc.c: New file.
29903
29904 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
29905
29906         * lib/getdate.y (yylex): Allow space between sign and number.
29907         Problem reported by Dan Jacobson.
29908
29909 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
29910
29911         Merge from coreutils CVS.
29912
29913         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
29914         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
29915         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
29916         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
29917         xstrtol.m4: Fix copyright date and/or serial number.
29918
29919         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
29920         See if we need an fchown replacement.
29921         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
29922         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
29923         and use the replacement function if we detect either defect.
29924
29925         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
29926         gl_UTIMECMP.
29927
29928 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
29929         and  Jim Meyering  <jim@meyering.net>
29930
29931         Merge from coreutils CVS.
29932
29933         * lib/stat-macros.h: New file, with contents from file-type.h
29934         and coreutils' system.h.
29935         * lib/file-type.c: Include "stat-macros.h".
29936         * lib/file-type.h (file_type): Move all macro definitions to new file,
29937         stat-macros.h.
29938
29939         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
29940         Wrap old code with this conditional.
29941         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
29942         function that does not dereference symlinks.
29943         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
29944
29945         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
29946         dependency problems.
29947         (xreadlink): Accept new arg SIZE, for efficiency.
29948         All decls and uses changed.
29949         * lib/xreadlink.h: Include <stddef.h>, for size_t.
29950
29951         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
29952         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
29953
29954         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
29955         sysexits.h.
29956
29957 2004-06-01  Jim Meyering  <jim@meyering.net>
29958
29959         * m4/calloc.m4: New file.
29960
29961 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
29962
29963         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
29964         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
29965         Also, fix a typo in a diagnostic.
29966
29967 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
29968
29969         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
29970         or AC_FUNC_REALLOC.
29971
29972 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
29973
29974         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
29975         macros to be defined.
29976         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
29977         the allocator returns NULL because the requested size is zero.
29978
29979 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
29980
29981         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
29982         var.  Add comment explaining why libc still defines it.  This
29983         merges the following patch from glibc:
29984         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
29985
29986 2004-05-20  Andreas Schwab  <schwab@suse.de>
29987
29988         * m4/free.m4: Replace free if it not known to work, not the other
29989         way round.
29990
29991 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
29992
29993         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
29994         present in glibc since revision 1.1 of this file.
29995         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
29996         obstack_alignment_mask, obstack_alloc, obstack_base,
29997         obstack_blank, obstack_blank_fast, obstack_chunk_size,
29998         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
29999         obstack_grow0, obstack_init, obstack_int_grow,
30000         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
30001         obstack_next_free, obstack_object_size, obstack_ptr_grow,
30002         obstack_ptr_grow_fast, obstack_room): Remove declarations of
30003         nonexistent functions.
30004
30005 2004-05-18  Karl Berry  <karl@gnu.org>
30006
30007         * config/srclist.txt: break link for vasnprintf.c.
30008
30009 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
30010
30011         Port obstack to the AS/400, where pointers are 16 bytes wide and
30012         you cannot cast an integer to a valid pointer.  This patch is
30013         currently waiting to be integrated into glibc; see
30014         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
30015
30016         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
30017         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
30018         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
30019         (struct obstack): temp member is now a union of a pointer and
30020         an integer, instead of an integer.  All integer uses changed.
30021         This does not affect the physical layout of struct obstack,
30022         except on hosts (like the AS/400) where the size or alignment of
30023         void * is greater than that of ptrdiff_t.
30024         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
30025         __STDC__)]: Store temporary in pointer member of union, not
30026         integer member.
30027         * lib/obstack.c: Include <stddef.h>, for offsetof.
30028         (struct fooalign): Remove; it doesn't need a name.
30029         (union fooround): Change double to long double, and add void *.
30030         (DEFAULT_ALIGNMENT): Use offsetof to compute.
30031         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
30032         not a macro.  Hence the values are always int; so remove all
30033         casts-to-int in uses.
30034
30035 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
30036
30037         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
30038         we can get this patch merged into glibc.
30039
30040 2004-05-17  Derek R. Price  <derek@ximbiot.com>
30041             Paul Eggert  <eggert@cs.ucla.edu>
30042
30043         * m4/argp: Depend on alloca.
30044
30045 2004-05-17  Derek R. Price  <derek@ximbiot.com>
30046             Paul Eggert  <eggert@cs.ucla.edu>
30047
30048         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
30049         freecoding.
30050
30051 2004-05-17  Bruno Haible  <bruno@clisp.org>
30052
30053         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
30054         precision that consists of a '.' followed by an empty digit string.
30055         Patch by Tor Lillqvist <tml@iki.fi>.
30056
30057 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
30058
30059         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
30060         for backward compatibility with older code.  We need our own
30061         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
30062         it under some other name, and our alloca.h will define it.
30063
30064 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
30065             Derek Price  <derek@ximbiot.com>
30066
30067         * lib/alloca.c: Include <alloca.h>, to get our interface.
30068         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
30069         include <alloca.h> first.  Use C89 prototype for alloca; this
30070         requires including <stddef.h> for size_t.  Use extern "C" if C++.
30071         Use #elif for simplicity, since we can assume C89 now.
30072         Don't try to source the system alloca.h since it will not be found
30073         and to prevent recursively including its replacement.
30074         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
30075         * lib/regex.c: Likewise.
30076
30077 2004-05-16  Derek Price  <derek@ximbiot.com>
30078             Paul Eggert  <eggert@cs.ucla.edu>
30079
30080         getline cleanup.  This changes the getndelim2 API: both order of
30081         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
30082         no delimiter).
30083
30084         * lib/getline.c: Don't include stddef.h or stdio.h, since our
30085         interface does that.
30086         (getline): Always use getdelim, so that we don't have two
30087         copies of this code.
30088         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
30089         if available.
30090         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
30091         (GETNDELIM2_MAXIMUM): New macro.
30092         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
30093         instead of the old practice of delim2==0.  All callers changed.
30094         Return -1 on overflow, instead of returning junk.
30095         Do not set *linesize unless allocation succeeds.
30096         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
30097         that we include sys/types.h.
30098         * lib/getnline.h: Likewise.
30099         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
30100         (getndelim2): Reorder arguments.
30101         * lib/getnline.c (getnline, getndelim):
30102         Don't discard the NMAX argument.
30103         (getnline): Invoke getndelim, to avoid code duplication.
30104         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
30105         of (size_t) -1 by callers of the getnline family.
30106
30107 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30108
30109         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
30110         Check for gettimeofday.
30111         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
30112         Check for settimeofday, stime.
30113
30114 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30115
30116         * lib/nanosleep.c (suspended): Change its type from int to
30117         sig_atomic_t volatile.
30118         (first_call): Make it private to rpl_nanosleep, and have it
30119         be zero initially as that's a bit faster.
30120         (my_usleep): Round up fractional times instead of truncating them,
30121         as this is the usual meaning for 'sleep'.
30122
30123         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
30124         doesn't work.
30125         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
30126         (ENOSYS): Define if not defined.
30127         (settime): Fall back on stime if it exists and settimeofday fails.
30128         But don't bother with fallbacks if a method fails with errno == EPERM.
30129
30130 2004-05-11  Jim Meyering  <jim@meyering.net>
30131
30132         Prior to this change, the save_cwd caller required read access to the
30133         current directory on most systems (ones with the fchdir function).
30134
30135         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
30136         fails, try write-only, and finally, resort to using xgetcwd.
30137
30138 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
30139
30140         * lib/obstack.c, obstack.h: Import changes from libc.
30141
30142 2004-04-28  Bruno Haible  <bruno@clisp.org>
30143
30144         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
30145         also implicitly appends .exe to executables.
30146         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
30147         accepts Windows pathnames.
30148         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
30149         Treat Cygwin like Windows, since it now accepts Windows pathnames.
30150         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
30151         Treat Cygwin like Windows, since it now accepts Windows pathnames.
30152         Reported by Derek Robert Price <derek@ximbiot.com>.
30153
30154 2004-04-21  Karl Berry  <karl@gnu.org>
30155
30156         * config/srclist.txt (localcharset.c): break sync.
30157
30158 2004-04-20  Paul Eggert  <eggert@twinsun.com>
30159
30160         * m4/host-os.m4: Add a copyright notice.
30161
30162 2004-04-20  Jim Meyering  <jim@meyering.net>
30163
30164         Change UTILS_ to gl_ in AC_DEFINE'd names.
30165         Change utils_- and jm_-prefixed variables, too.
30166         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
30167         UTILS_FUNC_MKDIR_TRAILING_SLASH.
30168         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
30169
30170         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
30171         Don't emit trailing blanks.
30172         Also rename jm_-prefixed variables to have gl_ prefix.
30173
30174         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
30175         Also rename jm_-prefixed variables to have gl_ prefix.
30176
30177         * m4/jm-macros.m4: Reflect the renamings.
30178         * m4/prereq.m4: Likewise.
30179
30180 2004-04-20  Jim Meyering  <jim@meyering.net>
30181
30182         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
30183         memory.
30184
30185 2004-04-20  Jim Meyering  <jim@meyering.net>
30186             Bruno Haible  <bruno@clisp.org>
30187
30188         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
30189         memory when realloc fails.
30190
30191 2004-04-19  Jim Meyering  <jim@meyering.net>
30192
30193         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
30194         now that readutmp.c may call `free (0)'.
30195
30196 2004-04-19  Bruno Haible  <bruno@clisp.org>
30197
30198         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
30199         * m4/inttypes_h.m4: Likewise.
30200         * m4/stdint_h.m4: Likewise.
30201         * m4/intmax_t.m4: Likewise.
30202         * m4/uintmax_t.m4: Likewise.
30203
30204 2004-04-18  Jim Meyering  <jim@meyering.net>
30205
30206         * m4/prereq.m4: Don't forbid jm_ prefix.
30207
30208         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
30209         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
30210         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
30211         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
30212         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
30213         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
30214         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
30215         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
30216         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
30217         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
30218         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
30219         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
30220         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
30221         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
30222         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
30223         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
30224         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
30225         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
30226         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
30227
30228 2004-04-18  Jim Meyering  <jim@meyering.net>
30229
30230         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
30231         failure, don't leak memory and do call END_UTMP_ENT.
30232
30233 2004-04-16  Jim Meyering  <jim@meyering.net>
30234
30235         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
30236         coreutils' stat program.
30237         (gl_PREREQ): Don't require jm_PREREQ_STAT.
30238
30239 2004-04-11  Paul Eggert  <eggert@twinsun.com>
30240
30241         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
30242         C89.
30243         (CHAR_BIT): Remove, since we assume C89.
30244         Include <stdint.h> if available, as per current Autoconf CVS advice.
30245
30246 2004-03-31  Jim Meyering  <jim@meyering.net>
30247
30248         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
30249         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
30250         * m4/xalloc.m4: Likewise.
30251
30252 2004-03-30  Paul Eggert  <eggert@twinsun.com>
30253
30254         Merge from coreutils.
30255
30256         * m4/inttostr.m4: New file.
30257         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
30258         Require AM_STDBOOL_H and gl_TIMESPEC instead.
30259         Require gl_CLOCK_TIME.
30260         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
30261
30262 2004-03-30  Paul Eggert  <eggert@twinsun.com>
30263
30264         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
30265         not bool, to be more consistent with Unix conventions.
30266         Suggested by Bruno Haible.
30267
30268         Merge from coreutils.
30269
30270         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
30271         * lib/umaxtostr.c: New files.
30272
30273         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
30274         the usual <time.h> dance.
30275         (get_date): Change signature to support fractional time stamps.
30276         All callers changed.
30277         * lib/getdate.y: Include "getdate.h" first, as we can now
30278         assume C89 and don't need to worry about 'const'.
30279         Similarly, include "unlocked-io.h" near start, not in middle.
30280         Include <limits.h>.
30281         (textint.value): Use long int rather than int.
30282         (textint.digits): Use size_t rather than int.
30283         (BILLION, LOG10_BILLION): New constants.
30284         (parser_control): New member rel_ns.  Members day_ordinal,
30285         time_zone, month, day, hour, minutes, rel_year, rel_month,
30286         rel_day, rel_hour, rel_minutes, rel_seconds
30287         are now long int, not int.  Member seconds is now struct timespec,
30288         not int.  New member timespec_seen.  Members dates_seen, days_seen,
30289         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
30290         not int.
30291         (%union.intval): Now long int, not int.
30292         New member timespec.
30293         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
30294         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
30295         (spec): Now is a timespec or an item list.
30296         (timespec, items): New nonterminals.
30297         (time, rel, relunit, number, get_date):
30298         Add support for fractional seconds.
30299         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
30300         (gmtime, localtime, mktime): Remove decls; not needed with C89.
30301         (to_hour): First arg is now long int, not int.
30302         (to_year): Returns long int, not int.
30303         Don't treat year -70 like 70.
30304         (tm_diff): Returns long int, not int.
30305         (lookup_word): Use bool instead of int when appropriate.
30306         (yylex): Use size_t for count, not int.
30307         Detect overflow when parsing large integer constants.
30308         Add support for fractions.
30309         (get_date): Make pointers 'const' if possible.
30310         Use more-portable code to detect integer overflow.
30311         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
30312         Don't use ctime; it's not reliable if the year has >4 digits.
30313
30314         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
30315         This is for compatibility with BSD.
30316
30317         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
30318         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
30319         From coreutils' system.h.
30320
30321         * lib/userspec.c: Don't include "posixver.h".
30322         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
30323         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
30324         compatible extension.  Simplify code by removing a boolean int
30325         that was always nonzero if a string was nonnull.
30326
30327 2004-03-30  Jim Meyering  <jim@meyering.net>
30328
30329         Merge from coreutils.
30330
30331         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
30332         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
30333         on some systems one must include <grp.h> before it.
30334         Reported by Christian Krackowizer.
30335
30336 2004-03-30  Jim Meyering  <jim@meyering.net>
30337
30338         Merge from coreutils.
30339
30340         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
30341
30342         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
30343         an empty input stream.
30344
30345         * lib/readtokens.c: Include <stdbool.h>.
30346         (readtoken): Use `size_t' rather than int/long.
30347         All callers adjusted.
30348         Use `bool' rather than `int' where appropriate.
30349         Use memset rather than an explicit loop.
30350         Use x2nrealloc rather than xrealloc.
30351         Allow the use of `\0' as a delimiter.
30352         (readtokens): Likewise.
30353         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
30354
30355 2004-03-30  Jim Meyering  <jim@meyering.net>
30356
30357         * m4/realloc.m4: Remove file, since now it does no more than
30358         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
30359         the `configure.ac' section of module/realloc.
30360         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
30361
30362 2004-03-30  Bruno Haible  <bruno@clisp.org>
30363
30364         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
30365         nonnull.
30366
30367 2004-03-29  Paul Eggert  <eggert@twinsun.com>
30368
30369         Merge changes to getloadavg.c from coreutils and Emacs.
30370
30371         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
30372         Define to an expression, not to the empty string.
30373         Include cloexec.h and xalloc.h.
30374         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
30375         Use set_cloexec_flag rather than rolling our own.
30376         * lib/cloexec.c, lib/cloexec.h: New files.
30377
30378 2004-03-29  Paul Eggert  <eggert@twinsun.com>
30379
30380         * m4/cloexec.m4: New file.
30381
30382 2004-03-18  Paul Eggert  <eggert@twinsun.com>
30383
30384         * lib/getopt.h: Sync with libc CVS.
30385
30386 2004-03-18  Paul Eggert  <eggert@twinsun.com>
30387             Bruno Haible  <bruno@clisp.org>
30388
30389         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
30390         mbswidth.
30391
30392 2004-03-18  Paul Eggert  <eggert@twinsun.com>
30393             Bruno Haible  <bruno@clisp.org>
30394
30395         * lib/mbswidth.h: Include <wchar.h> only if
30396         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
30397         <wchar.h>.
30398         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
30399
30400 2004-03-09  Paul Eggert  <eggert@twinsun.com>
30401
30402         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
30403         Sync with libc CVS.
30404         * lib/getopt_int.h: New file, also synced from libc.
30405
30406 2004-03-09  Paul Eggert  <eggert@twinsun.com>
30407
30408         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
30409         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
30410         Bring back getopt.c, getopt.h, getopt1.c.
30411
30412 2004-03-07  Paul Eggert  <eggert@twinsun.com>
30413
30414         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
30415         All uses changed.  Check for sa_sigaction member; this fixes
30416         a bug first reported by Jason Andrade in
30417         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
30418
30419 2004-03-07  Paul Eggert  <eggert@twinsun.com>
30420
30421         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
30422         '#if' expressions.  Unlike the code it replaces, it does not
30423         depend on (defined _SC_PAGESIZE).  However, it does depend on
30424         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
30425         first reported by Jason Andrade in
30426         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
30427
30428 2004-02-25  Simon Josefsson  <jas@extundo.com>
30429
30430         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
30431
30432 2004-02-25  Simon Josefsson  <jas@extundo.com>
30433
30434         * lib/strdup.h: New file.
30435         * lib/strdup.c: Include it.
30436         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
30437         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
30438
30439 2004-02-23  Karl Berry  <karl@gnu.org>
30440
30441         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
30442         (from fencepost.gnu.org:/gd/gnuorg).
30443
30444 2004-02-23  Karl Berry  <karl@gnu.org>
30445
30446         * config/srclistvars.sh (GNUORG) [karl]: redefine.
30447         * config/srclist.txt: add maintain/standards documents.
30448
30449 2004-02-18  Bruno Haible  <bruno@clisp.org>
30450
30451         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
30452         Reported by Derek Robert Price <derek@ximbiot.com>.
30453
30454 2004-02-16  Karl Berry  <karl@gnu.org>
30455
30456         * config/mkinstalldirs, install-sh: update from automake.
30457
30458 2004-02-06  Karl Berry  <karl@gnu.org>
30459
30460         * m4/po.m4: update from gettext 0.14.1.
30461
30462 2004-02-06  Karl Berry  <karl@gnu.org>
30463
30464         * lib/config.charset: update from gettext 0.14.1.
30465
30466 2004-02-05  Paul Eggert  <eggert@twinsun.com>
30467
30468         Add comments and code, prompted by suggestions from Bruno Haible
30469         for sh-quote.
30470         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
30471         describing the enum quoting_style values.
30472         * lib/quotearg.c (quotearg_alloc): New function.
30473         (quotearg_buffer_restyled): Treat lone { and } as special.
30474         Treat = as special.  Work around bug with older shells
30475         that "see" a '\' that is really the 2nd byte of a multibyte char.
30476         Quote empty string with shell_quoting_style.
30477
30478 2004-02-03  Bruno Haible  <bruno@clisp.org>
30479
30480         * m4/pipe.m4: New file, from GNU gettext.
30481
30482 2004-02-03  Bruno Haible  <bruno@clisp.org>
30483
30484         * lib/pipe.h: New file, from GNU gettext.
30485         * lib/pipe.c: New file, from GNU gettext.
30486
30487 2004-01-27  Bruno Haible  <bruno@clisp.org>
30488
30489         * m4/execute.m4: New file, from GNU gettext.
30490
30491 2004-01-27  Bruno Haible  <bruno@clisp.org>
30492
30493         * lib/execute.h: New file, from GNU gettext.
30494         * lib/execute.c: New file, from GNU gettext.
30495         * lib/w32spawn.h: New file, from GNU gettext.
30496
30497 2004-01-24  Paul Eggert  <eggert@twinsun.com>
30498
30499         Merge from diffutils.
30500
30501         * lib/file-type.c (file_type): Add typed memory objects.
30502         * lib/file-type.h (S_TYPEISTMO): New macro.
30503
30504         * lib/c-stack.h (c_stack_action): Remove argv argument.
30505         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
30506         (die): Don't calculate message unless segv_action returns.
30507         (get_stack_location, min_address_from_argv, max_address_from_argv,
30508         volatile stack_base, volatile_stack_size): Remove.
30509         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
30510         that every segmentation violation is a stack overflow.  (Ouch!)
30511         See Debian bug 136249 (still outstanding) for more info about why
30512         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
30513
30514 2004-01-24  Paul Eggert  <eggert@twinsun.com>
30515
30516         Exit-status fix from coreutils.
30517
30518         Use exit_failure consistently in place of EXIT_FAILURE,
30519         so that program exit statuses are consistent on failure.
30520
30521         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
30522         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
30523         * lib/argmatch.h: Comment fix to match the above.
30524         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
30525         Now a macro referring to exit_failure, instead of a separate
30526         variable.  Include "exitfail.h" to get it.
30527         * lib/xstrtol.h: Include "exitfail.h".
30528         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
30529
30530         * lib/long-options.c (parse_long_options): Use prototype
30531         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
30532         for clarity.
30533
30534 2004-01-21  Jim Meyering  <jim@meyering.net>
30535
30536         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
30537         so as not to conflict with a different-sized __mktime_internal
30538         function in GNU libc.
30539         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
30540         Problem building statically-linked `ls' reported by Michael Brunnbauer.
30541
30542 2004-01-20  Karl Berry  <karl@gnu.org>
30543
30544         * config/config.guess: update from config.
30545
30546         * config/srclistvars.sh: GNUWWWLICENSES for karl.
30547
30548 2004-01-20  Bruno Haible  <bruno@clisp.org>
30549
30550         Safer stack allocation.
30551         * lib/setenv.c: Include allocsa.h.
30552         (alloca): Remove fallback definition.
30553         (freea): Remove macro.
30554         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
30555         instead of freea.
30556
30557 2004-01-20  Bruno Haible  <bruno@clisp.org>
30558
30559         * m4/eealloc.m4: New file, from GNU gettext.
30560
30561 2004-01-20  Bruno Haible  <bruno@clisp.org>
30562
30563         * m4/allocsa.m4: New file, from GNU gettext.
30564
30565 2004-01-20  Bruno Haible  <bruno@clisp.org>
30566
30567         * lib/xallocsa.h: New file, from GNU gettext.
30568         * lib/xallocsa.c: New file, from GNU gettext.
30569
30570 2004-01-20  Bruno Haible  <bruno@clisp.org>
30571
30572         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
30573
30574 2004-01-20  Bruno Haible  <bruno@clisp.org>
30575
30576         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
30577         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
30578         specially.
30579
30580 2004-01-20  Bruno Haible  <bruno@clisp.org>
30581
30582         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
30583         patch.
30584
30585 2004-01-20  Bruno Haible  <bruno@clisp.org>
30586
30587         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
30588
30589 2004-01-20  Bruno Haible  <bruno@clisp.org>
30590
30591         * lib/eealloc.h: New file.
30592
30593 2004-01-20  Bruno Haible  <bruno@clisp.org>
30594
30595         * lib/binary-io.h: Avoid warnings on Cygwin.
30596
30597 2004-01-20  Bruno Haible  <bruno@clisp.org>
30598
30599         * lib/allocsa.h: New file, from GNU gettext.
30600         * lib/allocsa.c: New file, from GNU gettext.
30601
30602 2004-01-18  Karl Berry  <karl@gnu.org>
30603
30604         * doc/gpl.texi, doc/lgpl.texi: new files.
30605
30606 2004-01-18  Karl Berry  <karl@gnu.org>
30607
30608         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
30609         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
30610
30611 2004-01-15  Paul Eggert  <eggert@twinsun.com>
30612
30613         Merge from coreutils.
30614
30615         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
30616         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
30617         (gl_DEFAULT_POSIX2_VERSION): Move
30618         the documentation from 'configure' into 'config.hin',
30619         so that 'configure --help' isn't burdened by it and
30620         we don't have to worry about its formatting there.
30621         Reword the documentation so that it's more succinct
30622         and can be run together into a single paragraph.
30623         * m4/same.m4 (gl_SAME): Check for pathconf.
30624
30625 2004-01-15  Paul Eggert  <eggert@twinsun.com>
30626
30627         Merge from coreutils.
30628
30629         * lib/posixver.c: Include posixver.h.
30630
30631         * lib/same.c: Include <stdbool.h>, <limits.h>.
30632         (_POSIX_NAME_MAX): Define if not defined.
30633         (MIN): New macro.
30634         (same_name): If file names are silently truncated, report
30635         that the file names are the same if they are the same after
30636         the silent truncation.
30637
30638         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
30639         conversion function.
30640         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
30641         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
30642         longer needed.
30643
30644 2004-01-15  Jim Meyering  <jim@meyering.net>
30645
30646         Merge from coreutils.
30647
30648         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
30649         if no library is required.
30650         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
30651         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
30652         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
30653         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
30654         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
30655         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
30656         value, $ac_cv_search_crypt, if it's "none required".
30657         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
30658         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
30659         not gl_FUNC_GETLOADAVG.
30660         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
30661         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
30662
30663 2004-01-15  Jim Meyering  <jim@meyering.net>
30664
30665         Merge from coreutils.
30666
30667         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
30668         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
30669         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
30670
30671         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
30672         optional configure-time default.
30673
30674         * lib/version-etc.c (version_etc_copyright): Update copyright date.
30675
30676         * lib/xreadlink.c (xreadlink): Correct outdated comment.
30677
30678 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
30679
30680         Merge from coreutils.
30681
30682         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
30683         value, $ac_cv_search_nanosleep, if it's "none required".
30684
30685 2004-01-14  Paul Eggert  <eggert@twinsun.com>
30686
30687         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
30688         with like-named macro in fnmatch.c.
30689         (EXT): Use an internal constant instead.
30690
30691         Merge fnmatch patches from glibc.
30692         * lib/fnmatch.c (mbsinit): Remove define.
30693         Add libc_hidden_ver (__fnmatch, fnmatch).
30694         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
30695         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
30696
30697 2004-01-14  Karl Berry  <karl@gnu.org>
30698
30699         * config/install-sh: update from automake.
30700
30701 2004-01-13  Karl Berry  <karl@gnu.org>
30702
30703         * config/install-sh: update from automake.
30704
30705 2004-01-09  Karl Berry  <karl@gnu.org>
30706
30707         * config/install-sh: update from automake.
30708
30709 2004-01-05  Karl Berry  <karl@gnu.org>
30710
30711         * config/config.{sub,guess}: update from config.
30712
30713 2003-12-31  Karl Berry  <karl@gnu.org>
30714
30715         * config/depcomp: update from automake.
30716
30717 2003-12-14  Karl Berry  <karl@gnu.org>
30718
30719         * lib/config.charset: update from gettext-runtime.
30720
30721 2003-12-03  Paul Eggert  <eggert@twinsun.com>
30722
30723         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
30724         Bug reported by Alfred M. Szmidt.
30725
30726 2003-12-03  Bruno Haible  <bruno@clisp.org>
30727
30728         * m4/gettext.m4: Upgrade from gettext-0.13.
30729         * m4/po.m4: Upgrade from gettext-0.13.
30730         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
30731         * m4/intmax.m4: New file, from gettext-0.13.
30732         * m4/printf-posix.m4: New file, from gettext-0.13.
30733
30734 2003-11-29  Karl Berry  <karl@gnu.org>
30735
30736         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
30737
30738 2003-11-25  Paul Eggert  <eggert@twinsun.com>
30739             Bruno Haible  <bruno@clisp.org>
30740
30741         * lib/printf-parse.h: Don't include sys/types.h.
30742         (ARG_NONE): New macro.
30743         (char_directive): Change type of *arg_index fields to size_t.
30744         * lib/printf-parse.c: Don't include sys/types.h.
30745         (SSIZE_MAX): Remove macro.
30746         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
30747         Remove unnecessary overflow check.
30748         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
30749         fields.
30750
30751 2003-11-25  Bruno Haible  <bruno@clisp.org>
30752
30753         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
30754
30755 2003-11-25  Bruno Haible  <bruno@clisp.org>
30756
30757         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
30758         gt_TYPE_SSIZE_T.
30759
30760 2003-11-24  Paul Eggert  <eggert@twinsun.com>
30761
30762         * modules/alloca: Remove dependency on xalloc.
30763
30764 2003-11-24  Paul Eggert  <eggert@twinsun.com>
30765
30766         * lib/alloca.c: Remove dependency on xalloc module.
30767         (xalloc_die): Remove.
30768         (memory_full) [!defined emacs]: New macro.
30769         [!defined emacs]: Don't include xalloc.h.
30770         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
30771         address arithmetic overflows.  Change datatypes a bit to avoid
30772         unnecessary casts.
30773
30774 2003-11-22  Jim Meyering  <jim@meyering.net>
30775
30776         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
30777         s/size/size_t/.
30778
30779 2003-11-21  Karl Berry  <karl@gnu.org>
30780
30781         * config/config.{sub,guess}: update from config.
30782
30783 2003-11-18  Karl Berry  <karl@gnu.org>
30784
30785         * config/config.{sub,guess}: update from config.
30786
30787         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
30788
30789 2003-11-17  Paul Eggert  <eggert@twinsun.com>
30790
30791         * README: Mention that S+T cannot overflow if S is the size of
30792         an existing object and T is sufficiently small.
30793
30794 2003-11-17  Jim Meyering  <jim@meyering.net>
30795
30796         On systems without utime and without a utimes function capable of
30797         dealing with a NULL struct utimbuf* argument, this utime replacement
30798         could -- in unusual circumstances -- leak a file descriptor.
30799         * lib/utime.c: Include <unistd.h> and <errno.h>.
30800         (utime_null): Be sure to close `fd' and to preserve errno.
30801         Reported by Geoff Collyer via Arnold Robbins.
30802
30803 2003-11-17  Bruno Haible  <bruno@clisp.org>
30804
30805         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
30806         (Depends-on): Add xsize.
30807
30808 2003-11-17  Bruno Haible  <bruno@clisp.org>
30809
30810         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
30811
30812 2003-11-17  Bruno Haible  <bruno@clisp.org>
30813
30814         * lib/vasnprintf.c (alloca): Remove fallback definition.
30815         (freea): Remove definition.
30816         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
30817         Reported by Paul Eggert.
30818
30819 2003-11-16  Paul Eggert  <eggert@twinsun.com>
30820             Bruno Haible  <bruno@clisp.org>
30821
30822         Protect against address arithmetic overflow.
30823         * lib/printf-args.h: Include stddef.h.
30824         (arguments): Change type of field 'count' to size_t.
30825         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
30826         'unsigned int' where appropriate.
30827         * lib/printf-parse.h: Include sys/types.h.
30828         (char_directive): Change type of *arg_index fields to ssize_t.
30829         (char_directives): Change type of fields 'count', max_*_length to
30830         size_t.
30831         * lib/printf-parse.c: Include sys/types.h and xsize.h.
30832         (SSIZE_MAX): Define fallback value.
30833         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
30834         instead of 'int' where appropriate. Check a_allocated, d_allocated
30835         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
30836         * lib/vasnprintf.c: Include xsize.h.
30837         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
30838         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
30839         overflow. Avoid wraparound when converting a width or precision from
30840         decimal to binary.
30841
30842 2003-11-16  Bruno Haible  <bruno@clisp.org>
30843
30844         Update from GNU gettext.
30845         * lib/printf-parse.c: Generalize to it can be compiled for wide
30846         strings.
30847         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
30848         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
30849         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
30850         SNPRINTF): New macros.
30851         Don't include <alloca.h> if the file is used inside libintl.
30852         (local_wcslen): New function, for Solaris 2.5.1.
30853         (VASNPRINTF): Use it instead of wcslen.
30854
30855 2003-11-16  Bruno Haible  <bruno@clisp.org>
30856
30857         * lib/xsize.h (xmax): New function.
30858         (xsum, xsum3, xsum4): Declare as "pure" functions.
30859
30860 2003-11-12  Paul Eggert  <eggert@twinsun.com>
30861
30862         * modules/xalloc (Files): Undo latest change, since xalloc.h
30863         no longer needs SIZE_MAX or PTRDIFF_MAX.
30864
30865 2003-11-12  Paul Eggert  <eggert@twinsun.com>
30866
30867         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
30868         gl_PTRDIFF_MAX.
30869
30870 2003-11-12  Paul Eggert  <eggert@twinsun.com>
30871
30872         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
30873         "return", to pacify some unknown compiler.  Problem reported
30874         by Joerg Schilling.
30875
30876 2003-11-12  Paul Eggert  <eggert@twinsun.com>
30877
30878         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
30879         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
30880         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
30881         heuristic is just as accurate as far as we know, and it removes a
30882         dependency on size_max.m4 and ptrdiff_max.m4.
30883
30884 2003-11-11  Bruno Haible  <bruno@clisp.org>
30885
30886         * modules/xsize (Files): Add m4/size_max.m4.
30887         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
30888
30889 2003-11-11  Bruno Haible  <bruno@clisp.org>
30890
30891         * m4/size_max.m4: New file.
30892         * m4/ptrdiff_max.m4: New file.
30893         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
30894         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
30895         (gl_XALLOC): Invoke it.
30896
30897 2003-11-11  Bruno Haible  <bruno@clisp.org>
30898
30899         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
30900         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
30901         defined.
30902
30903 2003-11-10  Paul Eggert  <eggert@twinsun.com>
30904
30905         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
30906         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
30907         rejected some allocations of exactly SIZE_MAX - 2 bytes.
30908         From Bruno Haible.
30909         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
30910         not (size_t) -1, since it's defined here.
30911
30912 2003-11-09  Karl Berry  <karl@gnu.org>
30913
30914         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
30915
30916 2003-11-06  Paul Eggert  <eggert@twinsun.com>
30917
30918         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
30919         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
30920         Reject sizes of exactly SIZE_MAX bytes.
30921         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
30922         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
30923
30924 2003-11-05  Bruno Haible  <bruno@clisp.org>
30925
30926         * lib/xsize.h: Include limits.h, to avoid a possible collision with
30927         SIZE_MAX defined in <limits.h> on Solaris.
30928
30929 2003-11-04  Jim Meyering  <jim@meyering.net>
30930
30931         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
30932         variable names, rather than @VAR@.
30933         * modules/poll: Likewise.
30934
30935 2003-11-04  Bruno Haible  <bruno@clisp.org>
30936
30937         * modules/xsize: New file.
30938         * modules/linebreak: Depend on xsize.
30939         * MODULES.html.sh (func_all_modules): Add xsize.
30940
30941 2003-11-04  Bruno Haible  <bruno@clisp.org>
30942
30943         * m4/xsize.m4: New file.
30944
30945 2003-11-04  Bruno Haible  <bruno@clisp.org>
30946
30947         * lib/xsize.h: New file.
30948         * lib/linebreak.c: Include xsize.h.
30949         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
30950         argument for overflow.
30951         Suggested by Paul Eggert.
30952
30953 2003-11-03  Karl Berry  <karl@gnu.org>
30954
30955         * config/config.{guess,sub}: update from config.
30956
30957 2003-11-03  Jim Meyering  <jim@meyering.net>
30958
30959         * modules/userspec (lib_SOURCES): Add userspec.h.
30960         (Include): Add "userspec.h".
30961         Improve description.
30962
30963 2003-11-03  Jim Meyering  <jim@meyering.net>
30964
30965         * lib/userspec.c: Include "userspec.h".
30966         * lib/userspec.h: New file.
30967
30968 2003-11-03  Bruno Haible  <bruno@clisp.org>
30969
30970         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
30971
30972 2003-11-03  Bruno Haible  <bruno@clisp.org>
30973
30974         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
30975         available, to avoid (extremely rare) race condition.
30976         Suggested by Paul Eggert.
30977
30978 2003-11-02  Karl Berry  <karl@gnu.org>
30979
30980         * config/srclist.txt (vasprintf.c): sync broken, sigh.
30981
30982 2003-10-31  Paul Eggert  <eggert@twinsun.com>
30983
30984         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
30985         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
30986         (read_filesystem_list): Set and use me_type_malloced.
30987         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
30988         whatever the type happens to be), for brevity and consistency.
30989         Check for size calculation overflow on Alphas running OSF/1.
30990
30991 2003-10-31  Jim Meyering  <jim@meyering.net>
30992
30993         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
30994
30995         * lib/linebuffer.c: Include <string.h> for declaration of memset.
30996
30997 2003-10-30  Paul Eggert  <eggert@twinsun.com>
30998             Bruno Haible  <bruno@clisp.org>
30999
31000         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
31001         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
31002
31003 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
31004
31005         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
31006         netbsd*-gnu*.  Suggested by Robert Millan.
31007
31008 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31009
31010         * modules/group-member: Depend on stdbool.
31011
31012 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31013
31014         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
31015
31016 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31017
31018         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
31019         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
31020         after the 'gnu' in these cases.  This fixes some bugs in the
31021         previous change, and is based on suggestions by Robert Millan.
31022
31023 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31024
31025         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
31026         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
31027         no longer needed.
31028         * lib/quotearg.c (quotearg_n_options): Use it.
31029         * lib/group-member.c: Include <stdbool.h>.
31030         (free_group_info): Arg is now const *; don't free arg.
31031         (get_group_info): Now returns bool and accepts struct group_info *,
31032         rather than returning a malloc'ed struct group_info *.
31033         All uses changed.  Check for overflow in internal size calculation.
31034
31035         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
31036         rather than xmalloc/xrealloc.
31037         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
31038         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
31039         conformance bug: the old code used a pointer after freeing the
31040         storage that it addressed.
31041         * lib/hash.c (hash_initialize): Simplify the code by using
31042         xalloc_oversized rather than doing it by hand.
31043         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
31044         the buffer preserved.  Use free and xmalloc instead.
31045         * lib/quotearg.c (quotearg_n_options): Likewise.
31046         Use a simpler test for size overflow.  Don't use xalloc_oversized
31047         because unsigned int might be wider than size_t (!); this suggests
31048         that we should switch from unsigned int to size_t for slot numbers.
31049
31050 2003-10-28  Paul Eggert  <eggert@twinsun.com>
31051
31052         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
31053         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
31054         NetBSD kernels.  Requested by Richard Stallman.
31055
31056 2003-10-27  Paul Eggert  <eggert@twinsun.com>
31057
31058         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
31059         to allocate the returned structure.  Do not allocate a subarray,
31060         as x2nrealloc will do that.
31061         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
31062         instead of xnrealloc.
31063         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
31064
31065 2003-10-27  Bruno Haible  <bruno@clisp.org>
31066
31067         * lib/stdbool_.h: Better support for BeOS.
31068
31069 2003-10-26  Paul Eggert  <eggert@twinsun.com>
31070
31071         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
31072         now uses inline.
31073
31074 2003-10-26  Paul Eggert  <eggert@twinsun.com>
31075
31076         * lib/xalloc.h (xalloc_oversized): New static inline function, for
31077         callers that want to do their own size-overflow checking.  Include
31078         <stdbool.h>, since xalloc_oversized returns bool.
31079         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
31080         to use xalloc_oversized.
31081
31082         Add two functions x2realloc, x2nrealloc, for programs that grow
31083         arrays dynamically by doubling their sizes.
31084         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
31085         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
31086         New functions.
31087
31088         Port to C99 semantics for 'inline' of external functions.
31089         Bug reported by Bruno Haible.
31090         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
31091         with the old contents of xnmalloc.
31092         (xnmalloc, xmalloc): Use it.
31093         (xnrealloc_inline): New static inline function,
31094         with the old contents of xnrealloc.
31095         (xnrealloc, xrealloc): Use it.
31096
31097         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
31098         that.
31099
31100 2003-10-26  Karl Berry  <karl@gnu.org>
31101
31102         * config/srclist.txt (COPYING.DOC): no longer available from
31103         /gd/gnuorg; don't know where the ultimate source is.
31104
31105 2003-10-25  Paul Eggert  <eggert@twinsun.com>
31106
31107         Fix several address-calculation bugs in the hash modules,
31108         plus some minor code cleanup.
31109
31110         * lib/hash.h: Include <stdbool.h>, for bool.
31111         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
31112         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
31113         hash_get_n_entries, hash_get_max_bucket_length,
31114         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
31115         hash_rehash): Use size_t rather than unsigned.
31116         * lib/hash.c (struct hash_table, hash_get_n_buckets,
31117         hash_get_n_buckets_used, hash_get_n_entries,
31118         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
31119         hash_get_entries, hash_do_for_each, hash_string, is_prime,
31120         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
31121         Likewise.
31122         (SIZE_MAX): Define if not defined.
31123         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
31124         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
31125         hash_print):
31126         Use const * when possible.
31127         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
31128         (check_tuning): Fix bug: if tuning parameters were very close to
31129         0 or 1, rounding errors could have caused subscript violations.
31130         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
31131         (hash_initialize): Add 'fail:' label
31132         to free table and return NULL, and use it to simplify code.
31133         Use calloc rather than clearing the storage ourself.
31134         (hash_initialize, hash_rehash): Check for arithmetic overflow in
31135         buffer size calculations.
31136         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
31137         Include <stddef.h>, for size_t.
31138         * lib/hash-pjw.c (hash_pjw): Likewise.
31139         Switch to method described by Bruno Haible.
31140         Include <limits.h>, for CHAR_BIT.
31141         (SIZE_BITS): New macro.
31142
31143 2003-10-23  Paul Eggert  <eggert@twinsun.com>
31144
31145         * m4/getline.m4 (AM_FUNC_GETLINE):
31146         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
31147         hosts.  Problem reported by Derek Robert Price in
31148         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
31149         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
31150         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
31151
31152 2003-10-21  Paul Eggert  <eggert@twinsun.com>
31153
31154         * lib/getndelim2.c (getndelim2): When size calculation overflows,
31155         ceiling the allocation at NMAX bytes rather than silently
31156         discarding input bytes before NMAX is reached.  This makes
31157         a difference only if NMAX exceeds SIZE_MAX / 2.
31158
31159         * lib/obstack.c: Merge from glibc.
31160         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
31161         Add libc_hidden_def (_obstack_newchunk).
31162         (_obstack_free) [! defined _LIBC]: Remove.
31163         [defined _LIBC]: Make a strong alias from obstack_free, rather than
31164         a clone of the function body.
31165         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
31166         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
31167
31168         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
31169         glibc.
31170         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
31171         arg to memcpy.
31172
31173         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
31174         (obstack_ptr_grow_fast, obstack_int_grow_fast):
31175         Don't use lvalue casts, as GCC plans to remove support for them
31176         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
31177         was also present in the non-GCC version, indicating that this
31178         code had always been buggy and had never been widely used.
31179         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
31180         Use the fast variant of each macro, rather than copying the
31181         definiens of the fast variant; that way, we'll be more likely to
31182         catch future bugs in the fast variants.
31183
31184 2003-10-20  Bruno Haible  <bruno@clisp.org>
31185
31186         * modules/wait-process: New file.
31187         * MODULES.html.sh (func_all_modules): Add wait-process.
31188
31189 2003-10-20  Bruno Haible  <bruno@clisp.org>
31190
31191         * m4/wait-process.m4: New file.
31192
31193 2003-10-20  Bruno Haible  <bruno@clisp.org>
31194
31195         * lib/wait-process.h: New file, from GNU gettext.
31196         * lib/wait-process.c: New file, from GNU gettext.
31197
31198 2003-10-19  Jim Meyering  <jim@meyering.net>
31199
31200         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
31201         HPUX 10.20.
31202
31203 2003-10-18  Karl Berry  <karl@gnu.org>
31204
31205         * config/config.guess: update from config.
31206
31207 2003-10-16  Paul Eggert  <eggert@twinsun.com>
31208
31209         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
31210         (getgroups): First arg is int, not size_t.
31211         Don't let 'free' mangle errno.
31212
31213 2003-10-16  Paul Eggert  <eggert@twinsun.com>
31214
31215         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
31216
31217 2003-10-16  Karl Berry  <karl@gnu.org>
31218
31219         * config/config.{guess,sub}: update from config.
31220
31221 2003-10-16  Jim Meyering  <jim@meyering.net>
31222
31223         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
31224         memcpy.
31225
31226 2003-10-15  Paul Eggert  <eggert@twinsun.com>
31227
31228         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
31229         (SIZE_MAX): Remove.
31230         (new_exclude, add_exclude_file): Initial size no longer needs to
31231         be a power of 2.
31232         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
31233         our own address arithmetic overflow checking.
31234
31235         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
31236         (fnmatch): Do not alloca more than 2000 wide characters;
31237         instead, use malloc for large buffers.
31238         Check for address arithmetic overflow, and return -1
31239         with errno set to ENOMEM in that case.
31240         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
31241         (NEW_PATTERN): Do not alloca more than 8000 bytes;
31242         instead, return -1.  Check for address arithmetic overflow.
31243
31244 2003-10-14  Paul Eggert  <eggert@twinsun.com>
31245
31246         Handle invalid suffixes and overflow independently, so that
31247         callers can treat them independently as needed.  Fix some bugs in
31248         suffix handling, e.g., "100k@" was not diagnosed as an invalid
31249         suffix for a human-readable blocksize.  The major caller-visible
31250         change is the addition of a new
31251         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
31252         that both overflow and suffix chars were found.
31253
31254         * lib/human.c (humblock): Don't check separately for invalid suffix
31255         char; that is xstrtoumax's job (now that its bug is fixed).
31256         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
31257         INTMAX_MAX]: New macros.
31258         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
31259         TYPE_MAXIMUM): New macros.
31260         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
31261         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
31262         if overflow occurs, as it's what __strtol does and it's more useful
31263         in practice.
31264         (__xstrtol): If __strtol reports some error other than ERANGE,
31265         reflect it to the caller as LONGINT_INVALID.  If it reports
31266         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
31267         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
31268         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
31269         value.
31270         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
31271         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
31272         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
31273         [defined UINTMAX_MAX]: New macros.
31274
31275 2003-10-14  Bruno Haible  <bruno@clisp.org>
31276
31277         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
31278
31279 2003-10-14  Bruno Haible  <bruno@clisp.org>
31280
31281         * m4/sig_atomic_t: New file, from GNU gettext.
31282         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
31283
31284 2003-10-14  Bruno Haible  <bruno@clisp.org>
31285
31286         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
31287         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
31288         Also use volatile where needed.
31289
31290 2003-10-12  Paul Eggert  <eggert@twinsun.com>
31291
31292         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
31293         Change maintainer from Bruno Haible to 'all'.
31294
31295 2003-10-12  Paul Eggert  <eggert@twinsun.com>
31296
31297         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
31298
31299 2003-10-12  Paul Eggert  <eggert@twinsun.com>
31300
31301         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
31302         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
31303         and define in terms of the other primitives.
31304         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
31305         (SIZE_MAX): Define if not already defined.
31306         (array_size_overflow): New function.
31307         (xalloc_die): Abort instead of exiting if 'error' returns.
31308         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
31309         (xmalloc, xrealloc): Use them.
31310         (xcalloc): Check for address arithmetic overflow.
31311         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
31312         a bit faster than strcpy.
31313
31314 2003-10-10  Simon Josefsson  <jas@extundo.com>
31315
31316         * modules/argp (Depends-on): Add restrict and strcase.
31317
31318 2003-10-10  Simon Josefsson  <jas@extundo.com>
31319
31320         * m4/argp.m4: Add AC_C_INLINE.
31321
31322 2003-10-08  Paul Eggert  <eggert@twinsun.com>
31323
31324         Merge getpass from libc, plus a few fixes.
31325
31326         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
31327         Include <stdbool.h>.
31328         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
31329         __fsetlocking to empty.
31330         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
31331         do include <bits/libc-lock.h>.
31332         Do not include <fcntl.h>; not needed.
31333         [_LIBC]: Include <wchar.h>.
31334         (NOTCANCEL_MODE): New macro.
31335         (flockfile, funlockfile) [_LIBC]: New macros.
31336         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
31337         [!_LIBC]: New macros.
31338         (call_fclose): New function.
31339         (getpass): Use it.  Save tty stream separately; this simplifies the
31340         code and makes it more reliable if stdin happens to equal stdout.
31341         Invoke __fsetlocking on tty.
31342         Handle thread cancellation if needed.
31343         Namespace cleanup (use __tcgetattr, __getline).
31344         Use bool for Booleans.
31345         [USE_IN_LIBIO]: Handle wide streams.
31346         [!_LIBC]: Unconditionally do the fseek, since we don't know what
31347         stream might go where.
31348
31349         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
31350         doesn't have to include <stdio.h> before us.
31351         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
31352         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
31353         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
31354         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
31355         if not declared, so that we can use getpass.c code from libc without
31356         rewriting it.
31357         (flockfile, ftrylockfile, funlockfile): New macros.
31358
31359 2003-10-08  Paul Eggert  <eggert@twinsun.com>
31360
31361         * modules/getpass: Depend on stdbool.
31362
31363 2003-10-08  Paul Eggert  <eggert@twinsun.com>
31364
31365         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
31366
31367 2003-10-07  Karl Berry  <karl@gnu.org>
31368
31369         * config/config.{guess,sub}: update from config.
31370
31371 2003-10-06  Jim Meyering  <jim@meyering.net>
31372             Bruno Haible  <bruno@clisp.org>
31373
31374         This lets translators provide better translations for the
31375         "Written by ..." part of --version output.
31376         * lib/version-etc.h: Include stdarg.h.
31377         (version_etc_copyright): Declare as readonly.
31378         (version_etc): Make this function variadic with a NULL-terminated list
31379         of author name strings.
31380         (version_etc_va): New declaration.
31381         * lib/version-etc.c: Include stdarg.h, stdlib.h.
31382         (version_etc_copyright): Declare as readonly.
31383         (version_etc_va): New function. Provide a different translatable string
31384         for each possible number of authors < 10. Abbreviate when there are 10
31385         authors or more.
31386         (version_etc): Make this function variadic. Call version_etc_va.
31387         Suggestion from Gary V. Vaughan.
31388
31389         * lib/long-options.h (parse_long_options): Change prototype: the
31390         authors string is moved to the end and becomes variadic.
31391         * lib/long-options.c: Include stdarg.h.
31392         (parse_long_options): Make this function variadic, too.
31393         Call version_etc_va, not version_etc.
31394
31395 2003-10-06  Bruno Haible  <bruno@clisp.org>
31396
31397         * modules/version-etc-2: Remove file.
31398         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
31399
31400 2003-10-06  Bruno Haible  <bruno@clisp.org>
31401
31402         * modules/fatal-signal: New file.
31403         * MODULES.html.sh (func_all_modules): Add fatal-signal.
31404
31405 2003-10-06  Bruno Haible  <bruno@clisp.org>
31406
31407         * m4/fatal-signal.m4: New file.
31408         * m4/signalblocking.m4: New file, from GNU gettext.
31409
31410 2003-10-06  Bruno Haible  <bruno@clisp.org>
31411
31412         * lib/version-etc-2.h: Remove file.
31413         * lib/version-etc-2.c: Remove file.
31414
31415 2003-10-06  Bruno Haible  <bruno@clisp.org>
31416
31417         * lib/fatal-signal.h: New file, from GNU gettext.
31418         * lib/fatal-signal.c: New file, from GNU gettext.
31419
31420 2003-10-05  Paul Eggert  <eggert@twinsun.com>
31421
31422         * README: Rework advice for preventing empty .o files.
31423         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
31424         not <sys/types.h>.
31425
31426 2003-10-04  Karl Berry  <karl@gnu.org>
31427
31428         * lib/argp*: update from libc.
31429
31430 2003-10-04  Karl Berry  <karl@gnu.org>
31431
31432         * config/config.{guess,sub}: update from config.
31433
31434 2003-10-02  Bruno Haible  <bruno@clisp.org>
31435
31436         * modules/lchown (Include): Add lchown.h.
31437         * modules/time_r (Include): Use "..." syntax.
31438         * modules/xgetdomainname (Include): Add xgetdomainname.h.
31439
31440 2003-10-01  Simon Josefsson  <jas@extundo.com>
31441
31442         * MODULES.html.sh (func_all_modules): Move gethostname from section
31443         'based on' to section 'lacking' POSIX:2001.
31444
31445 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
31446
31447         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
31448         to output mode on the same stream.
31449
31450 2003-09-29  Paul Eggert  <eggert@twinsun.com>
31451
31452         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
31453         Fix arg typo in previous patch.
31454
31455 2003-09-28  Jim Meyering  <jim@meyering.net>
31456
31457         * lib/error.c: Correct cpp indentation.
31458
31459 2003-09-27  Paul Eggert  <eggert@twinsun.com>
31460
31461         * modules/free: New file.
31462
31463 2003-09-27  Paul Eggert  <eggert@twinsun.com>
31464
31465         * m4/free.m4: New file.
31466
31467 2003-09-27  Paul Eggert  <eggert@twinsun.com>
31468
31469         * lib/minmax.h (MIN, MAX)
31470         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
31471         Omit the special code that used __typeof__, since we worry that
31472         it could be more trouble than it's worth.  See:
31473         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
31474         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
31475
31476         * lib/free.c: New file.
31477
31478 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
31479
31480         Trivial fixes to Makefile.am parts of module listings.
31481         * modules/strstr: Append strstr.h to lib_SOURCES.
31482         * modules/strcase: Likewise, for strcase.h.
31483
31484 2003-09-27  Karl Berry  <karl@gnu.org>
31485
31486         * config/mkinstalldirs: update from automake.
31487
31488 2003-09-26  Paul Eggert  <eggert@twinsun.com>
31489
31490         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
31491         (error_tail): Do not loop, reallocating temporary buffer, since
31492         the output cannot contain more wide characters than the input
31493         contains bytes, the size must be big enough already.  This avoids
31494         one potential size overflow calculation.  Check for size overflow
31495         when calculating temporary buffer size.  Free temporary buffer
31496         when done, if it was allocated with malloc; this plugs a memory
31497         leak.  Remove casts from void * to pointers, that are no longer
31498         needed now that we're assuming C89 or better.
31499
31500         Merge error changes from glibc.
31501
31502         * lib/error.c, error.h: Update copyright notice header to match glibc.
31503         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
31504         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
31505         Disable cancellation while printing error.
31506         * lib/error.h: Prepend __ to parameter names.
31507
31508 2003-09-26  Jim Meyering  <jim@meyering.net>
31509
31510         * lib/error.c (error_tail): Move some declarations
31511         into inner scope where the local variables are used.
31512
31513 2003-09-26  Bruno Haible  <bruno@clisp.org>
31514
31515         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
31516         stpncpy().
31517         Don't define stpncpy through config.h; it's now done through stpncpy.h.
31518
31519 2003-09-26  Bruno Haible  <bruno@clisp.org>
31520
31521         * lib/stpncpy.h (gnu_stpncpy): New declaration.
31522         (stpncpy): Define as alias for gnu_stpncpy.
31523         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
31524
31525 2003-09-25  Simon Josefsson  <jas@extundo.com>
31526
31527         * lib/xgetdomainname.h: New file.
31528         * lib/xgetdomainname.c: New file.
31529
31530 2003-09-25  Simon Josefsson  <jas@extundo.com>
31531             Bruno Haible  <bruno@clisp.org>
31532
31533         * modules/getdomainname: New file.
31534         * modules/xgetdomainname: New file.
31535         * MODULES.html.sh (func_all_modules): Add getdomainname,
31536         xgetdomainname.
31537
31538 2003-09-25  Simon Josefsson  <jas@extundo.com>
31539             Bruno Haible  <bruno@clisp.org>
31540
31541         * m4/getdomainname.m4: New file.
31542
31543 2003-09-25  Simon Josefsson  <jas@extundo.com>
31544             Bruno Haible  <bruno@clisp.org>
31545
31546         * lib/getdomainname.h: New file.
31547         * lib/getdomainname.c: New file.
31548
31549 2003-09-25  Karl Berry  <karl@gnu.org>
31550
31551         * lib/argp-fmtstream.c, argp-help.c: update from libc.
31552
31553 2003-09-25  Karl Berry  <karl@gnu.org>
31554
31555         * config/install-sh: update from automake.
31556
31557 2003-09-25  Bruno Haible  <bruno@clisp.org>
31558
31559         * modules/version-etc-2: New file, from modules/version-etc with
31560         modifications.
31561         * MODULES.html.sh (func_all_modules): Add version-etc-2.
31562
31563 2003-09-25  Bruno Haible  <bruno@clisp.org>
31564
31565         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
31566         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
31567
31568 2003-09-24  Simon Josefsson  <jas@extundo.com>
31569
31570         * modules/xgethostname: Add xgethostname.h.
31571
31572 2003-09-24  Paul Eggert  <eggert@twinsun.com>
31573
31574         * lib/linebuffer.c (freebuffer): Don't free the argument, just
31575         the buffer associated with the argument.  Bug reported by
31576         Simon Josefsson.
31577
31578 2003-09-24  Paul Eggert  <eggert@twinsun.com>
31579
31580         * README: Document assumptions that 'int' is at least 32 bits
31581         wide, that integer arithmetic is 2's complement without overflow,
31582         that there are no holes in integer values, that adding sizes of
31583         two nonoverlapping objects can't overflow, and that all-bits-zero
31584         yields scalar zero.  Fix spelling and capitalization typos.
31585
31586 2003-09-19  Karl Berry  <karl@gnu.org>
31587
31588         * lib/argp.h: update from libc.
31589
31590 2003-09-17  Paul Eggert  <eggert@twinsun.com>
31591
31592         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
31593         to avoid spurious warnings like "AC_RUN_IFELSE was called before
31594         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
31595
31596 2003-09-17  Paul Eggert  <eggert@twinsun.com>
31597
31598         * gnulib-tool: Use "test -h", not "test -L", for portability
31599         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
31600         (tags_regexp): Remove, since \| doesn't conform to POSIX.
31601         (sed_extract_prog): Issue s commands one-by-one, rather than
31602         using \| in one s command.
31603
31604 2003-09-16  Paul Eggert  <eggert@twinsun.com>
31605
31606         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
31607         input error, instead of returning NULL the next time we are called
31608         (and therefore losing track of errno).
31609
31610 2003-09-16  Bruno Haible  <bruno@clisp.org>
31611
31612         * gnulib-tool (func_create_testdir): Warn about duplicated
31613         dependencies.
31614
31615 2003-09-15  Paul Eggert  <eggert@twinsun.com>
31616
31617         * modules/argmatch, modules/fatal, modules/obstack,
31618         modules/xalloc, modules/xgethostname: Sort dependencies by
31619         importance, not alphabetically.
31620
31621 2003-09-15  Paul Eggert  <eggert@twinsun.com>
31622
31623         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
31624         fails, so that the caller gets the proper errno.
31625
31626         * lib/readutmp.c (read_utmp): Likewise.
31627         Check for fstat error.  Close stream and free storage
31628         when failing.
31629
31630 2003-09-14  Karl Berry  <karl@gnu.org>
31631
31632         * config/srclist.txt (strdup.c): disable for c89 changes.
31633
31634 2003-09-14  Jim Meyering  <jim@meyering.net>
31635
31636         * lib/getloadavg.c: Correct cpp indentation.
31637         * lib/strdup.c: Likewise.
31638         * lib/vasnprintf.c: Likewise.
31639
31640 2003-09-14  Bruno Haible  <bruno@clisp.org>
31641
31642         * modules/fwriteerror: New file.
31643         * MODULES.html.sh (func_all_modules): Add fwriteerror.
31644
31645 2003-09-14  Bruno Haible  <bruno@clisp.org>
31646
31647         * lib/fwriteerror.h: New file.
31648         * lib/fwriteerror.c: New file.
31649
31650 2003-09-12  Paul Eggert  <eggert@twinsun.com>
31651
31652         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
31653         modules/xgethostname, modules/xalloc: Depend on exit.
31654
31655 2003-09-12  Paul Eggert  <eggert@twinsun.com>
31656
31657         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
31658
31659         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
31660         and AC_MINIX, too, so that their extensions are available.
31661
31662         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
31663         This macro has been superseded by gl_BACKUPFILE.
31664
31665         More patches to assume C89 or better.
31666
31667         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
31668
31669         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
31670         unconditionally.
31671         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
31672         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
31673         Include <string.h>, <stdlib.h> unconditionally.
31674         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
31675         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
31676         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
31677         headers or for string.h.
31678         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
31679         or strtoul.
31680
31681         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
31682         headers.
31683         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
31684         * m4/userspec.m4 (gl_USERSPEC): Likewise.
31685         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
31686         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
31687         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
31688         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
31689         memcpy, memset.
31690         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
31691         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
31692         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
31693         strtol.
31694         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
31695         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
31696         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
31697         strtoul.
31698
31699 2003-09-12  Paul Eggert  <eggert@twinsun.com>
31700
31701         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
31702         * lib/obstack.c [!defined _LIBC]: Likewise.
31703         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
31704         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
31705         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
31706
31707         More changes to assume C89 or better.
31708
31709         * lib/error.c (error_tail): Assume vprintf.
31710
31711         * lib/argmatch.c (getenv): Remove decl.
31712         * lib/progreloc.c (get_full_program_name): Define via prototype.
31713         * lib/setenv.c (clearenv): Likewise.
31714         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
31715         needed.
31716         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
31717         (malloc, memcpy): Remove decls.
31718         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
31719         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
31720         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
31721         (memcpy): Remove macro.
31722         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
31723         (__P): Remove.  All uses removed.
31724         (PTR): Remove.  All uses changed to void *.
31725         (CHAR_BIT, NULL): Remove.
31726         (spaces, zeros, memset_space, memset_zero)
31727         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
31728         Remove.
31729         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
31730         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
31731         Define with prototype.
31732         Remove now-unnecessary prototype decl.
31733         (extra_args_spec): Assume ANSI C.  All uses changed.
31734         (extra_args_spec_iso): Remove.
31735         (my_strftime, emacs_strftimeu): Define via prototype.
31736         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
31737         unconditionally.
31738         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
31739         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
31740         (strtoul, strtol): Remove decls.
31741         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
31742         LONG_MAX): Remove.
31743         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
31744         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
31745         (LOCALE_PARAM_PROTO): New macro.
31746         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
31747         (INTERNAL (strtol), strtol): Define with a prototype.
31748         (PARAMS): Remove.  All uses removed.
31749         * lib/tempname.c: Include <string.h> unconditionally.
31750         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
31751         * lib/xgethostname.c (main): Define with a prototype.
31752         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
31753         Include <stdlib.h> unconditionally.
31754         (calloc, malloc, realloc, free): Remove decls.
31755         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
31756         Include <stdlib.h> unconditionally.  Sort include file names.
31757         (strtod): Remove.
31758         (xstrtod): Define with a prototype.
31759         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
31760         (strtol, strtoul): Remove decls.
31761
31762 2003-09-11  Paul Eggert  <eggert@twinsun.com>
31763
31764         More patches to assume C89 or better.
31765         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
31766         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
31767         string.h, memchr, STDC_HEADERS.
31768
31769 2003-09-11  Paul Eggert  <eggert@twinsun.com>
31770
31771         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
31772         Include <stdlib.h>, <string.h> unconditionally.
31773         Remove now-unnecessary cast to char *.
31774         * lib/strnlen.c: Include <string.h> unconditionally.
31775         * lib/yesno.c (yesno): Define with a prototype.
31776
31777 2003-09-11  Bruno Haible  <bruno@clisp.org>
31778
31779         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
31780
31781 2003-09-10  Jim Meyering  <jim@meyering.net>
31782
31783         * lib/error.c: Correct indentation of cpp directives.
31784
31785 2003-09-10  Bruno Haible  <bruno@clisp.org>
31786
31787         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
31788         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
31789         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
31790         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
31791         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
31792         <stdlib.h> and <string.h> checks.
31793         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
31794         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
31795
31796 2003-09-10  Bruno Haible  <bruno@clisp.org>
31797
31798         * lib/strcspn.c: Include <string.h> unconditionally.
31799         * lib/strpbrk.c: Include <string.h> unconditionally.
31800         * lib/strstr.c: Include <string.h> unconditionally.
31801         * lib/unicodeio.c: Include <string.h> unconditionally.
31802         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
31803         * lib/unsetenv.c: Likewise.
31804         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
31805         * lib/yesno.c: Include <stdlib.h> unconditionally.
31806         (rpmatch): Add prototype.
31807
31808 2003-09-09  Paul Eggert  <eggert@twinsun.com>
31809
31810         More patches to assume C89 or better.
31811         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
31812         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
31813         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
31814         or for string.h.
31815         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
31816         stdlib.h.
31817         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
31818         C headers.
31819         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
31820         string.h.
31821         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
31822         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
31823         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
31824         or for string.h.
31825         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
31826         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
31827         C headers.
31828         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
31829         memcpy.
31830         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
31831         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
31832         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
31833         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
31834         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
31835         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
31836         string.h, free.
31837         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
31838         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
31839         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
31840         C headers, or for string.h.
31841         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
31842         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
31843         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
31844         headers, memory.h, stdlib.h, string.h, strings.h.
31845         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
31846         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
31847         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
31848         strchr.
31849         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
31850         headers, memory.h, string.h.
31851         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
31852         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
31853         free.
31854         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
31855         headers.
31856         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
31857         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
31858         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
31859         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
31860         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
31861
31862 2003-09-09  Paul Eggert  <eggert@twinsun.com>
31863
31864         More K&R removal.
31865
31866         * lib/acosl.c (main): Use a prototype.
31867         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
31868         tanl.c: Likewise.
31869
31870         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
31871
31872         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
31873         (getopt, etopt_long, getopt_long_only, _getopt_internal)
31874         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
31875         with a prototype.
31876         * lib/getopt.c (const): Remove macro.
31877         Include <string.h> unconditionally.
31878         (my_index): Remove; all uses changed to strchr.
31879         (strlen): Remove decl.
31880         (exchange): Remove forward decl; no longer needed.
31881         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
31882         Define with prototype.
31883         * lib/getopt1.c (const): Remove macro.
31884         (getopt_long, getopt_long_only, main): Define with prototype.
31885
31886         * lib/getugroups.c: Include <string.h> unconditionally.
31887
31888         * lib/getusershell.c: Include <stdlib.h> unconditionally.
31889         (getusershell, setusershell, endusershell, readname, main):
31890         Define with prototypes.
31891
31892         * lib/group-member.c: Include group-member.h first.
31893         Include <stdlib.h> unconditionally.
31894
31895         * lib/hard-locale.c: Include hard-locale.h first.
31896         Include <stdlib.h>, <string.h> unconditionally.
31897
31898         * lib/hash.c (free, malloc): Remove decls.
31899         Include <stdlib.h> unconditionally.
31900
31901         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
31902         (getenv): Do not declare.
31903
31904         * lib/idcache.c: Include <string.h> unconditionally.
31905
31906         * lib/long-options.c: Include long-options.h first, to test interface.
31907         Include <stdlib.h> unconditionally.
31908
31909         * lib/makepath.c: Include makepath.h first, to test interface.
31910         Include <stdlib.h> and <string.h> unconditionally.
31911
31912         * lib/linebuffer.c: Include <stdlib.h>.
31913         (free): Remove decl.
31914
31915         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
31916         stddef.h. rpl_malloc returns void *, not char *.
31917         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
31918         prototype.
31919
31920         * lib/md5.h: Include <limits.h> unconditionally.
31921         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
31922         (__P): Remove; all uses removed.
31923         * lib/md5.c: Include "md5.h" first.
31924         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
31925         md5_buffer, md5_process_bytes, md5_process_block):
31926         Define with prototypes.
31927         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
31928         * lib/sha.c: Include "sha.h" first.
31929         Include <stdlib.h>, <string.h> unconditionally.
31930
31931         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
31932         * lib/memcmp.c (__ptr_t): Likewise.
31933         * lib/memrchr.c (__ptr_t): Likewise.
31934         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
31935         Include <string.h> unconditionally.
31936         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
31937         * lib/memchr.c: Include <stdlib.h> unconditionally.
31938         * lib/memchr.c (LONG_MAX): Remove.
31939         * lib/memrchr.c (LONG_MAX): Likewise.
31940         * lib/memchr.c (__memchr): Define via a prototype.
31941         * lib/memrchr.c (__memrchr): Likewise.
31942         * lib/memcmp.c (__P): Remove, and remove all uses.
31943         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
31944         Remove forward decls; no longer needed.
31945         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
31946         Use types required by C89 in prototype.
31947
31948         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
31949         * lib/savedir.c: Likewise.
31950         * lib/mkdir.c (free): Remove decl.
31951         * lib/rmdir.c (rmdir): Define with a prototype.
31952         * lib/savedir.c: Include savedir.h first, to test interface.
31953
31954         * lib/mktime.c (STDC_HEADERS): Remove.
31955         Include <stdlib.h>, <string.h> unconditionally.
31956
31957         * lib/modechange.c: Include <stdlib.h> unconditionally.
31958         (malloc): Remove decl.
31959
31960         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
31961         (free): Remove decl.
31962
31963         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
31964         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
31965         (This type really should be intptr_t, but that's a C99ism.)
31966         (_obstack_memcpy): Remove: all uses changed to memcpy.
31967         Include <string.h> unconditionally.
31968         (struct obstack): Assume __STDC__ for types of members
31969         chunkfun, freefun, extra_arg.
31970         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
31971         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
31972         obstack_begin, obstack_specify_allocation,
31973         obstack_specify_allocation_with_arg, obstack_chunkfun,
31974         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
31975         Remove unprototyped decls and the macros that use them.
31976         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
31977         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
31978         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
31979         (defined __STDC__ && __STDC__)]:
31980         Remove nonprototyped code.
31981         Include <stdlib.h> unconditionally.
31982         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
31983         _obstack_allocated_p, _obstack_free, obstack_free,
31984         _obstack_memory_used, print_and_abort):
31985         Define using prototypes.
31986         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
31987         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
31988         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
31989         obstack_next_free, obstack_object_size, obstack_room) [0]:
31990         Remove unused, unprototyped code.
31991
31992         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
31993
31994         * lib/physmem.c (physmem_total, physmem_available, main): Define
31995         with prototypes.
31996
31997         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
31998         (main): Define with a prototype.
31999
32000         * lib/posixver.c (getenv): Remove decl.
32001
32002         * lib/putenv.c (malloc): Returns void *, not char *.
32003         Include <string.h> unconditionally.
32004         (strchr, memcpy, NULL): Do not define.
32005
32006         * lib/readtokens.c: Include readtokens.h first, to test interface.
32007         Include <stdlib.h>, <string.h> unconditionally.
32008         (init_tokenbuffer): Define with a prototype.
32009
32010         * lib/regex.c (PARAMS): Remove.  All uses removed.
32011         All uses of _RE_ARGS removed, too.
32012         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
32013         unconditionally.
32014         (bzero): Assume memset exists.
32015         (memcmp, memcpy, NULL): Remove.
32016         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
32017         char, or assignments to local vars of type signed char.
32018         (init_syntax_once, PREFIX(extract_number_and_incr),
32019         PREFIX(print_partial_compiled_pattern),
32020         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
32021         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
32022         PREFIX(regex_grow_registers), PREFIX(regex_compile),
32023         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
32024         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
32025         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
32026         wcs_compile_range, byte_compile_range, truncate_wchar,
32027         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
32028         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
32029         count_mbs_length, wcs_re_match_2_internal,
32030         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
32031         PREFIX(alt_match_null_string_p),
32032         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
32033         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
32034         regfree, PREFIX(extract_number)): Define with prototype.  Remove
32035         now-unnecessary declaration, if any.
32036         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
32037         regcomp, regexec):
32038         Remove now-unnecessary casts among pointer types.
32039         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
32040
32041         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
32042         (free): Remove decl.
32043
32044         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
32045
32046         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
32047         (free): Remove decl.
32048
32049         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
32050         * lib/xgetcwd.c: Likewise.
32051
32052         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
32053         (free): Remove decl.
32054
32055         * lib/strchrnul.c (strchrnul): Define with a prototype.
32056         Fix bug: c_in was not converted to char before searching.
32057
32058         The following changes are not K&R related:
32059
32060         * lib/group-member.h: Include <sys/types.h>, so that this file is
32061         self-contained.
32062         * lib/makepath.h: Likewise.
32063
32064         * lib/getusershell.c (readname, default_index, line_size, readname):
32065         Use size_t, not int, for sizes.
32066         (readname): If the size overflows, report an error instead of
32067         looping forever.
32068
32069 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32070
32071         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
32072         libc.
32073
32074 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32075
32076         * README: New section: portability guidelines.
32077
32078 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
32079
32080         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
32081         C89 spec.
32082
32083 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
32084
32085         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
32086
32087 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32088
32089         Assume C89 or better; remove K&R cruft.
32090         A few of these changes were first proposed by Derek Robert Price
32091         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
32092
32093         * lib/addext.c: Include <string.h> unconditionally.
32094         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
32095         Don't declare getenv or malloc.
32096
32097         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
32098         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
32099         (NULL): Remove.
32100         (find_stack_direction, alloca): Use prototypes.
32101
32102         * lib/atexit.c (atexit): Define using a prototype.
32103
32104         * lib/basename.c, dirname.c, stripslash.c:
32105         Include <string.h> unconditionally.
32106
32107         * lib/bcopy.c: Include <stddef.h>.
32108         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
32109
32110         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
32111
32112         * lib/error.h (error, error_at_line, error_print_progname)
32113         [! (defined (__STDC__) && __STDC__)]: Remove decls.
32114         * lib/error.c: Include error.h first, to check interface.
32115         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
32116         (VA_START): Remove; all uses changeed to va_start.
32117         (exit, strerror): Remove decls.
32118         (error_print_progname): Prototype uncondionally.
32119         Don't include <errno.h>; no longer needed.
32120         (private_strerror): Remove.
32121         (error_tail): Always define.
32122         (error, error_at_line): Assume C89 or better; always use prototypes.
32123         * lib/fatal.c: Include "fatal.h" first, to test interface.
32124         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
32125         (VA_START): Remove; all uses changed to va_start.
32126         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
32127         this case.
32128         (exit): Remove decl.
32129         (fatal): Prototype unconditionally.  Assume va_start works.
32130         Abort at end, to pacify gcc.
32131
32132         * lib/euidaccess.c (main): Define with a prototype.
32133
32134         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
32135
32136         * lib/exitfail.c: Include <stdlib.h> unconditionally.
32137
32138         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
32139         prototypes.
32140         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
32141         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
32142         (getenv): Remove decl.
32143         (fnmatch): Define using a prototype.
32144         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
32145         (FCT): Define using a prototype.
32146
32147         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
32148
32149         * lib/gethostname.c: Include <stddef.h>.
32150         (gethostname): Define with prototype.  Length is size_t, not int.
32151
32152 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32153
32154         Assume C89 or better; remove K&R cruft.
32155         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
32156         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
32157         string.h, getenv, malloc.
32158         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
32159         headers.
32160         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
32161         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
32162         do not check for strerror.
32163         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
32164         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
32165         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
32166         do not check for doprnt or vprintf.
32167         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
32168         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
32169
32170 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32171
32172         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
32173         getversion.c should have been removed then, but was accidentally
32174         preserved.
32175
32176         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
32177         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
32178
32179 2003-09-08  Karl Berry  <karl@gnu.org>
32180
32181         * config/config.sub, config.guess, srclistvars.sh: update from savannah
32182                 config, forget about prep.
32183
32184         * config/depcomp, missing: update from automake.
32185
32186 2003-09-07  Paul Eggert  <eggert@twinsun.com>
32187
32188         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
32189         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
32190
32191 2003-09-07  Paul Eggert  <eggert@twinsun.com>
32192
32193         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
32194         copy_tm_result.  Bug reported by Simon Josefsson in
32195         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
32196
32197 2003-09-06  Paul Eggert  <eggert@twinsun.com>
32198
32199         * m4/time_r.m4: New file.
32200         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
32201         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
32202         is. Check for timegm declaration.
32203         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
32204         Do not check for gmtime_r.
32205         Replace mktime if __mktime_internal does not exist and if mktime
32206         hasn't been replaced already.
32207
32208 2003-09-06  Paul Eggert  <eggert@twinsun.com>
32209
32210         * lib/time_r.c, lib/time_r.h: New files.
32211
32212         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
32213         __localtime_r.
32214         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
32215         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
32216
32217         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
32218         __gmtime_r.
32219         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
32220         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
32221         Include <time_r.h>.
32222
32223         * lib/timegm.c: Switch to glibc implementation, with the following
32224         changes:
32225         [defined HAVE_CONFIG_H]: Include <config.h>.
32226         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
32227         (__mktime_internal) [!defined _LIBC]: New decl.
32228         (__gmtime_r) [!defined _LIBC]: New macro and function.
32229         (timegm): Use a prototype, since gnulib assumes C89.
32230         Do not bother declaring tmp to be const, as it's not really usefu.
32231         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
32232         (timegm): Declare only if HAVE_DECL_TIMEGM.
32233
32234 2003-09-06  Paul Eggert  <eggert@twinsun.com>
32235
32236         * MODULES.html.sh (func_all_modules): Add time_r.
32237         * modules/time_r: New file.
32238         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
32239         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
32240
32241 2003-09-03  Paul Eggert  <eggert@twinsun.com>
32242
32243         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
32244         Bug reported by Lute Kamstra in
32245         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
32246
32247         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
32248         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
32249         course with correspondingly smaller numbers for tomorrow and
32250         yesterday.  From Tadayoshi Funaba.  Originally installed into
32251         sh-utils on 1999-08-07, but the patch got lost (I guess during the
32252         coreutils merge?).
32253
32254 2003-08-31  Simon Josefsson  <jas@extundo.com>
32255
32256         * modules/timegm: New file.
32257         * MODULES.html.sh (func_all_modules): Add timegm.
32258
32259 2003-08-31  Simon Josefsson  <jas@extundo.com>
32260
32261         * m4/timegm.m4: New file.
32262
32263 2003-08-31  Simon Josefsson  <jas@extundo.com>
32264
32265         * lib/timegm.h: New file.
32266         * lib/timegm.c: New file.  Based on
32267         wget-1.8.2/src/http.c:mktime_from_utc.
32268
32269 2003-08-31  Karl Berry  <karl@gnu.org>
32270
32271         * lib/argp.h: update from libc.
32272
32273 2003-08-28  Bruno Haible  <bruno@clisp.org>
32274
32275         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
32276         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
32277         followed by '#define fnmatch fnmatch_posix' gives an error.
32278
32279 2003-08-28  Bruno Haible  <bruno@clisp.org>
32280
32281         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
32282         warning on QNX, which defines O_BINARY to 000000.
32283
32284 2003-08-27  Jim Meyering  <jim@meyering.net>
32285
32286         * m4/mkstemp.m4: Require that the system mkstemp be able to create
32287         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
32288         would fail after 32.  Reported by Danny Levinson.  Details here:
32289         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
32290
32291 2003-08-24  Bruno Haible  <bruno@clisp.org>
32292
32293         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
32294         MSVC7 <stdio.h> is included later.
32295
32296 2003-08-22  Simon Josefsson  <jas@extundo.com>
32297
32298         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
32299
32300 2003-08-20  Karl Berry  <karl@gnu.org>
32301
32302         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
32303
32304 2003-08-20  Bruno Haible  <bruno@clisp.org>
32305
32306         * modules/progname: New file.
32307         * MODULES.html.sh (func_all_modules): Add progname.
32308
32309 2003-08-20  Bruno Haible  <bruno@clisp.org>
32310
32311         * lib/progname.h: New file, from GNU gettext.
32312         * lib/progname.c: New file, from GNU gettext.
32313         * lib/progreloc.c: New file, from GNU gettext.
32314
32315 2003-08-19  Jim Meyering  <jim@meyering.net>
32316
32317         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
32318         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
32319
32320 2003-08-19  Bruno Haible  <bruno@clisp.org>
32321
32322         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
32323         more.
32324
32325 2003-08-19  Bruno Haible  <bruno@clisp.org>
32326
32327         * lib/xstrdup.c: Assume <string.h> exists.
32328
32329 2003-08-18  Paul Eggert  <eggert@twinsun.com>
32330
32331         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
32332         in makefile rules.
32333
32334 2003-08-18  Jim Meyering  <jim@meyering.net>
32335
32336         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
32337         * m4/lib-ld.m4: Likewise.
32338
32339 2003-08-18  Jim Meyering  <jim@meyering.net>
32340
32341         * lib/setenv.h: Indent nested cpp directive.
32342         * lib/vasnprintf.c: Remove trailing blanks.
32343
32344 2003-08-17  Simon Josefsson  <jas@extundo.com>
32345
32346         * modules/xstrndup: New file.
32347         * MODULES.html.sh (func_all_modules): Add xstrndup.
32348
32349 2003-08-17  Simon Josefsson  <jas@extundo.com>
32350
32351         * modules/argp: Fix autoconf macro name. Add more dependencies.
32352
32353 2003-08-17  Simon Josefsson  <jas@extundo.com>
32354
32355         * m4/xstrndup.m4: New file.
32356
32357 2003-08-17  Simon Josefsson  <jas@extundo.com>
32358
32359         * m4/argp.m4: New file.
32360
32361 2003-08-17  Simon Josefsson  <jas@extundo.com>
32362             Bruno Haible  <bruno@clisp.org>
32363
32364         * lib/xstrndup.h: New file.
32365         * lib/xstrndup.c: New file.
32366
32367 2003-08-17  Bruno Haible  <bruno@clisp.org>
32368
32369         * modules/strndup (Files, Include): Add lib/strndup.h.
32370
32371 2003-08-17  Bruno Haible  <bruno@clisp.org>
32372
32373         * modules/euidaccess (Files): Add lib/euidaccess.h.
32374
32375 2003-08-17  Bruno Haible  <bruno@clisp.org>
32376
32377         * lib/strndup.h: New file.
32378
32379 2003-08-17  Bruno Haible  <bruno@clisp.org>
32380
32381         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
32382         like AC_GNU_SOURCE.
32383         * modules/extensions (configure.ac): Comment out the invocation of
32384         gl_USE_SYSTEM_EXTENSIONS.
32385
32386 2003-08-16  Paul Eggert  <eggert@twinsun.com>
32387
32388         Merges from coreutils, etc.
32389         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
32390         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
32391         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
32392         fixing a typo.
32393         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
32394         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
32395
32396 2003-08-16  Paul Eggert  <eggert@twinsun.com>
32397
32398         Document merge from coreutils.
32399         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
32400         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
32401         * modules/utime: Add m4/utimes-null.m4.
32402
32403 2003-08-16  Paul Eggert  <eggert@twinsun.com>
32404
32405         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
32406         space, undoing this 2003-08-12 change:
32407         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
32408
32409 2003-08-16  Paul Eggert  <eggert@twinsun.com>
32410
32411         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
32412         strtoul.c from libc, undoing this 2003-08-12 change:
32413         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
32414
32415 2003-08-16  Jim Meyering  <jim@meyering.net>
32416
32417         Merges from coreutils.
32418         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
32419         prefix.  Adjust cache variables similarly.  Create 500 rather than
32420         just 300 files, to exercise bug on Darwin6.5, too.
32421         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
32422         $missing_dir.
32423         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
32424         AM_SYS_POSIX_TERMIOS.
32425         Reported by mkc@mathdogs.com.
32426         Also change use of $am_cv_sys_posix_termios
32427         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
32428         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
32429         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
32430         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
32431         in /proc/mounts until it finds one with matching device number.  This
32432         is unnecessary when the FILE argument *is* a mount point.  No stat call
32433         is necessary in that case.  So, disable the statvfs-testing code on
32434         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
32435         as RedHat bug# 84846.
32436         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
32437         to 1MB, so as not to render systems with no stack size limit (e.g.,
32438         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
32439         Include <unistd.h>.  On some systems,
32440         it is required for the definition of _SC_PAGESIZE.
32441
32442 2003-08-16  Jim Meyering  <jim@meyering.net>
32443
32444         Merge from coreutils.
32445         * lib/xstrtoimax.c: #else #if -> #elif.
32446         * lib/xstrtoumax.c: Likewise.
32447
32448 2003-08-16  Jim Meyering  <jim@meyering.net>
32449
32450         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
32451         * m4/utimes.m4: Removed.
32452         * m4/utimes-null.m4: Renamed from utimes.m4.
32453
32454         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
32455         to 1MB, so as not to render systems with no stack size limit (e.g.,
32456         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
32457         Include <unistd.h>.  On some systems,
32458         it is required for the definition of _SC_PAGESIZE.
32459
32460 2003-08-16  Jim Meyering  <jim@meyering.net>
32461         and Paul Eggert  <eggert@cs.ucla.edu>
32462
32463         Merges from coreutils, etc.
32464
32465         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
32466         using the latest version from cvs.  This avoids problems with #line
32467         directives using a vendor (Sun) compiler.
32468         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
32469         Don't set GETGROUPS_LIB here; now it's
32470         done via getgroups.m4's wrapper function.
32471         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
32472         rather than just in sh-util/configure.in, so that the
32473         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
32474         same.
32475         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
32476         AC_FUNC_GETLOADAVG where to find getloadavg.c.
32477         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
32478         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
32479         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
32480         Remove code that is now done by the newly-required macros.
32481         Append $(EXEEXT) to DF_PROG.
32482         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
32483         Do not invoke or require the following here,
32484         since prereq.m4 or some gnulib .m4 now does this for us:
32485         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
32486         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
32487         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
32488         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
32489         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
32490         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
32491         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
32492         AC_FUNC_OBSTACK.
32493         Do not replace the following functions, as this is now the job
32494         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
32495         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
32496         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
32497         atexit getpass, strdup, getpagesize.
32498         Replace 'raise'.
32499         Do not check for the following functions, as this is now the job
32500         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
32501         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
32502         setregid.
32503         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
32504         Check for sys/sysctl.h.
32505         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
32506         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
32507         of checking for ssize_t ourselves.
32508
32509         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
32510         Require every macro that gnulib/modules/* suggests for us.
32511         (jm_PREREQ_ADDEXT): New macro.
32512         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
32513         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
32514
32515         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
32516         (gl_PHYSMEM): Use it.
32517         Also check for `table' function.
32518         Check for new headers and functions.
32519         Add check for sys/sysmp.h.
32520         With suggestions from Kaveh Ghazi.
32521         Ignore headers that are present but cannot be compiled.  This
32522         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
32523         C 5.4.
32524
32525 2003-08-15  Paul Eggert  <eggert@twinsun.com>
32526
32527         Document merge from coreutils.
32528         * modules/userspec: Depend on posixver.
32529         * modules/strftime: Depend on tzset.
32530
32531 2003-08-15  Paul Eggert  <eggert@twinsun.com>
32532
32533         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
32534         rather than tab, after '#' in shell-script copyright notices.
32535         Suggested by Bruno Haible.
32536
32537 2003-08-15  Paul Eggert  <eggert@twinsun.com>
32538
32539         * config/srclist-update: Use three spaces, rather than tab, after '#'
32540         in shell-script copyright notices.  Suggested by Bruno Haible.
32541         Remove unnecessary parenthesization in regular expression.
32542
32543 2003-08-15  Jim Meyering  <jim@meyering.net>
32544
32545         Merge from coreutils.
32546         * lib/xgethostname.c: Include <stdlib.h>.
32547         (xghostname): Don't exit for anything other than memory-related
32548         failure; just return NULL.
32549         * lib/userspec.c: Include "posixver.h".
32550         (parse_user_spec): Accept `.' as a separator only
32551         in pre-POSIX-200112 mode.
32552         * lib/strtoimax.c: Use #elif rather than #else #if.
32553         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
32554         Remove function, now that we can rely on a working tzset function.
32555         [!_LIBC]: Ensure that the required autoconf test has been run.
32556         [!defined _NL_CURRENT && HAVE_STRFTIME]:
32557         Use underlying_strftime for %r.
32558         * lib/sha.c: Merge in some clean-up and optimization changes from
32559         glibc.
32560         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
32561         Ensure that it is a multiple of 64.
32562         Rearrange loop exit tests so as to avoid performing an
32563         additional fread after encountering an error or EOF.
32564         * lib/realloc.c: Update copyright date.
32565
32566 2003-08-15  Jim Meyering  <jim@meyering.net>
32567         and Paul Eggert  <eggert@twinsun.com>
32568
32569         Merge from coreutils.
32570         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
32571         member but strut utmpx does not.  Needed for AIX 4.3.3.
32572         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
32573
32574 2003-08-15  Jim Meyering  <jim@meyering.net>
32575         and Paul Eggert  <eggert@cs.ucla.edu>
32576
32577         Merges from coreutils, etc.
32578         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
32579         Require gl_FUNC_TZSET_CLOBBER.
32580         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
32581         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
32582         members.
32583
32584 2003-08-14  Paul Eggert  <eggert@twinsun.com>
32585
32586         Help the merge from coreutils.
32587         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
32588         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
32589         * m4/tzset.m4: Use it too.
32590
32591 2003-08-14  Paul Eggert  <eggert@twinsun.com>
32592
32593         * modules/tzset: New file.
32594
32595 2003-08-14  Jim Meyering  <jim@meyering.net>
32596
32597         Merges from coreutils.
32598         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
32599         variable names, rather than @FNMATCH_H@.
32600         * modules/alloca: Likewise for $(ALLOCA_H).
32601
32602         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
32603         the three copies of the literal target, `fnmatch.h'.
32604         * modules/alloca (alloca.h): Likewise.
32605
32606 2003-08-14  Jim Meyering  <jim@meyering.net>
32607
32608         Merge from coreutils.
32609         * m4/tzset.m4: New file.
32610         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
32611         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
32612         otherwise, AIX 5.1 systems would end up using the latter.
32613         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
32614         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
32615         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
32616         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
32617
32618 2003-08-14  Jim Meyering  <jim@meyering.net>
32619
32620         Merge from coreutils.
32621         * lib/obstack.h: Whitespace changes.
32622         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
32623         and xcalloc return values.
32624         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
32625         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
32626         hang on OSF/1 5.1 for DIR on both local and remote file systems.
32627         Reported by (and fix confirmed by) Nelson H. F. Beebe.
32628         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
32629         error from mntctl.
32630         Use mntctl's return value to drive the entry-processing loop, since
32631         we can't rely on the value of the vmt_length member in the last
32632         entry.  On some systems doing so could result in exhausting
32633         virtual memory.  Based in part on a patch from Mike Jetzer.
32634
32635 2003-08-14  Jim Meyering  <jim@meyering.net>
32636         and Paul Eggert  <eggert@twinsun.com>
32637
32638         Merges from coreutils, plus other fixes.
32639         * lib/physmem.c: Merge in portability changes from gcc/libiberty
32640         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
32641         for credits and details.  Thanks to Kaveh Ghazi for helping
32642         to keep these files in sync.
32643         (ARRAY_SIZE): Define it.
32644         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
32645         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
32646         (memcasecmp): Don't assume size_t fits in unsigned int.
32647         Remove casts and duplicate code.
32648         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
32649         (memcpy): Remove definition.
32650         Merge in some clean-up and optimization changes from glibc.
32651         [BLOCKSIZE]: Move definition to top of file.
32652         Ensure that it is a multiple of 64.
32653         Rearrange loop exit tests so as to avoid performing an
32654         additional fread after encountering an error or EOF.
32655         * lib/md5.h (md5_uintptr): Define.
32656         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
32657         return to the initial working directory.  Preserve errno
32658         for caller.
32659         * lib/idcache.c: Include "xalloc.h".
32660         (xmalloc, xrealloc): Remove decls.
32661         (getuser): Remove casts no longer required in C89.
32662         * lib/human.c: Include stdio.h, for sprintf.
32663         * lib/group-member.c: Include "xalloc.h".
32664         (xmalloc, xrealloc): Remove decls.
32665         (get_group_info): Remove casts no longer required in C89.
32666         * lib/getusershell.c (readname): Remove casts no longer required in
32667         C89.
32668         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
32669         * lib/getline.c: Whitespace fix, from coreutils.
32670
32671 2003-08-13  Paul Eggert  <eggert@twinsun.com>
32672
32673         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
32674         Check for isascii.
32675
32676         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
32677         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
32678         Undo previous (whitespace-only) change.
32679
32680 2003-08-13  Paul Eggert  <eggert@twinsun.com>
32681
32682         * lib/exclude.c: Include <ctype.h>
32683         (IN_CTYPE_DOMAIN): New macro.
32684         (is_space): New fn.
32685         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
32686         and empty lines.
32687
32688         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
32689         Undo previous (whitespace-only) change.
32690
32691 2003-08-13  Paul Eggert  <eggert@twinsun.com>
32692
32693         * config/srclist-update: Change update back to the old behavior,
32694         leaving whitespace alone.  Use one 'sed' command rather than a
32695         pipeline.
32696         (fixlicense): Now a variable, not a function.
32697         (remove_trailing_blanks): Remove.
32698         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
32699         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
32700         Undo previous (whitespace-only) change.
32701
32702 2003-08-12  Paul Eggert  <eggert@twinsun.com>
32703
32704         Merge from coreutils.
32705         * modules/euidaccess: Add lib_SOURCES, include for new
32706         file euidaccess.h
32707
32708 2003-08-12  Paul Eggert  <eggert@twinsun.com>
32709
32710         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
32711         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
32712         Normalize leading white space and remove trailing white space.
32713
32714         Merge from coreutils
32715         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
32716
32717         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
32718         0.12.1.  These files are now being upgraded automatically by
32719         ../config/srclist-update.
32720
32721 2003-08-12  Paul Eggert  <eggert@twinsun.com>
32722
32723         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
32724         Normalize leading white space and remove trailing white space.
32725         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
32726         notice, as per ../config/srclist-update.
32727
32728         Merge from coreutils.
32729         * lib/euidaccess.h: New file.
32730         * lib/euidaccess.c: Include it.
32731         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
32732         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
32733         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
32734
32735 2003-08-12  Paul Eggert  <eggert@twinsun.com>
32736
32737         * config/srclist-update: Add copyright notice.
32738         (remove_id_lines, remove_trailing_blanks): New constants.
32739         (fixfile): Use them to normalize spacing a bit in copied files.
32740         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
32741         Normalize leading white space and remove trailing white space.
32742
32743         * config/texinfo.tex: Sync with texinfo.
32744
32745         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
32746         strtoul.c from libc, to merge coreutils whitespace changes.
32747
32748         * config/srclist.txt: Get the following m4 files from gettext:
32749         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
32750         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
32751         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
32752         wint_t.m4.
32753
32754 2003-08-12  Karl Berry  <karl@gnu.org>
32755
32756         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
32757         been made.
32758
32759 2003-08-11  Paul Eggert  <eggert@twinsun.com>
32760
32761         * modules/gnu-source, m4/gnu-source.m4:
32762         Remove; we're assuming Autoconf 2.54 or later now.
32763         Suggested by Bruno Haible.
32764         * MODULES.html.sh (func_all_modules): Remove gnu-source.
32765
32766 2003-08-11  Bruno Haible  <bruno@clisp.org>
32767
32768         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
32769
32770 2003-08-11  Bruno Haible  <bruno@clisp.org>
32771
32772         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
32773         (vasnprintf): Use it instead of wcslen.
32774
32775 2003-08-11  Bruno Haible  <bruno@clisp.org>
32776
32777         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
32778         value to ensure that _Bool promotes to int. Use #define for _Bool when
32779         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
32780
32781 2003-08-10  Karl Berry  <karl@gnu.org>
32782
32783         * lib/regex.h: update from libc (whitespace fix).
32784
32785 2003-08-09  Paul Eggert  <eggert@twinsun.com>
32786
32787         Merge some files from coreutils.  These changes were
32788         originally made by Jim Meyering.
32789         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
32790         many older Unixes require this.
32791         * lib/alloca.c (alloca): Remove cast to argument of free;
32792         no longer needed in C89.
32793         * lib/alloca_.h, regex.h: Fix white space to match
32794         what GNU indent does.
32795
32796 2003-08-09  Paul Eggert  <eggert@twinsun.com>
32797
32798         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
32799         apparently Emacs's Unicode mode got confused before my 2003-08-05
32800         checkin.
32801
32802 2003-08-08  Paul Eggert  <eggert@twinsun.com>
32803
32804         * m4/extensions.m4: New file.
32805         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
32806         Require gl_USE_SYSTEM_EXTENSIONS.
32807         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
32808         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
32809
32810 2003-08-08  Paul Eggert  <eggert@twinsun.com>
32811
32812         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
32813         * modules/extensions, modules/gnu-source: New files.
32814         * modules/timespec, modules/unlocked-io: Depend on extensions.
32815
32816 2003-08-07  Paul Eggert  <eggert@twinsun.com>
32817
32818         * modules/restrict: New file.
32819         * MODULES.html.sh (func_all_modules): Add restrict.
32820         * modules/regex: Depend on restrict.
32821
32822 2003-08-07  Paul Eggert  <eggert@twinsun.com>
32823
32824         * m4/restrict.m4: New file.
32825         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
32826
32827 2003-08-07  Bruno Haible  <bruno@clisp.org>
32828
32829         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
32830         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
32831
32832 2003-08-07  Bruno Haible  <bruno@clisp.org>
32833
32834         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
32835         makes the module 'getndelim2' compatible with the module 'getline'.
32836
32837 2003-08-05  Paul Eggert  <eggert@twinsun.com>
32838
32839         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
32840         byte with "\201" to avoid glitches when editing that source file
32841         with multi-gnome-terminal.
32842
32843 2003-08-05  Paul Eggert  <eggert@twinsun.com>
32844
32845         * lib/bumpalloc.h: Remove.
32846
32847 2003-08-05  Paul Eggert  <eggert@twinsun.com>
32848
32849         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
32850         * modules/bumpalloc: Remove.
32851
32852 2003-08-04  Paul Eggert  <eggert@twinsun.com>
32853
32854         * lib/getloadavg.c: Change copyright notice and spacing to conform to
32855         GNU coding style.
32856
32857         Merge from coreutils.
32858         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
32859         1. From glibc.
32860         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
32861         from Karl Berry, implemented by Jim Meyering.
32862         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
32863         from Dmitry V. Levin.
32864         Remove anachronistic cast of xrealloc.
32865         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
32866         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
32867         type. Otherwise, it wouldn't compile with at least /bin/cc on
32868         ymp-cray-unicos9.0.2.X.
32869         Combine two mostly-identical uses of alloca into one.
32870         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
32871
32872 2003-08-04  Dave Love  <d.love@dl.ac.uk>
32873
32874         [From Emacs.]
32875
32876         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
32877         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
32878         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
32879         obsolete NLIST_NAME_UNION.
32880         [__GNU__]: Undef BSD and FSCALE.
32881         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
32882
32883 2003-08-03  Paul Eggert  <eggert@twinsun.com>
32884
32885         * lib/stdbool_.h (_Bool): Make it signed char, instead of
32886         an enum type, so that it's guaranteed to promote to int.  See:
32887         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
32888
32889 2003-08-03  Karl Berry  <karl@gnu.org>
32890
32891         * config/depcomp: update from automake.
32892
32893 2003-07-31  Paul Eggert  <eggert@twinsun.com>
32894
32895         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
32896         (strerror): Don't assume that a printable int fits in 14 bytes.
32897
32898 2003-07-31  Bruno Haible  <bruno@clisp.org>
32899
32900         * modules/getpass-gnu: New file.
32901         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
32902
32903 2003-07-31  Bruno Haible  <bruno@clisp.org>
32904
32905         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
32906
32907 2003-07-24  Karl Berry  <karl@gnu.org>
32908
32909         * config/missing: update from automake.
32910
32911 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
32912             Bruno Haible  <bruno@clisp.org>
32913
32914         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
32915         * lib/getline.c (getline, getdelim): Likewise.
32916         Remove _GNU_SOURCE define; now it's defined in config.h through
32917         m4/getline.m4.
32918
32919 2003-07-23  Karl Berry  <karl@gnu.org>
32920
32921         * config/config.sub: update from prep.
32922
32923 2003-07-22  Paul Eggert  <eggert@twinsun.com>
32924
32925         * modules/xalloc (Depends-on): Add exitfail.
32926         * modules/xmemcoll: Likewise.
32927
32928 2003-07-22  Paul Eggert  <eggert@twinsun.com>
32929
32930         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
32931         over-parenthesization in macros.
32932
32933         Sync with coreutils.
32934
32935         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
32936         required by C99.
32937
32938         Use `exit_failure' for xalloc and xmemcoll instead of their own
32939         private exit-failure variables.
32940         * lib/xalloc.h (xalloc_exit_failure): Remove.
32941         * lib/xmalloc.c: Likewise.  Include exitfail.h.
32942         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
32943         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
32944         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
32945         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
32946
32947 2003-07-20  Jim Meyering  <jim@meyering.net>
32948
32949         * modules/closeout (Depends-on): Add exitfail.
32950         Suggestion from Bruno Haible.
32951
32952 2003-07-19  Karl Berry  <karl@gnu.org>
32953
32954         * config/config.sub: update from prep.
32955
32956 2003-07-18  Paul Eggert  <eggert@twinsun.com>
32957
32958         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
32959         Remove.
32960         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
32961         to test that it can stand by itself.  Include "exitfail.h".
32962         Clients should set exit_failure instead.
32963         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
32964
32965 2003-07-18  Bruno Haible  <bruno@clisp.org>
32966
32967         * modules/getndelim2: New file.
32968         * modules/getline: Share files with module getndelim2.
32969         * modules/getnline: Depend on getndelim2 instead of sharing files with
32970         it. Add getnline.c to lib_SOURCES.
32971         * MODULES.html.sh (func_all_modules): Add getndelim2.
32972
32973 2003-07-18  Bruno Haible  <bruno@clisp.org>
32974
32975         * m4/getndelim2.m4: New file.
32976         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
32977         invoke gl_PREREQ_GETNDELIM2.
32978         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
32979         gl_PREREQ_GETNDELIM2.
32980         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
32981         gl_GETNDELIM2.
32982
32983 2003-07-18  Bruno Haible  <bruno@clisp.org>
32984
32985         * lib/getndelim2.h: New file.
32986         * lib/getndelim2.c: Make into a module of its own. Include config.h,
32987         getndelim2.h.
32988         (getndelim2): Make non-static. Change return type to ssize_t.
32989         * lib/getline.h: Change argument names.
32990         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
32991         * lib/getnline.c: Include getndelim2.h.
32992
32993 2003-07-18  Andreas Schwab  <schwab@suse.de>
32994
32995         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
32996
32997 2003-07-17  Karl Berry  <karl@gnu.org>
32998
32999         * config/config.sub: update from prep.
33000
33001 2003-07-17  Bruno Haible  <bruno@clisp.org>
33002
33003         * modules/getnline: New file.
33004         * modules/getline: Add lib/getndelim2.c to source file list.
33005         * MODULES.html.sh (func_all_modules): Add getnline.
33006
33007 2003-07-17  Bruno Haible  <bruno@clisp.org>
33008
33009         * m4/getnline.m4: New file.
33010
33011 2003-07-17  Bruno Haible  <bruno@clisp.org>
33012
33013         * m4/Makefile.am.in: Remove file.
33014         * m4/Makefile.am: Remove file.
33015         * m4/Makefile.in: Remove file.
33016
33017 2003-07-17  Bruno Haible  <bruno@clisp.org>
33018
33019         * lib/getnline.h: New file.
33020         * lib/getnline.c: New file.
33021         * lib/getndelim2.c: New file, extracted from getline.c.
33022         (getndelim2): Renamed from getdelim2, with added nmax argument.
33023         * lib/getline.c: Include getndelim2.c.
33024         (getdelim2): Moved out to getndelim2.c.
33025         (getline, getdelim): Update.
33026
33027 2003-07-17  Bruno Haible  <bruno@clisp.org>
33028
33029         * lib/Makefile.am: Remove file.
33030         * lib/Makefile.in: Remove file.
33031
33032 2003-07-17  Bruno Haible  <bruno@clisp.org>
33033
33034         * configure.in: Remove file.
33035         * Makefile.in: Remove file.
33036
33037 2003-07-17  Bruno Haible  <bruno@clisp.org>
33038
33039         * MODULES.html.sh: Put the </BODY> right before </HTML>.
33040
33041 2003-07-16  Karl Berry  <karl@gnu.org>
33042
33043         * config/srclist-update: was running fixlicense twice, which caused
33044                 texinfo.tex to be nullified for some reason.  Simplify,
33045                 $gplsrc is no longer needed as far as I can see?
33046
33047 2003-07-16  Jim Meyering  <jim@meyering.net>
33048
33049         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
33050
33051 2003-07-15  Paul Eggert  <eggert@twinsun.com>
33052
33053         * config/srclist.txt: Get the following files from gettext-runtime/intl
33054         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
33055         ref-del.sin.  From Bruno Haible.
33056         * config/srclist-update (fixfile): Change grep pattern again, since the
33057         previous fix didn't work (there was another trailing $).  Use
33058         '[$]' to escape the $s.
33059
33060 2003-07-15  Karl Berry  <karl@gnu.org>
33061
33062         * lib/vasnprintf.c: update from gettext.
33063
33064 2003-07-15  Karl Berry  <karl@gnu.org>
33065
33066         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
33067         gets expanded when surrounded by '$'.
33068
33069 2003-07-15  Jim Meyering  <jim@meyering.net>
33070
33071         * modules/save-cwd: Don't depend on error.  From Derek Price.
33072
33073 2003-07-15  Jim Meyering  <jim@meyering.net>
33074
33075         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
33076
33077 2003-07-14  Simon Josefsson  <jas@extundo.com>
33078
33079         * modules/mempcpy: New file.
33080         * MODULES.html.sh (func_all_modules): Add mempcpy.
33081
33082 2003-07-14  Simon Josefsson  <jas@extundo.com>
33083
33084         * m4/mempcpy.m4: New file.
33085
33086 2003-07-14  Simon Josefsson  <jas@extundo.com>
33087
33088         * lib/mempcpy.h: New file.
33089         * lib/mempcpy.c: New file.
33090
33091 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33092
33093         * modules/getdate, modules/posixtm: Depend on mktime.
33094
33095 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33096
33097         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
33098         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
33099         unicodeio.c, unicodeio.h, unlocked-io.h:
33100         Switch from LGPL to GPL.
33101
33102 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33103
33104         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
33105         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
33106         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
33107         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
33108         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
33109         updated automatically by ../config/srclist-update.  This changes
33110         their license from LPGL to GPL.
33111
33112 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33113
33114         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
33115         assumed to refer to the root of the most recent stable gettext version.
33116         * config/srclistvars.sh: Add defaults for eggert.
33117         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
33118         Match "This program" as well as "The program".  This is needed
33119         for gettext.
33120
33121 2003-07-14  Jim Meyering  <jim@meyering.net>
33122
33123         Don't emit diagnostics.  Let callers do that.
33124         * lib/save-cwd.c: Don't include "error.h".
33125         (save_cwd): Don't call error.  Ensure that errno is valid
33126         when returning nonzero.
33127
33128         * lib/save-cwd.h (restore_cwd): Update prototype.
33129         * lib/save-cwd.c (restore_cwd): Remove two parameters.
33130         Simplify.  Don't call error upon failure.  Let callers do that.
33131         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
33132         when auditing is enabled.  But don't bother updating the #if.
33133
33134 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
33135
33136         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
33137         it breaks C++ compilation.
33138         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
33139
33140 2003-07-10  Simon Josefsson  <jas@extundo.com>
33141
33142         * modules/strchrnul (Makefile.am): Add strchrnul.h.
33143
33144 2003-07-10  Jim Meyering  <jim@meyering.net>
33145
33146         * m4/clock_time.m4: Remove trailing blank.
33147         * m4/intmax_t.m4: Likewise.
33148
33149 2003-07-10  Jim Meyering  <jim@meyering.net>
33150
33151         * lib/vasnprintf.c: Remove trailing blanks.
33152         Make cpp indentation consistent.
33153
33154 2003-07-09  Paul Eggert  <eggert@twinsun.com>
33155
33156         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
33157         posixver.c, strftime.c, strnlen.c, strverscmp.c:
33158         Switch from LGPL to GPL.
33159
33160 2003-07-09  Paul Eggert  <eggert@twinsun.com>
33161
33162         * config/srclist.txt: Sort sublists.  Add
33163         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
33164         that differ from gnulib for one reason or another; we'd like this list
33165         to be smaller but for now let's document what we have.
33166
33167 2003-07-08  Paul Eggert  <eggert@twinsun.com>
33168
33169         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
33170         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
33171         and sweeter "eval x=$x".
33172         * config/srclist.txt: Get lib/argp* from glibc.
33173
33174 2003-07-07  Paul Eggert  <eggert@twinsun.com>
33175
33176         * lib/mktime.c: Fix some boundary cases and remove need for floating
33177         point.
33178
33179         Issue a compile-time diagnostic if time_t is floating point, or if
33180         two's complement arithmetic is not in effect, or if arithmetic
33181         right shift does not propagate the sign.  These assumptions were
33182         all in the original code but they weren't checked.
33183
33184         (TIME_T_MIDPOINT, verify): New macros.
33185         (__isleap): Remove; it has integer overflow problems.
33186         (leapyear): New function, without those problems.
33187         (ydhms_tm_diff): Remove; splitting into two parts.
33188         (ydhms_diff): New function, containing the arithmetic part of
33189         the old ydhms_tm_diff function.  Issue a compile-time
33190         diagnostic if we are not using C99 integer division.
33191         Avoid casts when possible.
33192         (guess_time_tm): New function, containing the checking part of
33193         the old ydhms_tm_diff function.  Return the new value, rather than
33194         the difference between it and the old.  Accept a new argument T
33195         so that *T specifies the old value.  Check for overflow in the result.
33196
33197         (__mktime_internal): Use a time_t offset, not a long int offset.
33198         This undoes the 2003-06-04 change, which is no longer needed now
33199         that we have better overflow checking.
33200         (localtime_offset): Likewise.
33201
33202         (__mktime_internal): Avoid harmful overflow on hosts where time_t
33203         and long are 64-bit but int is only 32-bit.
33204         (ydhms_diff): Use long int to store year1 and yday1.
33205         Issue a compile-time diagnostic if long int is not wide enough.
33206
33207         (__mktime_internal): Use long int to store adjusted year and yday.
33208         Use plain C rather than preprocessor commands, if that doesn't
33209         affect efficiency.
33210         Check for overflow (and try to repair) after each probe
33211         rather than checking only at the very end.  This avoids some bugs
33212         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
33213         does not equal GMT offset at maximum time).
33214         Use integer to check for overflow rather than floating point; this
33215         is more portable to non-IEEE hosts, and is a tad faster.
33216         When we detect that we are oscillating between two values,
33217         don't check whether tm_isdst has the requested value, since
33218         we already know the answer.  When tm_isdst has the wrong value,
33219         use a different heuristic to find the right one, based on the
33220         extreme values actually observed in practice in tz2003a,
33221         rather than the (overly optimistic) "previous 3 calendar quarters".
33222
33223         (not_equal_tm, print_tm, check_result): Use "const T" rather than
33224         "T const" to accommodate glibc style.
33225         (check_result): Use less-confusing report format.  "long" -> "long int.
33226         (main): Likewise.
33227         Don't loop if the iteration overflows time_t.
33228         Allow a negative step in the iteration.
33229
33230 2003-07-06  Karl Berry  <karl@gnu.org>
33231
33232         * config/depcomp: update from automake.
33233         * config/config.sub: update from prep.
33234
33235 2003-07-03  Karl Berry  <karl@gnu.org>
33236
33237         * config/config.guess: update from prep.
33238
33239 2003-07-01  Paul Eggert  <eggert@twinsun.com>
33240
33241         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
33242         xreadlink.c now includes it unconditionally.
33243
33244 2003-07-01  Paul Eggert  <eggert@twinsun.com>
33245
33246         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
33247         having it depend on HAVE_SYS_TYPES_H.
33248
33249 2003-07-01  Bruno Haible  <bruno@clisp.org>
33250
33251         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
33252         <sys/types.h> should be sufficient.
33253         Reported by Paul Eggert.
33254
33255 2003-06-26  Karl Berry  <karl@gnu.org>
33256
33257         * config/depcomp: update from automake.
33258
33259 2003-06-26  Bruno Haible  <bruno@clisp.org>
33260
33261         * modules/human: Depend on module stdbool.
33262
33263 2003-06-25  Bruno Haible  <bruno@clisp.org>
33264
33265         * modules/readlink: New file.
33266         * modules/xreadlink: Depend on it.
33267         * MODULES.html.sh (func_all_modules): Add readlink.
33268
33269 2003-06-25  Bruno Haible  <bruno@clisp.org>
33270
33271         * m4/readlink.m4: New file.
33272
33273 2003-06-25  Bruno Haible  <bruno@clisp.org>
33274
33275         * lib/readlink.c: New file.
33276
33277 2003-06-22  Karl Berry  <karl@gnu.org>
33278
33279         * config/srclist.txt: update mkinstalldirs from automake.
33280         * config/mkinstalldirs: update.
33281
33282 2003-06-22  Bruno Haible  <bruno@clisp.org>
33283
33284         Portability to mingw32.
33285         * m4/ssize_t.m4: New file, from GNU gettext.
33286         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
33287         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
33288
33289 2003-06-22  Bruno Haible  <bruno@clisp.org>
33290
33291         * modules/safe-read: Add m4/ssize_t.m4.
33292         * modules/xreadlink: Add m4/ssize_t.m4.
33293
33294 2003-06-20  Bruno Haible  <bruno@clisp.org>
33295
33296         Assume C89, so PARAMS isn't needed.
33297         * lib/unicodeio.h (PARAMS): Remove.
33298         * lib/unicodeio.c: Don't use PARAMS.
33299
33300 2003-06-18  Karl Berry  <karl@gnu.org>
33301
33302         * config/config.{guess,sub}: update from prep.
33303
33304 2003-06-18  Jim Meyering  <jim@meyering.net>
33305
33306         Merge changes from coreutils.
33307         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
33308         Remove explicit declarations of xmalloc and realloc.
33309         Include xalloc.h.
33310         (read_utmp): Remove anachronistic cast of xmalloc.
33311
33312 2003-06-17  Paul Eggert  <eggert@twinsun.com>
33313
33314         Assume C89, so PARAMS isn't needed.
33315         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
33316         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
33317         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
33318         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
33319         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
33320         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
33321         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
33322         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
33323         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
33324         lib/xstrtod.h, lib/xstrtol.h: Likewise.
33325         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
33326         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
33327         no longer needed. Anyway, config.h should always be included before any
33328         other file.
33329
33330 2003-06-11  Simon Josefsson  <jas@extundo.com>
33331
33332         * modules/sysexits: New file.
33333         * MODULES.html.sh (func_all_modules): Add sysexits.
33334
33335 2003-06-11  Simon Josefsson  <jas@extundo.com>
33336
33337         * lib/sysexit_.h: New file.
33338
33339 2003-06-11  Derek Price  <derek@ximbiot.com>
33340
33341         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
33342         necessary.
33343
33344 2003-06-11  Bruno Haible  <bruno@clisp.org>
33345
33346         * m4/sysexits.m4: New file.
33347
33348 2003-06-10  Simon Josefsson  <jas@extundo.com>
33349
33350         * lib/argp.h: New file, from glibc.
33351         * lib/argp-ba.c: New file, from glibc.
33352         * lib/argp-eexst.c: New file, from glibc.
33353         * lib/argp-fmtstream.c: New file, from glibc.
33354         * lib/argp-fmtstream.h: New file, from glibc.
33355         * lib/argp-fs-xinl.c: New file, from glibc.
33356         * lib/argp-help.c: New file, from glibc.
33357         * lib/argp-namefrob.h: New file, from glibc.
33358         * lib/argp-parse.c: New file, from glibc.
33359         * lib/argp-pv.c: New file, from glibc.
33360         * lib/argp-pvh.c: New file, from glibc.
33361         * lib/argp-xinl.c: New file, from glibc.
33362
33363 2003-06-10  Simon Josefsson  <jas@extundo.com>
33364
33365         * modules/strchrnul: New file.
33366
33367 2003-06-10  Simon Josefsson  <jas@extundo.com>
33368
33369         * modules/argp: New file.
33370
33371 2003-06-10  Simon Josefsson  <jas@extundo.com>
33372
33373         * m4/strchrnul.m4: New file.
33374
33375 2003-06-10  Simon Josefsson  <jas@extundo.com>
33376
33377         * lib/strchrnul.h: New file.
33378         * lib/strchrnul.c: New file.
33379
33380 2003-06-10  Bruno Haible  <bruno@clisp.org>
33381
33382         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
33383
33384 2003-06-07  Karl Berry  <karl@gnu.org>
33385
33386         * config/config.{guess,sub}: update from prep.
33387
33388 2003-06-07  Jim Meyering  <jim@meyering.net>
33389
33390         * modules/strtod: Use $(...) notation, not @...@ for
33391         AC_REPLACE'd variables.
33392         * modules/localcharset: Likewise.
33393
33394 2003-06-07  Jim Meyering  <jim@meyering.net>
33395
33396         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
33397         in place of my name in the copyright comment.
33398         Remove definition and uses of __P.
33399
33400         From coreutils.
33401         * lib/stat.c: Don't declare xmalloc explicitly.
33402         Instead, include "xalloc.h".
33403         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
33404         xrealloc, and xcalloc return values.
33405         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
33406         Improve comment.
33407         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
33408
33409 2003-06-07  Bruno Haible  <bruno@clisp.org>
33410
33411         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
33412         avoid AC_CONFIG_LINKS.
33413         * modules/fnmatch (Makefile.am): Use explicit creation rule for
33414         fnmatch.h, to avoid AC_CONFIG_LINKS.
33415         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
33416
33417 2003-06-07  Bruno Haible  <bruno@clisp.org>
33418
33419         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
33420         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
33421         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
33422         directory.
33423         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
33424         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
33425         directory.
33426
33427 2003-06-06  Jim Meyering  <jim@meyering.net>
33428
33429         Merge from coreutils.
33430         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
33431         Consolidate declarations and initializations of *_base* locals.
33432
33433         Merge from coreutils.
33434         This avoids a core dump on systems without GNU putenv,
33435         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
33436         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
33437         (unsetenv): New static function, from GNU libc.
33438         (rpl_putenv): Use it.
33439
33440         * lib/modechange.c: Remove trailing blanks.
33441
33442         Merge from coreutils.
33443         * lib/fsusage.c: Remove declaration of statfs.
33444         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
33445
33446         * lib/posixtm.c: Include <stdbool.h> unconditionally.
33447
33448 2003-06-06  Jim Meyering  <jim@meyering.net>
33449
33450         * lib/stdbool_.h: Renamed from stdbool.h.in.
33451
33452 2003-06-06  Jim Meyering  <jim@meyering.net>
33453             Bruno Haible  <bruno@clisp.org>
33454
33455         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
33456         Adjust Makefile.am snippet not to redirect directly to target.
33457         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
33458
33459 2003-06-05  Paul Eggert  <eggert@twinsun.com>
33460
33461         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
33462         mismatch, look in future quarters as well as past.  This fixes a
33463         bug when processing fall-backwards gaps immediately after a long
33464         period of daylight-saving time.
33465
33466         * lib/mktime.c: Assume freestanding C89 or better.
33467         (HAVE_LIMITS_H): Remove.  Assume it's 1.
33468         (__P): Remove; not used.
33469         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
33470         (mktime, not_equal_tm, print_tm, check_result,
33471         main): Use prototypes.  Use const * where appropriate.
33472         (main): Fix typo in testing code that uncovered by above changes.
33473         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
33474
33475 2003-06-04  Paul Eggert  <eggert@twinsun.com>
33476
33477         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
33478         locale.h, localeconv.  This merges changes from coreutils.
33479
33480         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
33481         It can be removed after the next Autoconf is released.
33482         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
33483         needed.
33484
33485 2003-06-04  Paul Eggert  <eggert@twinsun.com>
33486
33487         * lib/mktime.c: Fix Debian bug 177940
33488         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
33489         (localtime_offset): Now long int, not time_t, because we want it
33490         to be guaranteed to be signed.  All uses changed.
33491         (__mktime_internal): If overflow would occur when adding offset,
33492         don't add it.
33493
33494         Merge 'human' changes from coreutils.  Rewrite to support
33495         locale-specific notations like thousands separators.
33496         * lib/human.c: Simplify authorship notice.
33497         Include human.h immediately after config.h.
33498         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
33499         <limits.h>: Do not include, since human.h does.
33500         (SIZE_MAX, UINTMAX_MAX): New macros.
33501         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
33502         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
33503         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
33504         (power_letter): Renamed from suffixes.
33505         (generate_suffix_backwards): Remove.
33506         (adjust_value): Now takes int style (because of human.h changes)
33507         and long double value (for greater precision on some platforms).
33508         (group_number): New function.
33509         (human_readable): Use it.  Use integer options, not enum.
33510         Put the options before the sizes in the arg list.
33511         Support all the new options.
33512         The old human_readable function has been removed;
33513         use inttostr.h instead.
33514         (human_readable, default_block_size, humblock):
33515         Use uintmax_t, not int, for block sizes.
33516         (human_readable_inexact, block_size_types): Remove.
33517         (block_size_opts): New constant.
33518         (human_options): Renamed from human_block_size, with new signature
33519         that allows block sizes up to UINTMAX_MAX.  All callers changed.
33520         * lib/human.h: Add copyright and authorship notice.
33521         Include <limits.h> and <stdbool.h> unconditionally.
33522         (PARAMS): Remove.  All uses removed.
33523         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
33524         (enum human_inexact_style): Remove tag; now a nameless enum.
33525         (human_floor, human_ceiling, human_round_to_even): Now have
33526         values 2, 0, 1 rather than -1, 1, 0.
33527         (human_group_digits, human_suppress_point_zero, human_autoscale,
33528         human_base_1024, human_SI, human_B): New constants.
33529         (human_readable_inexact, human_block_size): Remove.
33530         (human_readable): Size args are now uintmax_t, not int.
33531         (human_options): New decl.
33532
33533         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
33534         unnecessary now that we assume C89 or better.  This change
33535         imported from coreutils.
33536
33537         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
33538         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
33539         in the 2003-05-30 sync from glibc.
33540
33541         .h files should stand alone, but we shouldn't include <sys/types.h>
33542         if we can get away with just <stddef.h>.
33543
33544         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
33545         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
33546         rather than <sys/types.h>, as we merely need size_t.
33547         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
33548         to get size_t.
33549         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
33550         Include <stdio.h>, to get FILE.
33551         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
33552         memcasecmp.h has included <stddef.h> and all we need is size_t.
33553         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
33554         our interface, instead of including <sys/types.h>
33555
33556 2003-06-04  Paul Eggert  <eggert@twinsun.com>
33557
33558         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
33559         now, as glibc mktime is buggy on non-glibc systems.
33560
33561 2003-06-03  Karl Berry  <karl@gnu.org>
33562
33563         * config/config.sub: update from prep.
33564
33565 2003-06-02  Paul Eggert  <eggert@twinsun.com>
33566
33567         [from coreutils]
33568         Fix some minor time-related bugs with POSIX time arguments.
33569         Some valid time stamps were being rejected (notably -1, and
33570         time stamps before 1900 on 64-bit hosts).  And some invalid
33571         time stamps were being accepted, e.g. September 31.
33572
33573         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
33574         that we can return (time_t) -1 successfully.
33575         * lib/posixtm.c: Likewise.
33576         [HAVE_STDBOOL_H]: Include <stdbool.h>.
33577         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
33578         (t): Remove static var.
33579         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
33580         of static var.  All uses changed.
33581         (year): Do not reject years before 1900; they can occur with
33582         64-bit time_t.
33583         (posix_time_parse): Do not check for out-of-range components;
33584         that is now the caller's responsibility, since our checks were
33585         only approximations.
33586         (posixtime): Use mktime to check for out-of-range components,
33587         since it knows them exactly.
33588         If mktime returns (time_t) -1, check whether an error actually occurred
33589         by invoking localtime on -1.
33590         (main) [TEST_POSIXTIME]: Check for input data errors, and report
33591         posixtime failures better.
33592         Improve the test data (in comments only).
33593
33594 2003-06-02  Karl Berry  <karl@gnu.org>
33595
33596         * config/mkinstalldirs (version): new variable.
33597         (--version): new option.
33598         (usage): improve message.
33599
33600 2003-05-30  Karl Berry  <karl@gnu.org>
33601
33602         * lib/mktime.c: update from libc.
33603
33604 2003-05-30  Bruno Haible  <bruno@clisp.org>
33605
33606         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
33607         * config/config.rpath: Upgrade to gettext-0.12.1.
33608
33609 2003-05-30  Bruno Haible  <bruno@clisp.org>
33610
33611         * m4/gettext.m4: Upgrade to gettext-0.12.1.
33612         * m4/nls.m4: New file, from gettext-0.12.1.
33613         * m4/po.m4: New file, from gettext-0.12.1.
33614         * m4/progtest.m4: Upgrade to gettext-0.12.1.
33615
33616 2003-05-30  Bruno Haible  <bruno@clisp.org>
33617
33618         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
33619         * lib/localcharset.h: Likewise.
33620         * lib/localcharset.c: Likewise.
33621
33622 2003-05-29  Karl Berry  <karl@gnu.org>
33623
33624         * config/config.rpath: update from gettext.
33625
33626 2003-05-28  Paul Eggert  <eggert@twinsun.com>
33627
33628         Assume the headers required for C89 freestanding compilers.
33629         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
33630         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
33631         * m4/human.m4 (gl_HUMAN): Likewise.
33632         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
33633         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
33634         * m4/userspec.m4 (gl_USERSPEC): Likewise.
33635         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
33636         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
33637         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
33638
33639 2003-05-28  Paul Eggert  <eggert@twinsun.com>
33640
33641         Assume the headers required for C89 freestanding compilers.
33642         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
33643         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
33644         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
33645         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
33646         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
33647         define, since <limits.h> is guaranteed to do that.
33648         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
33649         * lib/exclude.c: Include <stdbool.h> unconditionally.
33650         * lib/tempname.c: Include <stddef.h> unconditionally.
33651         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
33652         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
33653         <stddef.h> does that.
33654         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
33655         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
33656         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
33657         needed.
33658         * lib/xstrtol.c: Likewise.
33659         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
33660         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
33661
33662         * lib/addext.c (addext): Use assignment rather than cast, to avoid
33663         warnings on some platforms.
33664
33665         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
33666         arbitrarily.
33667
33668 2003-05-26  Jim Meyering  <jim@meyering.net>
33669
33670         Merge in a change from coreutils:
33671         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
33672         that is guaranteed to be `no'.  Use `no_such_member' to indicate
33673         that condition, rather than `-1' which is slightly misleading.
33674         Change the name of the cache variable to have the gl_ prefix.
33675         Prompted by a patch from Richard Dawe for DJGPP.
33676
33677 2003-05-24  Karl Berry  <karl@gnu.org>
33678
33679         * config/config.guess: update from prep.
33680
33681 2003-05-22  Karl Berry  <karl@gnu.org>
33682
33683         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
33684
33685 2003-05-20  Karl Berry  <karl@gnu.org>
33686
33687         * config/config.guess: update from prep.
33688
33689 2003-05-18  Karl Berry  <karl@gnu.org>
33690
33691         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
33692         might actually be set by the user.
33693
33694         * config/depcomp, install-sh, mdate-sh: update from automake.
33695
33696 2003-05-17  Bruno Haible  <bruno@clisp.org>
33697
33698         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
33699         invalid expansion for AC_EGREP_CPP.
33700         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
33701         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
33702         Suggested by Akim Demaille <akim@epita.fr> in
33703         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
33704
33705 2003-05-12  Jim Meyering  <jim@meyering.net>
33706
33707         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
33708         the space-padded-by-default conversion specifiers, %e, %k, %l.
33709
33710 2003-05-12  Bruno Haible  <bruno@clisp.org>
33711
33712         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
33713         the string is longer than 4 KB.
33714
33715 2003-05-11  Karl Berry  <karl@gnu.org>
33716
33717         * config/config.{guess,sub}: update from prep.
33718
33719 2003-05-09  Bruno Haible  <bruno@clisp.org>
33720
33721         * modules/error: Add m4/strerror_r.m4 to file list.
33722
33723 2003-05-03  Bruno Haible  <bruno@clisp.org>
33724
33725         Upgrade to Unicode-4.0.
33726         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
33727         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
33728         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
33729         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
33730         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
33731         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
33732         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
33733         Change width of U+E0100..U+E01EF from 1 to 0.
33734
33735 2003-04-25  Jim Meyering  <jim@meyering.net>
33736
33737         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
33738         of type size_t, not int.
33739
33740 2003-04-25  Bruno Haible  <bruno@clisp.org>
33741
33742         * lib/copy-file.c: Include <stddef.h>, for size_t.
33743
33744 2003-04-21  Paul Eggert  <eggert@twinsun.com>
33745
33746         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
33747         code which expansion is under static control.  Patch imported from
33748         Akim Demaille's patch to Bison; see
33749         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
33750
33751 2003-04-14  Bruno Haible  <bruno@clisp.org>
33752
33753         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
33754
33755 2003-04-11  Jim Meyering  <jim@meyering.net>
33756
33757         Merge changes from Coreutils.
33758
33759         2003-03-22  Jim Meyering  <jim@meyering.net>
33760
33761         * lib/strftime.c (widen): Cast alloca return value to proper type.
33762
33763         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
33764
33765         From GNU libc.
33766         * lib/strftime.c (my_strftime): Handle very large width
33767         specifications for numeric values correctly.  Improve checks for
33768         overflow.
33769
33770         2003-01-19  Jim Meyering  <jim@meyering.net>
33771
33772         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
33773         definitions.
33774         (nl_get_alt_digit) [! defined my_strftime]: Define.
33775         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
33776         _nl_get_alt_digit and _nl_get_walt_digit.
33777
33778         * lib/strftime.c (my_strftime): Merge in locale-related changes from
33779         libc. These changes have no effect outside of _LIBC.
33780
33781 2003-04-10  Bruno Haible  <bruno@clisp.org>
33782
33783         * modules/findprog: New file.
33784         * MODULES.html.sh (func_all_modules): Add it.
33785
33786 2003-04-10  Bruno Haible  <bruno@clisp.org>
33787
33788         * m4/findprog.m4: New file.
33789         * m4/eaccess.m4: New file.
33790
33791 2003-04-10  Bruno Haible  <bruno@clisp.org>
33792
33793         * lib/findprog.h: New file, from GNU gettext.
33794         * lib/findprog.c: New file, from GNU gettext.
33795
33796 2003-04-05  Jim Meyering  <jim@meyering.net>
33797
33798         Merge changes from Coreutils.
33799
33800         * lib/exclude.h (PARAMS): Remove definition and uses.
33801         * lib/exclude.c: Remove uses of `PARAMS'.
33802
33803         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
33804         Add test-cases for DOS filenames. Declare program_name.
33805         (main): Set up program_name.  Patch by Rich Dawe.
33806
33807         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
33808         error from mntctl.
33809         Use mntctl's return value to drive the entry-processing loop, since
33810         we can't rely on the value of the vmt_length member in the last
33811         entry.  On some systems doing so could result in exhausting
33812         virtual memory.  Based in part on a patch from Mike Jetzer.
33813
33814 2003-04-04  Bruno Haible  <bruno@clisp.org>
33815
33816         * modules/linebreak: New file.
33817         * MODULES.html.sh (func_all_modules): Add it.
33818
33819 2003-04-04  Bruno Haible  <bruno@clisp.org>
33820
33821         * m4/linebreak.m4: New file.
33822
33823 2003-04-04  Bruno Haible  <bruno@clisp.org>
33824
33825         * lib/linebreak.h: New file, from GNU gettext.
33826         * lib/linebreak.c: New file, from GNU gettext with slight
33827         modifications.
33828         * lib/lbrkprop.h: New file, from GNU gettext.
33829
33830 2003-04-03  Bruno Haible  <bruno@clisp.org>
33831
33832         * modules/utf8-ucs4: New file.
33833         * modules/utf16-ucs4: New file.
33834         * modules/ucs4-utf8: New file.
33835         * modules/ucs4-utf16: New file.
33836         * MODULES.html.sh (func_all_modules): Add them.
33837
33838 2003-04-03  Bruno Haible  <bruno@clisp.org>
33839
33840         * m4/utf-ucs4.m4: New file.
33841         * m4/ucs4-utf.m4: New file.
33842
33843 2003-04-03  Bruno Haible  <bruno@clisp.org>
33844
33845         * lib/utf8-ucs4.h: New file, from GNU gettext.
33846         * lib/utf16-ucs4.h: New file, from GNU gettext.
33847         * lib/ucs4-utf8.h: New file, from GNU gettext.
33848         * lib/ucs4-utf16.h: New file, from GNU gettext.
33849
33850 2003-04-02  Bruno Haible  <bruno@clisp.org>
33851
33852         * modules/binary-io: New file.
33853         * MODULES.html.sh (func_all_modules): Add it.
33854
33855 2003-04-02  Bruno Haible  <bruno@clisp.org>
33856
33857         * lib/binary-io.h: New file, from GNU gettext.
33858
33859 2003-04-01  Bruno Haible  <bruno@clisp.org>
33860
33861         * modules/pathname: New file.
33862         * MODULES.html.sh (func_all_modules): Add it.
33863
33864 2003-04-01  Bruno Haible  <bruno@clisp.org>
33865
33866         * lib/pathname.h: New file, from GNU gettext.
33867         * lib/concatpath.c: New file, from GNU gettext.
33868
33869 2003-03-30  Bruno Haible  <bruno@clisp.org>
33870
33871         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
33872
33873 2003-03-30  Bruno Haible  <bruno@clisp.org>
33874
33875         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
33876         function chown() doesn't exist.
33877
33878 2003-03-28  Bruno Haible  <bruno@clisp.org>
33879
33880         * modules/copy-file: New file.
33881         * MODULES.html.sh (func_all_modules): Add it.
33882
33883 2003-03-28  Bruno Haible  <bruno@clisp.org>
33884
33885         * m4/copy-file.m4: New file.
33886
33887 2003-03-28  Bruno Haible  <bruno@clisp.org>
33888
33889         * lib/copy-file.h: New file, from GNU gettext.
33890         * lib/copy-file.c: New file, from GNU gettext.
33891
33892 2003-03-18  Jim Meyering  <jim@meyering.net>
33893
33894         * lib/quote.c (quote_n): Fix typo in comment.
33895
33896 2003-03-18  Bruno Haible  <bruno@clisp.org>
33897
33898         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
33899         checking.
33900         * m4/onceonly_2_57.m4: Likewise.
33901
33902 2003-03-17  Bruno Haible  <bruno@clisp.org>
33903
33904         * m4/onceonly.m4: Require autoconf 2.54 or newer.
33905         (m4_quote): Remove macro.
33906         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
33907
33908 2003-03-14  Jim Meyering  <jim@meyering.net>
33909
33910         Merge changes from Coreutils.
33911         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
33912         to be const, in order to avoid warnings.
33913         (obstack_room): Likewise.
33914         (obstack_empty_p): Likewise.
33915
33916 2003-03-14  Bruno Haible  <bruno@clisp.org>
33917
33918         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
33919         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
33920
33921 2003-03-13  Paul Eggert  <eggert@twinsun.com>
33922
33923         Merge changes from Bison.
33924         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
33925         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
33926         when compiling Bison 1.875's `bitset bset = obstack_alloc
33927         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
33928         * lib/hash.c: Include <stdbool.h> unconditionally.
33929
33930 2003-03-13  Paul Eggert  <eggert@twinsun.com>
33931
33932         * m4/onceonly.m4 (m4_quote): New macro.
33933         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
33934         Quote AC_FOREACH variable-expansions properly.
33935
33936 2003-03-13  Paul Eggert  <eggert@twinsun.com>
33937
33938         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
33939
33940 2003-03-09  Paul Eggert  <eggert@twinsun.com>
33941
33942         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
33943         Reported by Bruce Becker; see:
33944         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
33945
33946 2003-03-03  Paul Eggert  <eggert@twinsun.com>
33947             Bruno Haible  <bruno@clisp.org>
33948
33949         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
33950         Reported by John Hughes, see
33951         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
33952
33953 2003-02-20  Bruno Haible  <bruno@clisp.org>
33954
33955         * MODULES.html.sh (func_all_modules): Add poll.
33956
33957 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
33958
33959         * modules/poll: New file.
33960
33961 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
33962
33963         * lib/poll_.h: New file.
33964         * lib/poll.c: New file.
33965
33966 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
33967
33968         * m4/poll.m4: New file.
33969
33970 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
33971
33972         * modules/mathl: New file.
33973
33974 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
33975
33976         * lib/mathl.h: New file.
33977         * lib/acosl.c: New file.
33978         * lib/asinl.c: New file.
33979         * lib/atanl.c: New file.
33980         * lib/ceill.c: New file.
33981         * lib/cosl.c: New file.
33982         * lib/expl.c: New file.
33983         * lib/floorl.c: New file.
33984         * lib/frexpl.c: New file.
33985         * lib/ldexpl.c: New file.
33986         * lib/logl.c: New file.
33987         * lib/sincosl.c: New file.
33988         * lib/sinl.c: New file.
33989         * lib/sqrtl.c: New file.
33990         * lib/tanl.c: New file.
33991         * lib/trigl.c: New file.
33992         * lib/trigl.h: New file.
33993
33994 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
33995
33996         * m4/mathl.m4: New file.
33997
33998 2003-02-18  Bruno Haible  <bruno@clisp.org>
33999
34000         * MODULES.html.sh (func_all_modules): Add mathl.
34001
34002 2003-02-17  Bruno Haible  <bruno@clisp.org>
34003
34004         * modules/mkdtemp: New module.
34005         * MODULES.html.sh (func_all_modules): Add it.
34006
34007 2003-02-17  Bruno Haible  <bruno@clisp.org>
34008
34009         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
34010
34011 2003-02-17  Bruno Haible  <bruno@clisp.org>
34012
34013         * lib/mkdtemp.h: New file, from GNU gettext.
34014         * lib/mkdtemp.c: New file, from GNU gettext.
34015
34016 2003-02-02  Jim Meyering  <jim@meyering.net>
34017
34018         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
34019         e.g. glibc-2.2.93.
34020
34021 2003-01-31  Bruno Haible  <bruno@clisp.org>
34022
34023         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
34024         'rpl_rename'.
34025         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
34026         'rpl_strnlen'.
34027         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
34028         'rpl_strtod'.
34029         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
34030         'rpl_utime'.
34031
34032 2003-01-31  Bruno Haible  <bruno@clisp.org>
34033
34034         * lib/rename.c: #undef rename before defining rpl_rename.
34035         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
34036
34037 2003-01-30  Bruno Haible  <bruno@clisp.org>
34038
34039         * modules/vasnprintf, modules/vasprintf: New modules.
34040         * MODULES.html.sh (func_all_modules): Add them.
34041
34042 2003-01-30  Bruno Haible  <bruno@clisp.org>
34043
34044         * m4/signed.m4: New file, from GNU gettext.
34045         * m4/longdouble.m4: New file, from GNU gettext.
34046         * m4/wchar_t.m4: New file, from GNU gettext.
34047         * m4/wint_t.m4: New file, from GNU gettext.
34048         * m4/vasnprintf.m4: New file.
34049         * m4/vasprintf.m4: New file.
34050
34051 2003-01-30  Bruno Haible  <bruno@clisp.org>
34052
34053         * lib/printf-args.h: New file, from GNU gettext.
34054         * lib/printf-args.c: New file, from GNU gettext.
34055         * lib/printf-parse.h: New file, from GNU gettext.
34056         * lib/printf-parse.c: New file, from GNU gettext.
34057         * lib/vasnprintf.h: New file, from GNU gettext.
34058         * lib/vasnprintf.c: New file, from GNU gettext.
34059         * lib/asnprintf.c: New file, from GNU gettext.
34060         * lib/vasprintf.h: New file, from GNU gettext with modifications.
34061         * lib/vasprintf.c: New file, from GNU gettext.
34062         * lib/asprintf.c: New file, from GNU gettext.
34063
34064 2003-01-29  Bruno Haible  <bruno@clisp.org>
34065
34066         * modules/stpncpy: New module.
34067         * MODULES.html.sh (func_all_modules): Add it.
34068
34069 2003-01-29  Bruno Haible  <bruno@clisp.org>
34070
34071         * m4/stpncpy.m4: New file.
34072
34073 2003-01-29  Bruno Haible  <bruno@clisp.org>
34074
34075         * lib/stpncpy.h: New file, from GNU gettext with modifications.
34076         * lib/stpncpy.c: New file, from GNU gettext with modifications.
34077
34078 2003-01-28  Bruno Haible  <bruno@clisp.org>
34079
34080         * modules/c-ctype: New module.
34081         * MODULES.html.sh (func_all_modules): Add it.
34082
34083 2003-01-28  Bruno Haible  <bruno@clisp.org>
34084
34085         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
34086         Paul Eggert.
34087         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
34088         Paul Eggert.
34089
34090 2003-01-27  Bruno Haible  <bruno@clisp.org>
34091
34092         * modules/xsetenv: New module.
34093         * MODULES.html.sh (func_all_modules): Add it.
34094
34095 2003-01-27  Bruno Haible  <bruno@clisp.org>
34096
34097         * lib/xsetenv.h: New file, from GNU gettext.
34098         * lib/xsetenv.c: New file, from GNU gettext.
34099
34100 2003-01-23  Jim Meyering  <jim@meyering.net>
34101
34102         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
34103         from working on systems without dirfd (at least Irix and OSF1/Tru64).
34104
34105 2003-01-23  Bruno Haible  <bruno@clisp.org>
34106
34107         * modules/minmax: New module.
34108         * MODULES.html.sh (func_all_modules): Add it.
34109
34110 2003-01-23  Bruno Haible  <bruno@clisp.org>
34111
34112         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
34113         Eggert.
34114
34115 2003-01-22  Bruno Haible  <bruno@clisp.org>
34116
34117         * modules/exit: New module.
34118         * MODULES.html.sh (func_all_modules): Add it.
34119
34120 2003-01-22  Bruno Haible  <bruno@clisp.org>
34121
34122         * lib/exit.h: New file, from GNU gettext.
34123
34124 2003-01-19  Bruno Haible  <bruno@clisp.org>
34125
34126         * gnulib-tool: Recognize option --extract-maintainer.
34127         (func_get_maintainer): New function.
34128         * modules/*: Add Maintainer entry.
34129
34130 2003-01-16  Jim Meyering  <jim@meyering.net>
34131
34132         * m4/regex.m4: The `regex' struct is both input and output.
34133         Initialize it before each use.  Patch by Tim Waugh.
34134
34135 2003-01-16  Bruno Haible  <bruno@clisp.org>
34136
34137         * MODULES.html.sh: Add a table of contents. Add the module name as
34138         leftmost column. Add hyperlinks.
34139
34140 2003-01-15  Bruno Haible  <bruno@clisp.org>
34141
34142         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
34143
34144 2003-01-15  Bruno Haible  <bruno@clisp.org>
34145
34146         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
34147         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
34148         suffix.
34149
34150 2003-01-15  Bruno Haible  <bruno@clisp.org>
34151
34152         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
34153
34154 2003-01-15  Bruno Haible  <bruno@clisp.org>
34155
34156         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
34157         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
34158
34159 2003-01-14  Jim Meyering  <jim@meyering.net>
34160
34161         * lib/same.c (same_name): Tweak a comment.
34162
34163 2003-01-14  Bruno Haible  <bruno@clisp.org>
34164
34165         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
34166         when a string comparison is sufficient.
34167
34168 2003-01-14  Bruno Haible  <bruno@clisp.org>
34169
34170         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
34171         'unsigned int'.
34172
34173 2003-01-14  Bruno Haible  <bruno@clisp.org>
34174
34175         * lib/hash-pjw.c: Add comment about low quality of this function.
34176
34177 2003-01-13  Bruno Haible  <bruno@clisp.org>
34178
34179         * modules/stpcpy: Distribute lib/stpcpy.h.
34180         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
34181
34182 2003-01-13  Bruno Haible  <bruno@clisp.org>
34183
34184         * modules/*: Add a description.
34185         * modules/strpbrk: Fix Makefile.am snippet.
34186         * modules/strtoimax: Fix dependencies.
34187         * modules/strtoumax: Likewise.
34188
34189 2003-01-13  Bruno Haible  <bruno@clisp.org>
34190
34191         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
34192         * modules/alloca (Makefile.am): All object files depend on alloca.h.
34193         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
34194
34195 2003-01-13  Bruno Haible  <bruno@clisp.org>
34196
34197         * gnulib-tool (func_create_testdir): Store config/* files in the main
34198         directory.
34199         * config.rpath: Move to ...
34200         * config/config.rpath: ... here.
34201         * modules/gettext: Contains config/config.rpath, not config.rpath.
34202         * modules/iconv: Likewise.
34203
34204 2003-01-12  Paul Eggert  <eggert@twinsun.com>
34205
34206         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
34207         to avoid collisions with libcurses and libreadline.
34208
34209         * m4/getstr.m4: Remove.
34210         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
34211
34212 2003-01-12  Paul Eggert  <eggert@twinsun.com>
34213
34214         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
34215         to avoid collisions with libcurses and libreadline.
34216
34217         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
34218         * lib/getstr.h, getstr.c: Remove.
34219         * lib/getline.c: Include "getline.h", to check interface.
34220         Move body of old getstr.c here: this defines MIN_CHUNK and
34221         declares getdelim2, which is renamed from getstr.
34222         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
34223
34224         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
34225         All uses changed.
34226         * lib/linebuffer.h: Likewise.
34227         (readline): Remove backward-compatibility macro.
34228
34229 2003-01-12  Paul Eggert  <eggert@twinsun.com>
34230
34231         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
34232         to avoid collisions with libcurses and libreadline.
34233         * getstr: Remove.
34234         * MODULES.html.sh: Remove getstr.
34235         * modules/getline: Depend on unlocked-io, not getstr.
34236
34237 2003-01-12  Jim Meyering  <jim@meyering.net>
34238
34239         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
34240
34241 2003-01-10  Bruno Haible  <bruno@clisp.org>
34242
34243         * modules/alloca: Change Makefile.am requirements. Simplify Include
34244         requirements. Add lib/alloca_.h to file list.
34245
34246 2003-01-10  Bruno Haible  <bruno@clisp.org>
34247
34248         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
34249
34250 2003-01-10  Bruno Haible  <bruno@clisp.org>
34251
34252         * lib/alloca_.h: New file.
34253         * lib/getdate.y: Unconditionally include alloca.h.
34254         * lib/makepath.c: Likewise.
34255         * lib/setenv.c: Likewise.
34256         * lib/userspec.c: Likewise.
34257
34258 2003-01-09  Karl Berry  <karl@gnu.org>
34259
34260         * MODULES.html.sh: include `dirname $0` in PATH, to find
34261         gnulib-tool.
34262
34263 2003-01-09  Bruno Haible  <bruno@clisp.org>
34264
34265         * modules/stdbool: Change configure.ac, Makefile.am requirements.
34266         Simplify Include requirements. Add lib/stdbool.h.in to file list.
34267
34268 2003-01-09  Bruno Haible  <bruno@clisp.org>
34269
34270         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
34271
34272 2003-01-09  Bruno Haible  <bruno@clisp.org>
34273
34274         * lib/stdbool.h.in: New file.
34275
34276 2003-01-09  Bruno Haible  <bruno@clisp.org>
34277
34278         * gnulib-tool (func_all_modules): Ignore files ending in ~.
34279         * MODULES.html.sh: Likewise.
34280
34281 2003-01-08  Jim Meyering  <jim@meyering.net>
34282
34283         * lib/full-write.c: Undefine and define-away `const' after inclusion
34284         of errno.h, not before.  Suggestion from Bruno Haible.
34285
34286 2003-01-08  Bruno Haible  <bruno@clisp.org>
34287
34288         * modules/full-read: Depend on full-write.
34289
34290 2003-01-08  Bruno Haible  <bruno@clisp.org>
34291
34292         * lib/safe-read.c: Include specification header first, to ensure its
34293         selfcontainedness.
34294         * lib/full-write.c: Likewise.
34295
34296 2003-01-07  Jim Meyering  <jim@meyering.net>
34297
34298         * lib/full-write.c: Rework so that it may serve to define full_read,
34299         too.
34300         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
34301
34302 2003-01-07  Bruno Haible  <bruno@clisp.org>
34303
34304         * lib/strtoimax.c: Include <stdint.h> as an alternative to
34305         <inttypes.h>.
34306         * lib/xstrtol.h: Likewise.
34307         * lib/xstrtoimax.c: Likewise.
34308         * lib/xstrtoumax.c: Likewise.
34309         * lib/human.h: Likewise.
34310
34311         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
34312         on systems that have <inttypes.h> but not <stdint.h>.
34313
34314 2003-01-07  Bruno Haible  <bruno@clisp.org>
34315
34316         * MODULES.html.sh: Add copyright notice.
34317         (missed_files): Omit CVS directory entries.
34318         (func_module): Make it work with sed-3.02.
34319         * MODULES.txt: Remove file.
34320
34321 2003-01-06  Jim Meyering  <jim@meyering.net>
34322
34323         * lib/version-etc.c: Update year in translatable copyright string.
34324
34325 2003-01-03  Karl Berry  <karl@gnu.org>
34326
34327         * config/config.{guess,sub}: update from prep.
34328
34329 2003-01-02  Karl Berry  <karl@gnu.org>
34330
34331         * doc/COPYING.DOC: belatedly updated to 1.2.
34332
34333 2003-01-01  Karl Berry  <karl@gnu.org>
34334
34335         * gnulib-tool (func_verify_module): report module name $module in
34336         error message, not $1.
34337         * gnulib-tool (create-testdir): don't complain if destdir couldn't
34338         be created, only if it doesn't exist.
34339         * gnulib-tool (last_checkin_date): don't expand the $Date here.
34340
34341 2002-12-31  Paul Eggert  <eggert@twinsun.com>
34342
34343         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
34344
34345 2002-12-31  Paul Eggert  <eggert@twinsun.com>
34346
34347         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
34348         memcmp if strcoll doesn't work.
34349
34350 2002-12-31  Bruno Haible  <bruno@clisp.org>
34351
34352         * lib/utime.c (utime_null): No need to call ftruncate if the file was
34353         nonempty.
34354
34355 2002-12-31  Bruno Haible  <bruno@clisp.org>
34356
34357         * lib/memcoll.c (STRCOLL): New macro.
34358         (memcoll): Use it.
34359
34360 2002-12-31  Bruno Haible  <bruno@clisp.org>
34361
34362         * lib/localcharset.h: New file.
34363         * lib/localcharset.c: Include it.
34364         * lib/unicodeio.c: Likewise.
34365
34366 2002-12-31  Bruno Haible  <bruno@clisp.org>
34367
34368         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
34369         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
34370
34371 2002-12-31  Bruno Haible  <bruno@clisp.org>
34372
34373         * lib/getline.h: Include <stddef.h>, for size_t.
34374
34375         * lib/unicodeio.h: Include <stddef.h>, for size_t.
34376         * lib/unicodeio.c: Don't include <stddef.h>.
34377
34378 2002-12-31  Bruno Haible  <bruno@clisp.org>
34379
34380         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
34381         HAVE_TM_ZONE.
34382
34383 2002-12-24  Karl Berry  <karl@gnu.org>
34384
34385         * config/config.guess: update from prep.
34386
34387 2002-12-24  Bruno Haible  <bruno@clisp.org>
34388
34389         General infrasructure.
34390         * m4/README: Rewritten.
34391         * m4/onceonly.m4: New file.
34392         * m4/onceonly_2_57.m4: New file.
34393
34394         Module atexit.
34395         * m4/atexit.m4: New file.
34396
34397         Module strtod.
34398         * m4/strtod.m4: New file.
34399
34400         Module strtol.
34401         * m4/strtol.m4: New file.
34402
34403         Module strtoul.
34404         * m4/strtoul.m4: New file.
34405
34406         Module memchr.
34407         * m4/memchr.m4: New file.
34408
34409         Module memcmp.
34410         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
34411         (jm_FUNC_MEMCMP): Invoke it.
34412
34413         Module memcpy.
34414         * m4/memcpy.m4: New file.
34415
34416         Module memmove.
34417         * m4/memmove.m4: New file.
34418
34419         Module memset.
34420         * m4/memset.m4: New file.
34421
34422         Module strcspn.
34423         * m4/strcspn.m4: New file.
34424
34425         Module strpbrk.
34426         * m4/strpbrk.m4: New file.
34427
34428         Module strstr.
34429         * m4/strstr.m4: New file.
34430
34431         Module strerror.
34432         * m4/strerror.m4: New file.
34433
34434         Module mktime.
34435         * m4/mktime.m4: Renamed from jm-mktime.m4.
34436         (gl_PREREQ_MKTIME): New macro.
34437         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
34438
34439         Module malloc.
34440         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
34441         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
34442         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
34443
34444         Module realloc.
34445         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
34446         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
34447         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
34448
34449         Module strftime.
34450         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
34451         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
34452         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
34453         gl_TM_GMTOFF.
34454         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
34455
34456         Module xalloc.
34457         * m4/xalloc.m4: New file.
34458
34459         Module alloca.
34460         * m4/alloca.m4: New file.
34461
34462         Module putenv.
34463         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
34464         (jm_FUNC_PUTENV): Invoke it.
34465
34466         Module setenv.
34467         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
34468         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
34469         when invoked twice.
34470         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
34471         gt_FUNC_SETENV.
34472
34473         Module memrchr.
34474         * m4/memrchr.m4: New file.
34475
34476         Module stpcpy.
34477         * m4/stpcpy.m4: New file.
34478
34479         Module strcase.
34480         * m4/strcase.m4: New file.
34481
34482         Module strdup.
34483         * m4/strdup.m4: New file.
34484
34485         Module strnlen.
34486         * m4/strnlen.m4: New file.
34487
34488         Module strndup.
34489         * m4/strndup.m4: New file.
34490
34491         Module xstrtod.
34492         * m4/xstrtod.m4: New file.
34493
34494         Module xstrtol.
34495         * m4/xstrtol.m4: New file.
34496
34497         Module getdate.
34498         * m4/getdate.m4: New file.
34499
34500         Module unlocked-io.
34501         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
34502         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
34503         * m4/jm-glibc-io.m4n: Remove file.
34504
34505         Module long-options.
34506         * m4/long-options.m4: New file.
34507
34508         Module md5.
34509         * m4/md5.m4: New file.
34510
34511         Module sha.
34512         * m4/sha.m4: New file.
34513
34514         Module getstr.
34515         * m4/getstr.m4: New file.
34516
34517         Module getline.
34518         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
34519         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
34520         <sys/types.h>, for size_t. Use the function name gnu_getline, not
34521         simply getline. Infoke gl_PREREQ_GETLINE.
34522
34523         Module obstack.
34524         * m4/obstack.m4: New file.
34525
34526         Module hash.
34527         * m4/hash.m4: New file.
34528
34529         Module readtokens.
34530         * m4/readtokens.m4: New file.
34531
34532         Module strverscmp.
34533         * m4/strverscmp.m4: New file.
34534
34535         Module stdbool.
34536         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
34537         OSF/1.
34538
34539         Module strtoll.
34540         * m4/strtoll.m4: New file.
34541
34542         Module strtoull.
34543         * m4/strtoull.m4: New file.
34544
34545         Module strtoimax.
34546         * m4/strtoimax.m4: New file.
34547
34548         Module strtoumax.
34549         * m4/strtoumax.m4: New file.
34550
34551         Module xstrtoimax.
34552         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
34553         jm_AC_PREREQ_XSTRTOIMAX.
34554         Moved the strtol prerequisites to strtol.m4.
34555         Moved the strtoll prerequisites to strtoll.m4.
34556         Moved the strtoimax prerequisites to strtoimax.m4.
34557
34558         Module xstrtoumax.
34559         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
34560         jm_AC_PREREQ_XSTRTOUMAX.
34561         Moved the strtoul prerequisites to strtoul.m4.
34562         Moved the strtoull prerequisites to strtoull.m4.
34563         Moved the strtoumax prerequisites to strtoumax.m4.
34564
34565         Module chown.
34566         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
34567         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
34568
34569         Module dup2.
34570         * m4/dup2.m4: New file.
34571
34572         Module ftruncate.
34573         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
34574         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
34575
34576         Module getgroups.
34577         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
34578         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
34579
34580         Module gettimeofday.
34581         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
34582         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
34583         gl_PREREQ_GETTIMEOFDAY.
34584
34585         Module mkdir.
34586         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
34587         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
34588
34589         Module mkstemp.
34590         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
34591         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
34592         jm_AC_TYPE_UINTMAX_T.
34593         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
34594
34595         Module stat.
34596         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
34597         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
34598
34599         Module lstat.
34600         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
34601         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
34602
34603         Module timespec.
34604         * m4/timespec.m4 (gl_TIMESPEC): New macro.
34605         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
34606         * m4/st_mtim.m4: Indentation.
34607
34608         Module nanosleep.
34609         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
34610         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
34611         gl_PREREQ_NANOSLEEP.
34612
34613         Module regex.
34614         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
34615         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
34616         (gl_REGEX): New macro.
34617
34618         Module rename.
34619         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
34620         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
34621
34622         Module rmdir.
34623         * m4/rmdir.m4: New file.
34624
34625         Module utime.
34626         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
34627         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
34628         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
34629
34630         Module dirname.
34631         * m4/dirname.m4: New file.
34632
34633         Module getopt.
34634         * m4/getopt.m4: New file.
34635
34636         Module unistd-safer.
34637         * m4/unistd-safer.m4: New file.
34638
34639         Module fnmatch.
34640         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
34641         declaration.
34642         (gl_PREREQ_FNMATCH_EXTRA): New macro.
34643         (gl_FUNC_FNMATCH_POSIX): New macro.
34644         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
34645         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
34646         simply fnmatch.
34647
34648         Module exclude.
34649         * m4/exclude.m4: New file.
34650
34651         Module human.
34652         * m4/human.m4: New file.
34653
34654         Module acl.
34655         * m4/acl.m4: Nop.
34656
34657         Module backupfile.
34658         * m4/backupfile.m4: New file.
34659         * m4/d-ino.m4: Indentation.
34660
34661         Module fsusage.
34662         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
34663         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
34664         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
34665
34666         Module dirfd.
34667         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
34668         requirements.
34669
34670         Module euidaccess.
34671         * m4/euidaccess.m4: New file.
34672
34673         Module file-type.
34674         * m4/file-type.m4: New file.
34675
34676         Module fileblocks.
34677         * m4/fileblocks.m4: New file.
34678
34679         Module filemode.
34680         * m4/filemode.m4: New file.
34681
34682         Module isdir.
34683         * m4/isdir.m4: New file.
34684
34685         Module lchown.
34686         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
34687         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
34688
34689         Module makepath.
34690         * m4/makepath.m4: New file.
34691
34692         Module modechange.
34693         * m4/modechange.m4: New file.
34694
34695         Module mountlist.
34696         * m4/mountlist.m4: New file.
34697         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
34698         Indentation.
34699
34700         Module path-concat.
34701         * m4/path-concat.m4: New file.
34702
34703         Module pathmax.
34704         * m4/pathmax.m4: New file.
34705
34706         Module same.
34707         * m4/same.m4: New file.
34708
34709         Module save-cwd.
34710         * m4/save-cwd.m4: New file.
34711
34712         Module savedir.
34713         * m4/savedir.m4: New file.
34714
34715         Module xgetcwd.
34716         * m4/xgetcwd.m4: New file.
34717         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
34718
34719         Module xreadlink.
34720         * m4/xreadlink.m4: New file.
34721
34722         Module safe-read.
34723         * m4/safe-read.m4: New file.
34724
34725         Module safe-write.
34726         * m4/safe-write.m4: New file.
34727
34728         Module closeout.
34729         * m4/closeout.m4: New file.
34730
34731         Module stdio-safer.
34732         * m4/stdio-safer.m4: New file.
34733
34734         Module getpass.
34735         * m4/getpass.m4: New file.
34736
34737         Module getugroups.
34738         * m4/getugroups.m4: New file.
34739
34740         Module group-member.
34741         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
34742         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
34743
34744         Module idcache.
34745         * m4/idcache.m4: New file.
34746
34747         Module userspec.
34748         * m4/userspec.m4: New file.
34749
34750         Module gettime.
34751         * m4/clock_time.m4: New file.
34752         * m4/gettime.m4: New file.
34753
34754         Module settime.
34755         * m4/settime.m4: New file.
34756
34757         Module posixtm.
34758         * m4/posixtm.m4: New file.
34759
34760         Module gethostname.
34761         * m4/gethostname.m4: New file.
34762
34763         Module canon-host.
34764         * m4/canon-host.m4: New file.
34765
34766         Module gettext.
34767         * m4/codeset.m4: New file, from gettext-0.11.5.
34768         * m4/gettext.m4: New file, from gettext-0.11.5.
34769         * m4/glibc21.m4: New file, from gettext-0.11.5.
34770         * m4/iconv.m4: New file, from gettext-0.11.5.
34771         * m4/intdiv0.m4: New file, from gettext-0.11.5.
34772         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
34773         * m4/inttypes.m4: New file, from gettext-0.11.5.
34774         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
34775         * m4/isc-posix.m4: New file, from gettext-0.11.5.
34776         * m4/lcmessage.m4: New file, from gettext-0.11.5.
34777         * m4/lib-ld.m4: New file, from gettext-0.11.5.
34778         * m4/lib-link.m4: New file, from gettext-0.11.5.
34779         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
34780         * m4/progtest.m4: New file, from gettext-0.11.5.
34781         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
34782         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
34783         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
34784
34785         Module localcharset.
34786         * m4/localcharset.m4: New file.
34787
34788         Module hard-locale.
34789         * m4/hard-locale.m4: New file.
34790
34791         Module mbswidth.
34792         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
34793         onceonly macros.
34794         * m4/mbrtowc.m4: Add comment.
34795
34796         Module memcasecmp.
34797         * m4/memcasecmp.m4: New file.
34798
34799         Module memcoll.
34800         * m4/memcoll.m4: New file.
34801
34802         Module unicodeio.
34803         * m4/unicodeio.m4: New file.
34804
34805         Module rpmatch.
34806         * m4/rpmatch.m4: New file.
34807
34808         Module yesno.
34809         * m4/yesno.m4: New file.
34810
34811         Module exitfail.
34812         * m4/exitfail.m4: New file.
34813
34814         Module c-stack.
34815         * m4/c-stack.m4 (gl_C_STACK): New macro.
34816         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
34817
34818         Module error.
34819         * m4/error.m4 (gl_ERROR): New macro.
34820         (jm_PREREQ_ERROR): Use onceonly macros.
34821
34822         Module fatal.
34823         * m4/fatal.m4: New file.
34824
34825         Module getloadavg.
34826         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
34827         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
34828
34829         Module getpagesize.
34830         * m4/getpagesize.m4: New file.
34831
34832         Module getusershell.
34833         * m4/getusershell.m4: New file.
34834
34835         Module physmem.
34836         * m4/physmem.m4: New file.
34837
34838         Module posixver.
34839         * m4/posixver.m4: New file.
34840
34841         Module quotearg.
34842         * m4/quotearg.m4: New file.
34843
34844         Module quote.
34845         * m4/quote.m4: New file.
34846
34847         Module readutmp.
34848         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
34849
34850         Module sig2str.
34851         * m4/sig2str.m4: New file.
34852
34853         Other.
34854         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
34855         ulonglong.m4.
34856         * m4/intmax_t.m4: New file.
34857         * m4/d-type.m4: Indentation.
34858         * m4/jm-macros.m4: Update.
34859         * m4/prereq.m4 (jm_PREREQ): Update.
34860         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
34861         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
34862         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
34863         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
34864         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
34865         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
34866         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
34867         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
34868         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
34869         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
34870         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
34871         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
34872         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
34873         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
34874         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
34875         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
34876         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
34877         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
34878         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
34879
34880 2002-12-24  Bruno Haible  <bruno@clisp.org>
34881
34882         * MODULES.txt: Update according to m4/ changes.
34883
34884         Module gettext.
34885         * config.rpath: New file, from gettext-0.11.5.
34886
34887         * modules/*: New module descriptions.
34888         * gnulib-tool: New file.
34889         * MODULES.html.sh: New file.
34890
34891 2002-12-21  Karl Berry  <karl@gnu.org>
34892
34893         * doc/fdl.texi: update to version 1.2.
34894
34895 2002-12-19  Karl Berry  <karl@gnu.org>
34896
34897         * config/config.guess: update from prep.
34898
34899 2002-12-18  Bruno Haible  <bruno@clisp.org>
34900
34901         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
34902         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
34903
34904 2002-12-17  Bruno Haible  <bruno@clisp.org>
34905
34906         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
34907         stdlib.h, string.h.
34908
34909 2002-12-17  Bruno Haible  <bruno@clisp.org>
34910
34911         * lib/canon-host.c (strdup): Remove unused declaration.
34912
34913         * lib/fsusage.c: Include full_read.h.
34914         (get_fs_usage): Use full_read instead of safe_read.
34915
34916         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
34917
34918 2002-12-12  Karl Berry  <karl@gnu.org>
34919
34920         * config/config.guess: update from prep.
34921
34922 2002-12-11  Bruno Haible  <bruno@clisp.org>
34923
34924         * m4/setenv.m4: New file, from gettext-0.11.5.
34925
34926 2002-12-11  Bruno Haible  <bruno@clisp.org>
34927
34928         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
34929         not unsetenv().
34930         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
34931         modifications:
34932
34933         2002-12-11  Bruno Haible  <bruno@clisp.org>
34934
34935                 * setenv.c (alloca): Fall back to malloc.
34936                 (freea): New macro.
34937                 (setenv): Use freea() to free memory allocated with alloca().
34938
34939         2002-11-13  Bruno Haible  <bruno@clisp.org>
34940
34941                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
34942                 function declarations.
34943                 * unsetenv.c (unsetenv): Likewise.
34944
34945         2002-03-04  Bruno Haible  <bruno@clisp.org>
34946
34947                 Portability to AIX 4.3.3.
34948                 * unsetenv.c: New file, extracted from setenv.c.
34949                 * setenv.c: Move the unsetenv() function to unsetenv.c.
34950
34951         2001-12-20  Bruno Haible  <bruno@clisp.org>
34952
34953                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
34954                 use malloc instead. For SunOS 4.
34955
34956         2001-12-11  Bruno Haible  <bruno@clisp.org>
34957
34958                 * setenv.c: Declare alloca.
34959                 (compar_fn_t): New typedef.
34960                 (KNOWN_VALUE, STORE_VALUE): Use it.
34961
34962         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
34963         setenv.h.
34964
34965 2002-12-10  Paul Eggert  <eggert@twinsun.com>
34966
34967         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
34968         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
34969         Choose values that are less likely to collide with system fnmatch
34970         options.
34971         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
34972         defined (e.g., a pure POSIX system).
34973         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
34974         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
34975
34976 2002-12-06  Paul Eggert  <eggert@twinsun.com>
34977
34978         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
34979         a pain in practice to deal with generated m4 files.  This change
34980         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
34981
34982         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
34983         and jm-glibc-io.m4, as they are no longer a special case.
34984         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
34985         kludge and the auto-generation stuff.  Check only whether the
34986         functions are declared, not whether they exist, since older hosts
34987         that don't declare the functions can't use the optimization anyway.
34988
34989 2002-12-06  Jim Meyering  <jim@meyering.net>
34990
34991         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
34992
34993         Merge in changes from libc's misc/error.c, in preparation
34994         for the merge of gnulib's changes back into libc.
34995
34996         * lib/error.c (_): Define only if not already defined.
34997         Move definition to follow all #include directives.
34998         Include unlocked-io.h only if !_LIBC.
34999         [_LIBC]: Include <libio/libioP.h>.
35000         [USE_IN_LIBIO]: Include <libio/iolibio.h>
35001         (fflush): Tweak definition to use INTUSE.
35002         (putc): Define.
35003
35004 2002-12-05  Paul Eggert  <eggert@twinsun.com>
35005
35006         * lib/alloca.c [defined emacs]: Include "lisp.h".
35007         (xalloc_die) [defined emacs]: New macro.
35008         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
35009         [! defined emacs]: Include <xalloc.h>.
35010         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
35011         (pointer): Typedef to POINTER_TYPE *.
35012         (malloc): Remove decl; we now always use xmalloc.
35013         (alloca): Use old-style definition, since Emacs needs this.
35014         Check for arithmetic overflow when computing combined size.
35015
35016 2002-12-04  Paul Eggert  <eggert@twinsun.com>
35017
35018         Do not generate unlocked-io.h automatically, since it's easier to
35019         maintain it by hand.
35020
35021         * lib/unlocked-io.h: New file, from GNU diffutils,
35022         but with proper copyright notice and attribution.
35023         * lib/gen-uio: Remove.
35024         * lib/Makefile.am: Add copyright notice.
35025         (libfetish_a_SOURCES): Add unlocked-io.h.
35026         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
35027         (DISTCLEANFILES, io_functions): Remove macros.
35028         (EXTRA_DIST): Remove gen_uio.
35029         (unlocked-io.h): Remove rule.
35030
35031 2002-12-04  Jim Meyering  <jim@meyering.net>
35032
35033         Reflect the fact that stat.c and lstat.c are no longer generated.
35034         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
35035         (DISTCLEANFILES): Likewise.
35036         (EXTRA_DIST): Likewise.
35037         (all_local): Don't depend on stat.c or lstat.c.
35038         (stat.c, lstat.c): Remove rules.
35039         (EXTRA_DIST): Remove xstat.in.
35040
35041         * lib/xstat.in: Remove file.  Contents moved into stat.c.
35042         * lib/stat.c: New file.  Contents mostly from xstat.in.
35043         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
35044         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
35045
35046         * lib/safe-read.c: Rework so that it may serve to define safe_write,
35047         too.
35048         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
35049
35050 2002-12-03  Jim Meyering  <jim@meyering.net>
35051
35052         * lib/safe-read.c, safe-write.c: Change variable names and comments,
35053         but not semantics, to minimize the differences between these two files.
35054         (safe_read): Change comment to mention SAFE_READ_ERROR.
35055
35056         * lib/safe-read.c (IS_EINTR): Define.
35057         (safe_read): Use IS_EINTR in place of in-function cpp directives.
35058
35059 2002-12-02  Jim Meyering  <jim@meyering.net>
35060
35061         * lib/safe-read.c (EINTR): Define.
35062         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
35063         (INT_MAX): Provide fallback.
35064         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
35065
35066         * lib/safe-read.h (SAFE_READ_ERROR): Define.
35067
35068 2002-12-02  Bruno Haible  <bruno@clisp.org>
35069
35070         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
35071         Define, taken from safe-read.c.
35072         (INT_MAX): Provide fallback.
35073         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
35074         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
35075
35076         * lib/safe-read.c (EINTR): Remove definition.
35077         (safe_read): Don't use EINTR if it is absent.
35078
35079 2002-12-01  Jim Meyering  <jim@meyering.net>
35080
35081         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
35082         zero.
35083         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
35084
35085 2002-11-27  Paul Eggert  <eggert@twinsun.com>
35086
35087         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
35088         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
35089         with `if (! (value < limit)) abort ();', for readability.
35090
35091 2002-11-26  Karl Berry  <karl@gnu.org>
35092
35093         * lib/strdup.c: copy from libc again, with jim's ok.
35094         * lib/.cppi-disable: re-add strdup.c
35095
35096 2002-11-25  Karl Berry  <karl@gnu.org>
35097
35098         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
35099         instead of "strtol.c".
35100
35101 2002-11-25  Karl Berry  <karl@gnu.org>
35102
35103         * config/install-sh: update from automake for variable quoting, $0 in
35104         error msgs, etc.
35105
35106         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
35107         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
35108         entry.
35109
35110 2002-11-25  Jim Meyering  <jim@meyering.net>
35111
35112         * lib/mktime.c: Sync from libc, now that it has the latest fix.
35113
35114 2002-11-24  Karl Berry  <karl@gnu.org>
35115
35116         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
35117         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
35118
35119 2002-11-24  Jim Meyering  <jim@meyering.net>
35120
35121         Update from coreutils:
35122
35123         * lib/mktime.c: Merge in changes from libc.
35124
35125         Avoid a link-time failure on some Linux systems.
35126         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
35127         (otherwise).
35128         (__mon_yday): Declare with the STATIC attribute.
35129         (__mktime_internal): Likewise.
35130         Based on a report from Greg Schafer.
35131
35132 2002-11-23  Jim Meyering  <jim@meyering.net>
35133
35134         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
35135         Use `unsigned', not `int', as type of index.
35136
35137         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
35138
35139         * lib/fsusage.c: Remove unneeded parentheses around operands of
35140         `defined'.
35141
35142 2002-11-22  Paul Eggert  <eggert@twinsun.com>
35143
35144         * lib/quotearg.h: Allow multiple inclusion by surrounding with
35145         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
35146         so that we can be included first.
35147         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
35148         * lib/quotearg.c: Include quotearg.h immediately after config.h.
35149         No need to include stddef.h or sys/types.h any more.
35150         Surround local include files with "", not "<>".
35151         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
35152         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
35153         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
35154         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
35155         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
35156         (ISPRINT): Remove; no longer needed now that we assume C89.
35157
35158         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
35159         Preserve errno.
35160
35161         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
35162         quotearg_char): Use SIZE_MAX rather than
35163         (size_t) -1 when we are talking about "infinity".
35164
35165         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
35166
35167 2002-11-22  Paul Eggert  <eggert@twinsun.com>
35168
35169         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
35170         hint that one should use `if (! x) abort ();' rather than `assert
35171         (x);', and anyway it's one less thing to worry about configuring.
35172         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
35173         hash_rehash, hash_insert): Use abort rather than assert.
35174
35175 2002-11-22  Bruno Haible  <bruno@clisp.org>
35176
35177         * lib/safe-read.h: Assume C89. Add comments.
35178         (safe_read): Change return type to size_t.
35179         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
35180         byte counts > SSIZE_MAX correctly.
35181         * lib/safe-write.h: New file.
35182         * lib/safe-write.c: New file.
35183         * lib/full-read.h: New file.
35184         * lib/full-read.c: New file.
35185         * lib/full-write.h: Assume C89. Add comments.
35186         * lib/full-write.c: Include safe-write.h.
35187         (full_write): Rewritten to use safe_write.
35188         Suggested by Jim Meyering and Paul Eggert.
35189
35190 2002-11-21  Jim Meyering  <jim@meyering.net>
35191
35192         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
35193
35194         Merge in changes from the coreutils.
35195
35196         2002-09-25  Paul Eggert  <eggert@twinsun.com>
35197         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
35198         <stdint.h>.
35199         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
35200         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
35201         int.  Work more efficiently if X is the same width as uintmax_t.
35202         Do not compare X to -1, to avoid bogus compiler warning.
35203         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
35204         Don't assume that f_frsize and f_bsize are the same type.
35205
35206         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
35207         warning on FreeBSD.
35208
35209         * lib/makepath.c (make_path): Restore umask *before* creating the final
35210         component.
35211         (make_path): Minor reformatting.
35212
35213         * lib/xmalloc.c: Adjust to work with new autoconf macros,
35214         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
35215         HAVE_MALLOC/HAVE_REALLOC.
35216
35217         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
35218         dummy ones.  At least on GNU/Linux systems, `auto' means something
35219         else.
35220         From Michael Stone.
35221
35222 2002-11-21  Bruno Haible  <bruno@clisp.org>
35223
35224         Remove case insensitive option matching.
35225         * lib/argmatch.h (argcasematch): Remove declaration.
35226         (ARGCASEMATCH): Remove macro.
35227         (__xargmatch_internal): Remove case_sensitive argument.
35228         (XARGMATCH): Update.
35229         (XARGCASEMATCH): Remove macro.
35230         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
35231         case_sensitive argument.
35232         (argcasematch): Remove function.
35233         (__xargmatch_internal): Remove case_sensitive argument.
35234         (main): Use XARGMATCH instead of XARGCASEMATCH.
35235
35236         * lib/xmalloc.c: Change compile-time error message. Add comment about
35237         required autoconf version.
35238
35239 2002-11-20  Paul Eggert  <eggert@twinsun.com>
35240
35241         Merge argmatch cleanups from Bison.  Assume C89.
35242
35243         * lib/argmatch.c: Include config.h here, not in argmatch.h.
35244         Include stdlib.h, for EXIT_FAILURE.
35245         Always include <string.h>, since we assume C89.
35246         (EXIT_FAILURE): Remove pre-C89 bug workaround.
35247         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
35248         Include <stddef.h> instead, since it's all we need for size_t.
35249         (PARAMS): Remove.  All uses removed.
35250         (ARRAY_CARDINALITY): Do not bother to #undef.
35251         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
35252         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
35253         Remove unnecessary parentheses.
35254         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
35255         Insert necessary parentheses.
35256         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
35257         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
35258
35259 2002-11-19  Bruno Haible  <bruno@clisp.org>
35260
35261         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
35262         * lib/mbswidth.h: Include <stddef.h>, for size_t.
35263
35264         * lib/mbswidth.h (PARAMS): Remove macro.
35265         (mbswidth, mbsnwidth): Use ANSI C function declarations.
35266         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
35267
35268         * lib/gcd.h (PARAMS): Remove macro.
35269         (gcd): Use ANSI C function declarations.
35270         * lib/gcd.c (gcd): Likewise.
35271
35272 2002-11-15  Bruno Haible  <bruno@clisp.org>
35273
35274         * lib/strcspn.c: Include <stddef.h>.
35275         (strcspn): Use ANSI C function declaration. Change return type to
35276         size_t. Use NULL.
35277         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
35278         (strpbrk): Use NULL.
35279         * lib/strpbrk.h (PARAMS): Remove macro.
35280         (strpbrk): Use ANSI C function declaration.
35281         * lib/strstr.c: Don't include <sys/types.h>.
35282         * lib/strstr.h (PARAMS): Remove macro.
35283         (strstr): Use ANSI C function declarations.
35284
35285 2002-11-14  Karl Berry  <karl@gnu.org>
35286
35287         * config/mkinstalldirs: `do' on separate line, instead of
35288         `for var; do'.
35289
35290 2002-11-06  Bruno Haible  <bruno@clisp.org>
35291
35292         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
35293         * lib/gcd.c (gcd): Likewise.
35294
35295 2002-11-05  Bruno Haible  <bruno@clisp.org>
35296
35297         * lib/gcd.h: New file, from gettext-0.11.5.
35298         * lib/gcd.c: New file, from gettext-0.11.5.
35299
35300 2002-11-05  Bruno Haible  <bruno@clisp.org>
35301
35302         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
35303         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
35304         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
35305         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
35306
35307         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
35308         <libintl.h>.
35309         * lib/makepath.c: Include gettext.h instead of <locale.h> and
35310         <libintl.h>.
35311
35312         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
35313         * lib/human.c: Include gettext.h instead of <libintl.h>.
35314         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
35315         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
35316         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
35317         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
35318         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
35319         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
35320         (textdomain): Remove definition.
35321         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
35322
35323         * lib/long-options.c: Remove include of <libintl.h> and definition of
35324         _.
35325         * lib/same.c: Remove include of <libintl.h> and definition of _.
35326
35327 2002-11-04  Owen Taylor  <otaylor@redhat.com>
35328
35329         * lib/config.charset: A few additions for Solaris.
35330
35331 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
35332
35333         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
35334         * lib/localcharset.c (locale_charset): Declare as extern "C".
35335
35336 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
35337
35338         * lib/config.charset: msdos in uk_UA uses CP1125.
35339
35340 2002-11-04  Bruno Haible  <bruno@clisp.org>
35341
35342         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
35343         * lib/strcase.h: New file, from GNU gettext-0.11.5.
35344         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
35345         * lib/strstr.h: New file, from GNU gettext-0.11.5.
35346         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
35347
35348 2002-11-04  Bruno Haible  <bruno@clisp.org>
35349
35350         * lib/localcharset.c (locale_charset): Don't return an empty string.
35351
35352 2002-11-04  Bruno Haible  <bruno@clisp.org>
35353
35354         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
35355         aliases.
35356
35357 2002-11-04  Bruno Haible  <bruno@clisp.org>
35358
35359         * lib/config.charset: Update for newest glibc. Add canonical names
35360         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
35361
35362 2002-11-04  Bruno Haible  <bruno@clisp.org>
35363
35364         * lib/config.charset: Add support for NetBSD.
35365
35366 2002-11-04  Bruno Haible  <bruno@clisp.org>
35367
35368         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
35369
35370 2002-11-01  Bruno Haible  <bruno@clisp.org>
35371
35372         * configure.in: Add AC_CONFIG_AUX_DIR call.
35373         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
35374         test/Makefile.
35375         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
35376
35377 2002-09-28  Karl Berry  <karl@gnu.org>
35378
35379         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
35380         installed automake until the next release, since changes have been
35381         made.
35382
35383 2002-09-25  Karl Berry  <karl@gnu.org>
35384
35385         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
35386         * lib/getopt*: copy from libc/posix.
35387         * lib/gettext.h: copy from gettext.
35388         * lib/.cppi-disable: add strdup.c, gettext.h.
35389
35390 2002-09-25  Karl Berry  <karl@gnu.org>
35391
35392         * config/srclist.txt: enable gettext.h check.
35393         * config/config.{guess,sub}: update from prep.
35394         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
35395                 from automake 1.6.3.
35396         See srclist*.
35397
35398 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
35399
35400         * regex.c (PATFETCH): Remove the translating fetch.
35401         (PATFETCH_RAW): Rename to PATFETCH.
35402         (set_image_of_range): New fun.
35403         (SET_RANGE_TABLE_WORK_AREA): Use it.
35404         (regex_compile): Don't translate the pattern chars so eagerly.
35405         Only do it when inserting an `exactn' bytecode or when handling
35406         a char-range.
35407         (mutually_exclusive_p): Avoid empty statement.
35408
35409 2002-07-06  Jim Meyering  <meyering@lucent.com>
35410
35411         * m4/README: Don't mention Makefile.am.in.
35412         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
35413
35414 2002-07-01  Jim Meyering  <meyering@lucent.com>
35415
35416         * lib/c-stack.c: Include sys/time.h.
35417         From Volker Borchert.
35418
35419 2002-06-26  Paul Eggert  <eggert@twinsun.com>
35420
35421         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
35422
35423 2002-06-26  Paul Eggert  <eggert@twinsun.com>
35424
35425         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
35426         New macro.  Use it uniformly instead of
35427         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
35428         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
35429         reported by Vin Shelton.
35430
35431 2002-06-22  Paul Eggert  <eggert@twinsun.com>
35432
35433         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
35434         Do not assume SA_SIGINFO behavior.
35435         Bug reported by Jim Meyering on NetBSD 1.5.2.
35436
35437 2002-06-22  Jim Meyering  <meyering@lucent.com>
35438
35439         * m4/c-stack.m4: New file, from diffutils-2.8.2.
35440         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
35441
35442         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
35443         now that configure.ac uses AC_GNU_SOURCE.
35444         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
35445         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
35446
35447         Update to latest tools.  Suggestions from Paul Eggert.
35448         * m4/stdbool.m4: New file, from diffutils-2.8.2.
35449         * m4/gnu-source.m4: Update from diffutils-2.8.2.
35450         * m4/fnmatch.m4: Likewise.
35451         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
35452         to AC_HEADER_STDBOOL
35453
35454 2002-06-22  Jim Meyering  <meyering@lucent.com>
35455
35456         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
35457         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
35458
35459 2002-06-22  Jim Meyering  <meyering@lucent.com>
35460
35461         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
35462
35463         * lib/exitfail.c, exitfail.h: Likewise.
35464         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
35465
35466         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
35467         of fnmatch.h.
35468         (EXTRA_DIST): Add fnmatch_loop.c.
35469         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
35470
35471         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
35472         * lib/fnmatch.c: Update from diffutils-2.8.2.
35473         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
35474         * lib/fnmatch.h: Remove file.
35475
35476 2002-06-21  Jim Meyering  <meyering@lucent.com>
35477
35478         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
35479         * m4/mbrtowc.m4: Likewise.
35480
35481         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
35482         * m4/mbswidth.m4: Reflect name change:
35483         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
35484         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
35485
35486         * m4/lib-link.m4: Update from gettext-0.11.2.
35487         * m4/gettext.m4: Likewise.
35488
35489         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
35490         From Alfred M. Szmidt.
35491
35492 2002-06-18  Paul Eggert  <eggert@twinsun.com>
35493
35494         * lib/file-type.h: Report an error if neither S_ISREG nor
35495         S_IFREG is defined, instead of using a test specific to glibc
35496         2.2.  This should be safe, since POSIX requires S_ISREG and
35497         Unix Version 7 had S_IFREG.  We don't need to check for
35498         <sys/types.h> since we don't use any symbols that it defines.
35499
35500 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
35501
35502         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
35503         $@-t, so that each temporary file name is unique and valid in the first
35504         8 characters, for operation under DOS.
35505
35506 2002-06-15  Paul Eggert  <eggert@twinsun.com>
35507
35508         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
35509
35510 2002-06-15  Jim Meyering  <meyering@lucent.com>
35511
35512         Work even with DJGPP 2.03, which lacks support for symlinks.
35513         From Richard Dawe.
35514         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
35515         is defined.
35516         * lib/lchown.c (S_ISLNK): Likewise.
35517
35518 2002-06-15  Jim Meyering  <meyering@lucent.com>
35519
35520         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
35521         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
35522         have been included before this file.
35523
35524 2002-06-14  Jim Meyering  <meyering@lucent.com>
35525
35526         * lib/file-type.h: Use the version from diffutils-2.8.2.
35527         * lib/file-type.c: Likewise.
35528
35529 2002-06-07  Jim Meyering  <meyering@lucent.com>
35530
35531         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
35532         They're needed at least for NetBSD 1.5.2.
35533         ($statxfs_includes): Include those same headers.
35534         ($statxfs_includes): Include sys/vfs.h if available.
35535         ($statxfs_includes): Likewise for sys/statvfs.h.
35536         Check for the following members in both structs statfs and statvfs:
35537         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
35538
35539 2002-06-01  Jim Meyering  <meyering@lucent.com>
35540
35541         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
35542         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
35543
35544 2002-05-28  Jim Meyering  <meyering@lucent.com>
35545
35546         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
35547         Reported by Volker Borchert.
35548
35549 2002-05-27  Jim Meyering  <meyering@lucent.com>
35550
35551         Fix a problem seen only on nonconforming systems whereby ls.c's
35552         use of localtime, and then of gettimeofday would cause trouble:
35553         the localtime call used to initialize rpl_gettimeofday's save
35554         mechanism would clobber ls's current local time information so
35555         that in any long listing the first file would always be listed
35556         with date 1970-01-01.  Analysis by Volker Borchert.
35557
35558         * lib/gettimeofday.c (localtime): Undefine.
35559         (rpl_localtime): New function.
35560
35561 2002-05-27  Jim Meyering  <meyering@lucent.com>
35562
35563         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
35564         localtime.
35565
35566         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
35567         use the replacement function; it wouldn't resolve at link time.
35568         Reported by Volker Borchert.
35569
35570 2002-05-22  Jim Meyering  <meyering@lucent.com>
35571
35572         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
35573         file-type.h.
35574         * lib/file-type.h: New file.
35575         * lib/file-type.c (file_type): New file/function.  Extracted from
35576         diffutils.
35577
35578 2002-04-30  Jim Meyering  <meyering@lucent.com>
35579
35580         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
35581
35582 2002-04-29  Paul Eggert  <eggert@twinsun.com>
35583
35584         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
35585
35586 2002-04-29  Paul Eggert  <eggert@twinsun.com>
35587
35588         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
35589         Do not check for alloca.h (no longer used) or stdbool.h (was never
35590         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
35591
35592 2002-04-29  Paul Eggert  <eggert@twinsun.com>
35593
35594         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
35595
35596 2002-04-29  Jim Meyering  <meyering@lucent.com>
35597
35598         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
35599         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
35600         Use AC_FUNC_STRNLEN here instead.
35601
35602         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
35603         With autoconf-2.53a, it's part of AC_PROG_CC.
35604
35605 2002-04-28  Paul Eggert  <eggert@twinsun.com>
35606
35607         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
35608         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
35609
35610 2002-04-28  Paul Eggert  <eggert@twinsun.com>
35611
35612         * lib/sig2str.h, lib/sig2str.c: New files.
35613         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
35614
35615 2002-04-28  Paul Eggert  <eggert@twinsun.com>
35616
35617         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
35618         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
35619         of 127, since 64 is the largest conceivable number for ancient
35620         nonstandard hosts.
35621         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
35622
35623 2002-04-28  Jim Meyering  <meyering@lucent.com>
35624
35625         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
35626
35627 2002-04-24  Jim Meyering  <meyering@lucent.com>
35628
35629         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
35630         (jm_PREREQ): Use it.
35631
35632         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
35633         mach/mach.h fcntl.h.
35634         Check for this function: setlocale.
35635
35636 2002-04-24  Jim Meyering  <meyering@lucent.com>
35637
35638         * lib/gettext.h: New file, from Gettext.
35639         * lib/Makefile.am (INCLUDES): Remove -I../intl.
35640         (libfetish_a_SOURCES): Add gettext.h.
35641
35642 2002-04-16  Jim Meyering  <meyering@lucent.com>
35643
35644         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
35645         ut_pid, ut_id, ut_exit.
35646
35647 2002-04-16  Jim Meyering  <meyering@lucent.com>
35648
35649         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
35650         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
35651         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
35652
35653 2002-04-12  Jim Meyering  <meyering@lucent.com>
35654
35655         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
35656         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
35657         existence of the getmntinfo function.  Needed for Darwin 5.3.
35658
35659         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
35660         This is necessary at least on Darwin 5.3.
35661
35662         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
35663         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
35664         strnlen.o in the library, and that makes some versions of ranlib
35665         object.
35666
35667 2002-04-12  Jim Meyering  <meyering@lucent.com>
35668
35669         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
35670
35671 2002-04-09  Jim Meyering  <meyering@lucent.com>
35672
35673         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
35674         to be more precise.  Rather than saying we're checking whether the
35675         function `works', say what we're testing.
35676         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
35677         Reported by Bruno Haible.
35678
35679 2002-03-10  Jim Meyering  <meyering@lucent.com>
35680
35681         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
35682         Suggestion from Santiago Vila.
35683
35684 2002-03-08  Jim Meyering  <meyering@lucent.com>
35685
35686         * lib/rename.c: Mention that this wrapper is needed also on
35687         mips-dec-ultrix4.4 systems.
35688
35689 2002-03-02  Jim Meyering  <meyering@lucent.com>
35690
35691         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
35692         not HAVE_CLOCK_SETTIME.
35693
35694 2002-02-27  Paul Eggert  <eggert@twinsun.com>
35695
35696         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
35697         Check for clock_settime.
35698
35699 2002-02-27  Paul Eggert  <eggert@twinsun.com>
35700
35701         * lib/nanosleep.h: Rename to....
35702         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
35703
35704         * lib/gettime.c: New file.
35705         * lib/settime.c: New file.
35706         * lib/stime.c: Remove.
35707
35708         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
35709         timespec.h.  Remove nanosleep.h.
35710
35711 2002-02-25  Paul Eggert  <eggert@twinsun.com>
35712
35713         * m4/acl.m4: New file.
35714         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
35715         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
35716
35717 2002-02-25  Paul Eggert  <eggert@twinsun.com>
35718
35719         * lib/acl.c, lib/acl.h: New files.
35720         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
35721
35722 2002-02-24  Jim Meyering  <meyering@lucent.com>
35723
35724         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
35725         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
35726         cause trouble.  Reported by Nelson Beebe.
35727
35728 2002-02-23  Paul Eggert  <eggert@twinsun.com>
35729
35730         * lib/path-concat.c (xpath_concat): Reorder code to pacify
35731         compilers that don't know that xalloc_die never returns.
35732
35733 2002-02-20  Jim Meyering  <meyering@lucent.com>
35734
35735         * lib/getdate.c: Regenerate using bison-1.33.
35736
35737 2002-02-17  Jim Meyering  <meyering@lucent.com>
35738
35739         * config/config.guess (main): Don't use `head -1'; it's no longer
35740         portable. Use `sed 1q' instead.
35741
35742 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
35743
35744         * m4/codeset.m4: Upgrade to gettext-0.11.
35745         * m4/gettext.m4: Upgrade to gettext-0.11.
35746         * m4/glibc21.m4: Upgrade to gettext-0.11.
35747         * m4/iconv.m4: Upgrade to gettext-0.11.
35748         * m4/isc-posix.m4: Upgrade to gettext-0.11.
35749         * m4/lcmessage.m4: Upgrade to gettext-0.11.
35750         * m4/lib-ld.m4: New file, from gettext-0.11.
35751         * m4/lib-link.m4: New file, from gettext-0.11.
35752         * m4/lib-prefix.m4: New file, from gettext-0.11.
35753         * m4/progtest.m4: Upgrade to gettext-0.11.
35754
35755 2002-02-15  Paul Eggert  <eggert@twinsun.com>
35756
35757         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
35758         (jm_PREREQ): Use it.
35759
35760 2002-02-15  Paul Eggert  <eggert@twinsun.com>
35761
35762         * lib/posixver.c, lib/posixver.h: New files.
35763         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
35764
35765 2002-02-02  Paul Eggert  <eggert@twinsun.com>
35766             Bruno Haible  <bruno@clisp.org>
35767
35768         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
35769         (fwrite_success_callback): New declaration.
35770         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
35771         print_unicode_char. Call failure callback instead of error.
35772         (fwrite_success_callback): New function.
35773         (exit_failure_callback): New function.
35774         (fallback_failure_callback): New function.
35775         (print_unicode_char): Call unicode_to_mb.
35776
35777 2002-01-26  Jim Meyering  <meyering@lucent.com>
35778
35779         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
35780         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
35781
35782 2002-01-26  Jim Meyering  <meyering@lucent.com>
35783
35784         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
35785
35786 2002-01-22  Paul Eggert  <eggert@twinsun.com>
35787
35788         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
35789
35790 2002-01-22  Jim Meyering  <meyering@lucent.com>
35791
35792         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
35793         Otherwise, some versions of automake would omit the rule that makes
35794         Makefile from Makefile.in.
35795
35796 2002-01-21  Paul Eggert  <eggert@twinsun.com>
35797
35798         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
35799         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
35800         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
35801         (memcoll): Set errno to zero if there is no error.
35802
35803         * lib/quotearg.c (quotearg_buffer_restyled):
35804         Fix bug with quoting buffers containing NUL when backslashing escapes.
35805         This bug was exposed by the other changes in this patch.
35806         (quotearg_n_options): New arg ARGSIZE.
35807         All callers changed.
35808         (quoting_options_from_style): New function.
35809         (quotearg_n_style): Use it.
35810         (quotearg_n_style_mem): New function.
35811
35812         * lib/quotearg.h (quotearg_n_style_mem): New function.
35813
35814 2002-01-19  Jim Meyering  <meyering@lucent.com>
35815
35816         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
35817         Remove useless quotes: DF_PROG="df".
35818         * m4/strnlen.m4: New file.
35819
35820 2002-01-16  Paul Eggert  <eggert@twinsun.com>
35821
35822         * lib/backupfile.c (ISDIGIT): Comment fix.
35823         * lib/getdate.y (ISDIGIT): Likewise.
35824         * lib/posixtm.c (ISDIGIT, year): Likewise.
35825         * lib/strverscmp.c (ISDIGIT): Likewise.
35826         * lib/userspec.c (ISDIGIT): Likewise.
35827
35828 2002-01-16  Jim Meyering  <meyering@lucent.com>
35829
35830         * lib/getdate.y: Add three semicolons, each just before a closing
35831         brace. Bison (as of version 1.31) no longer papers over that mistake.
35832
35833 2002-01-05  Jim Meyering  <meyering@lucent.com>
35834
35835         * lib/version-etc.c (version_etc_copyright): Update copyright year.
35836
35837 2001-12-19  Paul Eggert  <eggert@twinsun.com>
35838
35839         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
35840         not silently exit merely because the output buffer happens to
35841         have nothing pending.
35842
35843 2001-12-18  Paul Eggert  <eggert@twinsun.com>
35844
35845         See the big note in ../ChangeLog.
35846         * lib/human.c (suffixes): Prefer K to k for 1024.
35847         (generate_suffix_backwards): New function.
35848         (human_readable_inexact): Use it.
35849         * lib/xstrtol.c (__xstrtol): If there is no number but there
35850         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
35851         Accept 'K' as well as 'k'.
35852
35853 2001-12-15  Jim Meyering  <meyering@lucent.com>
35854
35855         * lib/regex.h (__restrict_arr): Update from libc.
35856
35857         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
35858         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
35859         (STREQ): Define.
35860
35861 2001-12-14  Jim Meyering  <meyering@lucent.com>
35862
35863         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
35864         Suggestion from Bruno Haible.
35865
35866 2001-12-10  Jim Meyering  <meyering@lucent.com>
35867
35868         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
35869         xrealloc, Instead, include "xalloc.h".
35870         (initbuffer): Don't cast xmalloc return value to char*.
35871         (readline): Reword comment.
35872         Don't cast xrealloc return value to char*
35873         Return NULL, not 0.
35874
35875 2001-12-09  Jim Meyering  <meyering@lucent.com>
35876
35877         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
35878         about `signed and unsigned type in conditional expression'.
35879         * lib/posixtm.c (posix_time_parse): Likewise.
35880
35881         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
35882
35883         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
35884         to avoid a pedantic warning.
35885
35886         * lib/getstr.c: Don't include assert.h.
35887         (getstr): Remove warning-evoking assertions.
35888         Return -1 if offset parameter is out of bounds.
35889         Change the type of a local from int to size_t.
35890
35891         * lib/strftime.c (my_strftime_localtime_r): Include this function
35892         definition in the `#if ! HAVE_TM_GMTOFF' block.
35893
35894         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
35895         Include xalloc.h instead.
35896
35897 2001-12-02  Jim Meyering  <meyering@lucent.com>
35898
35899         * lib/tempname.c: Don't declare getenv, thus reverting the change of
35900         2001-11-18.  It's no longer necessary, now that stdlib.h is always
35901         included.
35902
35903         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
35904         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
35905
35906 2001-11-30  Akim Demaille  <akim@epita.fr>
35907
35908         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
35909         before being defined.
35910
35911 2001-11-27  Paul Eggert  <eggert@twinsun.com>
35912
35913         * lib/quotearg.h (quotearg_n, quotearg_n_style):
35914         First arg is int, not unsigned.
35915         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
35916         (SIZE_MAX, UINT_MAX): New macros.
35917         (quotearg_n_options): Abort if N is negative.
35918         Avoid overflow check on hosts where size_t is 64 bits and int
35919         is 32 bits, as overflow is impossible there.
35920         Fix off-by-one typo that caused unnecessary reallocation.
35921
35922 2001-11-27  Jim Meyering  <meyering@lucent.com>
35923
35924         * lib/tempname.c: Merge with version from libc.
35925         * lib/regex.c: Likewise.
35926
35927         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
35928         systems for which STDC_HEADERS is 0, it was not included, resulting in
35929         a warning about an integer-to-pointer conversion problem with getenv.
35930         Reported by Volker Borchert.
35931
35932 2001-11-26  Jim Meyering  <meyering@lucent.com>
35933
35934         * lib/gtod.h: Remove file.
35935         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
35936         * lib/gettimeofday.c: Don't include gtod.h.
35937         (GTOD_init): Remove function.
35938         (rpl_gettimeofday): Do its job here instead, rather than aborting.
35939         Suggestion from Volker Borchert.
35940
35941 2001-11-23  Jim Meyering  <meyering@lucent.com>
35942
35943         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
35944         it.
35945         * lib/hash.c (struct hash_table): Define it here instead.
35946
35947 2001-11-22  Jim Meyering  <meyering@lucent.com>
35948
35949         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
35950
35951 2001-11-20  Jim Meyering  <meyering@lucent.com>
35952
35953         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
35954         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
35955
35956 2001-11-19  Jim Meyering  <meyering@lucent.com>
35957
35958         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
35959         directory.  Use "conftestXXXXXX" as the template.
35960         Suggestion from Paul Eggert.
35961
35962         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
35963         immediately, so the test doesn't mistakenly hit the max-open-files
35964         limit.
35965
35966 2001-11-18  Paul Eggert  <eggert@twinsun.com>
35967
35968         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
35969         (TEMPORARIES): New macro.
35970         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
35971         removes an artificial limitation (e.g. HP-UX 10.20, where
35972         TMP_MAX is 17576).
35973
35974 2001-11-18  Jim Meyering  <meyering@lucent.com>
35975
35976         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
35977
35978 2001-11-18  Jim Meyering  <meyering@lucent.com>
35979
35980         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
35981         on SunOS 4.
35982
35983         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
35984         files will be created before anything else.
35985
35986 2001-11-17  Paul Eggert  <eggert@twinsun.com>
35987
35988         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
35989         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
35990
35991 2001-11-17  Jim Meyering  <meyering@lucent.com>
35992
35993         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
35994         Prompted by a report from Bob Proulx.
35995
35996         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
35997         Instead, require UTILS_FUNC_MKSTEMP.
35998
35999 2001-11-17  Jim Meyering  <meyering@lucent.com>
36000
36001         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
36002         Now, that's done as part of AC_FUNC_STRTOD.
36003
36004 2001-11-17  Jim Meyering  <meyering@lucent.com>
36005
36006         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
36007         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
36008         rather than group writable.  Patch by Juan F. Codagnone.
36009
36010         * lib/readtokens.c: Remove explicit declarations of xmalloc and
36011         xrealloc, Instead, include "xalloc.h".
36012
36013         * lib/mountlist.c: Include unlocked-io.h after all system headers.
36014         Remove explicit declarations of xmalloc, xrealloc,
36015         and xstrdup.  Instead, include "xalloc.h".
36016
36017         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
36018         unlocked-io.h.
36019         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
36020         Likewise.
36021         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
36022
36023         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
36024         Reported by Padraig Brady.
36025
36026         * lib/mkstemp.c: #undef mkstemp.
36027         Include config.h.
36028         (rpl_mkstemp): Rename from mkstemp.
36029         Protoize.
36030
36031 2001-11-16  Jim Meyering  <meyering@lucent.com>
36032
36033         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
36034         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
36035         determine the amount of total physical memory, use pstat_getstatic.
36036         HPUX-11 doesn't define _SC_PHYS_PAGES.
36037         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
36038         If sysconf couldn't be used to determine the amount of available
36039         physical memory, use both pstat_getstatic and pstat_getdynamic.
36040         Based on a patch from Bob Proulx.
36041
36042 2001-11-10  Jim Meyering  <meyering@lucent.com>
36043
36044         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
36045         (jm_PREREQ): Use it.
36046
36047 2001-11-09  Jim Meyering  <meyering@lucent.com>
36048
36049         * m4/jm-macros.m4: Require autoconf-2.52f.
36050         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
36051         Use these AC_-prefixed names, not the AM_-prefixed ones.
36052
36053         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
36054
36055 2001-11-05  Jim Meyering  <meyering@lucent.com>
36056
36057         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
36058
36059 2001-11-04  Jim Meyering  <meyering@lucent.com>
36060
36061         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
36062         $DEFS.
36063
36064 2001-11-03  Jim Meyering  <meyering@lucent.com>
36065
36066         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
36067         of AC_DEFUN.
36068
36069         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
36070         know the name of the variable in the macro definition.
36071
36072 2001-11-03  Jim Meyering  <meyering@lucent.com>
36073
36074         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
36075         in argmatch_to_argument call.
36076
36077         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
36078         argument.
36079
36080         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
36081         e.g., a fault due to an attempt to free a NULL pointer.
36082
36083 2001-11-01  Jim Meyering  <meyering@lucent.com>
36084
36085         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
36086         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
36087
36088 2001-11-01  Jim Meyering  <meyering@lucent.com>
36089
36090         * lib/dirfd.c, lib/dirfd.h: New files.
36091         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
36092
36093         * lib/hash.c (hash_print) [TESTING]: Clean up.
36094
36095 2001-10-22  Paul Eggert  <eggert@twinsun.com>
36096
36097         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
36098         to avoid a warning if -Wall.
36099
36100 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
36101
36102         * README: New file
36103         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
36104         (per RMS's instructions, this is now the canonical source)
36105         * lgpl/, gpl/: New directories.
36106
36107 2001-10-21  Paul Eggert  <eggert@twinsun.com>
36108
36109         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
36110
36111 2001-10-21  Jim Meyering  <meyering@lucent.com>
36112
36113         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
36114         this code would end up calling gettext even in packages built
36115         with --disable-nls.
36116         * lib/getopt.c (_): Likewise.
36117         * lib/regex.c (_): Likewise.
36118
36119 2001-10-20  Paul Eggert  <eggert@twinsun.com>
36120
36121         * m4/error.m4 (jm_PREREQ_ERROR):
36122         Do not invoke AC_CHECK_FUNCS with strerror_r, as
36123         AC_FUNC_STRERROR_R does that.
36124         Check for strerror declaration.
36125
36126         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
36127         are supposed to have them these days.
36128         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
36129         Merge changes from latest Autoconf CVS.
36130         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
36131         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
36132         POSIX decided to standardize on the int flavor of strerror_r.
36133
36134 2001-10-20  Paul Eggert  <eggert@twinsun.com>
36135
36136         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
36137         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
36138         Use strerror_r that is only a macro, even if it is not a function.
36139         (strerror): Check for HAVE_DECL_STRERROR before declaring.
36140         (private_strerror): Use prototypes, not old-style function definition.
36141         (print_errno_message): New function.
36142         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
36143         char*-flavored one.
36144         (error_tail, error, error_at_line): Use it.
36145
36146 2001-10-11  Jim Meyering  <meyering@lucent.com>
36147
36148         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
36149         and quote_n (1, ... to avoid clobbering a buffer.
36150
36151 2001-10-05  Jim Meyering  <meyering@lucent.com>
36152
36153         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
36154         hash-pjw.h.
36155         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
36156         * lib/hash-pjw.h: New file.
36157
36158 2001-09-30  Jim Meyering  <meyering@lucent.com>
36159
36160         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
36161         `struct fsstat' has the `f_fstypename' member.
36162         Use that to define FS_TYPE, which is now used to make
36163         the getfsstat link test tighter.
36164
36165 2001-09-30  Jim Meyering  <meyering@lucent.com>
36166
36167         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
36168         Include <sys/ucred.h>, for Apple Darwin.
36169         Include sys/mount.h and sys/fs_types.h only if available.
36170         (FS_TYPE): Define.
36171         (read_filesystem_list): Use FS_TYPE.
36172
36173 2001-09-29  Paul Eggert  <eggert@twinsun.com>
36174
36175         * lib/exclude.c (excluded_filename): 0 -> false, since it's
36176         a boolean context.
36177
36178 2001-09-29  Jim Meyering  <meyering@lucent.com>
36179
36180         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
36181         [one-argument getmntent function]): Include stdio.h before mntent.h.
36182         SunOS 4.1.x needs it for the declaration of `FILE'.
36183         Patch by Volker Borchert.
36184
36185         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
36186         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
36187         sys/fs_types.h, and make the link-test for getfsstat guard #include
36188         directives with appropriate #if HAVE_*_H tests so that we can
36189         detect getfsstat on Apple Darwin1.3.7 systems.
36190         Reported by Nelson Beebe.
36191         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
36192
36193 2001-09-28  Paul Eggert  <eggert@twinsun.com>
36194
36195         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
36196         #defines strtoimax.  Also treat the other strto* functions
36197         like strtoimax.
36198
36199         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
36200         Check for strtoul and strtoumax,
36201         as those declarations are made even in the signed case.
36202         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
36203         Likewise, for strtol and strtoimax.
36204
36205 2001-09-28  Paul Eggert  <eggert@twinsun.com>
36206
36207         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
36208         #defines strtoimax.  Also treat the other strto* functions
36209         like strtoimax.
36210
36211         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
36212         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
36213         (strtoimax, strtoumax): Do not declare if already defined as a macro.
36214
36215 2001-09-26  Jim Meyering  <meyering@lucent.com>
36216
36217         Most macros in unlocked-io.h had the wrong number of arguments.
36218         * lib/gen-uio: New script.
36219         (USE_UNLOCKED_IO): Define to 1 if not already defined.
36220         * lib/unlocked-io.hin: Remove file.
36221         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
36222         rather than trying to embed it here.
36223         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
36224         Reported by Padraig Brady.
36225
36226 2001-09-25  Volker Borchert  <bt@teknon.de>
36227
36228         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
36229         `result'.
36230
36231 2001-09-24  Jim Meyering  <meyering@lucent.com>
36232
36233         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
36234
36235 2001-09-23  Jim Meyering  <meyering@lucent.com>
36236
36237         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
36238         instead of the mere test for existence of mntent.h.  The latter
36239         would get a false-positive on AIX 3.4 systems.
36240         In the outer getmntent if-block, don't die if neither of the getmntent
36241         tests succeeds.  Instead, just fall through and continue with the
36242         remaining tests.
36243
36244 2001-09-23  Jim Meyering  <meyering@lucent.com>
36245
36246         * lib/mountlist.c: Remove useless parentheses in #if directives.
36247         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
36248         the deprecated MOUNTED symbol is no longer defined in mntent.h.
36249
36250 2001-09-22  Jim Meyering  <meyering@lucent.com>
36251
36252         * m4/gettext.m4: New file.  From gettext.
36253         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
36254         * m4/progtest.m4: Likewise
36255         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
36256         * m4/glibc21.m4: Likewise.
36257
36258         * m4/libintl.m4: Remove.  No longer used.
36259
36260 2001-09-22  Jim Meyering  <meyering@lucent.com>
36261
36262         * lib/localcharset.c: Update from latest gettext.
36263         * lib/config.charset: Likewise.
36264
36265 2001-09-20  Jim Meyering  <meyering@lucent.com>
36266
36267         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
36268         strtoimax.
36269         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
36270         strtoumax.
36271
36272 2001-09-20  Jim Meyering  <meyering@lucent.com>
36273
36274         * lib/xstrtol.c (strtoimax): Guard declaration with
36275         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
36276         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
36277         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
36278         (strtoumax): Likewise, for completeness (it wasn't necessary).
36279
36280 2001-09-17  Paul Eggert  <eggert@twinsun.com>
36281
36282         * lib/strtoimax.c (HAVE_LONG_LONG):
36283         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
36284         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
36285         to work around bug in IBM C compiler.
36286
36287 2001-09-17  Jim Meyering  <meyering@lucent.com>
36288
36289         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
36290         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
36291         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
36292         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
36293         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
36294         whenever the right hand side need not be expanded by the shell.
36295
36296 2001-09-16  Paul Eggert  <eggert@twinsun.com>
36297
36298         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
36299         library.  It's not correct, as some older glibcs are buggy.
36300         fnmatch wasn't fixed until glibc 2.2.
36301
36302         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
36303         special shell magic here.
36304
36305 2001-09-16  Jim Meyering  <meyering@lucent.com>
36306
36307         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
36308         * m4/jm-macros.m4: Require it.
36309
36310 2001-09-16  Jim Meyering  <meyering@lucent.com>
36311
36312         * lib/mkdir.c: New file.
36313
36314 2001-09-15  Jim Meyering  <meyering@lucent.com>
36315
36316         * m4/jm-macros.m4: Check for help2man.
36317
36318 2001-09-11  Jim Meyering  <meyering@lucent.com>
36319
36320         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
36321         The body, by Paul Eggert, was moved here from configure.in.
36322         * m4/jm-macros.m4: Require UTILS_HOST_OS.
36323
36324 2001-09-04  Paul Eggert  <eggert@twinsun.com>
36325
36326         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
36327         (jm_PREREQ): Use it.
36328
36329 2001-09-04  Paul Eggert  <eggert@twinsun.com>
36330
36331         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
36332         Use ssize_t, not int, to store result of readlink.
36333         Check for ssize_t overflow as well as size_t overflow,
36334         as POSIX says the result of readlink is implementation-defined
36335         when ssize_t overflows.
36336         Remove unnecessary cast to char*.
36337         Use free+malloc instead of realloc, as the storage doesn't need
36338         to be preserved and it's clearer and can be more efficient that way.
36339         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
36340         * lib/xreadlink.h (xreadlink): Update prototype.
36341
36342 2001-09-04  Paul Eggert  <eggert@twinsun.com>
36343
36344         * lib/xgetcwd.c: Revert some of the previous change; intead,
36345         fix the HAVE_GETCWD_NULL code to behave more like the
36346         !HAVE_GETCWD_NULL code used to.
36347
36348         Include "xalloc.h".
36349         (xgetcwd): Do not return NULL when memory is exhausted; instead,
36350         invoke xalloc_die.
36351
36352 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36353
36354         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
36355         sys/param.h, as pathmax.h includes them.
36356
36357 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36358
36359         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
36360         (jm_PREREQ_XGETCWD): New macro.
36361
36362         * m4/getcwd.m4: New file.
36363
36364 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36365
36366         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
36367         like the HAVE_GETCWD_NULL code.
36368         Include pathmax.h if not HAVE_GETCWD.
36369         Do not include xalloc.h.
36370         (INITIAL_BUFFER_SIZE): New symbol.
36371         Do not use xmalloc / xrealloc, since the caller is responsible for
36372         handling errors.  Preserve errno around `free' during failure.
36373         Do not overrun buffer when using getwd.
36374
36375 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36376
36377         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
36378         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
36379         getcwd (NULL, 0).
36380
36381 2001-09-03  Paul Eggert  <eggert@twinsun.com>
36382
36383         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
36384         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
36385         spotted by Jim Meyering.
36386
36387 2001-09-03  Jim Meyering  <meyering@lucent.com>
36388
36389         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
36390         failure.
36391
36392 2001-09-02  Jim Meyering  <meyering@lucent.com>
36393
36394         * lib/error.c: Update from GNU libc.
36395
36396 2001-09-01  Jim Meyering  <meyering@lucent.com>
36397
36398         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
36399         Used by df.
36400
36401 2001-09-01  Jim Meyering  <meyering@lucent.com>
36402
36403         * lib/xreadlink.c: New file.
36404         * lib/xreadlink.h: New file.
36405         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
36406         xreadlink.h.
36407
36408         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
36409         doesn't conflict with sparc Solaris 7's definition in
36410         /usr/include/sys/int_types.h.
36411
36412         * lib/exclude.c: Use `""', not `<>' to #include non-system header
36413         files.
36414         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
36415         and strncasecmp as r-values.  Unixware didn't have declarations.
36416
36417 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36418
36419         * lib/xstrtol.h: Add copyright notice.
36420         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
36421         LONGINT_INVALID_SUFFIX_CHAR.
36422
36423 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36424
36425         * lib/xstrtol.c (strtoimax): New decl.
36426
36427 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36428
36429         * lib/xgetcwd.c: Don't include pathmax.h.
36430         Include stdlib.h and unistd.h if available.
36431         Include xalloc.h.
36432         (xmalloc, xstrdup, free): Remove decls.
36433         (xgetcwd): Don't assume sizes fit in unsigned.
36434         Check for overflow when computing sizes.
36435         Simplify reallocation code.
36436
36437 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36438
36439         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
36440         a directory's st_size can have an arbitrary value, so the old
36441         usage could waste an arbitrary amount of memory.  All uses
36442         changed.
36443         * lib/savedir.h: Update prototype.
36444
36445 2001-08-31  Paul Eggert  <eggert@twinsun.com>
36446
36447         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
36448
36449         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
36450         old strtoimax.c.
36451
36452         Also, make the following further changes to make this file's
36453         configuration more similar to that of strtol.c:
36454         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
36455         (strtoumax, uintmax_t, strtoull, strtol): Remove.
36456         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
36457         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
36458         changed to signed values.
36459
36460         And make the following changes as well:
36461         Fix copyright notice, as 1999 was missing.
36462         (verify): New macro.
36463         (strtoimax): Check sizes at compile-time, not run-time.
36464         Prefer strtol to strtoll if both work.
36465         (main): Remove; it was not that useful and was a pain to maintain.
36466
36467         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
36468
36469 2001-08-31  Jim Meyering  <meyering@lucent.com>
36470
36471         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
36472         Use an initial, malloc'd, buffer of length 128 rather than
36473         a statically allocated one of length 1024.
36474
36475 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36476
36477         Simplify code, partly by assuming autoconf 2.52 semantics.
36478
36479         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
36480
36481         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
36482         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
36483         All uses removed.
36484         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
36485         Move AC_REQUIRE to next-to-top level, to avoid confusion.
36486         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
36487         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
36488         jm_AC_HEADER_INTTYPES_H.
36489         * m4/jm-macros.m4 (jm_MACROS): Likewise.
36490
36491         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
36492
36493         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
36494         Quote first arg of AC_DEFUN.
36495         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
36496         since they are needed to parse the include file even if we need
36497         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
36498         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
36499         but with opposite signedness.
36500
36501 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36502
36503         Merge 'exclude' changes from tar 1.13.22.
36504         This fixes one or two unlikely storage allocation overflow bugs,
36505         but doesn't change user-visible behavior otherwise.
36506
36507 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36508
36509         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
36510         (jm_PREREQ_EXCLUDE): New macro.
36511
36512 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36513
36514         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
36515         tm to be declared.
36516
36517 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36518
36519         * lib/hash.c: Remove '2001' from copyright notice.
36520
36521 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36522
36523         * lib/full-write.h: New file.
36524         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
36525         * lib/full-write.c: Correct credits, as cccp.c no longer
36526         exists and anyway it was so heavily changed from the old cccp
36527         code as to be unrecognizable.  Include full-write.h.
36528         (full_write) Return size_t, with short writes meaning failure.
36529         All callers changed.  This fixes a bug with large buffers
36530         on 64-bit hosts.
36531         * lib/utime.c: Include full-write.h.
36532
36533 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36534
36535         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
36536         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
36537         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
36538         Include if available.
36539         (<xalloc.h>): Include
36540         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
36541         (verify): New macro.  Use it to verify that EXCLUDE macros do not
36542         collide with FNM macros.
36543         (struct patopts): New struct.
36544         (struct exclude): Use it, as exclude patterns now come with options.
36545         (new_exclude): Support above changes.
36546         (new_exclude, add_exclude_file):
36547         Initial size must now be a power of two to simplify overflow checking.
36548         (free_exclude, fnmatch_no_wildcards): New function.
36549         (excluded_filename): No longer requires options arg, as the options
36550         are determined by add_exclude.  Now returns bool, not int.
36551         (excluded_filename, add_exclude):
36552         Add support for the fancy new exclusion options.
36553         (add_exclude, add_exclude_file): Now takes int options arg.
36554         Check for arithmetic overflow when computing sizes.
36555         (add_exclude_file): xrealloc might modify errno, so don't
36556         realloc until after errno might be used.
36557
36558         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
36559         New macros.
36560         (free_exclude): New decl.
36561         (add_exclude, add_exclude_file): Now takes int options arg.
36562         (excluded_filename): No longer requires options arg, as the options
36563         are determined by add_exclude.  Now returns bool, not int.
36564
36565 2001-08-30  Paul Eggert  <eggert@twinsun.com>
36566
36567         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
36568
36569 2001-08-27  Jim Meyering  <meyering@lucent.com>
36570
36571         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
36572
36573         * lib/version-etc.c (N_): Remove definition.
36574         Revert most of last change.
36575         Instead, simply don't mark the `Copyright...' string for translation.
36576         Based on advice from Paul Eggert.
36577
36578         * lib/strtoxmax.c: Tweak comment.
36579
36580 2001-08-26  Jim Meyering  <meyering@lucent.com>
36581
36582         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
36583
36584         * m4/xstrtoimax.m4: New file.
36585         * m4/xstrtoumax.m4: Add comments explaining why we
36586         AC_REPLACE_FUNCS(strtol).
36587
36588 2001-08-26  Jim Meyering  <meyering@lucent.com>
36589
36590         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
36591         of copyright with `%s' so translators don't get an untranslated
36592         message in 2002.
36593         (COPYRIGHT_YEAR): Define.
36594         (version_etc): Use fprintf rather than fputs.
36595         Suggestion from Ulrich Drepper.
36596
36597         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
36598
36599         * lib/strtoll.c: New file, from GNU libc.
36600         * lib/xstrtoimax.c: New file.
36601
36602         * lib/xstrtol.h: Add xstrtoimax.
36603         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
36604         * lib/strtoimax.c: New file.  Likewise, but first define
36605         STRTOUXMAX_SIGNED.
36606
36607         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
36608         ...
36609         * lib/strtoxmax.c: ... then renamed to this.
36610
36611 2001-08-18  Paul Eggert  <eggert@twinsun.com>
36612
36613         * m4/inttypes.m4: Add AC_PREREQ(2.13).
36614         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
36615         (jm_AC_TYPE_INTMAX_T): New macro.
36616         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
36617
36618         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
36619
36620         * m4/longlong.m4: Renamed from ulonglong.m4.
36621         * m4/inttypes.m4: Renamed from inttypes_h.m4.
36622         * m4/uintmax_t.m4: Removed.
36623
36624 2001-08-13  Paul Eggert  <eggert@twinsun.com>
36625
36626         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
36627         Port to Solaris 8, where 'sed' requires a space after the 'r'
36628         command, and where sh dislikes "$/".  Clean up the spacing a bit.
36629         Redirect output to $tmp just once.
36630
36631 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
36632
36633         * lib/addext.c (<errno.h>): Include.
36634         (errno): Declare if not defined.
36635         (addext): Work correctly when pathconf returns -1 and leaves
36636         errno alone because there is no limit.  Also, work even if
36637         pathconf returns a value greater than SIZE_MAX.
36638
36639 2001-08-12  Jim Meyering  <meyering@lucent.com>
36640
36641         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
36642         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
36643         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
36644         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
36645         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
36646         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
36647         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
36648         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
36649         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
36650         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
36651         utime.m4, utimes.m4, xstrtoumax.m4:
36652         Quote the first argument in each use of AC_DEFUN.
36653
36654 2001-08-12  Jim Meyering  <meyering@lucent.com>
36655
36656         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
36657         Simply `return getcwd (NULL, 0);'.
36658         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
36659         Use 1300 as initial value for length, not PATH_MAX.
36660
36661         * lib/pathmax.h: Clean up cpp syntax.
36662
36663 2001-08-12  Jim Meyering  <meyering@lucent.com>
36664
36665         * lib/gettimeofday.c: New file.
36666         * lib/gtod.h: New file.
36667         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
36668
36669 2001-08-05  Jim Meyering  <meyering@lucent.com>
36670
36671         * m4/jm-macros.m4: Require autoconf-2.52.
36672
36673 2001-08-04  Jim Meyering  <meyering@lucent.com>
36674
36675         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
36676         stmt, to get in sync with glibc.
36677
36678 2001-08-03  Paul Eggert  <eggert@twinsun.com>
36679
36680         The following changes are from gettext 0.10.39 as maintained by
36681         Bruno Haible.
36682
36683         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
36684         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
36685         with inverted sense.  All uses changed.
36686
36687         * lib/mbswidth.c: Don't include <limits.h>.
36688         Include <stdlib.h> and <string.h> unconditionally.
36689         (iswcntrl, mbsinit, ISCNTRL): New macros.
36690         (mbsnwidth): Use K&R style function declarations.
36691         Don't bother checking for MB_LEN_MAX == 1, since the compiler
36692         can optimize it when MB_CUR_MAX == 1.
36693         The width of control characters is zero, not 1.
36694
36695 2001-08-03  Paul Eggert  <eggert@twinsun.com>
36696
36697         The following changes are from gettext 0.10.39 as maintained by
36698         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
36699
36700         * m4/codeset.m4: Upgrade to serial AM1.
36701         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
36702         all uses changed.  Quote first arg of AC_DEFUN.
36703         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
36704
36705         * m4/iconv.m4: Upgrade to serial AM2.
36706         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
36707         Add --with-libconv-prefix.
36708         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
36709         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
36710         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
36711         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
36712         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
36713
36714         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
36715         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
36716         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
36717         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
36718         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
36719         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
36720         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
36721         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
36722         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
36723
36724         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
36725         string.h any more.
36726
36727         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
36728         not the default value.
36729
36730         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
36731         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
36732         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
36733         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
36734         Also check for iswcntrl, used for wcwidth fallback.
36735         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
36736         to Autoconf 2.13.
36737
36738 2001-08-03  Jim Meyering  <meyering@lucent.com>
36739
36740         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
36741         as it was in the original.  Reported by Paul Eggert.
36742
36743 2001-07-16  Jim Meyering  <meyering@lucent.com>
36744
36745         * m4/gettimeofday.m4: New file.
36746         Prompted by a report from Bernhard Baehr.
36747
36748 2001-07-15  Jim Meyering  <meyering@lucent.com>
36749
36750         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
36751         stuff. Now it's in ../Makefile.cfg.
36752
36753 2001-07-15  Jim Meyering  <meyering@lucent.com>
36754
36755         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
36756         (BUILT_SOURCES): Add unlocked-io.h.
36757         (io_functions): Define.
36758         (unlocked-io.h): New rule.
36759         (DISTCLEANFILES): Add unlocked-io.h.
36760         (all-local): Depend on unlocked-io.h, to ensure it is created.
36761
36762         * lib/unlocked-io.hin: New file
36763
36764         * lib/regex.c: Update from glibc.
36765
36766 2001-07-05  Jim Meyering  <meyering@lucent.com>
36767
36768         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
36769         recommendation.
36770         (libfetish_a_SOURCES): Put all .h files here instead.
36771         Remove a thus-exposed (better checks in automake) duplicate and
36772         two unnecessary .h files.
36773
36774 2001-07-04  Jim Meyering  <meyering@lucent.com>
36775
36776         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
36777         that generates jm-glibc-io.m4 so that it doesn't trigger any make
36778         distcheck failure.
36779
36780 2001-07-02  Jim Meyering  <meyering@lucent.com>
36781
36782         The following changes were prompted by suggestions from Bruno Haible.
36783
36784         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
36785         is now generated.
36786         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
36787         definition of EXTRA_DIST.
36788         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
36789         ensure that the generated file is created/updated whenever the list
36790         of $(unlocked_functions) is changed.
36791         (jm-glibc-io.m4): New rule.
36792         (unlocked-io.h): New rule -- currently unused.
36793
36794 2001-06-24  Jim Meyering  <meyering@lucent.com>
36795
36796         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
36797         unmatched right bracket, rather than kludging it with an extra,
36798         falsely-matching quote in a comment.  Patch by Akim Demaille.
36799
36800 2001-06-11  Jim Meyering  <meyering@lucent.com>
36801
36802         * lib/regex.c: Update from GNU libc.
36803
36804 2001-05-27  Jim Meyering  <meyering@lucent.com>
36805
36806         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
36807         Check for ut_type in struct utmp.
36808
36809 2001-05-27  Jim Meyering  <meyering@lucent.com>
36810
36811         * lib/readutmp.h (UT_TYPE): Define.
36812
36813 2001-05-24  Jim Meyering  <meyering@lucent.com>
36814
36815         * lib/argmatch.c: Include "quote.h".
36816         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
36817         quote function.  Reported by Göran Uddeborg.
36818
36819 2001-05-22  Jim Meyering  <meyering@lucent.com>
36820
36821         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
36822         now that we use the package-supplied version unconditionally.
36823         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
36824
36825 2001-05-21  Jim Meyering  <meyering@lucent.com>
36826
36827         * m4/regex.m4: Change a couple backticks to single quotes to avoid
36828         shell syntax errors.
36829
36830 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
36831
36832         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
36833
36834 2001-05-20  Paul Eggert  <eggert@twinsun.com>
36835
36836         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
36837         Don't bother to check library strftime, since
36838         we'll be using our own my_strftime function anyway.
36839         Define my_strftime instead of strftime.
36840
36841 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
36842
36843         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
36844         which is not yet declared.
36845
36846 2001-05-15  Jim Meyering  <meyering@lucent.com>
36847
36848         * m4/regex.m4: Use proper quoting so brackets appear in the test
36849         program.
36850         Reported by, and with help from, Bruno Haible.
36851
36852 2001-05-13  Jim Meyering  <meyering@lucent.com>
36853
36854         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
36855         undefined.
36856
36857 2001-05-11  Paul Eggert  <eggert@twinsun.com>
36858
36859         dirname code cleanup.  base_name now behaves more compatibly
36860         with POSIX basename when given file names that have trailing
36861         slashes, and similarly for dir_name.  Add new primitives
36862         base_len and dir_len.  Put the directory-name-related decls
36863         into dirname.h.
36864
36865         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
36866         * lib/backupfile.c (base_name): Likewise.
36867         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
36868         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
36869         * lib/makepath.c (strip_trailing_slashes): Likewise.
36870         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
36871         ISSLASH): Likewise.
36872         * lib/rename.c (strip_trailing_slashes): Likewise.
36873         * lib/same.c (base_name): Likewise.
36874         * lib/stripslash.c (ISSLASH): Likewise.
36875
36876         * lib/addext.c: Include <dirname.h> after size_t is defined.
36877         * lib/backupfile.c: Likewise.
36878
36879         * lib/addext.c (addext): Use base_len to trim redundant
36880         trailing slashes instead of doing it ourselves.
36881         But do not trim the last slash if it is not redundant.
36882
36883         * lib/backupfile.c (find_backup_file_name,
36884         max_backup_version): Use base_len instead of rolling it ourselves.
36885         Handle the case of "" and (on DOS) "C:" correctly.
36886
36887         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
36888         needed. Include <string.h>, <dirname.h>.
36889         (base_name): Allow file names ending in slashes, other than names
36890         that are all slashes.  In this case, return the basename followed
36891         by the slashes.  This is more general, and can be used in places
36892         where the original base_name purposely had an assertion failure.
36893         (base_len): New function.
36894
36895         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
36896         Do not include <assert.h>; no longer needed.
36897         Include xalloc.h.
36898         (memrchr): Remove decl.
36899         (dir_name_r): Remove.
36900         (dir_len): Renamed from dirlen.  All callers changed.
36901         Rewrite in terms of base_name, for simplicity and consistency.
36902         (dir_name): Never return NULL.  All callers changed.
36903         Do not include <stdlib.h> in test program; no longer needed.
36904         return 0; is fine for test program.
36905
36906         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
36907         New macros.
36908         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
36909
36910         * lib/path-concat.c (path_concat): Use base_len to compute
36911         base length, not strlen; this means we cannot rely on memcpy
36912         to null-terminate.
36913
36914         * lib/same.c (STREQ): Remove.
36915         (same_name): Handle the case where the basename ends in trailing '/'.
36916
36917         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
36918         a slash was stripped.  Do not strip the last slash after a
36919         file system prefix.
36920
36921 2001-05-11  Paul Eggert  <eggert@twinsun.com>
36922
36923         * lib/Makefile.am (libfetish_a_SOURCES):
36924         Add strftime.c, since we now compile it on all hosts.
36925
36926         * lib/strftime.c (my_strftime):
36927         Define to nstrftime if emacs, but only if my_strftime is not defined.
36928         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
36929         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
36930         Add one more extra argument: a nanoseconds value.
36931         All uses changed.
36932         (ns): New macro.
36933         (my_strftime function): Add %N format.
36934         (emacs_strftimeu): Renamed from emacs_strftime,
36935         with extra ut argument.
36936
36937 2001-05-09  Paul Eggert  <eggert@twinsun.com>
36938
36939         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
36940
36941 2001-04-21  Jim Meyering  <meyering@lucent.com>
36942
36943         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
36944         doesn't interfere.
36945
36946 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
36947
36948         * m4/ftruncate.m4: Check for chsize.
36949         Link with ftruncate.o unconditionally if ftruncate is missing.
36950         This was required when cross-compiling to i586-mingw32msvc.
36951
36952 2001-04-08  Jim Meyering  <meyering@lucent.com>
36953
36954         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
36955         recomputed; that's necessary when the offset spans a DST transition.
36956         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
36957
36958 2001-04-02  Jim Meyering  <meyering@lucent.com>
36959
36960         * lib/regex.h, regex.c: Update from GNU libc.
36961
36962 2001-03-24  Jim Meyering  <meyering@lucent.com>
36963
36964         * m4/jm-macros.m4: Require autoconf-2.49d.
36965
36966 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
36967
36968         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
36969
36970 2001-03-19  Paul Eggert  <eggert@twinsun.com>
36971
36972         * lib/version-etc.c (version_etc_copyright): Update to 2001.
36973
36974 2001-03-17  Jim Meyering  <meyering@lucent.com>
36975
36976         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
36977         now that the version in autoconf is equivalent.
36978         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
36979
36980         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
36981         Suggestion from Akim Demaille.
36982
36983         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
36984         (jm_PREREQ_TEMPNAME): New function.
36985
36986 2001-03-16  Paul Eggert  <eggert@twinsun.com>
36987
36988         * lib/tempname.c (uint64_t): Define to uintmax_t if
36989         not defined, and if UINT64_MAX is not defined.
36990         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
36991         Reported by John David Anglin.
36992
36993 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
36994
36995         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
36996         resolve alias if codeset is empty.
36997         * lib/config.charset (BeOS): Use wildcard syntax.
36998
36999 2001-03-13  Jim Meyering  <meyering@lucent.com>
37000
37001         * lib/path-concat.c (path_concat)
37002         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
37003         concatenating e.g., `C:' and `foo'.
37004         From Bruno Haible.
37005
37006 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
37007
37008         * lib/localcharset.c (locale_charset): Don't use
37009         setlocale(LC_CTYPE,NULL). Don't return NULL.
37010         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
37011
37012 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
37013
37014         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
37015         support for DOS/DJGPP.
37016
37017 2001-03-01  Paul Eggert  <eggert@twinsun.com>
37018
37019         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
37020         lacks mkstemp.  Compile our own tempname.c if we compile our own
37021         mkstemp.c, as mkstemp relies on tempname.
37022
37023 2001-03-01  Jim Meyering  <meyering@lucent.com>
37024
37025         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
37026         AH_VERBATIM really does output its argument verbatim.
37027
37028 2001-02-28  Paul Eggert  <eggert@twinsun.com>
37029
37030         * lib/Makefile.am (libfetish_a_SOURCES):
37031         Add dup-safer.c, fopen-safer.c.
37032         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
37033
37034         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
37035         * lib/unistd-safer.h: New files.
37036
37037 2001-02-25  Paul Eggert  <eggert@twinsun.com>
37038
37039         The mkstemp replacement is taken from glibc 2.2.2, with some
37040         portability fixes for use outside glibc, as follows:
37041
37042         * lib/tempname.c (struct_stat64): New macro.
37043         (direxists, __gen_tempname): Use it.
37044         This avoids a portability problem with Solaris 8.
37045
37046         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
37047         (<stddef.h>, <stdint.h>, <string.h>):
37048         Include only if STDC_HEADERS || _LIBC.
37049         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
37050         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
37051         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
37052         (__set_errno): Define this macro if <errno.h> doesn't.
37053         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
37054         Define these macros if <stdio.h> doesn't.
37055         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
37056         Define these macros if <sys/stat.h>
37057         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
37058         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
37059         __xstat64): Define if not _LIBC.
37060         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
37061         (__gen_tempname): Invoke gettimeofday only if
37062         HAVE_GETTIMEOFDAY || _LIBC;
37063         otherwise, fall back on plain "time".
37064         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
37065
37066         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
37067
37068         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
37069
37070 2001-02-18  Paul Eggert  <eggert@twinsun.com>
37071
37072         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
37073
37074 2001-02-17  Paul Eggert  <eggert@twinsun.com>
37075
37076         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
37077         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
37078         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
37079         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
37080
37081 2001-02-17  Paul Eggert  <eggert@twinsun.com>
37082
37083         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
37084         Remove workaround macros for hosts that have mbrtowc but not
37085         mbstate_t, as we now insist on proper declarations for both
37086         before using mbrtowc.
37087
37088 2001-02-17  Jim Meyering  <meyering@lucent.com>
37089
37090         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
37091         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
37092         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
37093         UnixWare 7.1.1.
37094
37095         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
37096         rather than AC_CACHE_VAL.
37097
37098 2001-02-17  Jim Meyering  <meyering@lucent.com>
37099
37100         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
37101         around included file name.
37102
37103         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
37104
37105         * lib/strftime.c: Update from GNU libc (the only changes were to
37106         comments).
37107
37108 2001-02-17  Jim Meyering  <meyering@lucent.com>
37109
37110         * lib/regex.c: Update from libc.
37111
37112 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
37113
37114         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
37115         clash.
37116
37117 2001-02-16  Paul Eggert  <eggert@twinsun.com>
37118
37119         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
37120         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
37121         Reported by Mark Hounschell via Paul Eggert.
37122
37123 2001-02-07  Jim Meyering  <meyering@lucent.com>
37124
37125         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
37126
37127 2001-02-05  Jim Meyering  <meyering@lucent.com>
37128
37129         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
37130         it includes the patch required for `large file' support with at least
37131         HP-UX's 10.20 /bin/cc.
37132
37133 2001-02-03  Jim Meyering  <meyering@lucent.com>
37134
37135         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
37136         AS_IF, now that it works once again (mysteriously).
37137         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
37138
37139 2001-01-30  Jim Meyering  <meyering@lucent.com>
37140
37141         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
37142         * m4/chown.m4: Rename conftestchown to conftest.chown.
37143         * m4/rename.m4: s/conftestdir/conftest.d1/ and
37144         s/conftestdir2/conftest.d2/.
37145         * m4/utimes.m4: s/conftestdata/conftest.data/
37146         Inspired by Pavel Roskin's change in autoconf.
37147
37148 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
37149
37150         * lib/config.charset: Update for FreeBSD 4.2.
37151
37152 2001-01-27  Jim Meyering  <meyering@lucent.com>
37153
37154         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
37155         a use of AS_IF.
37156         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
37157
37158 2001-01-26  Jim Meyering  <meyering@lucent.com>
37159
37160         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
37161         quotearg.c includes it.
37162
37163 2001-01-26  Jim Meyering  <meyering@lucent.com>
37164
37165         * lib/quotearg.c: Include stddef.h.
37166         * lib/quote.c: Include stddef.h.
37167         Reported by Axel Kittenberger.
37168
37169         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
37170         line in double quotes so that it evokes a better diagnostic.
37171         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
37172         Reported by Axel Kittenberger.
37173
37174 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
37175
37176         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
37177         as if it was a `charset'.
37178
37179 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
37180
37181         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
37182         has const.
37183
37184 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
37185
37186         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
37187         to avoid a warning.  Add back 'const' to inptr.
37188
37189 2001-01-20  Jim Meyering  <meyering@lucent.com>
37190
37191         Be sure that headers are checked before used in code compiled
37192         for the type checks.
37193         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
37194         In place of that, invoke jm_CHECK_ALL_TYPES.
37195         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
37196         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
37197         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
37198         The check for ssize_t was mistakenly run before the test for unistd.h.
37199
37200         The configure-time check for stdbool.h was missing.
37201         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
37202         (jm_PREREQ_HASH): New function.
37203
37204 2001-01-17  Jim Meyering  <meyering@lucent.com>
37205
37206         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
37207         for autoconf-2.49c.
37208         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
37209
37210 2001-01-16  Jim Meyering  <meyering@lucent.com>
37211
37212         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
37213         From Bruno Haible.
37214
37215 2001-01-14  Jim Meyering  <meyering@lucent.com>
37216
37217         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
37218         foo and bar.  Create conftestdir/ in the script, not in the C code.
37219         Remove directories in the script, not in the C code.
37220         Remove conftestdir{,2} before trying to create the directory.
37221         Make the entire configure script fail if the mkdir fails.
37222
37223 2001-01-14  Jim Meyering  <meyering@lucent.com>
37224
37225         * lib/rename.c: New file.  From Volker Borchert.
37226         Include stdlib.h, string.h or strings.h, and xalloc.h.
37227         Use strip_trailing_slashes rather than open-coding it.
37228
37229 2001-01-03  Paul Eggert  <eggert@twinsun.com>
37230
37231         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
37232
37233 2001-01-03  Jim Meyering  <meyering@lucent.com>
37234
37235         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
37236         of local `inptr' to avoid warning with some system declarations of
37237         iconv.
37238
37239 2001-01-02  Volker Borchert  <bt@teknon.de>
37240
37241         * m4/rename.m4: New file.
37242         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
37243
37244 2001-01-01  Jim Meyering  <meyering@lucent.com>
37245
37246         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
37247         even on systems with utmpx.h.  It's necessary for the declaration of
37248         utmp's ut_user member.  Reported by Andreas Jaeger.
37249
37250         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
37251         available. They are required for the declarations of getgrgid and
37252         getpwuid resp.
37253         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
37254         Reported by Andreas Jaeger.
37255
37256 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
37257
37258         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
37259         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
37260         so `make install' also works in VPATH builds.
37261
37262 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
37263
37264         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
37265         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
37266         can be used in subdirectories.
37267
37268 2000-12-29  Paul Eggert  <eggert@twinsun.com>
37269
37270         * lib/modechange.c: Do not assume that mode_t uses the
37271         traditional octal encoding.  E.g. "chmod 1 FOO" should set
37272         the other-execute bit of FOO even if S_IXOTH != 1.
37273
37274         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
37275         WOTH, XOTH, ALLM): New macros.
37276         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
37277          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
37278         Use them.
37279         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
37280         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
37281         (mode_compile):
37282         No need to use uintmax_t; unsigned long is long enough.
37283         Don't bother to get suffix since we don't use it.
37284
37285 2000-12-26  Jim Meyering  <meyering@lucent.com>
37286
37287         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
37288         better with autoheader.
37289
37290 2000-12-24  Jim Meyering  <meyering@lucent.com>
37291
37292         * lib/hash.c (is_prime): Return explicit boolean values.
37293         (hash_get_first): Return NULL to appease Irix5.6's 89.
37294         Reported by Nelson Beebe.
37295
37296 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
37297
37298         * lib/localcharset.c (locale_charset): Add support for Win32.
37299
37300 2000-12-18  Paul Eggert  <eggert@twinsun.com>
37301
37302         * lib/physmem.h, lib/physmem.c: New files.
37303
37304         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
37305         (noinst_HEADERS): Add physmem.h.
37306
37307         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
37308         't' for compatibility with Solaris 8 sort.
37309
37310 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
37311
37312         * lib/config.charset: Add support for BeOS.
37313
37314 2000-12-17  Jim Meyering  <meyering@lucent.com>
37315
37316         * m4/dos.m4 (jm_AC_DOS): New file and macro.
37317         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
37318
37319 2000-12-16  Jim Meyering  <meyering@lucent.com>
37320
37321         This bug had a serious impact on chown: `chown N:M FILE' (for integer
37322         N and M) would have treated it like `chown N:N FILE'.
37323
37324         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
37325
37326 2000-12-16  Jim Meyering  <meyering@lucent.com>
37327
37328         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
37329         SHELLS_FILE to a file name that's useful on djgpp systems.
37330         Include stdlib.h.
37331         (ADDITIONAL_DEFAULT_SHELLS): Define.
37332         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
37333         Based mostly on a patch from Prashant TR.
37334
37335 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
37336
37337         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
37338         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
37339         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
37340
37341 2000-12-08  Andreas Schwab  <schwab@suse.de>
37342
37343         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
37344         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
37345
37346 2000-12-07  Jim Meyering  <meyering@lucent.com>
37347
37348         * lib/stripslash.c (ISSLASH): Define.
37349         (strip_trailing_slashes): Use ISSLASH rather than comparing against
37350         `/'.
37351         From Prashant TR.
37352
37353         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
37354         (dir_name_r): Declare this function as static.
37355         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
37356         manifest itself on a name containing a mix of slashes and
37357         backslashes.
37358         Make this function work with names starting with a DOS-style
37359         drive letter and colon prefix.
37360         (dir_name): Append `.' if necessary.
37361         Based mostly on patches from Prashant TR and Eli Zaretskii.
37362
37363         * lib/dirname.h (dir_name_r): Remove prototype.
37364
37365 2000-12-06  Paul Eggert  <eggert@twinsun.com>
37366
37367         * m4/off_t-format.m4: Remove this file.
37368         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
37369
37370 2000-12-06  Jim Meyering  <meyering@lucent.com>
37371
37372         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
37373         replacement strtoull, we may well need the replacement strtoul, too.
37374         Check for declarations of strtoul and strtoull.
37375         Check for strtol.  Mainly as a cue to cause automake to include
37376         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
37377         Check for limits.h -- strtol.c needs it.
37378
37379 2000-12-05  Jim Meyering  <meyering@lucent.com>
37380
37381         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
37382
37383 2000-12-04  Jim Meyering  <meyering@lucent.com>
37384
37385         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
37386         Also include memory.h, stdlib.h, unistd.h if appropriate.
37387         Reported by Andreas Jaeger (conflicting declaration of malloc).
37388
37389 2000-12-02  Jim Meyering  <meyering@lucent.com>
37390
37391         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
37392         * m4/jm-macros.m4 (jm_MACROS): require it.
37393
37394 2000-12-02  Jim Meyering  <meyering@lucent.com>
37395
37396         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
37397
37398 2000-12-01  Paul Eggert  <eggert@twinsun.com>
37399
37400         * lib/memrchr.c: Include <config.h> before any system include file.
37401
37402 2000-11-30  Jim Meyering  <meyering@lucent.com>
37403
37404         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
37405
37406 2000-11-30  Jim Meyering  <meyering@lucent.com>
37407
37408         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
37409
37410 2000-11-29  Paul Eggert  <eggert@twinsun.com>
37411
37412         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
37413
37414 2000-11-26  Jim Meyering  <meyering@lucent.com>
37415
37416         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
37417
37418 2000-11-22  Paul Eggert  <eggert@twinsun.com>
37419
37420         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
37421         size of (size_t) -1; it's not portable.
37422
37423 2000-11-17  Jim Meyering  <meyering@lucent.com>
37424
37425         * lib/strstr.c: Update from GNU libc.
37426
37427 2000-11-17  Akim Demaille  <akim@epita.fr>
37428
37429         * lib/obstack.h: Formatting changes.
37430         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
37431         prevent type checking.
37432         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
37433         cast the value to (void *): assigning a `foo *' to a `void *'
37434         variable is valid.
37435         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
37436
37437 2000-11-16  Jim Meyering  <meyering@lucent.com>
37438
37439         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
37440
37441 2000-11-11  Jim Meyering  <meyering@lucent.com>
37442
37443         * lib/error.c: Add a couple #includes, merging from GNU libc version.
37444
37445 2000-11-10  Jim Meyering  <meyering@lucent.com>
37446
37447         * lib/obstack.h: Update from GNU libc.
37448         * lib/obstack.c: Likewise.
37449
37450 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
37451
37452         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
37453
37454 2000-11-06  Paul Eggert  <eggert@twinsun.com>
37455
37456         * lib/getusershell.c (setusershell): Use rewind rather than
37457         fseek/fseeko, to avoid configuration hassles with fseeko.
37458         Don't bother opening SHELLS_FILE if shellstream is NULL;
37459         it's not necessary.
37460
37461 2000-11-05  Jim Meyering  <meyering@lucent.com>
37462
37463         * lib/makepath.h (make_dir): Declare.
37464         * lib/makepath.c (make_dir): Remove `static' attribute.
37465         Tweak a comment.
37466
37467 2000-11-04  Jim Meyering  <meyering@lucent.com>
37468
37469         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
37470
37471 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
37472
37473         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
37474         last one in a bucket, advance to the next bucket.
37475
37476 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
37477
37478         * lib/fnmatch.c: Do not comment out all the code if we are using
37479         the GNU C library, because in some cases we are replacing buggy
37480         code in the GNU C library itself.
37481
37482 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
37483
37484         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
37485         (regex_compile): Catch bogus \(\1\).
37486
37487 2000-10-30  Paul Eggert  <eggert@twinsun.com>
37488
37489         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
37490         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
37491         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
37492
37493 2000-10-30  Paul Eggert  <eggert@twinsun.com>
37494
37495         * lib/error.h, getline.h, modechange.h:
37496         Remove "2000" from Copyright line, as the file hasn't been
37497         changed this year other than in the copyright notice.
37498
37499         * lib/xalloc.h: Add "2000" to Copyright line, as this file
37500         was changed this year.
37501
37502 2000-10-29  Jim Meyering  <meyering@lucent.com>
37503
37504         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
37505         renaming.
37506         * m4/ls-mntd-fs.m4: Likewise
37507
37508 2000-10-29  Jim Meyering  <meyering@lucent.com>
37509
37510         * lib/xstat.in: Fix grammar in comment.
37511
37512 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
37513
37514         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
37515         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
37516         doesn't define __restrict_arr.
37517
37518 2000-10-28  Jim Meyering  <meyering@lucent.com>
37519
37520         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
37521         (jm_PREREQ_MEMCHR): New function.
37522
37523 2000-10-28  Jim Meyering  <meyering@lucent.com>
37524
37525         * lib/memchr.c: Update from libc.
37526         Adjust for portability:
37527         [HAVE_STDLIB_H]: Include stdlib.h.
37528         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
37529         Undef __memchr, too.
37530         [!weak_alias]: Define __memchr to memchr.
37531
37532         * lib/regex.c: Update from libc.
37533         * lib/regex.h: Likewise.
37534         * lib/getopt1.c: Likewise.
37535         * lib/memcmp.c: Likewise.
37536
37537         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
37538         Avoid using fseek, when possible -- it's broken by design.
37539         Patch by Ulrich Drepper.
37540
37541 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
37542
37543         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
37544         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
37545         Giving in to popular pressure to shut up the compiler with casts.
37546
37547 2000-10-26  Jim Meyering  <meyering@lucent.com>
37548
37549         * lib/strftime.c: Update from libc.
37550
37551 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
37552
37553         * regex.c: More `unsigned char' -> `re_char' changes.
37554         Also change several `int' into `re_wchar_t'.
37555         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
37556         (PUSH_FAILURE_POINTER): Don't cast any more.
37557         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
37558         We want GCC to complain, since this piece of code makes
37559         re_match non-reentrant, which *should* be fixed.
37560         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
37561         (EXTEND_BUFFER): Use RETALLOC.
37562         (SET_LIST_BIT): Don't cast.
37563         (re_wchar_t): New type.
37564         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
37565         that those two functions will always properly return.
37566         (IMMEDIATE_QUIT_CHECK): Cast to void.
37567         (analyse_first): Use recursion rather than an explicit stack.
37568         (re_compile_fastmap): Can't fail anymore.
37569         (re_search_2): Don't check re_compile_fastmap for failure.
37570         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
37571         Now also sets the new value (passed in a new argument).
37572         (re_match_2_internal): Use it.
37573         Also, use a new var `reg' of type size_t when looping through regs
37574         rather than reuse the inappropriate `mcnt'.
37575
37576 2000-10-25  Jim Meyering  <meyering@lucent.com>
37577
37578         * lib/obstack.c: Update from libc.
37579
37580 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
37581
37582         * regex.c (regex_compile): Change the way of handling a range from
37583         a char less than 256 to a char not less than 256.
37584
37585 2000-10-24  Andrew Innes  <andrewi@gnu.org>
37586
37587         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
37588         NT-Emacs only.
37589         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
37590         so that re_search functions only quit when callers expect them to.
37591
37592 2000-10-23  Jim Meyering  <meyering@lucent.com>
37593
37594         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
37595         wrong.  That set_locale call must not have any side effects.
37596         From Paul Eggert.
37597
37598 2000-10-22  Jim Meyering  <meyering@lucent.com>
37599
37600         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
37601         [CYCLIC]: Remove now-unused definition.
37602
37603         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
37604         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
37605         Suggestion from Ulrich Drepper.
37606
37607 2000-10-21  Jim Meyering  <meyering@lucent.com>
37608
37609         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
37610         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
37611         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
37612
37613 2000-10-21  Jim Meyering  <meyering@lucent.com>
37614
37615         * lib/dirname.c (memrchr): Declare if necessary.
37616         (dir_name): Remove the restriction that there be no
37617         trailing slashes.  Now, this code skips past them, effectively
37618         ignoring them.
37619         [TEST_DIRNAME] (main): New unit tests.
37620
37621         * lib/memrchr.c: New file from GNU libc.
37622         Undef __memrchr, too.
37623         [!weak_alias]: Define __memrchr to memrchr.
37624         Guard weak_alias use with `#ifdef weak_alias'.
37625
37626 2000-10-21  Jim Meyering  <meyering@lucent.com>
37627
37628         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
37629         (dir_name): Use dir_name_r.
37630         * lib/dirname.h (dir_name_r): Declare it.
37631
37632 2000-10-17  Jim Meyering  <meyering@lucent.com>
37633
37634         * lib/quote.h (PARAMS): Define and use.
37635         Reported by Akim Demaille.
37636
37637         * lib/getopt.c: Update from libc.
37638
37639 2000-10-16  Jim Meyering  <meyering@lucent.com>
37640
37641         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
37642         setlocale.
37643         From Jan Fedak.
37644
37645 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
37646
37647         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
37648
37649 2000-09-25  Jim Meyering  <meyering@lucent.com>
37650
37651         * lib/md5.h (rol): Define (from GnuPG).
37652
37653         * lib/sha.c: Give credit (GnuPG) where due.
37654         (M): Use rol rather than open-coding it.
37655         Add a FIXME comment.
37656
37657 2000-09-21  Jim Meyering  <meyering@lucent.com>
37658
37659         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
37660         Reported by Michael Stone.
37661
37662 2000-09-20  Jim Meyering  <meyering@lucent.com>
37663
37664         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
37665         (noinst_HEADERS): Add sha.h.
37666         Based on code from Scott G. Miller and from GnuPG.
37667
37668 2000-09-18  Jim Meyering  <meyering@lucent.com>
37669
37670         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
37671         LIBS. Otherwise, everyone ends up linking with -lelf for some
37672         configurations.
37673         Reported by Mike Stone.
37674
37675 2000-09-15  Jim Meyering  <meyering@lucent.com>
37676
37677         * lib/regex.c: Update from libc.
37678
37679 2000-09-10  Jim Meyering  <meyering@lucent.com>
37680
37681         * lib/getopt.c (_getopt_internal): Update from glibc.
37682
37683 2000-09-09  Jim Meyering  <meyering@lucent.com>
37684
37685         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
37686         think it should be used as a general replacement for isascii.
37687         * lib/fnmatch.c: Likewise.
37688         * lib/mbswidth.c: Likewise
37689         * lib/regex.c: Likewise.
37690
37691         Don't use atoi.
37692         * lib/userspec.c: Include sys/param.h and limits.h.
37693         Include xstrtol.h.
37694         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
37695         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
37696         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
37697         UID, GID.  Check range.
37698
37699 2000-09-06  Jim Meyering  <meyering@lucent.com>
37700
37701         * lib/getopt.c (_getopt_internal): Update from glibc.
37702
37703 2000-08-30  Jim Meyering  <meyering@lucent.com>
37704
37705         * lib/strftime.c: Merge in changes from GNU libc.
37706
37707 2000-08-26  Jim Meyering  <meyering@lucent.com>
37708
37709         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
37710         * m4/fpending.m4: New file.
37711
37712 2000-08-26  Jim Meyering  <meyering@lucent.com>
37713
37714         * lib/closeout.c: Include "__fpending.h".
37715         (close_stdout_status): Return right away if there's nothing to flush.
37716
37717         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
37718         * lib/__fpending.c: New file.
37719         * lib/__fpending.h: New file.
37720
37721 2000-08-20  Jim Meyering  <meyering@lucent.com>
37722
37723         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
37724         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
37725         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
37726
37727 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
37728
37729         Improve fileutils installation on systems where running
37730         programs (like install) can't be unlinked.
37731         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
37732         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
37733
37734 2000-08-07  Paul Eggert  <eggert@twinsun.com>
37735
37736         Standardize on "memory exhausted" instead of "Memory exhausted"
37737         or "virtual memory exhausted".
37738         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
37739         "virtual memory exhausted".
37740         * lib/same.c (same_name): Invoke xalloc_die instead of printing
37741         our own message.
37742         * lib/userspec.c (parse_user_spec): Likewise.
37743         * lib/bumpalloc.h: comment fix
37744         * lib/same.c, userspec.c: Include xalloc.h.
37745
37746         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
37747         not char *const and pointing to a constant array.
37748         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
37749         (xrealloc): Comment fix.
37750
37751         * lib/userspec.c (parse_user_spec):
37752         Don't translate a message until just before returning,
37753         to avoid unnecessary translation.
37754
37755 2000-08-07  Jim Meyering  <meyering@lucent.com>
37756
37757         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
37758         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
37759         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
37760         getgroups.c, gethostname.c, getopt.h, group-member.c,
37761         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
37762         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
37763         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
37764         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
37765         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
37766         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
37767         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
37768         yesno.c: Back out Copyright date changes for each file with no change
37769         this year.  This eases coordination with other programs using the same
37770         source code modules.  From Paul Eggert.
37771
37772 2000-08-06  Paul Eggert  <eggert@twinsun.com>
37773
37774         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
37775         not char, for compatibility with glibc 2.1.3 strftime.c.
37776
37777 2000-08-03  Greg McGary  <greg@mcgary.org>
37778
37779         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
37780         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
37781         (EXTEND_BUFFER): Use them.
37782
37783 2000-08-01  Jim Meyering  <meyering@lucent.com>
37784
37785         * lib/dirname.c (ISSLASH): Define.
37786         (BACKSLASH_IS_PATH_SEPARATOR): Define.
37787         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
37788         both `\' and `/' may be use as path separators.
37789         Based on a patch from Prashant TR.
37790
37791 2000-07-31  Paul Eggert  <eggert@twinsun.com>
37792
37793         * lib/quotearg.c (quotearg_n_options): Don't make the initial
37794         slot vector a constant, since it might get modified.
37795
37796 2000-07-31  Jim Meyering  <meyering@lucent.com>
37797
37798         * lib/xmalloc.c: Use `virtual memory exhausted', not
37799         `Memory exhausted'.
37800         * lib/obstack.c (print_and_abort): Likewise.
37801
37802 2000-07-30  Paul Eggert  <eggert@twinsun.com>
37803
37804         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
37805         buffer, so that the caller can always quote one small
37806         component of a "memory exhausted" message in slot 0.
37807         From a suggestion by Jim Meyering.
37808
37809 2000-07-30  Jim Meyering  <meyering@lucent.com>
37810
37811         * lib/makepath.c (make_path): Quote the other instance, too.
37812
37813         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
37814         (STATIC_BUF_SIZE): Define.
37815         (quotearg_n_options): Use only statically allocated storage when
37816         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
37817         than STATIC_BUF_SIZE.
37818
37819 2000-07-29  Jim Meyering  <meyering@lucent.com>
37820
37821         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
37822         * lib/dirname.c (dir_name): Likewise.
37823
37824         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
37825         `/'.
37826
37827         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
37828         (dir_name): Assert that there are no trailing slashes.
37829
37830 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
37831
37832         * lib/mbswidth.h (mbswidth): Add a flags argument.
37833         (mbswidth): New declaration.
37834         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
37835         * lib/mbswidth.c (mbswidth): Add a flags argument.
37836         (mbsnwidth): New function.
37837
37838 2000-07-24  Jim Meyering  <meyering@lucent.com>
37839
37840         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
37841
37842 2000-07-23  Paul Eggert  <eggert@twinsun.com>
37843
37844         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
37845
37846 2000-07-23  Paul Eggert  <eggert@twinsun.com>
37847
37848         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
37849         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
37850         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
37851         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
37852         invoke multibyte primitives.
37853
37854 2000-07-23  Paul Eggert  <eggert@twinsun.com>
37855
37856         * lib/quotearg.c:
37857         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
37858         so that mbstate_t is always defined.
37859
37860         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
37861         be 1 in at least one GCC installation, and this configuration
37862         error is likely to be common.  Ignoring MB_LEN_MAX hurts
37863         performance on hosts that have mbrtowc but have only unibyte
37864         locales, but I assume these hosts are rare.
37865
37866 2000-07-23  Paul Eggert  <eggert@twinsun.com>
37867
37868         * lib/mbswidth.c (_XOPEN_SOURCE):
37869         Don't define; this causes problems on Solaris 7.
37870         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
37871
37872 2000-07-23  Jim Meyering  <meyering@lucent.com>
37873
37874         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
37875         too: getgrgid, getpwuid, getuid.
37876
37877 2000-07-23  Jim Meyering  <meyering@lucent.com>
37878
37879         * lib/basename.c (base_name): Add an assertion.
37880
37881 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
37882
37883         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
37884         shadow its mbsinit function.
37885
37886 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
37887
37888         * lib/mbswidth.h: New file.
37889         * lib/mbswidth.c: New file.
37890         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
37891         (noinst_HEADERS): Add mbswidth.h.
37892
37893 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
37894
37895         * lib/config.charset: Add support for FreeBSD. Improve support for
37896         HP-UX and IRIX 6.
37897
37898 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
37899
37900         * m4/mbswidth.m4: New file.
37901         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
37902
37903 2000-07-15  Jim Meyering  <meyering@lucent.com>
37904
37905         * lib/makepath.c: Include quote.h.
37906         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
37907         corresponding argument in a `quote (...)' call.
37908         Give better diagnostics.
37909
37910         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
37911         (noinst_HEADERS): Add quote.h.
37912
37913         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
37914         from tar's src/misc.c.
37915         * lib/quote.h: New file.  Prototypes for same.
37916
37917 2000-07-14  Paul Eggert  <eggert@twinsun.com>
37918
37919         From a suggestion by Bruno Haible.
37920         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
37921         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
37922         to decide whether to define the BeOS workaround macro;
37923         this adjusts to the change to AC_MBSTATE_T.
37924
37925 2000-07-14  Jim Meyering  <meyering@lucent.com>
37926
37927         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
37928         jm_AC_TYPE_UINTMAX_T.
37929
37930 2000-07-13  Paul Eggert  <eggert@twinsun.com>
37931
37932         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
37933
37934         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
37935         quotearg_buffer_restyled): Add support for
37936         clocale_quoting_style.  Undo previous change to
37937         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
37938         and "{RIGHT QUOTATION MARK}" msgids.
37939
37940 2000-07-10  Paul Eggert  <eggert@twinsun.com>
37941
37942         From a suggestion by Bruno Haible.
37943         * m4/mbstate_t.m4 (AC_MBSTATE_T):
37944         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
37945         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
37946         and mbstate_t, to a single-part test that simply defines mbstate_t.
37947         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
37948         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
37949
37950 2000-07-10  Jim Meyering  <meyering@lucent.com>
37951
37952         * m4/strerror_r.m4: Mirror the correction made in autoconf.
37953
37954         * m4/gnu-source.m4: Output to confdefs.h directly.
37955         Suggestion from Akim Demaille.
37956
37957 2000-07-09  Paul Eggert  <eggert@twinsun.com>
37958
37959         The old behavior of quoting `like this' doesn't look good with
37960         newer, ISO-style fonts.  See:
37961         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
37962
37963         Instead, quote "like this" by default.  Let the translator
37964         tailor the locale-specific quoting behavior by providing
37965         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
37966
37967         * lib/quotearg.c (N_): New macro.
37968         (gettext_default): New function.
37969         (quotearg_buffer_restyled): Use
37970         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
37971         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
37972
37973 2000-07-09  Jim Meyering  <meyering@lucent.com>
37974
37975         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
37976         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
37977
37978         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
37979         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
37980
37981 2000-07-09  Jim Meyering  <meyering@lucent.com>
37982
37983         * lib/Most files: Update copyright dates to include 2000.
37984
37985 2000-07-08  Jim Meyering  <meyering@lucent.com>
37986
37987         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
37988         if not defined.
37989         (xgethostname): Remove now-unnecessary #ifdef.
37990         Move declaration of `err' into loop where it's used.
37991
37992 2000-07-05  Paul Eggert  <eggert@twinsun.com>
37993         and Bruno Haible  <haible@clisp.cons.org>
37994
37995         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
37996         only if the test for an object-type mbstate_t fails.  This
37997         prevents us from mistakenly reporting that mbstate_t is a
37998         system object type after we "#define mbstate_t int" to work
37999         around its lack.
38000
38001 2000-07-05  Paul Eggert  <eggert@twinsun.com>
38002         and Bruno Haible  <haible@clisp.cons.org>
38003
38004         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
38005
38006 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38007
38008         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
38009         to strerror_r.
38010         Include <ctype.h> for use of isalpha.
38011
38012 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38013
38014         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
38015         by allocating a larger buffer. Test the gethostname return value for
38016         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
38017         returns an error and ENAMETOOLONG isn't defined.
38018
38019 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38020
38021         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
38022         dimension.
38023
38024 2000-07-04  Jim Meyering  <meyering@lucent.com>
38025
38026         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
38027         of the deprecated AC_CHECKING.
38028
38029 2000-07-04  Jim Meyering  <meyering@lucent.com>
38030
38031         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
38032         Reported by Bruno Haible.
38033
38034 2000-07-04  Jim Meyering  <meyering@lucent.com>
38035
38036         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
38037         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
38038         lacks mbrtowc.
38039
38040 2000-07-03  Paul Eggert  <eggert@twinsun.com>
38041
38042         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
38043         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
38044
38045 2000-07-03  Paul Eggert  <eggert@twinsun.com>
38046         and Bruno Haible  <haible@clisp.cons.org>
38047
38048         * lib/quotearg.c (mbrtowc):
38049         Assign to *pwc, and return 1 only if result is nonzero.
38050         (iswprint): Use ISPRINT when substituting our own mbrtowc.
38051
38052 2000-07-03  Jim Meyering  <meyering@lucent.com>
38053
38054         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
38055
38056 2000-07-03  Jim Meyering  <meyering@lucent.com>
38057
38058         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
38059         This is necessary to get a definition of e.g., UTMP_FILE on
38060         HP-UX 10.20.
38061         From Bob Proulx.
38062
38063 2000-07-02  Jim Meyering  <meyering@lucent.com>
38064
38065         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
38066
38067         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
38068         AC_LIBOBJ(function_name).
38069         * m4/chown.m4: Likewise.
38070         * m4/fnmatch.m4: Likewise.
38071         * m4/ftruncate.m4: Likewise.
38072         * m4/getgroups.m4: Likewise.
38073         * m4/getline.m4: Likewise.
38074         * m4/group-member.m4: Likewise.
38075         * m4/jm-macros.m4: Likewise.
38076         * m4/lstat.m4: Likewise.
38077         * m4/malloc.m4: Likewise.
38078         * m4/memcmp.m4: Likewise.
38079         * m4/nanosleep.m4: Likewise.
38080         * m4/putenv.m4: Likewise.
38081         * m4/realloc.m4: Likewise.
38082         * m4/regex.m4: Likewise.
38083         * m4/stat.m4: Likewise.
38084         * m4/strftime.m4: Likewise.
38085
38086 2000-07-02  Jim Meyering  <meyering@lucent.com>
38087
38088         * lib/quotearg.c (mbstate_t): Don't define here.
38089
38090 2000-07-02  Jim Meyering  <meyering@lucent.com>
38091
38092         * lib/nanosleep.c (SIGCONT): Define if not already defined.
38093
38094 2000-07-01  Jim Meyering  <meyering@lucent.com>
38095
38096         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
38097
38098 2000-07-01  Jim Meyering  <meyering@lucent.com>
38099
38100         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
38101         problem.
38102
38103 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
38104
38105         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
38106         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
38107
38108 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
38109
38110         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
38111         per change in ../m4/ls-mntd-fs.m4.
38112         (read_filesystem_list): Ignore symbolic links.
38113
38114 2000-06-29  Jim Meyering  <meyering@lucent.com>
38115
38116         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
38117         for declaration of strcmp.
38118
38119         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
38120
38121         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
38122         Avoid warning by casting result to `char *' to remove `const'.
38123
38124 2000-06-28  Jim Meyering  <meyering@lucent.com>
38125
38126         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
38127         included by quotearg.c, for which we perform this test.  From
38128         Bruno Haible.
38129
38130 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
38131
38132         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
38133         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
38134         <utmpx.h> exists, put readutmp.o into LIBOBJS.
38135
38136 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
38137
38138         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
38139
38140 2000-06-26  Paul Eggert  <eggert@twinsun.com>
38141
38142         savedir now sets errno on failure and invokes xmalloc to get memory.
38143         Fix a couple of other minor bugs while we're at it.
38144
38145         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
38146         (NAMLEN): Remove macro.
38147         (malloc, realloc): Remove decls.
38148         (stpcpy): Likewise.
38149         ("xalloc.h"): Include.
38150         (NAME_SIZE_DEFAULT): New macro.
38151         (savedir): Use xmalloc / xrealloc to allocate memory.
38152         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
38153         Skip "" directory entries.
38154         Use strlen to calculate directory entry length, since the old method
38155         is rarely used these days and isn't worth supporting.
38156         Don't use a pointer after freeing it.
38157         Check for integer overflow when calculating allocation size.
38158         Use memcpy to copy entries, instead of stpcpy.
38159         Set errno properly when returning NULL.
38160         Check for readdir error.
38161
38162 2000-06-26  Jim Meyering  <meyering@lucent.com>
38163
38164         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
38165
38166 2000-06-25  Jim Meyering  <meyering@lucent.com>
38167
38168         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
38169         Linux header bug when _XOPEN_SOURCE is defined to 500.
38170
38171 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
38172
38173         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
38174         deficiency.
38175
38176 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
38177
38178         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
38179         Include xalloc.h.
38180         Don't include <stdlib.h>.  Don't declare malloc, realloc.
38181
38182 2000-06-24  Jim Meyering  <meyering@lucent.com>
38183
38184         * m4/strerror_r.m4: Revive this file -- to try out an experimental
38185         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
38186         for which strerror does return char*, but which lacks a conveniently
38187         accessible declaration of the function.  If the compile-test says
38188         strerror_r doesn't work, then resort to a `run'-test that works on
38189         BeOS and segfaults on DEC Unix.
38190
38191 2000-06-24  Jim Meyering  <meyering@lucent.com>
38192
38193         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
38194
38195 2000-06-23  Paul Eggert  <eggert@twinsun.com>
38196
38197         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
38198         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
38199
38200 2000-06-23  Paul Eggert  <eggert@twinsun.com>
38201
38202         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
38203         (mbrtowc, mbstate_t): Define substitutes if
38204         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
38205         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
38206         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
38207
38208 2000-06-23  Jim Meyering  <meyering@lucent.com>
38209
38210         * m4/afs.m4: Add missing AC_MSG_RESULT.
38211         Reported by Bruno Haible.
38212
38213         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
38214         Suggestion from Bruno Haible.
38215
38216 2000-06-23  Jim Meyering  <meyering@lucent.com>
38217
38218         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
38219
38220 2000-06-21  Jim Meyering  <meyering@lucent.com>
38221
38222         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
38223
38224 2000-06-21  Jim Meyering  <meyering@lucent.com>
38225
38226         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
38227         (noinst_HEADERS): Add getstr.h.
38228
38229         * lib/getline.c (getstr): Move into a separate file.
38230         * lib/getstr.c (getstr): New file, extracted from getline.c, with
38231         the following changes: new parameter, delim2; both delim[12]
38232         parameters have type `int', not `char'.  The latter would lose
38233         with 8-bit delimiters.
38234         * lib/getstr.h: New file.
38235
38236 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
38237
38238         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
38239         than 1024, return a memory chunk of least possible size, instead
38240         of size PATH_MAX + 2. In the loop, increment the size proportionally.
38241         Use free/xmalloc instead of xrealloc to avoid copying for very long
38242         paths.
38243
38244 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
38245
38246         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
38247         the empty string.
38248
38249 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
38250
38251         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
38252         address, not strdup.  Include <stdlib.h> and don't declare free().
38253
38254 2000-06-19  Jim Meyering  <meyering@lucent.com>
38255
38256         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
38257
38258 2000-06-18  Jim Meyering  <meyering@lucent.com>
38259
38260         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
38261
38262         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
38263         `checking whether...' message to be consistent with that of the
38264         lstat test.
38265
38266 2000-06-18  Jim Meyering  <meyering@lucent.com>
38267
38268         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
38269         Besides, these days every porting target provides a mkdir function.
38270
38271         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
38272         needed. (this snippet comes from src/system.h).
38273
38274 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
38275
38276         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
38277
38278 2000-06-15  Paul Eggert  <eggert@twinsun.com>
38279
38280         * lib/human.c (adjust_value): New function.
38281         (human_readable_inexact): Apply rounding style even when
38282         printing approximate values.
38283
38284 2000-06-14  Paul Eggert  <eggert@twinsun.com>
38285
38286         * lib/human.c (human_readable_inexact): Allow an input block
38287         size that is not a multiple of the output block size, and vice versa.
38288         Reported by Piergiorgio Sartor.
38289
38290 2000-06-14  Paul Eggert  <eggert@twinsun.com>
38291
38292         * lib/getdate.y (get_date): Apply relative times after time
38293         zone indicator, not before.  Reported by Todd A. Jacobs.
38294
38295 2000-06-13  Jim Meyering  <meyering@lucent.com>
38296
38297         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
38298
38299         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
38300
38301 2000-06-12  Paul Eggert  <eggert@twinsun.com>
38302
38303         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
38304
38305 2000-06-12  Jim Meyering  <meyering@lucent.com>
38306
38307         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
38308         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
38309         optional argument.
38310         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
38311         the optional argument, `lib'.
38312
38313 2000-06-08  Jim Meyering  <meyering@lucent.com>
38314
38315         * m4/largefile.m4: Remove file (now that it's part of autoconf).
38316
38317 2000-06-04  Paul Eggert  <eggert@twinsun.com>
38318
38319         Rewrite largefile configuration so that we don't need to run
38320         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
38321         AC_CANONICAL_HOST in configure.in -- jmm]
38322
38323         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
38324         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
38325         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
38326         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
38327         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
38328         All uses changed.
38329         Instead of inspecting the output of getconf, try to compile the
38330         test program without and with the macro definition.
38331         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
38332         for getconf.  Instead, check for the needed flags by compiling
38333         test programs.
38334
38335 2000-06-04  Paul Eggert  <eggert@twinsun.com>
38336
38337         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
38338
38339 2000-06-04  Jim Meyering  <meyering@lucent.com>
38340
38341         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
38342         SunOS 4.1.4 for which gid_t is an unsigned type.
38343
38344 2000-06-03  Jim Meyering  <meyering@lucent.com>
38345
38346         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
38347         now that autoconf requires that.
38348
38349         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
38350         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
38351         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
38352
38353 2000-06-03  Jim Meyering  <meyering@lucent.com>
38354
38355         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
38356
38357 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
38358
38359         * m4/glibc21.m4: New file.
38360         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
38361
38362 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
38363
38364         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
38365         newer, don't install charset.alias.
38366         * lib/config.charset: Change the Linux/glibc rules so they become empty
38367         on glibc-2.1 or newer.
38368
38369 2000-06-02  Jim Meyering  <meyering@lucent.com>
38370
38371         * lib/mountlist.c: Back out last change.  Instead, do this...
38372         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
38373         me_dummy member using the same `ignore'-testing code.
38374         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
38375         fs_type strings.
38376         From Mark D. Roth.
38377
38378 2000-05-29  Jim Meyering  <meyering@lucent.com>
38379
38380         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
38381         mounts with the `ignore' attribute.  Based on a patch from
38382         Mark D. Roth.
38383
38384 2000-05-28  Jim Meyering  <meyering@lucent.com>
38385
38386         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
38387         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
38388         * m4/stat.m4: Likewise.
38389         * m4/lstat.m4: Likewise.
38390         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
38391
38392         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
38393         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
38394
38395 2000-05-26  Jim Meyering  <meyering@lucent.com>
38396
38397         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
38398
38399 2000-05-24  Jim Meyering  <meyering@lucent.com>
38400
38401         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
38402         autoconf requires that.
38403         * m4/lib-check.m4: Likewise.
38404         * m4/jm-macros.m4: Likewise.
38405         * m4/strftime.m4: Likewise.
38406
38407         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
38408         AC_CHECK_DECLS, now that autoconf requires that.
38409
38410 2000-05-22  Jim Meyering  <meyering@lucent.com>
38411
38412         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
38413         * m4/lstat.m4: Likewise.
38414
38415 2000-05-22  Jim Meyering  <meyering@lucent.com>
38416
38417         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
38418
38419 2000-05-20  Jim Meyering  <meyering@lucent.com>
38420
38421         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
38422         (jm_PREREQ): Use it.
38423
38424 2000-05-18  Jim Meyering  <meyering@lucent.com>
38425
38426         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
38427         back, too, since it may have been modified by allocate_entry.
38428         (hash_delete): Rewrite to use neither the assignment operator
38429         nor the comma operator in an if-expression.
38430
38431 2000-05-15  Paul Eggert  <eggert@twinsun.com>
38432
38433         * lib/closeout.c:
38434         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
38435         Remove; no longer needed.
38436         "quotearg.h": Add include.
38437         (file_name): Do not bother to explicitly initialize to NULL; it's less
38438         efficient on some hosts.
38439         (close_stdout_status): Remove test as to whether stdout was already
38440         closed; it breaks for the case "echo x | sort >&-".
38441         Quote file name colons.
38442         Do not assume that _("write error") lacks format strings.
38443
38444 2000-05-15  Jim Meyering  <meyering@lucent.com>
38445
38446         * lib/version-etc.c (version_etc_copyright): Update the copyright
38447         string used in all --version output.
38448
38449 2000-05-14  Jim Meyering  <meyering@lucent.com>
38450
38451         * lib/closeout.c (close_stdout_set_file_name): New function.
38452         (close_stdout_status): Use new file-scoped global.
38453         Return right away if fstat says the stdout file descriptor is invalid.
38454         * lib/closeout.h (close_stdout_set_file_name): Declare.
38455
38456 2000-05-10  Jim Meyering  <meyering@lucent.com>
38457
38458         * lib/closeout.c [default_exit_status]: New file-scoped variable.
38459         (close_stdout_set_status): New function.
38460         * lib/closeout.h (close_stdout_set_status): Declare.
38461
38462 2000-05-09  Jim Meyering  <meyering@lucent.com>
38463
38464         * m4/gettext.m4: Rename this...
38465         * m4/libintl.m4: ...to this.
38466
38467 2000-05-08  Jim Meyering  <meyering@lucent.com>
38468
38469         * lib/long-options.c: Don't include closeout.h.
38470         (parse_long_options): Don't call close_stdout for --version.
38471
38472 2000-05-06  Paul Eggert  <eggert@twinsun.com>
38473
38474         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
38475         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
38476         2.1.3 bug.  This avoids a clash when files like regex.c define
38477         _GNU_SOURCE.
38478
38479 2000-05-06  Jim Meyering  <meyering@lucent.com>
38480
38481         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
38482         (AC_REPLACE_FUNCS): Add strnlen.
38483
38484         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
38485         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
38486
38487         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
38488         AC_SEARCH_LIBS call for nanosleep.
38489         (LIB_NANOSLEEP): Set and AC_SUBST.
38490
38491 2000-05-06  Jim Meyering  <meyering@lucent.com>
38492
38493         * lib/strnlen.c: Undefine __strnlen and strnlen.
38494         [!weak_alias]: Define __strnlen to strnlen.
38495
38496         * lib/atexit.c: New file, from libiberty.
38497
38498 2000-05-06  Jim Meyering  <meyering@lucent.com>
38499
38500         * lib/closeout.c (close_stdout_status): Also check for errors on the
38501         stderr stream.
38502
38503 2000-05-05  Jim Meyering  <meyering@lucent.com>
38504
38505         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
38506         AC_SEARCH_LIBS call for clock_gettime.
38507         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
38508
38509         * m4/search-libs.m4: Update from autoconf.
38510
38511         su doesn't work on Solaris 2.6.
38512         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
38513         <shadow.h>.  Reported by Dragos Harabor.
38514
38515 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
38516
38517         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
38518         memcpy instead of xmalloc, xrealloc, path_concat.
38519         (locale_charset): Treat empty environment variables as absent.
38520         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
38521
38522 2000-05-04  Jim Meyering  <meyering@lucent.com>
38523
38524         * lib/getopt.c: Update from glibc.
38525         * lib/obstack.c: Likewise.
38526         * lib/obstack.h: Likewise.
38527         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
38528         file
38529
38530         * lib/regex.h: Likewise.
38531         * lib/strndup.c: Likewise.
38532         * lib/strnlen.c: New file, from glibc.
38533
38534 2000-05-03  Jim Meyering  <meyering@lucent.com>
38535
38536         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
38537
38538 2000-05-02  Paul Eggert  <eggert@twinsun.com>
38539
38540         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
38541         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
38542         compile-time test, rather than inspecting host and OS, to
38543         decide whether to define _LARGEFILE_SOURCE.
38544
38545 2000-05-01  Jim Meyering  <meyering@lucent.com>
38546
38547         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
38548
38549         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
38550         Based on a patch from Bruno Haible.
38551
38552 2000-05-01  Jim Meyering  <meyering@lucent.com>
38553
38554         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
38555
38556 2000-04-29  Jim Meyering  <meyering@lucent.com>
38557
38558         * lib/path-concat.c: Declare strdup only if it's not defined.
38559         * lib/canon-host.c: Likewise.
38560
38561 2000-04-28  Jim Meyering  <meyering@lucent.com>
38562
38563         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
38564         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
38565         is included first, then limits.h is included by locale.h by libintl.h.
38566         From John David Anglin.
38567
38568 2000-04-25  Jim Meyering  <meyering@lucent.com>
38569
38570         * lib/makepath.c (S_IRWXUGO): Define.
38571         (make_path): Always perform explicit chmod if MODE specifies any
38572         of the `special' permission bits.  Prompted by a bug report against
38573         install from Mate Wierdl and Joost van Baal.
38574
38575 2000-04-18  Jim Meyering  <meyering@lucent.com>
38576
38577         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
38578         (jm_PREREQ): Use it.
38579
38580 2000-04-18  Jim Meyering  <meyering@lucent.com>
38581
38582         * lib/README: New file.
38583
38584         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
38585         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
38586
38587 2000-04-17  Jim Meyering  <meyering@lucent.com>
38588
38589         Get it right :-)
38590         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
38591         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
38592         Suggestion from Akim Demaille.
38593
38594 2000-04-17  Jim Meyering  <meyering@lucent.com>
38595
38596         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
38597         the definition of it to rpl_strftime also defined-away the system's
38598         declaration.
38599
38600 2000-04-15  Jim Meyering  <meyering@lucent.com>
38601
38602         Use `C' to denote so-called `contiguous' files, the same way
38603         that tar does.
38604         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
38605         (ftypelet): Use S_ISCTG.
38606         From Michael Deutschmann.
38607
38608 2000-04-14  Jim Meyering  <meyering@lucent.com>
38609
38610         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
38611         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
38612         clobbered.
38613
38614 2000-04-14  Jim Meyering  <meyering@lucent.com>
38615
38616         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
38617
38618 2000-04-13  Jim Meyering  <meyering@lucent.com>
38619
38620         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
38621         AH_VERBATIM to insert required #ifndef into config.h.in.
38622         Suggestion from Akim Demaille.
38623
38624 2000-04-12  Jim Meyering  <meyering@lucent.com>
38625
38626         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
38627         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
38628         Christian Krackowizer.
38629
38630         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
38631         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
38632         (AC_SYS_LARGEFILE): Require.
38633         (AM_C_PROTOTYPES): Require.
38634
38635 2000-04-08  Jim Meyering  <meyering@lucent.com>
38636
38637         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
38638         names don't conflict.  Reported by Eli Zaretskii.
38639
38640 2000-04-07  Jim Meyering  <meyering@lucent.com>
38641
38642         * lib/putenv.c: Move inclusion of errno.h so it follows that of
38643         sys/types.h, to work around system header problems on AIX 3.2.5.
38644         From Bruno Haible.
38645
38646 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
38647
38648         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
38649         bug.  Deal with the different error behavior of Irix iconv.
38650
38651 2000-04-05  Paul Eggert  <eggert@twinsun.com>
38652
38653         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
38654         IRIX if the installer said otherwise.
38655
38656 2000-04-05  Jim Meyering  <meyering@lucent.com>
38657
38658         Portability tweaks required for ultrix4.3.
38659         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
38660         (jm_CHECK_DECLS): Add getutent to the list of functions.
38661         (_jm_DECL_HEADERS): Add utmpx.h.
38662         From John David Anglin.
38663
38664         * m4/strftime.m4: Back out the 2000-04-02 change.
38665         Instead of that change, simply undefine putenv in the test program.
38666
38667 2000-04-05  Jim Meyering  <meyering@lucent.com>
38668
38669         Portability tweaks required for ultrix4.3.
38670         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
38671         getutent.
38672         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
38673         * lib/canon-host.c: Declare strdup.
38674         * lib/path-concat.c: Likewise.
38675         From John David Anglin.
38676
38677 2000-04-04  Jim Meyering  <meyering@lucent.com>
38678
38679         Be more DOS 8.3-friendly.
38680         * lib/ref-add.sin: Renamed from ref-add.sed.in.
38681         * lib/ref-del.sin: Renamed from ref-del.sed.in.
38682         * lib/Makefile.am: Reflect renaming.
38683         Reported by Eli Zaretskii.
38684
38685         Use a temporary file name that won't clash with `charset.alias'
38686         in the DOS 8.3 name space.
38687         * lib/Makefile.am (charset_tmp): Define.
38688         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
38689         (uninstall-local): Likewise.
38690         Reported by Eli Zaretskii.
38691
38692 2000-04-03  Jim Meyering  <meyering@lucent.com>
38693
38694         * m4/gettext.m4: Fix typo in comment.
38695
38696         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
38697         textutils/configure.in).  Suggestion from Paul Eggert.
38698         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
38699
38700 2000-04-02  Paul Eggert  <eggert@twinsun.com>
38701
38702         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
38703         variable in the shell rather than using putenv, which isn't
38704         portable.  This avoids the configure-time inter-test dependency
38705         on the potentially-renamed putenv function.
38706
38707 2000-03-30  Paul Eggert  <eggert@twinsun.com>
38708
38709         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
38710         before checking struct stat.st_blksize, so that
38711         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
38712
38713 2000-03-29  Paul Eggert  <eggert@twinsun.com>
38714
38715         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
38716         since strftime.c uses HAVE_STRFTIME to decide whether to use
38717         the underlying strftime.
38718
38719 2000-03-29  Paul Eggert  <eggert@twinsun.com>
38720
38721         * lib/time/strftime.c (my_strftime): Make sure we call the system
38722         strftime, not ourselves, when invoking the underlying strftime.
38723
38724 2000-03-24  Jim Meyering  <meyering@lucent.com>
38725
38726         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
38727         (charset_alias): Define.
38728         (install-exec-local): Factor out common code.
38729         (uninstall-local): Split lines longer than 80.
38730         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
38731         (SUFFIXES): Define.
38732         (.sed.in.sed): New rule.  Don't redirect directly to $@.
38733         (CLEANFILES): Add ref-add.sed and ref-del.sed.
38734
38735 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
38736
38737         * lib/config.charset: Output a line containing "Packages using this
38738         file".
38739         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
38740         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
38741         ref-del.sed): New rules.
38742
38743 2000-03-17  Jim Meyering  <meyering@lucent.com>
38744
38745         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
38746         Otherwise, include <strings.h>
38747
38748 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
38749
38750         * lib/unicodeio.c (utf8_wctomb): New function.
38751         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
38752         format instead of in UCS-4 with platform dependent endianness.
38753
38754 2000-03-10  Jim Meyering  <meyering@lucent.com>
38755
38756         * m4/lib-check.m4: Look for getspnam in -lgen, too.
38757         From Marco Franzen.
38758
38759 2000-03-07  Paul Eggert  <eggert@twinsun.com>
38760
38761         * lib/savedir.c (savedir): Work even if directory size is
38762         negative; this can happen with some screwy NFS configurations.
38763
38764 2000-03-06  Jim Meyering  <meyering@lucent.com>
38765
38766         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
38767         if it's NULL (because we ran out of memory).  From Bruno Haible.
38768
38769 2000-03-05  Jim Meyering  <meyering@lucent.com>
38770
38771         * lib/localcharset.c ("path-concat.h"): Include.
38772         (get_charset_aliases): Use path_concat instead of ANSI string
38773         concatenation.
38774
38775         * lib/unicodeio.h (PARAMS): Define.
38776         Use it to guard prototype.
38777
38778 2000-03-04  Jim Meyering  <meyering@lucent.com>
38779
38780         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
38781         for lib/localcharset.c.
38782
38783 2000-03-04  Jim Meyering  <meyering@lucent.com>
38784
38785         * lib/Makefile.am (install-exec-local): Create $(libdir) before
38786         installing into it.
38787         (uninstall-local): Uncomment this rule so `make distcheck' works
38788         once again.
38789
38790         * lib/unicodeio.c (<errno.h>): Include it.
38791         (errno): Declare if not defined.
38792
38793         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
38794
38795         * lib/config.charset: New version, incorporating remarks from a linux
38796         i18n mailing list.  From Bruno Haible.
38797
38798 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
38799
38800         * m4/codeset.m4: New file.
38801         * m4/iconv.m4: New file.
38802         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
38803
38804 2000-03-03  Jim Meyering  <meyering@lucent.com>
38805
38806         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
38807
38808 2000-03-02  Jim Meyering  <meyering@lucent.com>
38809
38810         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
38811         the messages come out on separate lines.
38812
38813         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
38814         rather than jm_CHECK_DECLARATIONS.
38815         * m4/decl.m4: Remove now-unused file.
38816
38817         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
38818         geteuid.
38819
38820 2000-03-02  Jim Meyering  <meyering@lucent.com>
38821
38822         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
38823
38824 2000-03-01  Jim Meyering  <meyering@lucent.com>
38825
38826         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
38827         * lib/unicodeio.c: Likewise.
38828
38829 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
38830
38831         * lib/config.charset: New file.
38832         * lib/localcharset.c: New file.
38833         * lib/unicodeio.h, lib/unicodeio.c: New files.
38834         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
38835         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
38836         (noinst_HEADERS): Add unicodeio.h.
38837         (all-local, install-exec-local, charset.alias): New targets.
38838
38839 2000-02-28  Paul Eggert  <eggert@twinsun.com>
38840
38841         * lib/quotearg.c (ALERT_CHAR): New macro.
38842         (quotearg_buffer_restyled): Use it.
38843
38844 2000-02-27  Jim Meyering  <meyering@lucent.com>
38845
38846         * m4/check-decl.m4: Add getenv to the list.
38847
38848 2000-02-27  Jim Meyering  <meyering@lucent.com>
38849
38850         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
38851         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
38852
38853         * lib/backupfile.c: Guard inclusion of stdlib.h with
38854         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
38855         Declare malloc if needed.
38856
38857         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
38858         `#ifndef HAVE_DECL..'
38859         now that autoconf always defines the HAVE_DECL_ symbols.
38860         * lib/human.c: Likewise.
38861         * lib/same.c: Likewise.
38862         * lib/strtoumax.c: Likewise.
38863
38864         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
38865         declaration check was not run.
38866         * lib/hash.c: Likewise.
38867         * lib/human.c: Likewise.
38868         * lib/same.c: Likewise.
38869         * lib/strtoumax.c: Likewise.
38870
38871         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
38872         `.', then first look up the entire `.'-containing string as a login
38873         name.
38874
38875 2000-02-23  Jim Meyering  <meyering@lucent.com>
38876
38877         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
38878         in place of my hack.
38879
38880 2000-02-18  Paul Eggert  <eggert@twinsun.com>
38881
38882         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
38883         (textint): New typedef.
38884         (parser_control): Member year changed from int to textint.
38885         All uses changed.
38886         (YYSTYPE): Removed; replaced by %union with int and textint members.
38887         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
38888         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
38889         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
38890         (tSNUMBER, tUNUMBER): Now of type <textintval>.
38891         (date, number, to_year): Use width of number in digits, not its value,
38892         to determine whether it's a 2-digit year, or a 2-digit time.
38893         (yylex): Store number of digits of numeric tokens.
38894         Reported by John Kendall.
38895
38896         (parser_control): Changed from struct parser_control to typedef (for
38897         consistency).  All uses changed.
38898
38899         (tID): Removed; not used.
38900         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
38901
38902 2000-02-14  Paul Eggert  <eggert@twinsun.com>
38903
38904         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
38905         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
38906
38907 2000-02-12  Jim Meyering  <meyering@lucent.com>
38908
38909         * lib/userspec.c (ISDIGIT): Define it.
38910         (isdigit): Remove definition.
38911         (is_number): Use ISDIGIT, not isdigit.
38912         <libintl.h>: Include.
38913         (_ and N_): Define.
38914         (parse_user_spec): Mark translatable strings.
38915
38916 2000-02-10  Jim Meyering  <meyering@lucent.com>
38917
38918         With these changes, nanosleep.[ch] are finally enough like the other
38919         lib/* replacement files to compile on a few more losing systems.
38920
38921         * lib/nanosleep.h: Don't include config.h.
38922         Remove prototype from declaration of nanosleep.
38923         (PARAMS): Remove now-unneeded definition.
38924         * lib/nanosleep.c: #undef nanosleep.
38925         (rpl_nanosleep): Rename from nanosleep.
38926
38927 2000-02-10  Jim Meyering  <meyering@lucent.com>
38928
38929         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
38930         gnu_nanosleep to rpl_nanosleep.
38931
38932 2000-02-09  Jim Meyering  <meyering@lucent.com>
38933
38934         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
38935         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
38936
38937 2000-02-08  Akim Demaille  <akim@epita.fr>
38938
38939         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
38940         `[' and `]' and remove uses of `changequote'.
38941         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
38942         (AC_SYS_LARGEFILE): Likewise.
38943         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
38944         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
38945         of changequote.
38946         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
38947         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
38948         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
38949         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
38950
38951 2000-02-05  Jim Meyering  <meyering@lucent.com>
38952
38953         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
38954         Remove explicit use of AC_HEADER_TIME.  It is required by
38955         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
38956         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
38957         in autoconf whereby the expansion of the latter ended up preceding
38958         the expansion of its prerequisite, AC_HEADER_TIME.
38959         Reported by Volker Borchert.
38960
38961 2000-02-03  Jim Meyering  <meyering@lucent.com>
38962
38963         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
38964
38965 2000-02-03  Jim Meyering  <meyering@lucent.com>
38966
38967         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
38968         rather than with `#if HAVE_UTMPNAME'.
38969
38970 2000-02-02  Jim Meyering  <meyering@lucent.com>
38971
38972         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
38973         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
38974         Reported by Eli Zaretskii.
38975
38976 2000-02-01  Jim Meyering  <meyering@lucent.com>
38977
38978         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
38979
38980 2000-01-31  Jim Meyering  <meyering@lucent.com>
38981
38982         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
38983         functions.  Add the time.h and sys/time.h headers along with the
38984         AC_REQUIRE'ment of AC_HEADER_TIME.
38985
38986 2000-01-31  Jim Meyering  <meyering@lucent.com>
38987
38988         * lib/nanosleep.h (nanosleep): Guard declaration with
38989         `#if ! HAVE_DECL_NANOSLEEP'.
38990         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
38991         the declaration in that vendor's sys/timers.h.
38992         Reported by Christian Krackowizer.
38993
38994         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
38995         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
38996         (ISPRINT): Likewise.
38997         Reported by Tom Tromey.
38998
38999 2000-01-30  Jim Meyering  <meyering@lucent.com>
39000
39001         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
39002
39003         * m4/prereq.m4 (utmp_includes): Define.
39004         Check for ut_user and ut_name members in both struct utmpx
39005         and struct utmp.
39006
39007 2000-01-30  Jim Meyering  <meyering@lucent.com>
39008
39009         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
39010         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
39011         header files where only utmpx.ut_user is declared.
39012
39013         * lib/readutmp.h (UT_USER): Define.
39014
39015 2000-01-29  Jim Meyering  <meyering@lucent.com>
39016
39017         * m4/lib-check.m4: New file containing library-related checks from
39018         fileutils and sh-utils (textutils had none).
39019
39020 2000-01-28  Jim Meyering  <meyering@lucent.com>
39021
39022         * m4/perl.m4: Change format of warning message to look more like that
39023         from the missing script.  Suggestion from François Pinard.
39024
39025 2000-01-25  Jim Meyering  <meyering@lucent.com>
39026
39027         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
39028         well as time.h in the compile check.
39029         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
39030         Fix typo in cross-compiling case: s/yes/no/.
39031
39032 2000-01-23  Jim Meyering  <meyering@lucent.com>
39033
39034         * m4/jm-macros.m4: Move df-related tests here from
39035         fileutils/configure.in
39036
39037         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
39038         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
39039
39040         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
39041         s/space/ac_fsusage_space/.
39042         (jm_FILE_SYSTEM_USAGE): Take two parameters.
39043
39044         * m4/ftruncate.m4: New file (derived from part of
39045         fileutils/configure.in).
39046         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
39047         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
39048
39049         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
39050         AC_SUBST these here, rather than just in sh-util/configure.in, so
39051         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
39052         all the same.
39053         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
39054         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
39055         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
39056         (AC_SUBST(POW_LIBM)): Likewise.
39057         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
39058
39059 2000-01-23  Jim Meyering  <meyering@lucent.com>
39060
39061         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
39062         obstack.c.
39063
39064 2000-01-22  Jim Meyering  <meyering@lucent.com>
39065
39066         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
39067
39068         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
39069
39070         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
39071         configure.in
39072         (AC_CHECK_HEADERS): Likewise for sh-utils.
39073         (AC_CHECK_HEADERS): Likewise for textutils.
39074         Merge the three lists of headers.
39075
39076         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
39077         from fileutils' configure.in.
39078
39079         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
39080         code. Moved tests into their own function (_jm_DECL_HEADERS) in
39081         check-decl.m4.
39082
39083         * m4/check-decl.m4: Use #if rather than #ifdef.
39084         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
39085         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
39086         (_jm_DECL_HEADERS): Define new function.
39087         (jm_CHECK_DECLARATIONS): Require it.
39088
39089 2000-01-22  Jim Meyering  <meyering@lucent.com>
39090
39091         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
39092         [! HAVE_DECL_STRTOULL]: Declare strtoull.
39093         Required for some AIX systems.  Reported by Christian Krackowizer.
39094         [TESTING] (main): New function.
39095
39096         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
39097         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
39098         letters.
39099
39100         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
39101         iswprint.
39102
39103         * lib/strverscmp.c (ISDIGIT): Define.
39104         (strverscmp): Use ISDIGIT, not isdigit.
39105
39106 2000-01-19  Jim Meyering  <meyering@lucent.com>
39107
39108         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
39109         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
39110         defines `struct timespec' in <sys/time.h>
39111
39112         * m4/c-bs-a.m4: Remove uses of changequote altogether.
39113         Thanks to Akim for explaining.
39114
39115 2000-01-17  Paul Eggert  <eggert@twinsun.com>
39116
39117         * lib/nanosleep.c (nanosleep):
39118         Don't use SA_INTERRUPT to decide whether to call sigaction, as
39119         POSIX.1 doesn't require SA_INTERRUPT and some systems
39120         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
39121         it's been part of POSIX.1 since day 1 (in 1988).
39122
39123 2000-01-17  Jim Meyering  <meyering@lucent.com>
39124
39125         * lib/interlock: Remove unused file.  Reported by François Pinard.
39126
39127 2000-01-16  Paul Eggert  <eggert@twinsun.com>
39128
39129         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
39130         alert, backslash, formfeed, and vertical tab unnecessarily in
39131         shell quoting style.
39132
39133 2000-01-16  Jim Meyering  <meyering@lucent.com>
39134
39135         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
39136         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
39137         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
39138         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
39139
39140 2000-01-16  Jim Meyering  <meyering@lucent.com>
39141
39142         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
39143         because the latter didn't work.
39144
39145 2000-01-15  Jim Meyering  <meyering@lucent.com>
39146
39147         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
39148         (AC_REPLACE_FUNCS): Add memcpy and memset.
39149         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
39150         Add strpbrk.
39151         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
39152
39153 2000-01-12  Jim Meyering  <meyering@lucent.com>
39154
39155         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
39156         (jm_PREREQ): Use it.
39157         (jm_PREREQ_READUTMP): New macro.
39158         (jm_PREREQ): Use it.
39159
39160 2000-01-11  Paul Eggert  <eggert@twinsun.com>
39161
39162         Quote multibyte characters correctly.
39163         * m4/c-bs-a.m4: New file.
39164         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
39165         (jm_PREREQ): Use it.
39166
39167 2000-01-11  Paul Eggert  <eggert@twinsun.com>
39168
39169         * m4/uintmax_t.m4: Port to autoconf 2.13.
39170
39171 2000-01-08  Jim Meyering  <meyering@ascend.com>
39172
39173         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
39174         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
39175
39176 2000-01-04  Jim Meyering  <meyering@ascend.com>
39177
39178         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
39179         jm_STRUCT_DIRENT_D_TYPE.
39180         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
39181         jm_STRUCT_DIRENT_D_INO.
39182         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
39183         jm_STRUCT_UTIMBUF.
39184         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
39185         renamings.
39186         * m4/utime.m4: Likewise.
39187
39188         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
39189         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
39190
39191 2000-01-03  Paul Eggert  <eggert@twinsun.com>
39192
39193         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
39194         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
39195
39196 2000-01-02  Jim Meyering  <meyering@ascend.com>
39197
39198         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
39199         remember if this is necessary.
39200
39201 1999-12-26  Jim Meyering  <meyering@ascend.com>
39202
39203         * m4/jm-macros.m4: Use it here.
39204         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
39205
39206 1999-12-23  Jim Meyering  <meyering@ascend.com>
39207
39208         * m4/jm-macros.m4: Check for clock_gettime (moved from
39209         fileutils/configure.in)
39210         Check for gettimeofday.
39211
39212 1999-12-20  Jim Meyering  <meyering@ascend.com>
39213
39214         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
39215         autoconf-2.14a-1999-12-20.
39216
39217 1999-12-19  Jim Meyering  <meyering@ascend.com>
39218
39219         * m4/lstat-slash.m4: New file.
39220         * m4/jm-macros.m4: Use the new macro:
39221         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39222
39223 1999-12-07  Jim Meyering  <meyering@ascend.com>
39224
39225         * m4/perl.m4: Require that File::Compare be available, too.
39226         Too many systems seem to lack it.
39227
39228         * m4/strftime.m4: Add checks for most of the cpp macros tested in
39229         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
39230
39231 1999-11-18  Paul Eggert  <eggert@twinsun.com>
39232
39233         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
39234         problem with the QNX 4.25 shell, which doesn't propagate exit
39235         status of failed commands inside shell assignments.
39236
39237 1999-11-17  Jim Meyering  <meyering@ascend.com>
39238
39239         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
39240
39241 1999-11-07  Jim Meyering  <meyering@ascend.com>
39242
39243         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
39244
39245 1999-11-06  Jim Meyering  <meyering@ascend.com>
39246
39247         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
39248         * m4/jm-macros.m4 (jm_MACROS): Use it here.
39249
39250 1999-11-05  Jim Meyering  <meyering@ascend.com>
39251
39252         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
39253         configure.in of textutils, fileutils, and sh-utils into this one
39254         (shared between those packages) file.
39255         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
39256         AC_STRUCT_ST_BLKSIZE.
39257
39258 1999-11-03  Jim Meyering  <meyering@ascend.com>
39259
39260         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
39261         of AC_CHECK_TYPE checks includes unistd.h.
39262         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
39263         Suggestion from Akim Demaille.
39264
39265 1999-10-30  Jim Meyering  <meyering@ascend.com>
39266
39267         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
39268         m4-quoted string.
39269         * m4/ls-mntd-fs.m4: Likewise.
39270         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
39271         * m4/jm-winsz1.m4: Likewise.
39272
39273         * m4/const.m4: Remove file, since the fix made it into the experimental
39274         version of autoconf.
39275         * m4/mktime.m4: Likewise.
39276
39277         * m4/check-type.m4: Remove file, now that the latest version of
39278         AC_CHECK_TYPE takes a third arg to specify additional #includes.
39279
39280         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
39281         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
39282         AC_CHECK_TYPE.
39283
39284 1999-10-04  Jim Meyering  <meyering@ascend.com>
39285
39286         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
39287
39288 1999-09-22  Paul Eggert  <eggert@twinsun.com>
39289
39290         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
39291         2.95.1 bug with HP-UX 10.20.
39292
39293 1999-09-17  Jim Meyering  <meyering@ascend.com>
39294
39295         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
39296         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
39297         due to missing strdup (against sh-utils-2.0).
39298
39299 1999-08-29  Jim Meyering  <meyering@ascend.com>
39300
39301         * m4/jm-macros.m4: Require jm_BISON.
39302         * m4/bison.m4: New file.
39303
39304 1999-08-17  Paul Eggert  <eggert@twinsun.com>
39305
39306         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
39307         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
39308
39309 1999-08-05  Jim Meyering  <meyering@ascend.com>
39310
39311         * m4/getline.m4: Rename test file from conftestdata to conftest.data
39312         to avoid conflicts with `conftest' on 8+3 filesystems.
39313         Suggestion from Eli Zaretskii.
39314
39315 1999-08-04  Jim Meyering  <meyering@ascend.com>
39316
39317         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
39318         fileutils and sh-utils (textutils's getline test was inadequate).
39319         (AM_FUNC_GETLINE): Run this test.
39320         (AC_CHECK_FUNCS): Check for getdelim.
39321         Reported by Bob Proulx.
39322
39323 1999-08-02  Jim Meyering  <meyering@ascend.com>
39324
39325         * m4/jm-macros.m4: Add a comment.
39326
39327 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39328
39329         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
39330         <inttypes.h> defines strtoumax as a macro (and not as a
39331         function).
39332
39333 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39334
39335         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
39336         that we can shift, multiply and divide unsigned long long
39337         values; Ultrix cc can't do it.
39338
39339 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39340
39341         * m4/mktime.m4: New file, which is a preview of what should appear
39342         in the next public autoconf release.
39343
39344 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39345
39346         * m4/lfs.m4: Remove this file.
39347         * m4/largefile.m4: New file.  It contains the old contents of
39348         lfs.m4, except that all names with prefix AC_LFS have been
39349         changed to use the prefix AC_SYS_LARGEFILE instead, to be
39350         compatible with future autoconf versions.  Also, some minor m4
39351         quoting problems have been fixed.
39352
39353 1999-08-01  Paul Eggert  <eggert@twinsun.com>
39354
39355         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
39356         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
39357         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
39358         and simplify the shell code.
39359
39360 1999-08-01  Jim Meyering  <meyering@ascend.com>
39361
39362         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
39363         m4.
39364
39365 1999-07-20  Jim Meyering  <meyering@ascend.com>
39366
39367         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
39368
39369 1999-07-15  Jim Meyering  <meyering@ascend.com>
39370
39371         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
39372
39373 1999-05-22  Jim Meyering  <meyering@ascend.com>
39374
39375         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
39376
39377 1999-05-20  Jim Meyering  <meyering@ascend.com>
39378
39379         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
39380         Add a colon after each `then' in case $4 is empty.
39381
39382 1999-05-16  Jim Meyering  <meyering@ascend.com>
39383
39384         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
39385
39386 1999-05-10  Jim Meyering  <meyering@ascend.com>
39387
39388         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
39389
39390         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
39391         AC_FUNC_MKTIME.
39392
39393 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
39394
39395         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
39396
39397 1999-05-04  Paul Eggert  <eggert@twinsun.com>
39398
39399         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
39400         not CPPFLAGS, so that linking works correctly in IRIX.
39401
39402 1999-04-30  Paul Eggert  <eggert@twinsun.com>
39403
39404         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
39405
39406 1999-04-20  Paul Eggert  <eggert@twinsun.com>
39407
39408         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
39409         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
39410         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
39411         jm_AC_TYPE_UNSIGNED_LONG_LONG.
39412         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
39413
39414         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
39415
39416 1999-04-20  Jim Meyering  <meyering@ascend.com>
39417
39418         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
39419         AC_REPLACE xstroull if necessary.  From Paul Eggert.
39420         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
39421
39422 1999-04-18  Jim Meyering  <meyering@ascend.com>
39423
39424         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
39425         * m4/jm-macros.m4: Use it.
39426
39427 1999-04-06  Jim Meyering  <meyering@ascend.com>
39428
39429         * m4/strftime.m4: Remove test for %f.
39430
39431 1999-03-29  Jim Meyering  <meyering@ascend.com>
39432
39433         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
39434         superset of the AC_TYPE_* checks in the textutils, fileutils,
39435         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
39436         AC_TYPE_PID_T.
39437
39438 1999-03-28  Jim Meyering  <meyering@ascend.com>
39439
39440         * m4/jm-macros.m4: Define GNU_PACKAGE here.
39441         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
39442         replaced e.g., in the *.sh files of the sh-utils.
39443
39444 1999-03-20  Jim Meyering  <meyering@ascend.com>
39445
39446         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
39447         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
39448         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
39449
39450 1999-03-19  Jim Meyering  <meyering@ascend.com>
39451
39452         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
39453
39454 1999-03-12  Jim Meyering  <meyering@ascend.com>
39455
39456         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
39457
39458 1999-03-07  Jim Meyering  <meyering@ascend.com>
39459
39460         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
39461         declared.
39462
39463 1999-02-17  Jim Meyering  <meyering@ascend.com>
39464
39465         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
39466         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
39467
39468 1999-02-07  Jim Meyering  <meyering@ascend.com>
39469
39470         * m4/group-member.m4: New file -- extracted from sh-utils'
39471         configure.in.
39472
39473         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
39474         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
39475
39476 1999-02-06  Jim Meyering  <meyering@ascend.com>
39477
39478         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
39479         * m4/fnmatch.m4: Likewise.
39480         * m4/getgroups.m4: Likewise.
39481         * m4/lstat.m4: Likewise.
39482         * m4/malloc.m4: Likewise.
39483         * m4/putenv.m4: Likewise.
39484         * m4/realloc.m4: Likewise.
39485         * m4/regex.m4: Likewise.
39486         * m4/stat.m4: Likewise.
39487         * m4/strftime.m4: Likewise.
39488         Suggestion from Alain Magloire.
39489
39490         * m4/chown.m4: Use `.$ac_objext', not `.o'.
39491         * m4/fnmatch.m4: Likewise.
39492         * m4/getgroups.m4: Likewise.
39493         * m4/getline.m4: Likewise.
39494         * m4/lstat.m4: Likewise.
39495         * m4/malloc.m4: Likewise.
39496         * m4/memcmp.m4: Likewise.
39497         * m4/putenv.m4: Likewise.
39498         * m4/realloc.m4: Likewise.
39499         * m4/regex.m4: Likewise.
39500         * m4/stat.m4: Likewise.
39501         * m4/strftime.m4: Likewise.
39502         Suggestion from Alain Magloire.
39503
39504         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
39505         an argument.
39506
39507         * m4/regex.m4: Add a run-time Test for proper operation of
39508         re_compile_pattern.
39509
39510 1999-01-31  Jim Meyering  <meyering@ascend.com>
39511
39512         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
39513
39514 1999-01-30  Jim Meyering  <meyering@ascend.com>
39515
39516         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
39517
39518         * m4/jm-mktime.m4: Make this a wrapper around the official
39519         AM_FUNC_MKTIME rather than my private copy, now that the official one
39520         is up to date.
39521         * m4/mktime.m4: Remove file.
39522
39523         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
39524         * m4/uptime.m4: Likewise.
39525         * m4/uintmax_t.m4: Likewise.
39526
39527 1999-01-28  Jim Meyering  <meyering@ascend.com>
39528
39529         * m4/jm-macros.m4: Use jm_AFS.
39530         * m4/afs.m4: New file (from fileutils' configure.in).
39531
39532         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
39533         * m4/chown.m4: Likewise.
39534         * m4/d-ino.m4: Likewise.
39535         * m4/d-type.m4: Likewise.
39536         * m4/fnmatch.m4: Likewise.
39537         * m4/getgroups.m4: Likewise.
39538         * m4/gettext.m4: Likewise.
39539         * m4/jm-mktime.m4: Likewise.
39540         * m4/jm-winsz2.m4: Likewise.
39541         * m4/lcmessage.m4: Likewise.
39542         * m4/ls-mntd-fs.m4: Likewise.
39543         * m4/malloc.m4: Likewise.
39544         * m4/memcmp.m4: Likewise.
39545         * m4/putenv.m4: Likewise.
39546         * m4/realloc.m4: Likewise.
39547         * m4/st_mtim.m4: Likewise.
39548         * m4/strftime.m4: Likewise.
39549
39550 1999-01-16  Jim Meyering  <meyering@ascend.com>
39551
39552         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
39553         (ARGMATCH_DIE_DECL): Define.
39554
39555 1999-01-12  Jim Meyering  <meyering@ascend.com>
39556
39557         * m4/Makefile.am.in: Rewrite to avoid using fmt.
39558         Reported by Lars Hecking.
39559
39560 1999-01-10  Jim Meyering  <meyering@ascend.com>
39561
39562         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
39563         gross kludge.
39564         * m4/inttypes_h.m4: Likewise.
39565         * m4/lstat.m4: Likewise.
39566         * m4/malloc.m4: Likewise.
39567         * m4/readdir.m4: Likewise.
39568         * m4/realloc.m4: Likewise.
39569         * m4/st_dm_mode.m4: Likewise.
39570         * m4/stat.m4: Likewise.
39571         * m4/utimbuf.m4: Likewise.
39572         * m4/utimes.m4: Likewise.
39573
39574         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
39575         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
39576         comments in config.h.in are meaningful.
39577
39578         * m4/jm-macros.m4: Require autoconf-2.13 here.
39579
39580         * m4/regex.m4: By default, don't use the included regex.c on systems
39581         with glibc 2.  Suggestion from Uli Drepper.
39582
39583 1999-01-02  Jim Meyering  <meyering@ascend.com>
39584
39585         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
39586
39587 1998-12-18  Jim Meyering  <meyering@ascend.com>
39588
39589         * m4/Makefile.am.in (Makefile.am): Simplify rule.
39590         Based on a suggestion from Lars Hecking.
39591
39592 1998-11-16  Paul Eggert  <eggert@twinsun.com>
39593
39594         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
39595
39596 1998-11-16  Jim Meyering  <meyering@ascend.com>
39597
39598         * m4/lfs.m4: Double-quote the `uname...` expression.
39599
39600 1998-11-14  Jim Meyering  <meyering@ascend.com>
39601
39602         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
39603         * m4/stat.m4: Likewise.
39604
39605 1998-11-03  Jim Meyering  <meyering@ascend.com>
39606
39607         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
39608         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
39609
39610 1998-10-18  Jim Meyering  <meyering@ascend.com>
39611
39612         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
39613
39614 1998-10-17  Jim Meyering  <meyering@ascend.com>
39615
39616         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
39617         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
39618         calls for those previously hard-coded headers.  Instead, take a new
39619         parameter.
39620         (jm_CHECK_DECLARATIONS): Reflect interface change.
39621         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
39622         (jm_CHECK_DECL_LOCALTIME_R): New macro.
39623
39624         * m4/mktime.m4: Test for spring-forward gap before long-running test.
39625
39626 1998-10-14  Jim Meyering  <meyering@ascend.com>
39627
39628         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
39629         instead of "TZ=America/Vancouver".  From Paul Eggert.
39630
39631 1998-10-11  Jim Meyering  <meyering@ascend.com>
39632
39633         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
39634         This adds a test for a recently added compatibility fix for mktime.c.
39635         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
39636
39637 1998-09-27  Jim Meyering  <meyering@ascend.com>
39638
39639         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
39640
39641         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
39642         ../configure.in, including a change from Gordon Matzigkeit to allow
39643         cross-compiling for the Hurd.
39644
39645         * m4/glibc.m4: New file/macro to test for the GNU C Library
39646         versions 1 and 2.  From Gordon Matzigkeit.
39647         Indent.
39648
39649 1998-09-21  Jim Meyering  <meyering@ascend.com>
39650
39651         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
39652
39653 1998-08-18  Paul Eggert  <eggert@twinsun.com>
39654
39655         Port nanosecond-resolution times to UnixWare 2.1.2 and
39656         pedantic Solaris 2.6.
39657
39658         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
39659         AC_STRUCT_ST_MTIM.
39660         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
39661         Generate name of ns member, instead of just 1 or undef.
39662         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
39663
39664 1998-08-15  Jim Meyering  <meyering@ascend.com>
39665
39666         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
39667         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
39668         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
39669         instead of jm_TYPE_SSIZE_T.
39670
39671 1998-08-12  Jim Meyering  <meyering@ascend.com>
39672
39673         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
39674
39675 1998-08-02  Jim Meyering  <meyering@ascend.com>
39676
39677         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
39678         in acconfig.h manually.
39679
39680 1998-07-31  Paul Eggert  <eggert@twinsun.com>
39681
39682         * m4/st_mtim.m4: New file.
39683
39684 1998-07-28  Jim Meyering  <meyering@ascend.com>
39685
39686         * m4/utimes.m4: Undef stat.
39687
39688 1998-07-25  Jim Meyering  <meyering@ascend.com>
39689
39690         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
39691         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
39692
39693 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
39694
39695         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
39696         uid and gid actually remain unchanged.
39697
39698 1998-07-07  Jim Meyering  <meyering@ascend.com>
39699
39700         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
39701
39702 1998-07-04  Jim Meyering  <meyering@ascend.com>
39703
39704         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
39705         to prove that this macro can be used in packages without regex.c.
39706
39707 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
39708
39709         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
39710         is to be used.
39711
39712 1998-07-03  Jim Meyering  <meyering@ascend.com>
39713
39714         * m4/gettext.m4: Add -lintl if it's found to be necessary.
39715
39716         * m4/gettext.m4: New file -- from gettext-0.10.35.
39717         * m4/lcmessage.m4: Likewise.
39718         * m4/progtest.m4: Likewise.
39719
39720         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
39721         * m4/jm-macros.m4: Require the new macro.
39722
39723 1998-06-29  Jim Meyering  <meyering@ascend.com>
39724
39725         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
39726         for the definition of NGROUPS (used in a system header included
39727         by sys/mount.h).
39728
39729 1998-06-28  Jim Meyering  <meyering@ascend.com>
39730
39731         * m4/ls-mntd-fs.m4: New file.
39732         * m4/fstypename.m4: New file.
39733
39734         * m4/jm-macros.m4: Require the new macro.
39735         * m4/jm-glibc-io.m4: New file.
39736
39737 1998-05-19  Jim Meyering  <meyering@ascend.com>
39738
39739         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
39740         * m4/lchown.m4: New file.
39741
39742         * m4/Makefile.am.in: New file.
39743         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
39744
39745 1998-05-14  Jim Meyering  <meyering@ascend.com>
39746
39747         * m4/Makefile.am (EXTRA_DIST): Add them.
39748         * m4/jm-macros.m4: New file.
39749         * m4/utimbuf.m4: New file.
39750
39751 1998-05-12  Jim Meyering  <meyering@ascend.com>
39752
39753         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
39754
39755 1998-05-11  Jim Meyering  <meyering@ascend.com>
39756
39757         * m4/isc-posix.m4: New file.
39758
39759 1998-05-10  Jim Meyering  <meyering@ascend.com>
39760
39761         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
39762
39763 1998-05-09  Jim Meyering  <meyering@ascend.com>
39764
39765         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
39766         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
39767         with automake.
39768
39769         * m4/ssize_t.m4: New file.
39770         * m4/mktime.m4: Remove file -- the new automake has this now.
39771
39772 1998-04-26  Jim Meyering  <meyering@ascend.com>
39773
39774         * m4/assert.m4: New file.
39775         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
39776
39777 1998-04-05  Jim Meyering  <meyering@ascend.com>
39778
39779         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
39780         (jm_PREREQ): Use it here.
39781
39782 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
39783
39784         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
39785         in acconfig.h.
39786
39787 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
39788
39789         * m4/prereq.m4: New file.
39790         * m4/error.m4: New file.
39791         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
39792
39793 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
39794
39795         * m4/getline.m4: Don't set am_cv_func_working_getline before the
39796         cache-check for the same variable -- that defeated the purpose of
39797         the test; the test program was never run.  This was a problem only
39798         on systems with losing getline functions -- HP-UX 10.20 is one.
39799         Reported by Bjorn Helgaas.
39800
39801 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
39802
39803         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
39804
39805 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
39806
39807         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
39808
39809         * m4/const.m4: New file.  Use an initializer in this declaration
39810         typedef int charset[2]; const charset x;
39811         Reported by Bob Glickstein.
39812
39813 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
39814
39815         * m4/chown.m4: Fix reversed types on -1 args to chown.
39816         From Kaveh Ghazi.
39817
39818 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
39819
39820         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
39821         Add lseek and memchr.
39822
39823         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
39824         T.E.Dickey <dickey@clark.net> said that some older preprocessors
39825         have a 20-character limit on names.
39826
39827 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
39828
39829         * m4/inttypes_h.m4: New file.
39830         * m4/uintmax_t.m4: New file.
39831         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
39832
39833
39834         -----
39835
39836         Copyright (C) 1997-2008 Free Software Foundation, Inc.
39837
39838         Copying and distribution of this file, with or without
39839         modification, are permitted provided the copyright notice
39840         and this notice are preserved.