acf980b7bb233e7cd1b000c62700a6447de50eda
[gnulib.git] / ChangeLog
1 2010-10-11  Jim Meyering  <meyering@redhat.com>
2
3         fix a documentation typo
4         * doc/posix-functions/futimens.texi (futimens): Fix typo: s/itme/item/
5
6 2010-10-11  Eric Blake  <eblake@redhat.com>
7
8         futimens: work around Solaris 11 bug
9         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect the bug.
10         * tests/test-futimens.h (test_futimens): Enhance, rather than
11         weaken test.
12         * doc/posix-functions/futimens.texi (futimens): Document the bug.
13
14 2010-10-11  Paul Eggert  <eggert@cs.ucla.edu>
15
16         Indentation.
17         * lib/spawn.in.h (verify_POSIX_SPAWN_USEVFORK_no_overlap): Indent
18         higher-level operators more to the left.
19
20 2010-10-11  Jim Meyering  <meyering@redhat.com>
21
22         test-futimens: avoid unwarranted test failure on Solaris 5.11
23         * tests/test-futimens.h (test_futimens): When provoking EBADF, use an
24         invalid file descriptor, so we don't provoke EFAULT from Solaris 5.11,
25         because it tries to dereference the NULL name argument.
26
27 2010-10-11  Bruno Haible  <bruno@clisp.org>
28
29         Indentation.
30         * lib/spawn.in.h (verify_POSIX_SPAWN_USEVFORK_no_overlap): Improve
31         indentation.
32
33 2010-10-11  Jim Meyering  <meyering@redhat.com>
34
35         spawn.in.h: make indentation consistent with parentheses
36         * lib/spawn.in.h (verify_POSIX_SPAWN_USEVFORK_no_overlap):
37         Make indentation consistent with parentheses.
38
39 2010-10-11  Gary V. Vaughan  <gary@gnu.org>
40
41         Fix mismatched parens in previous commit
42         * lib/spawn.in.h (verify_POSIX_SPAWN_USEVFORK_no_overlap): Fix mismatched
43         parens.
44
45 2010-10-10  Paul Eggert  <eggert@cs.ucla.edu>
46
47         rewrite int foo[2*X-1] to verify(X) or to int foo[X?1:-1]
48
49         * lib/float+.h (verify_sizeof_flt, verify_sizeof_dbl):
50         (verify_sizeof_ldbl): Rewrite 2*X-1 to X?1:-1.
51         * lib/malloca.c: Include "verify.h".
52         (verify1): Remove, replacing with a verify call.
53         * lib/relocwrapper.c (verify1): Likewise.
54         * lib/vasnprintf.c (mp_limb_verify, mp_twolimb_verify, TCHAR_T_verify):
55         Likewise.
56         * modules/malloca (Depends-on): Add 'verify'.
57         * modules/relocatable-prog-wrapper (Depends-on): Add 'verify'.
58         * modules/vasnprintf (Depends-on): Add 'verify'.
59         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
60         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
61         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
62         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
63         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
64         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
65         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
66
67         prefer (X ? 1 : -1) when converting from boolean (1,0) to int (1,-1)
68
69         Formerly the style was sometimes 2*X - 1, because the C standard
70         was wrongly thought to disallow ?: in integral constant expressions.
71         * lib/inet_ntop.c (verify_int_size): Rewrite 2*X-7 (!) to 4<=X?1:-1.
72         * lib/signal.in.h (verify_NSIG_constraint): Rewrite 2*X-1 to X?1:-1.
73         * lib/spawn.in.h (verify_POSIX_SPAWN_USEVFORK_no_overlap): Likewise.
74         * lib/stdint.in.h (_verify_intmax_size): Likewise.
75         * lib/time.in.h (struct __time_t_must_be_integral): Rewrite
76         2 * ((time_t) 1 / 2 == 0) - 1 to (time_t) 1; this suffices to
77         verify that time_t cannot be floating.
78
79 2010-10-08  Eric Blake  <eblake@redhat.com>
80
81         time: enforce recent POSIX ruling that time_t is integral
82         * lib/time.in.h (__time_t_must_be_integral): Detect any
83         problematic systems, allowing the rest of gnulib to assume POSIX.
84
85 2010-10-08  Jim Meyering  <meyering@redhat.com>
86
87         fdopendir: fix a bug on systems lacking openat and /proc support
88         OpenBSD 4.7 is one such system.  The most noticeable effect was
89         failure of any application making nontrivial use of fts: rm, du,
90         chown, chmod etc.  E.g., "mkdir -p a/b; ./rm -rf a" would fail with
91           ./rm: traversal failed: `a': Bad file descriptor
92         Debugging that, you see that even though FD 6 was closed just
93         prior to the opendir call in fd_clone_opendir, its resulting
94         dir->dd_fd was 8, rather than the expected value of 6:
95
96         Breakpoint 3, fdopendir_with_dup (fd=6, older_dupfd=-1) at fdopendir.c:93
97         93                close (fd);
98         (gdb) n
99         94                dir = fd_clone_opendir (dupfd);
100         (gdb) n
101         95                saved_errno = errno;
102         (gdb) p dir->dd_fd
103         $11 = 8
104
105         Notice how it closes FD 6, then gets a DIR* pointer using FD 8.
106         The problem is that on OpenBSD, fd_clone_opendir has to resort
107         to using the old-style save/restore CWD mechanism, due to its
108         lack of openat/proc support, and *that* would steal the FD (6)
109         that opendir was supposed to use.
110
111         The fix is to squirrel away the desired FD so that save_cwd uses a
112         different one, and then free the dest FD right before calling opendir.
113         That guarantees opendir will use the required file descriptor.
114
115         * lib/fdopendir.c (fd_clone_opendir): Handle the above.
116
117 2010-10-08  Bruno Haible  <bruno@clisp.org>
118
119         sys_select: Avoid warning due to undeclared memset() on OpenBSD 4.5.
120         * lib/sys_select.in.h: Include <string.h> also on OpenBSD.
121
122 2010-10-08  Bruno Haible  <bruno@clisp.org>
123
124         nanosleep: Make replacement POSIX compliant.
125         * lib/nanosleep.c (nanosleep): Return -1/EINVAL if the delay's tv_nsec
126         is out of range.
127         Reported by Jim Meyering.
128
129 2010-10-08  Paul Eggert  <eggert@cs.ucla.edu>
130
131         bootstrap: add hook for altering gnulib.mk, for Bison
132         * build-aux/bootstrap (gnulib_mk_hook): New function, so that
133         the Bison bootstrapping process can rewrite file names and variables
134         in this file before later parts of 'bootstrap' use the file.
135         Bison wants to include lib/gnulib.mk from the top-level makefile,
136         so it needs the file names in this file to be relative to the top
137         level, not relative to lib; plus it needs variable names to be
138         rewritten.
139         (slurp): Use the new function.
140
141         bootstrap: reformat for readability
142         * build-aux/bootstrap: Rewrite to avoid lines longer than 80 columns.
143
144 2010-10-08  Eric Blake  <eblake@redhat.com>
145
146         docs: update cygwin progress
147         * doc/posix-functions/cacos.texi (cacos): Added after cygwin
148         1.7.7.
149         * doc/posix-functions/cacosf.texi (cacosf): Likewise.
150         * doc/posix-functions/cacosh.texi (cacosh): Likewise.
151         * doc/posix-functions/cacoshf.texi (cacoshf): Likewise.
152         * doc/posix-functions/carg.texi (carg): Likewise.
153         * doc/posix-functions/cargf.texi (cargf): Likewise.
154         * doc/posix-functions/casin.texi (casin): Likewise.
155         * doc/posix-functions/casinf.texi (casinf): Likewise.
156         * doc/posix-functions/casinh.texi (casinh): Likewise.
157         * doc/posix-functions/casinhf.texi (casinhf): Likewise.
158         * doc/posix-functions/catan.texi (catan): Likewise.
159         * doc/posix-functions/catanf.texi (catanf): Likewise.
160         * doc/posix-functions/catanh.texi (catanh): Likewise.
161         * doc/posix-functions/catanhf.texi (catanhf): Likewise.
162         * doc/posix-functions/ccos.texi (ccos): Likewise.
163         * doc/posix-functions/ccosf.texi (ccosf): Likewise.
164         * doc/posix-functions/ccosh.texi (ccosh): Likewise.
165         * doc/posix-functions/ccoshf.texi (ccoshf): Likewise.
166         * doc/posix-functions/cexp.texi (cexp): Likewise.
167         * doc/posix-functions/cexpf.texi (cexpf): Likewise.
168         * doc/posix-functions/cimag.texi (cimag): Likewise.
169         * doc/posix-functions/cimagf.texi (cimagf): Likewise.
170         * doc/posix-functions/clog.texi (clog): Likewise.
171         * doc/posix-functions/clogf.texi (clogf): Likewise.
172         * doc/posix-functions/conj.texi (conj): Likewise.
173         * doc/posix-functions/conjf.texi (conjf): Likewise.
174         * doc/posix-functions/cpow.texi (cpow): Likewise.
175         * doc/posix-functions/cpowf.texi (cpowf): Likewise.
176         * doc/posix-functions/cproj.texi (cproj): Likewise.
177         * doc/posix-functions/cprojf.texi (cprojf): Likewise.
178         * doc/posix-functions/creal.texi (creal): Likewise.
179         * doc/posix-functions/crealf.texi (crealf): Likewise.
180         * doc/posix-functions/csin.texi (csin): Likewise.
181         * doc/posix-functions/csinf.texi (csinf): Likewise.
182         * doc/posix-functions/csinh.texi (csinh): Likewise.
183         * doc/posix-functions/csinhf.texi (csinhf): Likewise.
184         * doc/posix-functions/csqrt.texi (csqrt): Likewise.
185         * doc/posix-functions/csqrtf.texi (csqrtf): Likewise.
186         * doc/posix-functions/ctan.texi (ctan): Likewise.
187         * doc/posix-functions/ctanf.texi (ctanf): Likewise.
188         * doc/posix-functions/ctanh.texi (ctanh): Likewise.
189         * doc/posix-functions/ctanhf.texi (ctanhf): Likewise.
190         * doc/posix-headers/complex.texi (complex.h): Likewise.
191
192 2010-10-07  Jim Meyering  <meyering@redhat.com>
193
194         parse-datetime: avoid compilation failure on OpenBSD 4.7
195         * lib/parse-datetime.y (_STDLIB_H) [_STDLIB_H_]: Define.
196         This works around a compilation failure on OpenBSD 4.7:
197         http://thread.gmane.org/gmane.comp.parsers.bison.bugs/3418
198
199 2010-10-07  Eric Blake  <eblake@redhat.com>
200
201         docs: update cygwin progress
202         * doc/glibc-functions/mkostemp.texi (mkostemp): Added in cygwin
203         1.7.6.
204         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
205         * doc/posix-headers/fenv.texi (fenv.h): Added after cygwin 1.7.7.
206         * doc/posix-functions/feclearexcept.texi (feclearexcept): Likewise.
207         * doc/posix-functions/fegetenv.texi (fegetenv): Likewise.
208         * doc/posix-functions/fegetexceptflag.texi (fegetexceptflag):
209         Likewise.
210         * doc/posix-functions/fegetround.texi (fegetround): Likewise.
211         * doc/posix-functions/feholdexcept.texi (feholdexcept): Likewise.
212         * doc/posix-functions/feraiseexcept.texi (feraiseexcept):
213         Likewise.
214         * doc/posix-functions/fesetenv.texi (fesetenv): Likewise.
215         * doc/posix-functions/fesetexceptflag.texi (fesetexceptflag):
216         Likewise.
217         * doc/posix-functions/fesetround.texi (fesetround): Likewise.
218         * doc/posix-functions/fetestexcept.texi (fetestexcept): Likewise.
219         * doc/posix-functions/feupdateenv.texi (feupdateenv): Likewise.
220         * doc/glibc-functions/feenableexcept.texi (feenableexcept):
221         Likewise.
222         * doc/glibc-functions/fedisableexcept.texi (fedisableexcept):
223         Likewise.
224         * doc/glibc-functions/fegetexcept.texi (fegetexcept): Likewise.
225
226         docs: update parse-datetime history
227         * doc/parse-datetime.texi (Authors of parse_datetime): Better
228         documentation of this function's history and alternatives.
229
230         cygwin: use more robust version check
231         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE, gl_FUNC_MEMMEM): Don't
232         exclude an eventual cygwin 1.9.1.
233         * m4/strstr.m4 (gl_FUNC_STRSTR_SIMPLE, gl_FUNC_STRSTR): Likewise.
234         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE)
235         (gl_FUNC_STRCASESTR): Likewise.
236         Reported by Bruno Haible.
237
238 2010-10-06  Bruno Haible  <bruno@clisp.org>
239
240         string, sys_select: Avoid #including large headers unless necessary.
241         * lib/string.in.h: Don't include <unistd.h> except on NetBSD.
242         * lib/sys_select.in.h: Don't include <string.h> except on Solaris,
243         OSF/1, BeOS, Haiku.
244         Reported by Jim Meyering.
245
246 2010-10-05  Eric Blake  <eblake@redhat.com>
247
248         memmem, strstr, strcasestr: fix bug with long periodic needle
249         * lib/str-two-way.h (two_way_long_needle): Avoid bug with long
250         periodic needle having false positive.
251         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): Detect bug in glibc 2.12
252         and cygwin 1.7.7.
253         (gl_FUNC_MEMMEM): Be more pessimistic when cross-compiling.
254         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE)
255         (gl_FUNC_STRCASESTR): Likewise.
256         * m4/strstr.m4 (gl_FUNC_STRSTR_SIMPLE, gl_FUNC_STRSTR): Likewise.
257         * tests/test-memmem.c (main): Expose the bug.
258         * tests/test-strcasestr.c (main): Likewise.
259         * tests/test-strstr.c (main): Likewise.
260         * tests/test-c-strcasestr.c (main): Likewise.
261         * doc/glibc-functions/memmem.texi (memmem): Document the bug.
262         * doc/posix-functions/strstr.texi (strstr): Likewise.
263         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
264         Reported via http://sourceware.org/bugzilla/show_bug.cgi?id=12092
265
266 2010-10-05  Paul Eggert  <eggert@cs.ucla.edu>
267
268         parse-datetime: do some more renaming
269         * doc/parse-datetime.texi (Authors of parse_datetime): Call it
270         parse_datetime, not get_date.  Mention the renaming.
271         * lib/parse-datetime.y:  Call it parse_datetime, not getdate,
272         in comments.
273         * m4/bison.m4: Likewise.
274
275 2010-10-05  Eric Blake  <eblake@redhat.com>
276
277         parse-datetime: better name than get_date
278         * NEWS: Reword the deprecation notice.
279         * modules/get_date: Rename to modules/parse-datetime.
280         * modules/get_date-tests: Rename to modules/parse-datetime-tests.
281         * m4/get_date.m4: Rename to m4/parse-datetime.m4.
282         * lib/get_date.y: Rename to lib/parse-datetime.y.
283         * tests/test-get_date.c: Rename to tests/test-parse-datetime.c.
284         * doc/get_date.texi: Rename to doc/parse-datetime.texi.
285         * doc/getdate.texi: Provide fallback wrapper.
286         * lib/getdate.h: Move guts, and wrap...
287         * lib/parse-datetime.h: ...new file.
288         * lib/parse-datetime.y (get_date): Rename...
289         (parse_datetime): ...to this.
290         * m4/parse-datetime.m4 (gl_GET_DATE): Rename...
291         (gl_PARSE_DATETIME): ...to this.
292         * doc/posix-functions/getdate.texi (get_date): Provide fallback
293         documentation.
294         * modules/getdate (Files): Provide fallback docs and header.
295         (Notice, Depends-on): Update references.
296         * tests/test-parse-datetime.c: Likewise.
297         * DEPENDENCIES: Likewise.
298         * MODULES.html.sh (Date and time <time.h>): Likewise.
299         * doc/parse-datetime.texi (Date input formats)
300         (Authors of parse_datetime): Likewise.
301         * modules/parse-datetime (Files, configure.ac, Makefile.am)
302         (Include): Likewise.
303         * modules/parse-datetime-tests (Files, Makefile.am): Likewise.
304         * gnulib-tool: Likewise.
305         * m4/bison.m4 (gl_BISON): Likewise.
306         Suggested by Bruno Haible.
307
308 2010-10-05  Paul Eggert  <eggert@cs.ucla.edu>
309
310         more ports to Solaris tr, which needs [] around ranges
311         * gnulib-tool: Solaris tr needs [] around ranges.
312         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX): Likewise.
313         * tests/test-pipe-filter-gi1.c (main): Likewise.
314         * tests/test-pipe-filter-ii1.c (main): Likewise.
315
316 2010-10-05  Eric Blake  <eblake@redhat.com>
317
318         bootstrap: fix Solaris regression
319         * build-aux/bootstrap (check_versions): Solaris tr still needs []
320         around ranges.
321         Reported by Pádraig Brady.
322
323         bootstrap: work with pkg-config
324         * build-aux/bootstrap (check_versions): Also transliterate - in
325         prerequisite name.
326         (print_versions): Be robust to any \ in $buildreq.  Avoid listing
327         prerequisites that were already found, to avoid confusion.
328         Reported by Justin Clift.
329
330         faccessat: remove unused wrappers
331         * lib/openat.h (accessat, euidaccesat): Delete, since the mere
332         presence of these wrappers dragged in -lgen on Solaris.
333         Reported by Clemens Brogi; fix suggested by Paul Eggert.
334
335 2010-10-05  Jim Meyering  <meyering@redhat.com>
336
337         tests: require @PRAGMA_COLUMNS@ with each @PRAGMA_SYSTEM_HEADER@
338         * Makefile (sc_pragma_columns): New syntax-check rule.
339
340 2010-10-04  Bruno Haible  <bruno@clisp.org>
341
342         gnulib-tool: Synthesize appropriate _LDFLAGS for a libtool library.
343         * gnulib-tool (func_emit_lib_Makefile_am): When preparing for a libtool
344         library, put '-no-undefined' and the link dependencies into _LDFLAGS.
345         Reported by Bruce Korb and Eric Blake.
346
347 2010-10-04  Bruno Haible  <bruno@clisp.org>
348
349         threadlib: Make option --with-libpth-prefix work.
350         * m4/threadlib.m4 (gl_THREADLIB_BODY): When testing whether pth works,
351         use $LIBPTH, not just -lpth.
352
353 2010-10-04  Bruno Haible  <bruno@clisp.org>
354
355         Avoid line length limitation from HP NonStop system header files.
356         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define also PRAGMA_COLUMNS.
357         * lib/arpa_inet.in.h: Use PRAGMA_COLUMNS.
358         * lib/ctype.in.h: Likewise.
359         * lib/dirent.in.h: Likewise.
360         * lib/errno.in.h: Likewise.
361         * lib/fcntl.in.h: Likewise.
362         * lib/float.in.h: Likewise.
363         * lib/getopt.in.h: Likewise.
364         * lib/iconv.in.h: Likewise.
365         * lib/inttypes.in.h: Likewise.
366         * lib/langinfo.in.h: Likewise.
367         * lib/locale.in.h: Likewise.
368         * lib/math.in.h: Likewise.
369         * lib/netdb.in.h: Likewise.
370         * lib/netinet_in.in.h: Likewise.
371         * lib/poll.in.h: Likewise.
372         * lib/pthread.in.h: Likewise.
373         * lib/pty.in.h: Likewise.
374         * lib/sched.in.h: Likewise.
375         * lib/se-selinux.in.h: Likewise.
376         * lib/search.in.h: Likewise.
377         * lib/signal.in.h: Likewise.
378         * lib/spawn.in.h: Likewise.
379         * lib/stdarg.in.h: Likewise.
380         * lib/stddef.in.h: Likewise.
381         * lib/stdint.in.h: Likewise.
382         * lib/stdio.in.h: Likewise.
383         * lib/stdlib.in.h: Likewise.
384         * lib/string.in.h: Likewise.
385         * lib/strings.in.h: Likewise.
386         * lib/sys_file.in.h: Likewise.
387         * lib/sys_ioctl.in.h: Likewise.
388         * lib/sys_select.in.h: Likewise.
389         * lib/sys_socket.in.h: Likewise.
390         * lib/sys_stat.in.h: Likewise.
391         * lib/sys_time.in.h: Likewise.
392         * lib/sys_times.in.h: Likewise.
393         * lib/sys_utsname.in.h: Likewise.
394         * lib/sys_wait.in.h: Likewise.
395         * lib/sysexits.in.h: Likewise.
396         * lib/termios.in.h: Likewise.
397         * lib/time.in.h: Likewise.
398         * lib/unistd.in.h: Likewise.
399         * lib/wchar.in.h: Likewise.
400         * lib/wctype.in.h: Likewise.
401         * modules/arpa_inet (Makefile.am): Substitute PRAGMA_COLUMNS.
402         * modules/ctype (Makefile.am): Likewise.
403         * modules/dirent (Makefile.am): Likewise.
404         * modules/errno (Makefile.am): Likewise.
405         * modules/fcntl-h (Makefile.am): Likewise.
406         * modules/float (Makefile.am): Likewise.
407         * modules/getopt-posix (Makefile.am): Likewise.
408         * modules/iconv-h (Makefile.am): Likewise.
409         * modules/inttypes (Makefile.am): Likewise.
410         * modules/langinfo (Makefile.am): Likewise.
411         * modules/locale (Makefile.am): Likewise.
412         * modules/math (Makefile.am): Likewise.
413         * modules/netdb (Makefile.am): Likewise.
414         * modules/netinet_in (Makefile.am): Likewise.
415         * modules/poll-h (Makefile.am): Likewise.
416         * modules/pthread (Makefile.am): Likewise.
417         * modules/pty (Makefile.am): Likewise.
418         * modules/sched (Makefile.am): Likewise.
419         * modules/search (Makefile.am): Likewise.
420         * modules/selinux-h (Makefile.am): Likewise.
421         * modules/signal (Makefile.am): Likewise.
422         * modules/spawn (Makefile.am): Likewise.
423         * modules/stdarg (Makefile.am): Likewise.
424         * modules/stddef (Makefile.am): Likewise.
425         * modules/stdint (Makefile.am): Likewise.
426         * modules/stdio (Makefile.am): Likewise.
427         * modules/stdlib (Makefile.am): Likewise.
428         * modules/string (Makefile.am): Likewise.
429         * modules/strings (Makefile.am): Likewise.
430         * modules/sys_file (Makefile.am): Likewise.
431         * modules/sys_ioctl (Makefile.am): Likewise.
432         * modules/sys_select (Makefile.am): Likewise.
433         * modules/sys_socket (Makefile.am): Likewise.
434         * modules/sys_stat (Makefile.am): Likewise.
435         * modules/sys_time (Makefile.am): Likewise.
436         * modules/sys_times (Makefile.am): Likewise.
437         * modules/sys_utsname (Makefile.am): Likewise.
438         * modules/sys_wait (Makefile.am): Likewise.
439         * modules/sysexits (Makefile.am): Likewise.
440         * modules/termios (Makefile.am): Likewise.
441         * modules/time (Makefile.am): Likewise.
442         * modules/unistd (Makefile.am): Likewise.
443         * modules/wchar (Makefile.am): Likewise.
444         * modules/wctype (Makefile.am): Likewise.
445
446 2010-10-04  Bruno Haible  <bruno@clisp.org>
447
448         read-file tests: Avoid a test failure on NonStop Kernel.
449         * tests/test-read-file.c (main): Don't assume that /etc/resolv.conf is
450         a regular file.
451         Reported by Joachim Schmitz <schmitz@hp.com>.
452
453 2010-10-03  Bruno Haible  <bruno@clisp.org>
454
455         gnulib-tool: Fixes for --create-testdir with --libtool.
456         * gnulib-tool (func_get_automake_snippet): Don't augment
457         EXTRA_lib_SOURCES for the pt_chown module, since pt_chown.o goes into
458         an executable.
459         (func_create_testdir): Handle module 'alloca' like func_import.
460         Reported by Bruce Korb <bruce.korb@gmail.com>.
461
462 2010-10-03  Paul Eggert  <eggert@cs.ucla.edu>
463
464         Avoid some lines longer than 80 characters.
465         * lib/stdint.in.h: Break long comment lines.
466         * lib/math.in.h: Likewise.
467         (_GL_NUM_UINT_WORDS): New macro, for readability.
468         (gl_signbitf, gl_signbitd, gl_signbitl): Use it.
469         * lib/stdio.in.h: Break lines in _GL_WARN_ON_USE calls.
470         * lib/stdlib.in.h: Likewise.
471         * lib/spawn.in.h: Likewise.
472         * lib/sys_socket.in.h: Update an URL.
473         * lib/sys_stat.in.h: Break long line.
474
475 2010-10-03  Bruno Haible  <bruno@clisp.org>
476             Joachim Schmitz  <schmitz@hp.com>  (tiny change)
477
478         acl: Add support for ACLs on NonStop Kernel.
479         * m4/acl.m4 (gl_FUNC_ACL): For Solaris, test for facl(), not for acl().
480         Check whether the function aclsort() exists.
481         * lib/acl-internal.h: For Solaris, test HAVE_FACL, not HAVE_ACL.
482         (acl_nontrivial) [HAVE_ACLSORT]: New declaration.
483         * lib/file-has-acl.c: For Solaris, test HAVE_FACL, not HAVE_ACL.
484         (acl_nontrivial [HAVE_ACLSORT]: New function.
485         (file_has_acl): Implement for NonStop Kernel.
486         * lib/set-mode-acl.c: For Solaris, test HAVE_FACL, not HAVE_ACL.
487         (qset_acl): Implement for NonStop Kernel.
488         * lib/copy-acl.c (qcopy_acl): Implement for NonStop Kernel.
489         * tests/test-sameacls.c: For Solaris, test HAVE_FACL, not HAVE_ACL.
490         (main): Implement for NonStop Kernel.
491         * tests/test-file-has-acl.sh (acl_flavor): Set to 'nsk' on NonStop
492         Kernel. Handle this flavor.
493         * tests/test-set-mode-acl.sh: Likewise.
494         * tests/test-copy-acl.sh: Likewise.
495         * tests/test-copy-file.sh: Likewise.
496
497 2010-10-03  Bruno Haible  <bruno@clisp.org>
498
499         Info about ACLs on NonStop Kernel.
500         * doc/acl-resources.txt: Add info about NonStop Kernel.
501         References by Joachim Schmitz <schmitz@hp.com>.
502
503 2010-10-02  Bruno Haible  <bruno@clisp.org>
504
505         Define missing EDQUOT on NonStop Kernel.
506         * lib/errno.in.h (EDQUOT): Assign a value if missing.
507         * lib/strerror.c (rpl_strerror): Handle missing EDQUOT.
508         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether EDQUOT is
509         missing.
510         * doc/posix-headers/errno.texi: Mention the NSK bug.
511         * doc/posix-functions/strerror.texi: Mention the workaround on NSK.
512         Reported by Joachim Schmitz <schmitz@hp.com>.
513
514 2010-10-02  Bruno Haible  <bruno@clisp.org>
515
516         Update doc for POSIX:2008.
517         * doc/posix-headers/*.texi [except ucontext.texi, sys_timeb.texi]:
518         Update URL of POSIX specification.
519
520 2010-10-02  Bruno Haible  <bruno@clisp.org>
521
522         gnulib-tool: In testdirs, use the newest available config.{guess.sub}.
523         * gnulib-tool (func_create_testdir): Use config.guess and config.sub
524         from gnulib, not from Automake.
525
526 2010-10-02  Bruno Haible  <bruno@clisp.org>
527
528         New module 'system-posix'.
529         * modules/system-posix: New file.
530         * lib/stdlib.in.h: Include <sys/wait.h> only when the 'system-posix'
531         module is present.
532         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
533         GNULIB_SYSTEM_POSIX.
534         * modules/stdlib (Depends-on): Remove sys_wait.
535         (Makefile.am): Substitute GNULIB_SYSTEM_POSIX.
536         * doc/posix-functions/system.texi: Mention the new module.
537         * doc/posix-headers/stdlib.texi: Likewise.
538         * tests/test-stdlib.c: If GNULIB_TEST_SYSTEM_POSIX is not defined,
539         define test_sys_wait_macros to a no-op.
540         Reported by Sam Steingold <sds@gnu.org>.
541
542 2010-09-30  Bruno Haible  <bruno@clisp.org>
543
544         More renaming from 'getdate' to 'get_date'.
545         * doc/get_date.texi: Renamed from doc/getdate.texi.
546         * modules/get_date (Files): Update.
547         * MODULES.html.sh (Date and time <time.h>): Update.
548         * DEPENDENCIES: Update.
549         * gnulib-tool: Update comment.
550         * m4/bison.m4 (gl_BISON): Likewise.
551         * m4/get_date.m4 (gl_GET_DATE): Likewise.
552
553 2010-09-30  Justin Clift  <jclift@redhat.com>  (tiny change)
554
555         bootstrap: support ACLOCAL_FLAGS during aclocal
556         * build-aux/bootstrap (aclocal): Honor ACLOCAL_FLAGS, so the user
557         can add additional -I dir for third-party .m4 files.
558
559 2010-09-30  Eric Blake  <eblake@redhat.com>
560
561         bootstrap: use glibtoolize on MacOS
562         * build-aux/bootstrap (check_versions): Convert libtool into
563         libtoolize.
564         (tool search): Move libtool check earlier, and look for
565         glibtoolize for MacOS.
566         (gnulib_tool_options): Auto-add --libtool when appropriate.
567         Reported by Justin Clift.
568
569         poll: fix typo that broke test on MacOS
570         * m4/poll.m4 (gl_FUNC_POLL): Add missing test.
571         Reported by Justin Clift.
572
573         getdate: rename to get_date
574         Note: getdate.h is not renamed, to minimize client impact.
575         * modules/getdate: Mark obsolete.  Move old contents...
576         * modules/get_date: ...to new module name.
577         * modules/getdate-tests: Move...
578         * modules/get_date-tests: ...here.
579         * m4/getdate.m4: Move...
580         * m4/get_date.m4: ...here, and rename gl_GETDATE to gl_GET_DATE.
581         * lib/getdate.y: Move...
582         * lib/get_date.y: ...here.
583         * tests/test-getdate.c: Move...
584         * tests/test-get_date.c: ...here.
585         * doc/posix-functions/getdate.texi (getdate): Update name.
586         * NEWS: Mention the change.
587
588 2010-09-29  Bruno Haible  <bruno@clisp.org>
589
590         Separate the module 'waitpid' from the module 'sys_wait'.
591         * lib/sys_wait.in.h (waitpid): Declare only if the 'waitpid' module is
592         present.
593         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Invoke
594         gl_MODULE_INDICATOR_FOR_TESTS.
595         (gl_SYS_WAIT_H_DEFAULTS): Initialize GNULIB_WAITPID.
596         * modules/sys_wait (Depends-on): Remove waitpid.
597         (Makefile.am): Substitute GNULIB_WAITPID.
598         * modules/waitpid (configure.ac): Invoke gl_SYS_WAIT_MODULE_INDICATOR.
599         * tests/test-sys_wait-c++.cc (GNULIB_NAMESPACE::waitpid): Check the
600         signature only if the 'waitpid' module is present.
601         * doc/posix-functions/waitpid.texi: Mention the 'waitpid' module.
602         * NEWS: Mention the change.
603         * modules/grantpt (Depends-on): Add waitpid.
604         * modules/wait-process (Depends-on): Likewise.
605
606 2010-09-29  Bruno Haible  <bruno@clisp.org>
607
608         More tests for module 'sys_wait'.
609         * modules/sys_wait-c++-tests: New file.
610         * tests/test-sys_wait-c++.cc: New file.
611         * modules/sys_wait-tests (Depends-on): Add sys_wait-c++-tests.
612         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>.
613
614 2010-09-29  Bruno Haible  <bruno@clisp.org>
615
616         New module 'waitpid'.
617         * lib/waitpid.c: New file, extracted from lib/sys_wait.in.h.
618         * lib/sys_wait.in.h: Include <sys/types.h>, c++defs.h, warn-on-use.h.
619         Don't include <process.h>.
620         (waitpid): Declare only, using modern idiom.
621         * m4/waitpid.m4: New file.
622         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Check whether waitpid is declared.
623         * modules/waitpid: New file.
624         * modules/sys_wait (Depends-on): Add c++defs, warn-on-use, waitpid.
625         (Makefile.am): Update.
626         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>.
627
628 2010-09-28  Bruno Haible  <bruno@clisp.org>
629
630         poll: Assume ANSI C.
631         * lib/poll.c (poll): Use an ANSI C declaration.
632
633 2010-09-28  Bruno Haible  <bruno@clisp.org>
634
635         poll-h: Create poll.h on all platforms.
636         * lib/poll.in.h: Use double-inclusion guard. Don't define POLL*,
637         struct pollfd, nfds_t, INFTIM when the system has <poll.h>.
638         * m4/poll_h.m4 (gl_POLL_H): Set HAVE_POLL_H. Invoke
639         gl_CHECK_NEXT_HEADERS. Don't set POLL_H.
640         (gl_REPLACE_POLL_H): Don't set POLL_H.
641         (gl_POLL_H_DEFAULTS): Don't initialize POLL_H.
642         * modules/poll-h (Depends-on): Add include_next.
643         (Makefile.am): Create poll.h unconditionally. Substitute also
644         HAVE_POLL_H, INCLUDE_NEXT, PRAGMA_SYSTEM_HEADER, NEXT_POLL_H.
645
646 2010-09-28  Bruno Haible  <bruno@clisp.org>
647
648         Tests for module 'poll-h'.
649         * modules/poll-h-c++-tests: New file.
650         * tests/test-poll-h-c++.cc: New file.
651
652         Tests for module 'poll-h'.
653         * modules/poll-h-tests: New file.
654         * tests/test-poll-h.c: New file.
655
656 2010-09-28  Bruno Haible  <bruno@clisp.org>
657
658         poll-h: Ensure POLL{RD,WR}{NORM,BAND} are defined on glibc platforms.
659         * modules/poll-h (Depends-on): Add 'extensions'.
660
661 2010-09-28  Bruno Haible  <bruno@clisp.org>
662
663         New module 'poll-h'.
664         * lib/poll.in.h: Include c++defs.h and warn-on-use.h.
665         (poll): Use modern idiom.
666         * modules/poll-h: New file.
667         * modules/poll (Files): Remove lib/poll.in.h.
668         (Depends-on): Add poll-h.
669         (configure.ac): Invoke gl_POLL_MODULE_INDICATOR.
670         (Makefile.am): Move code for generation of poll.h to modules/poll-h.
671         * m4/poll_h.m4: New file.
672         * m4/poll.m4 (gl_FUNC_POLL): Require gl_POLL_H. Don't check for poll.h
673         here. Don't set POLL_H here. Instead, set HAVE_POLL and REPLACE_POLL
674         and invoke gl_REPLACE_POLL_H.
675         * lib/poll.c: Use common idiom.
676         * tests/test-poll.c: Likewise.
677         * doc/posix-headers/poll.texi: Mention the poll-h module.
678         Suggested by Eric Blake.
679
680 2010-09-26  Bruno Haible  <bruno@clisp.org>
681
682         sys_wait: Implement WSTOPSIG.
683         * lib/sys_wait.in.h (WSTOPSIG): New macro.
684         Reported by Simon Josefsson.
685
686 2010-09-26  Simon Josefsson  <simon@josefsson.org>
687
688         stdlib, sys_wait: Avoid compilation error on mingw.
689         * lib/sys_wait.in.h: Include <signal.h>, for SIGTERM.
690
691 2010-09-26  Bruno Haible  <bruno@clisp.org>
692
693         stdlib tests: Avoid code duplication.
694         * modules/stdlib-tests (Files): Add tests/test-sys_wait.h.
695         * modules/sys_wait-tests (Files): Likewise.
696         * tests/test-sys_wait.h: New file, extracted from tests/test-stdlib.c.
697         * tests/test-stdlib.c: Include test-sys_wait.h.
698         (main): Invoke test_sys_wait_macros.
699         * tests/test-sys_wait.c: Include test-sys_wait.h.
700         (main): Invoke test_sys_wait_macros.
701
702 2010-09-25  Simon Josefsson  <simon@josefsson.org>
703
704         * modules/getaddrinfo (Depends-on): Depend on the sockets module.
705         * lib/getaddrinfo.c (use_win32_p): Call gl_sockets_startup to make
706         sure Windows sockets are working before calling getaddrinfo.
707         * tests/test-getaddrinfo.c (main): Don't call WSAStartup here.
708         * doc/gnulib.texi (Windows sockets): Fix typo.
709
710 2010-09-25  Bruno Haible  <bruno@clisp.org>
711
712         Tests for module 'regex-quote'.
713         * modules/regex-quote-tests: New file.
714         * tests/test-regex-quote.c: New file.
715
716         New module 'regex-quote'.
717         * lib/regex-quote.h: New file.
718         * lib/regex-quote.c: New file.
719         * modules/regex-quote: New file.
720         Suggested by Reuben Thomas <rrt@sc3d.org>.
721
722 2010-09-24  Bruno Haible  <bruno@clisp.org>
723
724         unistr/u8-strchr: Fix a test failure on i586 glibc systems.
725         * tests/unistr/test-strchr.h (test_strchr): Disable an invalid check.
726
727 2010-09-23  Bruno Haible  <bruno@clisp.org>
728
729         setenv: Relax license.
730         * modules/setenv (License): Change to LGPLv2+, with consent by Eric
731         Blake.
732         Requested by Eric Blake.
733
734 2010-09-22  Bruno Haible  <bruno@clisp.org>
735
736         termios: Relax license.
737         * modules/termios (License): Change to LGPLv2+.
738         Requested by Eric Blake.
739
740 2010-09-22  Bruno Haible  <bruno@clisp.org>
741
742         threadlib: Allow the package to change the default to 'no'.
743         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): When
744         gl_THREADLIB_DEFAULT_NO is defined, change the default to 'no'.
745         Reported by Paul Eggert.
746
747 2010-09-22  Pádraig Brady  <P@draigbrady.com>
748             Bruno Haible  <bruno@clisp.org>
749
750         Fix endless loop in mbmemcasecoll.
751         * lib/mbmemcasecoll.c (apply_towlower): When mbrtowc returns 0, copy 1
752         byte.
753         * tests/test-mbmemcasecmp.h (test_ascii): Test embedded NULs.
754
755 2010-09-22  Bruno Haible  <bruno@clisp.org>
756
757         Tests for module 'memcoll'.
758         * modules/memcoll-tests: New file.
759         * tests/test-memcoll.c: New file, based on tests/test-memcmp.c.
760
761         memcoll, xmemcoll: Clarify size vs. length.
762         * modules/memcoll.c (memcoll0): Clarify specification.
763         * modules/xmemcoll.c (xmemcoll0): Likewise. Reduce by 1 the lengths
764         passed to collate_error.
765
766 2010-09-22  Bruno Haible  <bruno@clisp.org>
767
768         Tests for module 'memcasecmp'.
769         * modules/memcasecmp-tests: New file.
770         * tests/test-memcasecmp.c: New file, based on tests/test-memcmp.c.
771
772 2010-09-22  Paul Eggert  <eggert@cs.ucla.edu>
773
774         * lib/pthread.in.h: Add split double-inclusion guard, and include
775         system <pthread.h> if there is one.  Use @@-style as in other
776         .in.h files.  Define PTHREAD_COND_INITIALIZER etc. only if system
777         pthread.h doesn't.
778         (pthread_mutexattr_destroy, pthread_mutexattr_init):
779         (pthread_mutexattr_settype, pthread_mutex_trylock):
780         New static inline functions, if there's no system <pthread.h>.
781         (pthread_spinlock_t, pthread_spin_init, pthread_spin_destroy):
782         (pthread_spin_lock, pthread_spin_trylock, pthread_spin_unlock):
783         Approximate with mutexes if the system lacks spinlocks, as in
784         MacOS.
785         * m4/pthread.m4 (gl_PTHREAD_CHECK): Require gl_PTHREAD_DEFAULTS.
786         Add gl_CHECK_NEXT_HEADERS for pthread.h, and support the usual
787         @@-style.  Check for spinlocks separately.
788         (gl_PTHREAD_DEFAULTS): New macro.
789         * modules/pthread: Redo to use a more typical style for in.h files.
790
791 2010-09-21  Eric Blake  <eblake@redhat.com>
792
793         net_if: enhance tests
794         * tests/test-net_if.c (main): Move signature checks earlier.
795         Print failures to stderr.
796         * doc/posix-functions/if_freenameindex.texi (if_freenameindex):
797         Document the bug that we do not yet fix.
798
799 2010-09-21  Reuben Thomas  <rrt@sc3d.org>
800
801         * doc/gnulib.texi (Out of memory handling): Rewrite section to be
802         about gnulib, not GSS.
803
804 2010-09-21  Reuben Thomas  <rrt@sc3d.org>
805
806         * build-aux/pmccabe2html: Look for sources in src/ instead of lib/.
807         * build-aux/pmccabe2html: Set cut_dir properly, and add mode line
808         for Emacs.
809         * build-aux/pmccabe2html: Make Makefile.am example code more
810         cut-and-paste friendly.
811
812 2010-09-21  Simon Josefsson  <simon@josefsson.org>
813
814         * tests/test-net_if.c: New file.
815         * modules/net_if-tests: New file.
816
817 2010-09-20  Paul Eggert  <eggert@cs.ucla.edu>
818
819         pthread: add pthread_spin_destroy
820         * lib/pthread.in.h (pthread_spin_destroy): New function.
821
822 2010-09-19  Bruno Haible  <bruno@clisp.org>
823
824         gnulib-tool: Fix --help output.
825         * gnulib-tool (func_usage): Fix help message.
826         Reported by Reuben Thomas <rrt@sc3d.org>.
827
828 2010-09-18  Jim Meyering  <meyering@redhat.com>
829
830         maint.mk: avoid unexpanded \n in two diagnostics
831         * top/maint.mk (sc_prohibit_always_true_header_tests):
832         Don't use a literal \n in a halt=... assignment.  It would not be
833         expanded, and the two \n bytes would appear in the diagnostic output
834         rather than the desired newline.  Use halt=$$(printf ... instead.
835         (sc_vulnerable_makefile_CVE-2009-4029): Likewise.
836
837 2010-09-18  Bruno Haible  <bruno@clisp.org>
838
839         netinet_in: Doc tweak.
840         * doc/posix-headers/netinet_in.texi: Mention an affected platform.
841         Reported by Mats Erik Andersson <mats.andersson@gisladisker.se>.
842
843 2010-09-18  Jim Meyering  <meyering@redhat.com>
844
845         init.sh: correct an outdated comment
846         * tests/init.sh (create_exe_shims_):  s/function/alias/
847
848         init.sh: don't let an ephemeral "*.exe" make us skip all dir entries
849         * tests/init.sh (find_exe_basenames_): Don't give up on a directory if
850         a file named "*.exe" is removed between the glob expansion and the
851         processing of that oddly named file.
852
853 2010-09-17  Eric Blake  <eblake@redhat.com>
854
855         mirbsd: add some more support
856         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): MirBSD is
857         in BSD family.
858         * m4/gc-random.m4 (gl_GC_RANDOM): MirBSD supports same random
859         devices as OpenBSD.
860         * m4/host-os.m4 (mirbsd): Add MirBSD.
861
862         tests: fix unportable assumption on sys/wait.h
863         * tests/test-sys_wait.c (main): Relax test.
864         * tests/test-stdlib.c (main): Likewise.
865
866         init.sh: accomodate directory with no .exes
867         * tests/init.sh: Accomodate directory containing only scripts.
868
869         tests: avoid compiler warning
870         * tests/test-stdlib.c (main): Use the variable.
871
872         fdutimens, fdutimensat: update signature, again
873         * lib/utimens.h (gl_futimens): Delete, and move signature...
874         (fdutimens): ...here.
875         (fdutimensat): Rearrange signature.
876         (lutimensat): Rename variable for clarity.
877         * lib/fdutimensat.c (fdutimensat): Update signature.
878         * lib/utimens.c (fdutimens): Likewise.
879         (gl_futimens): Delete.
880         (utimens, lutimens): Update callers.
881         * lib/futimens.c (futimens): Likewise.
882         * tests/test-fdutimensat.c: Likewise.
883         * tests/test-utimens.c: Likewise.
884         * tests/test-futimens.h: Update comment.
885         * NEWS: Mention this.
886         Suggested by Paul Eggert.
887
888 2010-09-17  Bruno Haible  <bruno@clisp.org>
889
890         Take over the maintenance of some older macros from Autoconf.
891         * m4/error.m4 (AC_FUNC_ERROR_AT_LINE): New macro, from GNU Autoconf.
892         * m4/lstat.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): New macro, from
893         GNU Autoconf.
894         * m4/memcmp.m4 (AC_FUNC_MEMCMP): New macro, from GNU Autoconf.
895         * m4/mktime.m4 (AC_FUNC_MKTIME): Change comment.
896
897 2010-09-17  Eric Blake  <eblake@redhat.com>
898
899         fdutimensat: drop atflag validation
900         * lib/fdutimensat.c (fdutimensat): Allow AT_SYMLINK_NOFOLLOW even
901         with valid fd, to close a race scenario where futimens is
902         unsupported and FILE was replaced by a symlink.
903         * tests/test-fdutimensat.c (do_fdutimens, main): Adjust test
904         accordingly.
905         Suggested by Paul Eggert.
906
907 2010-09-16  Bruno Haible  <bruno@clisp.org>
908
909         unlockpt: Fix declaration within GNULIB_POSIXCHECK.
910         * lib/stdlib.in.h (unlockpt): Fix warning declaration.
911
912 2010-09-16  Bruno Haible  <bruno@clisp.org>
913
914         login_tty: Fix detection of function on FreeBSD, OpenBSD, NetBSD.
915         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): Augment LIBS while checking whether
916         login_tty exists.
917         Reported by Mats Erik Andersson <mats.andersson@gisladisker.se>.
918
919 2010-09-16  Bruno Haible  <bruno@clisp.org>
920
921         login_tty: Make the replacement code work on BSD systems.
922         * lib/login_tty.c: Include <sys/ioctl.h>.
923         (login_tty): Use ioctl TIOCSCTTY when available.
924         * modules/login_tty (Depends-on): Add sys_ioctl.
925         Reported by Mats Erik Andersson <mats.andersson@gisladisker.se>.
926
927 2010-09-16  Bruno Haible  <bruno@clisp.org>
928
929         login_tty: Stricter unit test.
930         * modules/login_tty-tests (Depends-on): Add tcgetsid.
931         * tests/test-login_tty.c (main): Also check the results of tcgetpgrp()
932         and tcgetsid() after login_tty.
933         Reported by Mats Erik Andersson <mats.andersson@gisladisker.se>.
934
935 2010-09-16  Bruno Haible  <bruno@clisp.org>
936
937         New module 'tcgetsid'.
938         * lib/tcgetsid.c: New file.
939         * m4/tcgetsid.m4: New file.
940         * modules/tcgetsid: New file.
941         * modules/termios (Depends-on): Add c++defs, warn-on-use.
942         (Makefile.am): Ensure c++defs.h, warn-on-use.h get included. Substitute
943         GNULIB_TCGETSID, HAVE_TCGETSID.
944         * lib/termios.in.h: Include <sys/types.h>.
945         (tcgetsid): New declaration.
946         * m4/termios_h.m4 (gl_TERMIOS_H): Check whether tcgetsid is declared.
947         (gl_TERMIOS_H_DEFAULTS): Initialize GNULIB_TCGETSID, HAVE_TCGETSID.
948         * doc/posix-functions/tcgetsid.texi: Mention the new module.
949         * tests/test-termios-c++.cc: Check GNULIB_NAMESPACE::tcgetsid.
950
951 2010-09-16  Bruno Haible  <bruno@clisp.org>
952
953         Tests for module 'termios'.
954         * modules/termios-c++-tests: New file.
955         * modules/termios-tests: New file.
956         * tests/test-termios-c++.cc: New file.
957         * tests/test-termios.c: New file.
958
959         New module 'termios'.
960         * modules/termios: New file.
961         * lib/termios.in.h: New file.
962         * m4/termios_h.m4: New file.
963         * doc/posix-headers/termios.texi: Mention the new module.
964
965 2010-09-16  Eric Blake  <eblake@redhat.com>
966
967         fdutimensat: add an atflag parameter
968         * lib/fdutimensat.c (fdutimensat): Add new parameter.
969         * lib/utimens.h (fdutimensat): Update prototype.
970         * tests/test-fdutimensat.c: Adjust test to match.
971         * NEWS: Document the change.
972         Suggested by Paul Eggert.
973
974 2010-09-16  Bruno Haible  <bruno@clisp.org>
975
976         Fix typos in comments.
977         * lib/striconveh.h: Fix typo in comment.
978         * lib/login_tty.c (login_tty): Likewise.
979
980 2010-09-15  Bruno Haible  <bruno@clisp.org>
981
982         stdlib: clarify MirBSD WEXITSTATUS bug
983         * lib/stdlib.in.h: Clarify the MirBSD bug regarding WEXITSTATUS.
984         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
985
986 2010-09-15  Eric Blake  <eblake@redhat.com>
987
988         stdlib: work around MirBSD WEXITSTATUS bug
989         * lib/stdlib.in.h (includes): Guarantee WEXITSTATUS.
990         * modules/stdlib (Depends-on): Add sys_wait.
991         * tests/test-sys_wait.c (main): Enhance test.
992         * tests/test-stdlib.c (main): Likewise.
993         * doc/posix-headers/stdlib.texi (stdlib.h): Document the bug.
994
995         docs: mention MacOS issue with WEXITSTATUS(constant)
996         * doc/posix-headers/sys_wait.texi (sys/wait.h): Document the
997         issue.
998         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
999
1000         strnlen: add tests
1001         * modules/strnlen-tests: New file.
1002         * tests/test-strnlen.c: Likewise.
1003
1004 2010-09-14  Bruno Haible  <bruno@clisp.org>
1005
1006         unistr/base: Avoid link errors when module 'libunistring' is also used.
1007         * lib/unistr.in.h (u8_mbtouc_unsafe, u16_mbtouc_unsafe,
1008         u32_mbtouc_unsafe, u8_mbtouc, u16_mbtouc, u32_mbtouc, u8_mbtoucr,
1009         u16_mbtoucr, u32_mbtoucr, u8_uctomb_aux, u16_uctomb_aux, u32_uctomb):
1010         Declare also when HAVE_LIBUNISTRING is set.
1011         Reported by Pádraig Brady <P@draigbrady.com>.
1012
1013 2010-09-14  Eric Blake  <eblake@redhat.com>
1014
1015         test-rawmemchr: make more robust
1016         * modules/rawmemchr-tests (Files): Add zerosize-ptr.h, mmap-anon.m4.
1017         (Depends-on, configure.ac): Add needed prerequisites to use it.
1018         * modules/memchr-tests (Files, Depends-on, configure.ac):
1019         Likewise, to avoid implicit reliance on memchr module prereqs.
1020         * tests/test-memchr.c (main): Ensure proper masking.
1021         * tests/test-rawmemchr.c (main): Likewise.  Detect oversized
1022         reads.
1023
1024         memchr: detect glibc Alpha bug
1025         Avoids http://sourceware.org/bugzilla/show_bug.cgi?id=12019.
1026         * m4/memchr.m4 (gl_FUNC_MEMCHR): Detect glibc 2.11.2 failure on
1027         Alpha.
1028         * doc/posix-functions/memchr.texi (memchr): Tweak wording.
1029         * tests/test-memchr.c (main): Enhance test.
1030         Reported by Nelson H. F. Beebe.
1031
1032 2010-09-13  Paul Eggert  <eggert@cs.ucla.edu>
1033
1034         fts, getcwd, glob: audit for dirfd returning -1
1035         * lib/fts.c (opendir): Remove #define; no longer used.
1036         (opendirat): New arg PDIR_FD.  All callers changed.
1037         (fts_build, _opendir2): Use new opendirat to avoid the need for
1038         dirfd, or for checking whether dirfd returns a negative value.
1039         Don't use opendir; always use openat followed by fdopendir.
1040         * lib/getcwd.c (__getcwd): Don't reset fd; fdopendir no longer clobbers
1041         it.
1042         * lib/glob.c (link_exists_p): Add comment explaining why dirfd never
1043         returns -1 here.
1044         * modules/fts (Depends-on): Remove dirfd.
1045         * modules/getcwd (Depends-on): Likewise.
1046
1047 2010-09-13  Eric Blake  <eblake@redhat.com>
1048
1049         float: fix broken MirBSD header
1050         * m4/float_h.m4 (gl_FLOAT_H): MirBSD copied OpenBSD's bug.
1051         * doc/posix-headers/float.texi (float.h): Document it.
1052
1053 2010-09-13  Paul Eggert  <eggert@cs.ucla.edu>
1054
1055         fts: use O_NOFOLLOW to avoid race condition when opening a directory
1056         * lib/fts.c (opendirat): New arg extra_flags.
1057         (__opendir2): Use it to avoid following symlinks when opening
1058         a directory, if symlinks are not supposed to be followed.  See
1059         <http://lists.gnu.org/archive/html/bug-gnulib/2010-09/msg00213.html>.
1060
1061         fdopendir: preserve argument fd before returning
1062         * lib/fdopendir.c: Adjust comments to say POSIX, not Solaris.
1063         (fdopendir_with_dup, fd_clone_opendir): New static functions.
1064         (fdopendir): Use them, arranging for FD to be open to the same
1065         directory that it was when it started.  (It might be temporarily
1066         closed while fdopendir is running, so this not thread- or
1067         signal-safe.)  Be careful to do the right thing even when file
1068         descriptors are scarce and dup fails with errno == EMFILE.  See
1069         <http://lists.gnu.org/archive/html/bug-gnulib/2010-09/msg00208.html>.
1070
1071 2010-09-10  Paolo Bonzini  <bonzini@gnu.org>
1072
1073         regex: Pass the system regex if its only problem is 32-bit regoff_t.
1074         * NEWS: Document change.
1075         * m4/regex.m4: Disable test for regoff_t size.
1076
1077 2010-09-13  Jim Meyering  <meyering@redhat.com>
1078
1079         fts: don't operate on an invalid file descriptor after failed dup
1080         * lib/fts.c (fts_build): Don't call set_cloexec_flag on a
1081         negative file descriptor.
1082
1083 2010-09-12  Paul Eggert  <eggert@cs.ucla.edu>
1084
1085         savedir: add streamsavedir, deprecate fdsavedir
1086         * NEWS: Mention deprecation of fdsavedir.
1087         * lib/savedir.c (streamsavedir): New extern function, whose name
1088         ends in "savedir" to be consistent with the others.  This differs
1089         from savedirstream in that it doesn't close its argument.  The
1090         next version of GNU tar will use this instead of fdsavedir, to
1091         avoid some race conditions and conserve file descriptors.
1092         (savedirstream): Reimplement as a wrapper around streamsavedir.
1093         (fdsavedir): Add a comment deprecating this function.  As far as
1094         I know, only GNU tar used it, and GNU tar doesn't need it any more.
1095         * lib/savedir.h (streamsavedir): New decl.
1096         (fdsavedir): Add a comment deprecating this.
1097
1098 2010-09-10  Bruno Haible  <bruno@clisp.org>
1099
1100         langinfo: Fix last commit.
1101         * m4/langinfo_h.m4 (gl_LANGINFO_H): Initialize
1102         HAVE_LANGINFO_T_FMT_AMPM, HAVE_LANGINFO_YESEXPR.
1103         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
1104
1105 2010-09-10  Bruno Haible  <bruno@clisp.org>
1106
1107         relocatable-prog-wrapper: Fix compilation failure due to O_EXEC.
1108         * lib/progreloc.c (O_EXEC): Define fallback.
1109
1110 2010-09-10  Paul Eggert  <eggert@cs.ucla.edu>
1111
1112         fcntl-h: define O_CLOEXEC and O_EXEC if not defined; use new defines
1113         * NEWS: Document recent changes to fcntl-h.
1114         * doc/posix-headers/fcntl.texi (fcntl.h): Document that
1115         O_CLOEXEC is now defined to 0 if it is not defined, like other flags.
1116         Also, O_EXEC is now defined to be O_RDONLY if O_EXEC is not defined.
1117         Similarly for O_SEARCH; this last was already true, but not documented.
1118         * lib/fcntl.in.h (O_CLOEXEC): Define to 0 if not defined.
1119         * lib/dup-safer-flag.c (O_CLOEXEC): Remove now-useless #define.
1120         * lib/dup3.c, lib/pipe2.c, tests/test-dup-safer.c, tests/test-fcntl.c:
1121         Likewise.
1122         * lib/popen-safer.c (open_noinherit): Check whether O_CLOEXEC
1123         is zero, not whether it is defined.
1124         * tests/test-dup3.c, tests/test-pipe2.c (main): Likewise.
1125         * lib/progreloc.c (find_executable): Use O_EXEC rather than O_RDONLY.
1126         * lib/open.c (open): Check for O_SEARCH as well as for O_RDONLY.
1127
1128 2010-09-10  Bruno Haible  <bruno@clisp.org>
1129
1130         langinfo, nl_langinfo: Fix for IRIX 5.3.
1131         * m4/langinfo_h.m4 (gl_LANGINFO_H): Test whether langinfo.h defines
1132         T_FMT_AMPM, YESEXPR. Set HAVE_LANGINFO_T_FMT_AMPM,
1133         HAVE_LANGINFO_YESEXPR.
1134         * modules/langinfo (Makefile.am): Substitute HAVE_LANGINFO_T_FMT_AMPM,
1135         HAVE_LANGINFO_YESEXPR.
1136         * lib/langinfo.in.h (T_FMT_AMPM, GNULIB_defined_T_FMT_AMPM): Define if
1137         HAVE_LANGINFO_T_FMT_AMPM is 0.
1138         (YESEXPR, NOEXPR, GNULIB_defined_YESEXPR): Define if
1139         HAVE_LANGINFO_YESEXPR is 0.
1140         * lib/nl_langinfo.c (rpl_nl_langinfo): Handle also T_FMT_AMPM, YESEXPR,
1141         NOEXPR.
1142         * doc/posix-headers/langinfo.texi: Mention the IRIX 5.3 problem.
1143         * doc/posix-functions/nl_langinfo.texi: Likewise.
1144         Reported by Eric Blake.
1145
1146 2010-09-10  Bruno Haible  <bruno@clisp.org>
1147
1148         pty, readutmp: Fix for FreeBSD 8.0 and OpenBSD 4.6.
1149         * doc/glibc-functions/login_tty.texi: Mention the include file problem
1150         on FreeBSD 8.0 and OpenBSD 4.6.
1151         * lib/pty.in.h: Include <sys/types.h> before <libutil.h>.
1152         * m4/pty_h.m4 (gl_PTY_H): Likewise.
1153         * m4/pty.m4 (gl_FUNC_FORKPTY, gl_FUNC_OPENPTY): Likewise.
1154         * m4/readutmp.m4 (gl_READUTMP): Include <sys/types.h> before <utmp.h>.
1155         Invoke AC_INCLUDES_DEFAULT instead of using the undocumented variable
1156         ac_includes_default.
1157         Reported by Mats Erik Andersson <mats.andersson@gisladisker.se>.
1158
1159 2010-09-09  Eric Blake  <eblake@redhat.com>
1160
1161         strsignal: work around NetBSD bug
1162         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check in <unistd.h>.
1163         * lib/string.in.h (includes): Likewise.
1164         * doc/posix-functions/strsignal.texi (strsignal): Document the
1165         bug.
1166         Reported by Nelson H. F. Beebe.
1167
1168         gnulib-tool: work with NetBSD /bin/sh
1169         * gnulib-tool (func_cache_var, func_cache_lookup_module)
1170         (func_get_description, func_get_comment, func_get_status)
1171         (func_get_notice, func_get_applicability, func_get_filelist)
1172         (func_get_dependencies, func_get_autoconf_early_snippet)
1173         (func_get_autoconf_snippet, func_get_automake_snippet)
1174         (func_get_include_directive, func_get_link_directive)
1175         (func_get_license, func_get_maintainer, func_import): Avoid
1176         shell syntax errors from parsing syntax extensions.
1177
1178 2010-09-09  Bruno Haible  <bruno@clisp.org>
1179
1180         gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
1181         * gnulib-tool: Don't fiddle with file descriptors 0, 1, 2. Instead, use
1182         a reliable way to determine whether the 'alias' command works.
1183
1184 2010-09-08  Jim Meyering  <meyering@redhat.com>
1185
1186         init.sh: penalize a set-x-impaired shell; don't disqualify it
1187         * tests/init.sh: Too many shells corrupt application stderr when
1188         you set -x, so we can't afford to disqualify them, since at least
1189         on Irix-6.5, that would disqualify all bourne shells.
1190         Instead, use a two-pass approach.
1191         On the first pass, try to find a shell that meets the stricter
1192         condition that set -x does not corrupt stderr.
1193         If no shell meets the stricter condition, retest each candidate
1194         shell, but without that extra condition.  Finally, when
1195         VERBOSE=yes is requested and set -x might cause trouble, simply
1196         issue a warning and refrain from enabling debug output.
1197
1198 2010-09-08  Eric Blake  <eblake@redhat.com>
1199
1200         unsetenv: fix OpenBSD bug
1201         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for OpenBSD bug.
1202         * doc/posix-functions/unsetenv.texi (unsetenv): Update
1203         documentation.
1204         Reported by Jim Meyering.
1205
1206         strtod: work around IRIX 6.5 bug
1207         * lib/strtod.c (strtod): Reparse number on shorter string if
1208         exponent parse was invalid.
1209         * tests/test-strtod.c (main): Add check for "0x1p 2".
1210         Reported by Tom G. Christensen.
1211
1212         getopt: optimize previous patch
1213         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Correctly check for
1214         empty variable.  Speed up awk script.
1215         Reported by Paolo Bonzini.
1216
1217 2010-09-08  Jim Meyering  <meyering@redhat.com>
1218
1219         test.sh: disqualify shells for which set -x corrupts stderr
1220         * tests/init.sh: Add a test to disqualify /bin/sh from SunOS 5.11
1221         and OpenBSD 4.7.  They make it so with "set -x", environment settings
1222         appear in stderr output.  For example, this command:
1223             /bin/sh -c 'set -x; P=1 true 2> err' 2>/dev/null; cat err
1224         prints "P=1" on those two systems:
1225
1226 2010-09-08  Bruno Haible  <bruno@clisp.org>
1227
1228         gnulib-tool: Avoid stderr output on IRIX related to 'alias', 'unalias'.
1229         * gnulib-tool: Use stderr redirection around the 'alias' and 'unalias'
1230         commands, because some shells ignore redirections when there is an
1231         error in the command lookup.
1232         Reported by Eric Blake.
1233
1234 2010-09-07  Reuben Thomas  <rrt@sc3d.org>
1235
1236         * lib/regex.h: Fix a mention of `regex_compile' (should be
1237         `re_compile_pattern').
1238         Correct and clarify documentation for RE_CONTEXT_INVALID_DUP.
1239         (re_set_registers): Correct name of parameter in comment.
1240
1241         * doc/regex.texi: Add documentation for missing syntax flags.
1242         Remove commented-out documentation of defunct syntax option
1243         RE_NO_EMPTY_ALTS.
1244         Correct name of RE_CHAR_CLASSES in one incorrect occurrence.
1245         Add documentation of re_set_registers.
1246         Document trick to re-use a pattern buffer by setting fastmap manually.
1247         Update documentation of struct re_pattern_buffer per public members.
1248         Uncomment documentation of equivalence class operators and
1249         collating symbol operators, since they are now implemented,
1250         Explain leftmost-longest matching in relation to alternatives.
1251         Tidy documentation of substring matching.
1252         Remove POSIX documentation, which is done better in
1253         glibc, and refer the reader there. Keep BSD API documentation, as
1254         that is not readily available elsewhere.
1255
1256 2010-09-07  Eric Blake  <eblake@redhat.com>
1257
1258         getopt: handle POSIXLY_CORRECT set but not exported
1259         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Restore pre-existing
1260         export state of POSIXLY_CORRECT, due to bash set -o posix.
1261         Reported by Dustin J. Mitchell.
1262
1263 2010-09-05  Bruno Haible  <bruno@clisp.org>
1264
1265         gnulib-tool: Highlight the changed options.
1266         * gnulib-tool (func_usage): Display the --import, --add-import,
1267         --remove-import explanations in bold font.
1268
1269 2010-09-06  Karl Berry  <karl@gnu.org>
1270
1271         * doc/gnulib-tool.texi (Modified imports): doc tweaks.
1272
1273 2010-09-05  Bruno Haible  <bruno@clisp.org>
1274
1275         uniwidth/width: Update comment.
1276         * lib/uniwidth/width.c (uc_width): Update comment for Unicode >= 3.1.
1277         Reported by Emanuele Giaquinta <emanuele.giaquinta@gmail.com>.
1278
1279 2010-09-05  Bruno Haible  <bruno@clisp.org>
1280
1281         isinf, isnan: Relax license.
1282         * modules/isinf (License): Change from GPL to LGPL, with consent from
1283         Ben Pfaff.
1284         * modules/isnan (License): Likewise.
1285         Requested by Ludovic Courtès.
1286
1287 2010-09-04  Bruno Haible  <bruno@clisp.org>
1288
1289         gnulib-tool: Help migration from --import to --add-import or --update.
1290         * gnulib-tool: Emit a verbose error message when --import is used
1291         without any module name.
1292
1293 2010-09-04  Bruno Haible  <bruno@clisp.org>
1294
1295         Update doc about gnulib-tool.
1296         * doc/gnulib-tool.texi (VCS Issues): Explain 'gnulib-tool --import' vs.
1297         'gnulib-tool --update' in more detail.
1298         Reported by Eric Blake.
1299
1300 2010-09-04  Bruno Haible  <bruno@clisp.org>
1301
1302         gnulib-tool: Change --import. New options --add/remove-import.
1303         * gnulib-tool: New options --add-import, --remove-import.
1304         (func_usage): Document them.
1305         (have_associative): Define always.
1306         (func_import): In import mode, don't merge the specified settings with
1307         the cached settings. Implement remove-import mode.
1308         * doc/gnulib-tool.texi (Modified imports): Mention the new options.
1309         Explain when to use them versus --import.
1310         (Simple update): Use --add-import instead of --import.
1311         * NEWS: Mention the change.
1312
1313 2010-09-04  Bruno Haible  <bruno@clisp.org>
1314
1315         * doc/gnulib-tool.texi (Initial import): Update paragraph about
1316         separate gnulib.mk.
1317
1318 2010-09-04  Bruno Haible  <bruno@clisp.org>
1319
1320         gnulib-tool: Don't talk about CVS any more.
1321         * gnulib-tool (func_usage, func_import): Write "version control"
1322         instead of CVS.
1323
1324 2010-09-04  Jim Meyering  <meyering@redhat.com>
1325
1326         maint.mk: avoid obscure sc_copyright_check failure in coreutils
1327         * top/maint.mk (v_etc_file): Prepend $(gnulib_dir)/, to avoid
1328         false positives (whose names may be ill-chosen) when searching
1329         non-VC'd files.  Otherwise, a file named "a b/lib/version-etc.c"
1330         would cause a false-positive.
1331
1332         avoid coreutils "make distcheck" failure
1333         Coreutils tests with an absolute build directory name that contains
1334         a space.  Not quoting this directory name caused a failure.
1335         * tests/test-vc-list-files-git.sh: Quote PATH dir name.
1336         * tests/test-vc-list-files-cvs.sh: Likewise.
1337
1338 2010-09-04  Bruno Haible  <bruno@clisp.org>
1339
1340         gnulib-tool: Avoid error when run in a package without Makefile.am.
1341         * gnulib-tool: When collecting the m4dirs in a package that does not
1342         have a Makefile.am, eliminate those directories that contain no
1343         gnulib-cache.m4. Fix expression that counts these directories.
1344
1345 2010-09-04  Bruno Haible  <bruno@clisp.org>
1346
1347         update-copyright test: Improve output when perl is missing or too old.
1348         * tests/test-update-copyright.sh: Move test of Perl version down after
1349         the test whether Perl exists. Provide an explanation relating Perl's
1350         error message to Automake's SKIP: message.
1351
1352 2010-09-04  Bruno Haible  <bruno@clisp.org>
1353
1354         Don't augment PATH in TESTS_ENVIRONMENT.
1355         * modules/update-copyright-tests (Makefile.am): In TESTS_ENVIRONMENT,
1356         set abs_aux_dir instead of augmenting PATH.
1357         * modules/vc-list-files-tests (Makefile.am): Likewise.
1358         * tests/test-update-copyright.sh: Augment PATH here.
1359         * tests/test-vc-list-files-cvs.sh: Augment PATH here, through
1360         path_prepend_.
1361         * tests/test-vc-list-files-git.sh: Likewise.
1362
1363 2010-09-04  Jim Meyering  <meyering@redhat.com>
1364
1365         tests: prohibit augmenting PATH via TESTS_ENVIRONMENT
1366         * Makefile (sc_prohibit_augmenting_PATH_via_TESTS_ENVIRONMENT): New rule.
1367
1368 2010-09-04  Bruno Haible  <bruno@clisp.org>
1369
1370         strdup: Fix compilation error in C++ mode.
1371         * lib/string.in.h (strdup): In C++ mode with GNULIB_NAMESPACE, undefine
1372         the macro.
1373
1374 2010-09-04  Bruno Haible  <bruno@clisp.org>
1375
1376         dirfd: Fix compilation error in C++ mode on MacOS X, *BSD, IRIX.
1377         * lib/dirent.in.h (dirfd): In C++ mode with GNULIB_NAMESPACE, turn the
1378         macro into a function.
1379         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
1380
1381 2010-09-04  Bruno Haible  <bruno@clisp.org>
1382
1383         Set PATH_SEPARATOR the same way autoconf does.
1384         * build-aux/relocatable.sh.in (func_find_curr_installdir): Determine
1385         the value of PATH_SEPARATOR the same way autoconf-generated configure
1386         scripts do.
1387         * m4/lib-ld.m4 (AC_LIB_PROG_LD): Likewise.
1388         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
1389
1390 2010-09-04  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
1391
1392         Set PATH_SEPARATOR the same way autoconf does.
1393         * gnulib-tool (func_gnulib_dir): Determine the value of PATH_SEPARATOR
1394         the same way autoconf-generated configure scripts do.
1395         * posix-modules: Likewise.
1396
1397 2010-09-02  Paul Eggert  <eggert@cs.ucla.edu>
1398
1399         hash: fix safe_hasher const typo
1400         * lib/hash.c (safe_hasher): Result is pointer, not pointer to
1401         const; otherwise, there is a type error later.
1402
1403 2010-09-02  Jim Meyering  <meyering@redhat.com>
1404
1405         test-update-copyright.sh: require perl 5.8.0
1406         * tests/test-update-copyright.sh: Require 5.8.0,
1407         which Tom G. Christensen has confirmed is adequate,
1408         while 5.6.1 is not.
1409
1410 2010-09-02  Eric Blake  <eblake@redhat.com>
1411
1412         tests: init.sh improvements for re-exec'ing with zsh
1413         * tests/init.sh: Borrow autoconf POSIX-mode sanitization.  Pass
1414         -vx through shell re-exec.
1415         Reported by Tom G. Christensen.
1416
1417         wctype: fix typo in previous commit
1418         * m4/wctype_h.m4 (gl_WCTYPE_H): Fix spelling.
1419         Reported by Ludovic Courtès.
1420
1421 2010-09-02  Jim Meyering  <meyering@redhat.com>
1422
1423         test-update-copyright.sh: skip test if Perl is too old
1424         * tests/test-update-copyright.sh: Exit 77 if Perl is too old.
1425         Reported by Tom G. Christensen.
1426
1427 2010-09-02  Bruno Haible  <bruno@clisp.org>
1428
1429         wctype: Avoid compilation error on IRIX 6.5.30.
1430         * lib/wctype.in.h (iswblank): Declare with a replacement if
1431         REPLACE_ISWBLANK is set.
1432         * m4/wctype_h.m4 (gl_WCTYPE_H): Check also whether iswblank is
1433         declared. Set REPLACE_ISWBLANK.
1434         * modules/wctype (Makefile.am): Substitute REPLACE_ISWBLANK.
1435         * doc/posix-functions/iswblank.texi: Mention the IRIX 6.5.30 problem.
1436         * doc/posix-headers/wctype.texi: Likewise.
1437         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
1438
1439 2010-09-01  Bruno Haible  <bruno@clisp.org>
1440
1441         New module 'socketlib'.
1442         * modules/socketlib: New file.
1443         * m4/socketlib.m4: New file, extracted from m4/sockets.m4.
1444         * m4/sockets.m4 (gl_SOCKETS): Require gl_SOCKETLIB.
1445         * modules/sockets (Depends-on): Add socketlib.
1446         Suggested by Sam Steingold <sds@gnu.org>.
1447
1448 2010-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1449
1450         fcntl-h, etc.: prefer O_SEARCH to O_RDONLY when applicable
1451
1452         POSIX 2008 specifies a new 'open' flag O_SEARCH, which can be used
1453         when one needs search access to a directory but not read access.
1454         On systems where it is available, it works in some cases where
1455         O_RDONLY does not, namely on directories that are searchable but
1456         not readable, and which need only to be searchable.  If O_SEARCH
1457         is not available, fall back to the traditional method of using
1458         O_RDONLY.
1459
1460         * lib/fcntl.in.h (O_SEARCH): #define to O_RDONLY if not defined.
1461         * lib/chdir-long.c (cdb_advance_fd): Use O_SEARCH, not O_RDONLY,
1462         when opening a directory that needs only to be searchable.
1463         * lib/chdir-safer.c (chdir_no_follow): Likewise.
1464         * lib/fts.c (diropen, fts_open, fd_ring_check): Likewise.
1465         * lib/openat-proc.c (openat_proc_name): Likewise.
1466         * lib/openat.c (openat_needs_fchdir): Likewise.
1467         * lib/save-cwd.c (save_cwd): Likewise.
1468         * lib/savewd.c (savewd_save, savewd_chdir): Likewise.
1469
1470 2010-08-28  Bruno Haible  <bruno@clisp.org>
1471
1472         New module 'host-cpu-c-abi'.
1473         * modules/host-cpu-c-abi: New file.
1474         * m4/host-cpu-c-abi.m4: New file, based on part of
1475         clisp/src/m4/general.m4.
1476         Requested by Sam Steingold <sds@gnu.org>.
1477
1478 2010-08-31  Eric Blake  <eblake@redhat.com>
1479         and Jim Meyering  <meyering@redhat.com>
1480
1481         hash: factor, and guard against misbehaving hasher function
1482         * lib/hash.c (safe_hasher): New function, to encapsulate the checking
1483         of table->hasher's return value.  Also protect against a hash value
1484         so large that adding it to table->bucket results in a NULL pointer.
1485         (hash_lookup, hash_get_next, hash_find_entry, transfer_entries):
1486         Use it in place of open-coded check-and-abort.
1487
1488 2010-08-30  Bruno Haible  <bruno@clisp.org>
1489
1490         hash: silence spurious clang warning
1491         * lib/hash.c (hash_get_next): Remove unnecessary test against NULL.
1492         Reported by Eric Blake.
1493
1494 2010-08-30  Eric Blake  <eblake@redhat.com>
1495
1496         strstr, memmem, strcasestr: avoid leaked shell message
1497         * m4/strstr.m4 (gl_FUNC_STRSTR): Avoid "Alarm clock" message from
1498         FreeBSD.
1499         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
1500         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
1501
1502         tests: silence clang warning
1503         * tests/test-malloca.c (do_allocation): Avoid dead store.
1504
1505 2010-08-29  Bruno Haible  <bruno@clisp.org>
1506
1507         gettext: Fix recent mistake.
1508         * m4/intl.m4 (gt_CHECK_DECL): Fix typo introduced on 2010-08-26.
1509
1510 2010-08-29  Bruno Haible  <bruno@clisp.org>
1511
1512         selinux-h: Offer a --without-selinux option.
1513         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): If
1514         --without-selinux was specified, skip all tests and define
1515         HAVE_SELINUX_SELINUX_H to 0.
1516         (gl_LIBSELINUX): Offer --without-selinux option. If it is specified,
1517         set LIB_SELINUX to empty.
1518         * m4/selinux-context-h.m4 (gl_HEADERS_SELINUX_CONTEXT_H): Require
1519         gl_LIBSELINUX. If --without-selinux was specified, replace
1520         selinux/context.h.
1521         Reported by Johan Hattne <johan.hattne@utsouthwestern.edu>.
1522
1523 2010-08-29  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1524             Bruno Haible  <bruno@clisp.org>
1525
1526         Make the module 'realloc-gnu' work again on AIX and OSF/1.
1527         * m4/realloc.m4 (gl_FUNC_REALLOC_GNU): Define HAVE_REALLOC_GNU instead
1528         of HAVE_REALLOC.
1529         * lib/realloc.c (NEED_REALLOC_GNU): Enable behaviour also when
1530         GNULIB_REALLOC_GNU && !HAVE_REALLOC_GNU.
1531         (SYSTEM_MALLOC_GLIBC_COMPATIBLE): Adjust definition.
1532         * modules/realloc-gnu (configure.ac): Use gl_MODULE_INDICATOR.
1533
1534 2010-08-29  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1535             Bruno Haible  <bruno@clisp.org>
1536
1537         Make the module 'calloc-gnu' work again on AIX and OSF/1.
1538         * m4/calloc.m4 (gl_FUNC_CALLOC_GNU): Define HAVE_CALLOC_GNU instead of
1539         HAVE_CALLOC.
1540         * lib/xmalloc.c: Update accordingly.
1541         * lib/calloc.c (NEED_CALLOC_GNU): Enable also when
1542         GNULIB_CALLOC_GNU && !HAVE_CALLOC_GNU.
1543         * modules/calloc-gnu (configure.ac): Invoke gl_MODULE_INDICATOR.
1544
1545 2010-08-29  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1546             Bruno Haible  <bruno@clisp.org>
1547
1548         Make the module 'malloc-gnu' work again on AIX and OSF/1.
1549         * m4/malloc.m4 (gl_FUNC_MALLOC_GNU): Define HAVE_MALLOC_GNU instead of
1550         HAVE_MALLOC.
1551         * lib/malloc.c (NEED_MALLOC_GNU): Enable behaviour also when
1552         GNULIB_MALLOC_GNU && !HAVE_MALLOC_GNU.
1553         * modules/malloc-gnu (configure.ac): Use gl_MODULE_INDICATOR.
1554
1555 2010-08-29  Bruno Haible  <bruno@clisp.org>
1556
1557         Update modules list.
1558         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
1559         malloc-gnu, calloc-gnu, realloc-gnu. Remove malloc, calloc, realloc.
1560         (String handling <string.h>): Add astrxfrm.
1561         (File system functions): Add readlinkat.
1562
1563 2010-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1564
1565         Tests for module 'realloc-gnu'.
1566         * modules/realloc-gnu-tests: New file.
1567         * tests/test-realloc-gnu.c: New file.
1568
1569         Tests for module 'calloc-gnu'.
1570         * modules/calloc-gnu-tests: New file.
1571         * tests/test-calloc-gnu.c: New file.
1572
1573         Tests for module 'malloc-gnu'.
1574         * modules/malloc-gnu-tests: New file.
1575         * tests/test-malloc-gnu.c: New file.
1576
1577 2010-08-28  Bruno Haible  <bruno@clisp.org>
1578
1579         Rename module 'realloc' -> 'realloc-gnu'.
1580         * modules/realloc-gnu: New file, copied from modules/realloc.
1581         * modules/realloc: Convert to a redirection to 'realloc-gnu'. Mark as
1582         obsolete.
1583         * modules/mgetgroups (Depends-on): Update.
1584         * doc/posix-functions/realloc.texi: Update.
1585         * NEWS: Mention the change.
1586
1587         Rename module 'calloc' -> 'calloc-gnu'.
1588         * modules/calloc-gnu: New file, copied from modules/calloc.
1589         * modules/calloc: Convert to a redirection to 'calloc-gnu'. Mark as
1590         obsolete.
1591         * doc/posix-functions/calloc.texi: Update.
1592         * NEWS: Mention the change.
1593
1594         Rename module 'malloc' -> 'malloc-gnu'.
1595         * modules/malloc-gnu: New file, copied from modules/malloc.
1596         * modules/malloc: Convert to a redirection to 'malloc-gnu'. Mark as
1597         obsolete.
1598         * modules/argp (Depends-on): Update.
1599         * modules/regex (Depends-on): Update.
1600         * doc/posix-functions/malloc.texi: Update.
1601         * NEWS: Mention the change.
1602
1603 2010-08-28  Eric Blake  <eblake@redhat.com>
1604
1605         pread, pwrite: add missing dependency
1606         * modules/pread (Depends-on): Add extensions.
1607         * modules/pwrite (Depends-on): Likewise.
1608
1609 2010-08-28  Bruno Haible  <bruno@clisp.org>
1610
1611         unistr/u*-strchr: Fix tests dependencies.
1612         * modules/unistr/u8-strchr-tests (Depends-on): Add unistr/u32-to-u8.
1613         * modules/unistr/u16-strchr-tests (Depends-on): Add unistr/u32-to-u16.
1614         Reported by Ian Beckwith <ianb@erislabs.net>.
1615
1616 2010-08-28  Bruno Haible  <bruno@clisp.org>
1617
1618         read-file: Don't occupy too much unused memory.
1619         * lib/read-file.c (fread_file): Shrink the buffer at the end.
1620
1621 2010-08-28  Giuseppe Scrivano  <gscrivano@gnu.org>
1622             Eric Blake  <eblake@redhat.com>
1623             Bruno Haible  <bruno@clisp.org>
1624
1625         read-file: Avoid memory reallocations with regular files.
1626         * lib/read-file.c: Include <sys/stat.h>, <stdio.h>, <stdint.h>.
1627         (fread_file): With regular files, use the remaining length as the
1628         initial buffer size.  Check against overflow.
1629         * modules/read-file (Depends-on): Add ftello, malloc-posix, stdint,
1630         sys_stat.
1631
1632 2010-08-28  Bruno Haible  <bruno@clisp.org>
1633
1634         ftello: Relax license.
1635         * modules/ftello (License): Relax to LGPLv2+.
1636         Reported by Eric Blake.
1637
1638 2010-08-28  Bruno Haible  <bruno@clisp.org>
1639
1640         Avoid relocwrapper link errors due to gnulib replacement functions.
1641         * lib/canonicalize-lgpl.c [IN_RELOCWRAPPER]: Use the system's getcwd
1642         function.
1643         Reported by Ben Pfaff <blp@cs.stanford.edu>.
1644
1645 2010-08-28  Bruno Haible  <bruno@clisp.org>
1646
1647         Prefer using AC_DEFUN_ONCE over AC_DEFUN in projects with gnulib.
1648         * m4/iconv.m4 (gl_iconv_AC_DEFUN): Use AC_DEFUN_ONCE if gl_00GNULIB is
1649         defined.
1650         * m4/libunistring.m4 (gl_libunistring_AC_DEFUN): Likewise.
1651         Suggested by Eric Blake.
1652
1653 2010-08-28  Bruno Haible  <bruno@clisp.org>
1654
1655         sys_socket, netdb: Ensure socklen_t gets defined.
1656         * modules/sys_socket (Depends-on): Add socklen.
1657         * modules/netdb (Depends-on): Likewise.
1658         * modules/getaddrinfo (Depends-on): Remove socklen.
1659         * modules/getsockopt (Depends-on): Likewise.
1660         * modules/setsockopt (Depends-on): Likewise.
1661         * tests/test-sys_socket.c: Check that socklen_t is defined.
1662         * tests/test-netdb.c: Likewise.
1663         * m4/socklen.m4: Update comments.
1664         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
1665
1666 2010-08-27  Eric Blake  <eblake@redhat.com>
1667
1668         login_tty: add missing dependency
1669         * modules/login_tty (Depends-on): Add pty.
1670
1671 2010-08-26  Eric Blake  <eblake@redhat.com>
1672
1673         lib-symbol-versions: fix m4 quoting
1674         * m4/ld-version-script.m4 (gl_LD_VERSION_SCRIPT): Use correct
1675         format for AC_LINK_IFELSE.
1676
1677         glob: fix compile test
1678         * m4/glob.m4 (gl_GLOB): Use correct format for AC_COMPILE_IFELSE.
1679
1680         btowc: fix missing file
1681         * modules/btowc (Files): Also ship locale-fr.m4.
1682
1683         lseek: fix link test
1684         * m4/lseek.m4 (gl_FUNC_LSEEK): Use correct format for
1685         AC_LINK_IFELSE.
1686
1687         include_next: silence autoconf 2.68 warning
1688         * m4/include_next.m4 (gl_INCLUDE_NEXT): Mark this use of
1689         AC_COMPILE_IFELSE as special.
1690         (AC_LANG_DEFINES_PROVIDED): Provide dummy implementation for
1691         autoconf < 2.68.
1692
1693         acl: fix compilation test
1694         * m4/acl.m4 (gl_FUNC_ALL): Use correct format for
1695         AC_COMPILE_IFELSE.
1696
1697 2010-08-26  Bruno Haible  <bruno@clisp.org>
1698
1699         Modernize AC_TRY_RUN invocations.
1700         * m4/btowc.m4 (gl_FUNC_BTOWC): Use AC_RUN_IFELSE instead of AC_TRY_RUN.
1701         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Likewise.
1702         * m4/exponentd.m4 (gl_DOUBLE_EXPONENT_LOCATION): Likewise.
1703         * m4/exponentf.m4 (gl_FLOAT_EXPONENT_LOCATION): Likewise.
1704         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Likewise.
1705         * m4/fopen.m4 (gl_FUNC_FOPEN): Likewise.
1706         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Likewise.
1707         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
1708         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
1709         * m4/iconv.m4 (AM_ICONV_LINK): Likewise.
1710         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN_UTF): Likewise.
1711         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
1712         * m4/isnanf.m4 (gl_ISNANF_WORKS): Likewise.
1713         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
1714         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Likewise.
1715         * m4/mbrlen.m4 (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL,
1716         gl_MBRLEN_NUL_RETVAL): Likewise.
1717         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
1718         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
1719         Likewise.
1720         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
1721         * m4/open.m4 (gl_FUNC_OPEN): Likewise.
1722         * m4/printf.m4 (gl_PRINTF_SIZES_C99, gl_PRINTF_LONG_DOUBLE,
1723         gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE,
1724         gl_PRINTF_DIRECTIVE_A, gl_PRINTF_DIRECTIVE_F, gl_PRINTF_DIRECTIVE_N,
1725         gl_PRINTF_DIRECTIVE_LS, gl_PRINTF_POSITIONS, gl_PRINTF_FLAG_GROUPING,
1726         gl_PRINTF_FLAG_LEFTADJUST, gl_PRINTF_FLAG_ZERO, gl_PRINTF_PRECISION,
1727         gl_SNPRINTF_TRUNCATION_C99, gl_SNPRINTF_RETVAL_C99,
1728         gl_SNPRINTF_DIRECTIVE_N, gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99):
1729         Likewise.
1730         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
1731         * m4/signbit.m4 (gl_SIGNBIT, gl_FLOATTYPE_SIGN_LOCATION): Likewise.
1732         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
1733         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
1734         * m4/truncl.m4 (gl_FUNC_TRUNCL): Likewise.
1735         * m4/ttyname_r.m4 (gl_FUNC_TTYNAME_R): Likewise.
1736         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise.
1737         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION): Likewise.
1738         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
1739         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
1740
1741 2010-08-26  Bruno Haible  <bruno@clisp.org>
1742
1743         Modernize AC_TRY_LINK invocations.
1744         * m4/acosl.m4 (gl_FUNC_ACOSL): Use AC_LINK_IFELSE instead of
1745         AC_TRY_LINK.
1746         * m4/argp.m4 (gl_ARGP): Likewise.
1747         * m4/asinl.m4 (gl_FUNC_ASINL): Likewise.
1748         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
1749         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
1750         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
1751         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
1752         * m4/codeset.m4 (AM_LANGINFO_CODESET): Likewise.
1753         * m4/cosl.m4 (gl_FUNC_COSL): Likewise.
1754         * m4/expl.m4 (gl_FUNC_EXPL): Likewise.
1755         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
1756         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
1757         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
1758         * m4/frexp.m4 (gl_FUNC_FREXP, gl_CHECK_FREXP_NO_LIBM): Likewise.
1759         * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_CHECK_FREXPL_NO_LIBM): Likewise.
1760         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
1761         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
1762         * m4/hostent.m4 (gl_HOSTENT): Likewise.
1763         * m4/iconv.m4 (AM_ICONV_LINK): Likewise.
1764         * m4/intl.m4 (gt_INTL_SUBDIR_CORE): Likewise.
1765         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
1766         * m4/isnand.m4 (gl_HAVE_ISNAND_IN_LIBM, gl_HAVE_ISNAND_NO_LIBM):
1767         Likewise.
1768         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_HAVE_ISNANF_IN_LIBM):
1769         Likewise.
1770         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM):
1771         Likewise.
1772         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
1773         * m4/ldexpl.m4 (gl_FUNC_LDEXPL, gl_CHECK_LDEXPL_NO_LIBM): Likewise.
1774         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Likewise.
1775         * m4/logb.m4 (gl_FUNC_LOGB): Likewise.
1776         * m4/logl.m4 (gl_FUNC_LOGL): Likewise.
1777         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Likewise.
1778         * m4/servent.m4 (gl_SERVENT): Likewise.
1779         * m4/signbit.m4 (gl_SIGNBIT): Likewise.
1780         * m4/sinl.m4 (gl_FUNC_SINL): Likewise.
1781         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Likewise.
1782         * m4/tanl.m4 (gl_FUNC_TANL): Likewise.
1783         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
1784         * m4/trunc.m4 (gl_FUNC_TRUNC): Likewise.
1785         * m4/truncf.m4 (gl_FUNC_TRUNCF): Likewise.
1786         * m4/truncl.m4 (gl_FUNC_TRUNCL): Likewise.
1787         * modules/tsearch-tests (configure.ac): Likewise.
1788
1789 2010-08-26  Bruno Haible  <bruno@clisp.org>
1790
1791         Modernize AC_TRY_COMPILE invocations.
1792         * m4/environ.m4 (gt_CHECK_VAR_DECL): Use AC_COMPILE_IFELSE instead of
1793         AC_TRY_COMPILE.
1794         * m4/iconv.m4 (gl_iconv_AC_DEFUN): Likewise.
1795         * m4/intl.m4 (gt_CHECK_DECL): Likewise.
1796         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
1797         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
1798         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
1799         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
1800         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
1801         * m4/lock.m4 (gl_LOCK): Likewise.
1802         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): Likewise.
1803         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
1804         * m4/minmax.m4 (gl_MINMAX_IN_HEADER): Likewise.
1805         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
1806         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
1807         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Likewise.
1808         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
1809         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Likewise.
1810         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
1811         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
1812         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
1813         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
1814         * m4/libunistring.m4 (gl_LIBUNISTRING_CORE): Likewise. Remove
1815         extraneous semicolon.
1816
1817 2010-08-26  Jim Meyering  <meyering@redhat.com>
1818
1819         stat-time: relax license LGPL
1820         * modules/stat-time (License): Change from GPL to LGPL,
1821         with consent from all contributors, for use in libguile.
1822         Requested by Ludovic Courtès.
1823
1824 2010-08-26  Erik Faye-Lund  <kusmabite@gmail.com>
1825
1826         poll: return immediately on POLLHUP.
1827         * lib/poll.c (poll): Always set timeout before wait_timeout is
1828         computed.
1829
1830 2010-08-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1831
1832         Fix test-unlinkat, test-rmdir failure on AIX 5.3.
1833         * tests/test-rmdir.h (test_rmdir_func): Also accept EEXIST for
1834         rmdir ("dir/.//"), unlinkat.
1835
1836 2010-08-24  Paul Eggert  <eggert@cs.ucla.edu>
1837
1838         stdbool: avoid spurious failure with modern xlc
1839         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Resync with autoconf.
1840
1841 2010-08-24  Bruno Haible  <bruno@clisp.org>
1842
1843         getloadavg: simplify code
1844         * m4/getloadavg.m4 (gl_GETLOADAVG): Remove useless test of
1845         gl_have_func. Update comments.
1846
1847 2010-08-24  Eric Blake  <eblake@redhat.com>
1848
1849         getloadavg: don't define SVR4 on cygwin
1850         * m4/getloadavg.m4 (gl_GETLOADAVG): Sync with autoconf fix, to
1851         only define SVR4 when -lkvm is required.
1852         Reported by Yaakov Selkowitz.
1853
1854 2010-08-24  Bruno Haible  <bruno@clisp.org>
1855
1856         priv-set: fix comment
1857         * lib/priv-set.c (priv_set_restore): Fix typo in comment.
1858
1859 2010-08-23  Paul Eggert  <eggert@cs.ucla.edu>
1860
1861         priv-set: fix comments
1862         * lib/priv-set.c (priv_set_remove, priv_set_restore): Fix comments
1863         to match code, as suggested by David Bartley in:
1864         http://lists.gnu.org/archive/html/bug-tar/2010-08/msg00018.html
1865
1866 2010-08-23  Eric Blake  <eblake@redhat.com>
1867
1868         stdbool: avoid rejecting clang
1869         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Resync with autoconf.
1870         * tests/test-stdbool.c: Enable more tests if using the system
1871         <stdbool.h> instead of the gnulib replacement.
1872         (main): Move xlc bug test to a runtime test for all compilers.
1873         Reported by Anders Kaseorg.
1874
1875         argz: fix shell quoting issue
1876         * m4/argz.m4 (gl_FUNC_ARGZ): Allow for spaces in argument.
1877         Reported by Charles Wilson.
1878
1879 2010-08-22  Paolo Bonzini  <bonzini@gnu.org>
1880             Erik Faye-Lund <kusmabite@gmail.com>
1881
1882         poll, select: handle ERROR_BROKEN_PIPE.
1883         * lib/poll.c (win32_compute_revents): Return POLLHUP when
1884         PeekNamedPipe fails with ERROR_BROKEN_PIPE.
1885         * lib/select.c (win32_compute_revents): Do not mark a pipe
1886         as writeable if PeekNamedPipe fails with ERROR_BROKEN_PIPE.
1887
1888 2010-08-22  Giuseppe Scrivano  <gscrivano@gnu.org>
1889
1890         fts: allow compilation with C++
1891         * lib/fts_.h: Specify extern "C" linkage with C++.
1892
1893 2010-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1894
1895         Fix gnulib-tool sed script de-commentation for AIX sed.
1896         * gnulib-tool (sed_comments): Try indented comments, for AIX 5.3
1897         sed.
1898
1899 2010-08-17  Eric Blake  <eblake@redhat.com>
1900
1901         test-stddef: test for (some) offsetof bugs
1902         * tests/test-stddef.c: Enhance test to ensure correct type of
1903         offsetof.
1904         * doc/posix-headers/stddef.texi (stddef.h): Document a Solaris bug
1905         that we are not fixing at this time.
1906
1907 2010-08-15  Bruno Haible  <bruno@clisp.org>
1908
1909         stpncpy: Allow stpncpy to be defined as a macro.
1910         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Don't attempt to redeclare stpncpy
1911         if it's already correctly declared.
1912         * lib/string.in.h (stpncpy): Undefine before redefining.
1913         Reported by Jeremy Huddleston <jeremyhu@macports.org>.
1914
1915 2010-08-14  Bruno Haible  <bruno@clisp.org>
1916
1917         Rename module 'memxfrm' to 'amemxfrm'.
1918         * lib/amemxfrm.h: Renamed from lib/memxfrm.h.
1919         (amemxfrm): Renamed from memxfrm.
1920         * lib/amemxfrm.c: Renamed from lib/memxfrm.h. Include amemxfrm.h.
1921         (amemxfrm): Renamed from memxfrm.
1922         * modules/amemxfrm: Renamed from modules/memxfrm. Update.
1923         * NEWS: Mention the change.
1924         * MODULES.html.sh (String handling <string.h>): Update.
1925         * lib/unicase/u-casexfrm.h: Invoke amemxfrm instead of memxfrm.
1926         * lib/unicase/u8-casexfrm.c: Include amemxfrm.h instead of memxfrm.h.
1927         * lib/unicase/u16-casexfrm.c: Likewise.
1928         * lib/unicase/u32-casexfrm.c: Likewise.
1929         * lib/uninorm/u-normxfrm.h: Invoke amemxfrm instead of memxfrm.
1930         * lib/uninorm/u8-normxfrm.c: Include amemxfrm.h instead of memxfrm.h.
1931         * lib/uninorm/u16-normxfrm.c: Likewise.
1932         * lib/uninorm/u32-normxfrm.c: Likewise.
1933         * modules/unicase/u8-casexfrm (Depends-on): Add amemxfrm, remove
1934         memxfrm.
1935         * modules/unicase/u16-casexfrm (Depends-on): Likewise.
1936         * modules/unicase/u32-casexfrm (Depends-on): Likewise.
1937         * modules/uninorm/u8-normxfrm (Depends-on): Likewise.
1938         * modules/uninorm/u16-normxfrm (Depends-on): Likewise.
1939         * modules/uninorm/u32-normxfrm (Depends-on): Likewise.
1940         Suggested by Paul Eggert.
1941
1942 2010-08-14  Bruno Haible  <bruno@clisp.org>
1943
1944         Tests for module 'astrxfrm'.
1945         * modules/astrxfrm-tests: New file.
1946         * tests/test-astrxfrm.c: New file.
1947
1948         New module 'astrxfrm'.
1949         * lib/astrxfrm.h: New file.
1950         * lib/astrxfrm.c: New file, based on lib/memxfrm.c.
1951         * modules/astrxfrm: New file.
1952
1953 2010-08-14  Reuben Thomas <rrt@sc3d.org>
1954
1955         regex: Tweak doc.
1956         * doc/regex.texi (Overview): Don't mention regex.c.
1957         (GNU Regular Expression Compiling): Likewise.
1958         (Match-end-of-line Operator): Mention 'not_eol'.
1959
1960 2010-08-14  Brian Gough  <bjg@gnu.org>
1961             Bruno Haible  <bruno@clisp.org>
1962
1963         git-merge-changelog: add doc relating to use with bzr and hg.
1964         * lib/git-merge-changelog.c: Add comments regarding bzr, hg, diff3.
1965
1966 2010-08-14  Matthias Bolte  <matthias.bolte@googlemail.com>
1967
1968         pthread: fix pthread.h creation for srcdir != builddir
1969         * modules/pthread (Makefile.am): Fix the rule to work also in a
1970         non-srcdir build.
1971
1972 2010-08-13  Karl Berry  <karl@gnu.org>
1973
1974         * doc/regex.texi (Predefined Syntaxes): @smallexample.
1975         * doc/posix-*/*: force line break before @url of POSIX
1976         specifications.
1977         Suggested by Werner Lemberg.
1978
1979 2010-08-10  Paul Eggert  <eggert@cs.ucla.edu>
1980
1981         strtod: fix const diagnostic
1982         * lib/strtod.c (strtod): Don't assign const char * to char *,
1983         as this elicits a warning from GCC when warnings are enabled.
1984
1985 2010-08-10  Pádraig Brady <P@draigbrady.com>
1986         and Eric Blake  <eblake@redhat.com>
1987
1988         copy-acl: ignore ENOTSUP on HP-UX
1989         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Move definition up,
1990         so that it is available for HP-UX.
1991         * lib/copy-acl.c (qcopy_acl): Use it.
1992         Reported by Patrick M. Callahan.
1993
1994 2010-08-10  Eric Blake  <eblake@redhat.com>
1995
1996         open, chown: relax license
1997         * modules/open (License): Change to LGPLv2+, with consent by all
1998         authors, for use in augeas.
1999         * modules/chown (License): Likewise.
2000         * modules/lchown (Likewise): Likewise.
2001         Requested by Adam Stokes.
2002
2003 2010-08-09  Karl Berry  <karl@gnu.org>
2004
2005         * build-aux/ar-lib: new file, import from Automake.
2006         * config/srclist.txt: autocheck for updates.
2007
2008 2010-08-09  Eric Blake  <eblake@redhat.com>
2009
2010         readlinkat: adjust client modules
2011         * modules/areadlinkat (Depends-on): Use readlinkat, not
2012         symlinkat.
2013         * modules/areadlinkat-with-size (Depends-on): Likewise.
2014
2015         mknod: be more vocal about danger of running tests as root
2016         * m4/mknod.m4 (gl_FUNC_MKNOD): Make it harder to run configure as
2017         root, since that is just asking for problems.
2018         Suggested by Bruno Haible, based on a report by Rainer Tammer.
2019
2020         readlinkat: split into its own module
2021         * modules/symlinkat: Split readlinkat...
2022         * modules/readlinkat: ...into separate module.
2023         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Move readlinkat check...
2024         * m4/readlinkat.m4 (gl_FUNC_READLINAT): ...to new file.
2025         * lib/symlinkat.c (readlinkat): Move...
2026         * lib/readlinkat.c: ...into new file.
2027         * modules/symlinkat-tests: Split readlinkat test...
2028         * modules/readlinkat-tests: ...into separate module.
2029         * tests/test-symlinkat.c: Split...
2030         * tests/test-readlinkat.c: ...into new file.
2031         * NEWS: Document the split.
2032         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
2033         * lib/unistd.in.h (readlinkat): Likewise.
2034         Suggested by Bruno Haible.
2035
2036 2010-08-08  Bruno Haible  <bruno@clisp.org>
2037
2038         memxfrm: Speed up.
2039         * lib/memxfrm.c (memxfrm): Allocate enough memory ahead of time, so
2040         that usually only one call to strxfrm is necessary for each string
2041         part.
2042         Reported by Paul Eggert <eggert@cs.ucla.edu>.
2043
2044 2010-08-07  Karl Berry  <karl@gnu.org>
2045
2046         * doc/posix-headers/limits.texi,
2047         * doc/posix-functions/malloc.texi,
2048         * doc/posix-functions/strsignal.texi: missing @item.
2049         * doc/ld-version-script.texi: spurious leading i.
2050         * doc/regex.texi (Interval Operators): no commas inside @var.
2051
2052 2010-08-01  Bruno Haible  <bruno@clisp.org>
2053
2054         Integrate the regex documentation.
2055         * doc/gnulib.texi: Define 'cn' index.
2056         (Regular expressions): New a chapter that includes regex.texi and
2057         regexprops-generic.texi.
2058         * doc/regex.texi: Remove boilerplate stuff. Use simplified @node
2059         syntax.
2060
2061         Whitespace cleanup.
2062         * doc/regex.texi: Remove trailing spaces.
2063
2064         Add regex documentation.
2065         * doc/regex.texi: New file. Taken from regex-0.12/doc/regex.texi in
2066         http://ftp.gnu.org/old-gnu/regex/regex-0.12.tar.gz.
2067         Written by Kathy A. Hargreaves and Karl Berry.
2068
2069 2010-08-01  Bruno Haible  <bruno@clisp.org>
2070
2071         link: Update documentation.
2072         * doc/posix-functions/link.texi: Update regarding Solaris.
2073
2074 2010-07-31  Bruno Haible  <bruno@clisp.org>
2075
2076         Update modules list.
2077         * MODULES.html.sh (Sorting functions <stdlib.h>): Add array-mergesort.
2078         (String handling <string.h>): Add memcmp2, memxfrm.
2079         (Container data structures): Add xlist, xsublist, xoset.
2080         (Core language properties): Add alignof, unused-parameter.
2081         (Process control, Numeric conversion functions <stdlib.h>): Renamed
2082         from Numeric conversion functions <stdlib.h>. Add _Exit, atoll.
2083         (Unibyte characters <ctype.h>): New section.
2084         (String handling <string.h>): New section.
2085         (Mathematics <math.h>): Add acos, acosl, asin, asinl, atan, atan2,
2086         atanl, cbrt, copysign, cos, cosh, cosl, erf, erfc, exp, expl, fabs,
2087         fmod, hypot, j0, j1, jn, ldexp, lgamma, log, log10, log1p, logb, logl,
2088         modf, nextafter, pow, remainder, rint, sin, sinh, sinl, sqrt, sqrtl,
2089         tan, tanh, tanl, y0, y1, yn.
2090         (Support for systems lacking POSIX:2008): Add alphasort, dirent,
2091         dprintf, dprintf-posix, duplocale, fcntl, getlogin, getopt-posix,
2092         grantpt, iconv-h, ioctl, isblank, langinfo, nl_langinfo, pread,
2093         ptsname, pwrite, scandir, servent, sys_utsname, ttyname_r, uname,
2094         unlockpt, vdprintf, vdprintf-posix.
2095         (Enhancements for POSIX:2008 functions): Add getopt-gnu. Remove getopt.
2096         (File system functions): Add concat-filename, sys_file, sys_ioctl,
2097         xconcat-filename.
2098         (File descriptor based Input/Output): Add dup3, fd-safer-flag,
2099         getdtablesize, pipe2, pipe2-safer.
2100         (Security): New section.
2101         (Networking functions): Add accept4.
2102         (Signal handling): Add sigpipe.
2103         (Internationalization functions): Add xstriconveh, mbmemcasecmp,
2104         mbmemcasecoll.
2105         (Unicode string functions): Add libunistring-optional, unistr/u*-cmp2,
2106         unistr/u*-strcoll, uniwbrk/*, uninorm/*, unicase/*.
2107         (Executing programs): Add findprog-lgpl, pipe-filter-gi,
2108         pipe-filter-ii.
2109         (Misc): Add argp-version-etc, login_tty, parse-duration.
2110
2111 2010-07-31  Bruno Haible  <bruno@clisp.org>
2112
2113         Improve doc in MODULES.html.
2114         * modules/linkat (Description): Add the word "function".
2115         * modules/mkfifo (Description): Likewise.
2116         * modules/mknod (Description): Likewise.
2117         * modules/remove (Description): Likewise.
2118         * modules/renameat (Description): Likewise.
2119         * modules/stat (Description): Likewise.
2120         * modules/symlink (Description): Likewise.
2121         * modules/unlink (Description): Likewise.
2122
2123 2010-07-31  Bruno Haible  <bruno@clisp.org>
2124
2125         ansi-c++-opt: Provide option --enable-c++/--disable-c++ when possible.
2126         * m4/ansi-c++.m4 (gl_CXX_CHOICE): In Autoconf 2.66 or newer, provide
2127         option --enable/disable-c++ instead of --enable/disable-cxx.
2128         * NEWS: Mention the change.
2129
2130 2010-07-31  Bruno Haible  <bruno@clisp.org>
2131
2132         readlink, areadlink: Relax test a bit.
2133         * tests/test-readlink.h (test_readlink): Accept EINVAL as an
2134         alternative to ENOTDIR.
2135         * tests/test-areadlink.h (test_areadlink): Likewise.
2136         Reported by Rainer Tammer.
2137
2138 2010-07-31  Bruno Haible  <bruno@clisp.org>
2139
2140         unistr/u8-strstr, unistr/u16-strstr: Optimize the one-character case.
2141         * lib/unistr/u-strstr.h (FUNC): When the needle contains only one
2142         character, perform the search using U_STRCHR.
2143         * lib/unistr/u8-strstr.c (U_STRMBTOUC): New macro.
2144         * lib/unistr/u16-strstr.c (U_STRMBTOUC): Likewise.
2145         * modules/unistr/u8-strstr (Depends-on): Add unistr/u8-strmbtouc.
2146         * modules/unistr/u16-strstr (Depends-on): Add unistr/u16-strmbtouc.
2147         Suggested by Paolo Bonzini.
2148
2149 2010-07-31  Bruno Haible  <bruno@clisp.org>
2150
2151         unistr/u*-strstr: Fix dependencies.
2152         * modules/unistr/u8-strstr (Depends-on): Add unistr/u8-strchr.
2153         * modules/unistr/u16-strstr (Depends-on): Add unistr/u16-strchr.
2154         * modules/unistr/u32-strstr (Depends-on): Add unistr/u32-strchr.
2155
2156 2010-07-31  Bruno Haible  <bruno@clisp.org>
2157
2158         unistr/u8-chr, unistr/u8-strchr: Optimize and add comments.
2159         * lib/unistr/u8-chr.c (u8_chr): Add comments. Remove a useless test at
2160         the beginning of the loop.
2161         * lib/unistr/u8-strchr.c (u8_strchr): Add comments. Don't fall through
2162         cases in 'switch' statement.
2163
2164         unistr/u8-strchr: Fix several bugs.
2165         * lib/unistr/u8-strchr.c (u8_strchr): Don't search beyond the end of
2166         the string. When not found, return NULL, not a pointer near the end.
2167
2168         More tests for unistr/u8-strchr.
2169         * tests/unistr/test-strchr.h (test_strchr): Renamed from main. Check
2170         that the function does not read past the first occurrence of the byte
2171         being searched.
2172         * tests/unistr/test-u8-strchr.c (main): New function, with more tests.
2173         * tests/unistr/test-u16-strchr.c (main): New function.
2174         * tests/unistr/test-u32-strchr.c (main): New function.
2175
2176 2010-07-31  Bruno Haible  <bruno@clisp.org>
2177
2178         posix-modules: Ignore backup files of documentation files.
2179         * posix-modules: grep only through files named *.texi.
2180
2181 2010-07-31  Bruno Haible  <bruno@clisp.org>
2182
2183         symlinkat: Fix documentation.
2184         * doc/posix-functions/readlinkat.texi: Fix module name.
2185
2186 2010-07-31  Bruno Haible  <bruno@clisp.org>
2187
2188         fchownat: Replace also when chown has the trailing slash bug.
2189         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Move the test of REPLACE_CHOWN
2190         outside the gl_FUNC_FCHOWNAT_DEREF_BUG invocation. Fixes regression
2191         introduced on 2010-04-10.
2192         Reported by Rainer Tammer.
2193
2194 2010-07-31  Bruno Haible  <bruno@clisp.org>
2195
2196         linkat: Work around AIX 7.1 bug.
2197         * m4/linkat.m4 (gl_FUNC_LINKAT): Require AC_CANONICAL_HOST. Test
2198         whether linkat handles trailing slash correctly. If not, replace linkat
2199         and define LINKAT_TRAILING_SLASH_BUG.
2200         * lib/linkat.c (rpl_linkat): If LINKAT_TRAILING_SLASH_BUG is defined,
2201         check whether (fd1,file1) points to a directory if file1 or file2 ends
2202         in a slash. Code taken from lib/link.c.
2203         * doc/posix-functions/linkat.texi: Mention trailing slash bug.
2204         Reported by Rainer Tammer.
2205
2206 2010-07-31  Bruno Haible  <bruno@clisp.org>
2207
2208         Correctly determine whether pow is available in libc on AIX 7 with xlc.
2209         * m4/mathfunc.m4 (gl_MATHFUNC): Actually use the 'funcptr' variable.
2210         This disables an xlc optimization that was causing wrong test results.
2211         Reported by Rainer Tammer.
2212
2213 2010-07-31  Bruno Haible  <bruno@clisp.org>
2214
2215         iconv: Work around AIX 6.1..7.1 bug.
2216         * doc/posix-functions/iconv.texi: Mention AIX 6.1, 7.1 bug.
2217         * m4/iconv.m4 (AM_ICONV_LINK): Test against AIX 6.1, 7.1 bug. When
2218         cross-compiling, guess no on all versions of AIX.
2219         Reported by Rainer Tammer.
2220
2221 2010-07-31  Bruno Haible  <bruno@clisp.org>
2222
2223         readlink: Relax test a bit.
2224         * tests/test-readlink.h (test_readlink): Allow different errno value
2225         when readlink is called with a file name that ends in / and refers to
2226         a file.
2227         Suggested by Eric Blake.
2228         Reported by Rainer Tammer.
2229
2230 2010-07-31  Bruno Haible  <bruno@clisp.org>
2231
2232         copysign: Does not require -lm on glibc systems.
2233         * modules/copysign (configure.ac): Use gl_MATHFUNC, not
2234         gl_COMMON_DOUBLE_MATHFUNC.
2235         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC): Update comments.
2236
2237 2010-07-31  Bruno Haible  <bruno@clisp.org>
2238
2239         duplocale: Work around AIX 7.1 bug.
2240         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Let the test fail also when
2241         duplocale(LC_GLOBAL_LOCALE) returns (locale_t)0.
2242         * lib/duplocale.c (rpl_duplocale): Update comment.
2243         * doc/posix-functions/duplocale.texi: Mention the AIX 7.1 bug.
2244         Reported by Rainer Tammer.
2245
2246 2010-07-30  Bruno Haible  <bruno@clisp.org>
2247
2248         dirfd: Avoid link error on AIX 7.1.
2249         * lib/dirent.in.h (dirfd): Use modern idiom with REPLACE_DIRFD.
2250         * m4/dirfd.m4 (gl_FUNC_DIRFD): If the function is declared but does not
2251         exist, set REPLACE_DIRFD.
2252         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize REPLACE_DIRFD.
2253         * modules/dirent (Makefile.am): Substitute REPLACE_DIRFD.
2254         * doc/posix-functions/dirfd.texi: Update.
2255         Reported by Rainer Tammer.
2256
2257 2010-07-30  Eric Blake  <eblake@redhat.com>
2258
2259         strtod: next round of AIX fixes
2260         * lib/strtod.c (strtod): Work around AIX bug of parsing p with no
2261         exponent.
2262         * tests/test-strtod.c (main): Enhance tests.
2263         * doc/posix-functions/strtod.texi (strtod): Document next bug.
2264         Reported by Rainer Tammer.
2265
2266         futimens: fix configure check
2267         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Use correct logic.
2268         Reported by Bruno Haible.
2269
2270 2010-07-30  Bruno Haible  <bruno@clisp.org>
2271
2272         getline: Update regarding AIX.
2273         * doc/posix-functions/getline.texi: Mention bug on AIX 7.1.
2274         Reported by Rainer Tammer.
2275
2276 2010-07-30  Bruno Haible  <bruno@clisp.org>
2277
2278         wcwidth: Drop replacement on AIX 7.
2279         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): When cross-compiling, guess yes on
2280         AIX 7.
2281         Reported by Rainer Tammer.
2282
2283 2010-07-30  Bruno Haible  <bruno@clisp.org>
2284
2285         strtok_r: Avoid triggering bug in AIX 7.1 xlc compiler.
2286         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Don't cast an invalid address to
2287         a 'char *'.
2288         Reported by Rainer Tammer.
2289
2290 2010-07-30  Bruno Haible  <bruno@clisp.org>
2291
2292         unlink: Update regarding AIX.
2293         * doc/posix-functions/unlink.texi: Mention bug on AIX 7.1.
2294         * m4/unlink.m4 (gl_FUNC_UNLINK): Update comment.
2295         Reported by Rainer Tammer.
2296
2297 2010-07-30  Bruno Haible  <bruno@clisp.org>
2298
2299         symlink: Update regarding AIX.
2300         * doc/posix-functions/symlink.texi: Mention bug on AIX 7.1.
2301         * m4/symlink.m4 (gl_FUNC_SYMLINK): Update comment.
2302         Reported by Rainer Tammer.
2303
2304 2010-07-30  Bruno Haible  <bruno@clisp.org>
2305
2306         strndup: Update regarding AIX.
2307         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, guess yes on
2308         AIX 7.
2309         Reported by Rainer Tammer.
2310
2311 2010-07-30  Bruno Haible  <bruno@clisp.org>
2312
2313         stat: Update regarding AIX.
2314         * doc/posix-functions/stat.texi: Mention bug on AIX 7.1.
2315         * m4/stat.m4 (gl_FUNC_STAT): Update comment.
2316         Reported by Rainer Tammer.
2317
2318 2010-07-30  Bruno Haible  <bruno@clisp.org>
2319
2320         truncl: Fix autoconf test.
2321         * m4/truncl.m4 (gl_FUNC_TRUNCL): Add TRUNCL_LIBM to LIBS while testing
2322         whether truncl works.
2323         Reported by Rainer Tammer.
2324
2325 2010-07-30  Bruno Haible  <bruno@clisp.org>
2326
2327         round: Update regarding AIX.
2328         * m4/round.m4 (gl_FUNC_ROUND): When cross-compiling, guess no on AIX 7.
2329         * doc/posix-functions/round.texi: Mention bug on AIX 7.1.
2330         Reported by Rainer Tammer.
2331
2332 2010-07-30  Bruno Haible  <bruno@clisp.org>
2333
2334         rename: Update regarding AIX.
2335         * doc/posix-functions/rename.texi: Mention bug on AIX 7.1.
2336         * m4/rename.m4 (gl_FUNC_RENAME): Update comment.
2337         Reported by Rainer Tammer.
2338
2339 2010-07-30  Bruno Haible  <bruno@clisp.org>
2340
2341         printf.m4: Update regarding AIX.
2342         * m4/printf.m4: Update comments regarding AIX.
2343         Reported by Rainer Tammer.
2344
2345 2010-07-30  Bruno Haible  <bruno@clisp.org>
2346
2347         iconv: Update regarding AIX.
2348         * m4/iconv.m4 (AM_ICONV_LINK): When cross-compiling, guess yes on
2349         AIX 7.
2350         Reported by Rainer Tammer.
2351
2352 2010-07-30  Bruno Haible  <bruno@clisp.org>
2353
2354         getopt: Update regarding AIX.
2355         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): When cross-compiling, guess
2356         no on AIX.
2357         * doc/posix-functions/getopt.texi: Mention that AIX has the optind bug.
2358         Reported by Rainer Tammer.
2359
2360 2010-07-30  Bruno Haible  <bruno@clisp.org>
2361
2362         ldexpl; Update regarding AIX.
2363         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): When cross-compiling, guess yes
2364         on AIX 7.
2365         Reported by Rainer Tammer.
2366
2367 2010-07-30  Bruno Haible  <bruno@clisp.org>
2368
2369         frexpl: Update regarding AIX.
2370         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): When cross-compiling, guess yes
2371         on AIX 7.
2372         Reported by Rainer Tammer.
2373
2374 2010-07-30  Bruno Haible  <bruno@clisp.org>
2375
2376         open, fopen: Update regarding AIX.
2377         * m4/open.m4 (gl_FUNC_OPEN): Adjust cross-compiling guess for AIX.
2378         * m4/fopen.m4 (gl_FUNC_FOPEN): Likewise.
2379         * doc/posix-functions/open.texi: Mention the trailing-slash bug on AIX.
2380         * doc/posix-functions/fopen.texi: Likewise.
2381         Reported by Rainer Tammer.
2382
2383 2010-07-30  Bruno Haible  <bruno@clisp.org>
2384
2385         chown: Update doc regarding AIX.
2386         * doc/posix-functions/chown.texi: Mention bug on AIX 7.1.
2387         * m4/chown.m4 (gl_FUNC_CHOWN): Update comment.
2388         Reported by Rainer Tammer.
2389
2390 2010-07-30  Eric Blake  <eblake@redhat.com>
2391
2392         strtod: fix bug in replacement function on AIX
2393         * lib/strtod.c (strtod): Special case broken "0x" parse in
2394         underlying strtod.
2395         * tests/test-strtod.c (main): Document AIX 7.1 bugs.
2396         * doc/posix-functions/strtod.texi (strtod): Likewise.
2397         Reported by Rainer Tammer.
2398
2399 2010-07-30  Bruno Haible  <bruno@clisp.org>
2400
2401         mbrlen: Fix cross-compilation guess for AIX.
2402         * m4/mbrlen.m4 (gl_MBRLEN_INCOMPLETE_STATE): Fix cross-compilation
2403         guess. Leftover from 2008-12-22.
2404
2405 2010-07-30  Bruno Haible  <bruno@clisp.org>
2406
2407         mbrtowc: Fix cross-compilation guess for AIX.
2408         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Fix cross-compilation
2409         guess. Leftover from 2008-12-21.
2410
2411 2010-07-29  Peter O'Gorman  <pogma@thewrittenword.com>  (tiny change)
2412
2413         init.sh: work around trap limitation of some shells
2414         * tests/init.sh (setup_): Move exit trap outside of shell function.
2415
2416 2010-07-29  Eric Blake  <eblake@redhat.com>
2417
2418         strtod: aid debugging
2419         * m4/strtod.m4(gl_FUNC_STRTOD): Use distinct exit status to aid
2420         understanding why strtod is rejected.
2421
2422 2010-07-28  Bruno Haible  <bruno@clisp.org>
2423
2424         unistr/u*-chr, unistr/u*-strchr: Fix link errors and warnings.
2425         * lib/unistr/u8-chr.c: Include <string.h>.
2426         * tests/unistr/test-u8-chr.c: Likewise.
2427         * tests/unistr/test-u16-chr.c: Likewise.
2428         * tests/unistr/test-u32-chr.c: Likewise.
2429         * tests/unistr/test-u8-strchr.c: Likewise.
2430         * tests/unistr/test-u16-strchr.c: Likewise.
2431         * tests/unistr/test-u32-strchr.c: Likewise.
2432         * modules/unistr/u8-chr-tests (Depends-on): Add unistr/u32-set.
2433         * modules/unistr/u16-chr-tests (Depends-on): Likewise.
2434         * modules/unistr/u8-strchr-tests (Depends-on): Likewise.
2435         * modules/unistr/u16-strchr-tests (Depends-on): Likewise.
2436
2437 2010-07-28  Bruno Haible  <bruno@clisp.org>
2438
2439         Use spaces for indentation, not tabs.
2440         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
2441
2442 2010-07-27  Bruno Haible  <bruno@clisp.org>
2443
2444         mbspcasecmp: Fix function specification.
2445         * lib/string.in.h (mbspcasecmp): Fix specification comment.
2446         * lib/mbspcasecmp.c (mbspcasecmp): Likewise.
2447         Reported by Eric Blake <eblake@redhat.com>.
2448
2449 2010-07-26  Paul R. Eggert  <eggert@cs.ucla.edu>
2450
2451         timespec: use cast and not conditional, as truncation isn't possible
2452         * lib/timespec.h (timespec_cmp): Use cast to pacify gcc -Wconversion
2453         instead of a conditional.  Comment about the situation in more detail.
2454         This undoes most of the 2009-10-29 patch.
2455
2456 2010-07-23  Paolo Bonzini  <pbonzini@redhat.com>
2457
2458         unistr/u8-chr, unistr/u8-strchr: use Boyer-Moore like algorithm.
2459         * lib/unistr/u8-chr.c: Add Boyer-Moore like operation.
2460         * lib/unistr/u8-strchr.c: Likewise.
2461         * modules/unistr/u8-chr: Depend on memchr.
2462
2463         unistr/u*-strchr: add tests
2464         * modules/unistr/u8-strchr-tests: New file.
2465         * modules/unistr/u16-strchr-tests: New file.
2466         * modules/unistr/u32-strchr-tests: New file.
2467         * tests/unistr/test-strchr.h: New file.
2468         * tests/unistr/test-u8-strchr.c: New file.
2469         * tests/unistr/test-u16-strchr.c: New file.
2470         * tests/unistr/test-u32-strchr.c: New file.
2471
2472         unistr/u*-chr: test multibyte sequences more
2473         * tests/unistr/test-chr.h: Do complete testing of the characters in the
2474         test vector.
2475         * tests/unistr/test-u8-chr.c (U_UCTOMB): Define.
2476         * tests/unistr/test-u16-chr.c (U_UCTOMB): Likewise.
2477         * tests/unistr/test-u32-chr.c (U_UCTOMB): Likewise.
2478
2479         unistr/u*-chr: test multibyte sequences
2480         * tests/unistr/test-chr.h: Put characters above 0-127 in the test input.
2481
2482         unistr/u*-chr: prepare for multibyte tests
2483         * modules/unistr/u8-chr-tests: Depend on u32-to-u8.
2484         * modules/unistr/u16-chr-tests: Depend on u32-to-u16.
2485         * tests/unistr/test-chr.h: Build initial version as UCS-4 then convert.
2486         * tests/unistr/test-u8-chr.c (U32_TO_U): Define.
2487         * tests/unistr/test-u16-chr.c (U32_TO_U): Likewise.
2488         * tests/unistr/test-u32-chr.c (U32_TO_U): Likewise.
2489
2490 2010-07-18  Bruno Haible  <bruno@clisp.org>
2491
2492         unistr/u8-strchr: Optimize non-ASCII argument case.
2493         * lib/unistr/u8-strchr.c (u8_strchr): Compare the last byte first,
2494         because the first byte often matches anyway.
2495         Reported by Pádraig Brady <P@draigbrady.com>.
2496
2497 2010-07-15  Karl Berry  <karl@gnu.org>
2498
2499         * config/srclist.txt (fdl.texi): only one copy, from gnustandards.
2500
2501 2010-07-14  Paul R. Eggert  <eggert@cs.ucla.edu>
2502
2503         getcwd: on Solaris, work better if ancestors are inaccessible
2504         * lib/getcwd.c (__getcwd): If getcwd returns EINVAL for zero
2505         buffer and size, try again with a large buffer.  This works better
2506         on Solaris, since its getcwd succeeds even if the path to the root
2507         is inaccessible, and this is helpful in common cases such as .zfs
2508         hidden directories.  Problem reported by J Chapman Flack in
2509         http://lists.gnu.org/archive/html/bug-tar/2010-06/msg00000.html
2510         Use system getcwd if it's declared, not merely if it's partly
2511         working; use the partly-working test only to avoid needless effort
2512         if the system getcwd fails.
2513         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Omit
2514         comment that was already obsolete and is now even more obsolete.
2515         * modules/getcwd (Depends-on): Depend on strdup, since __getcwd
2516         now might call strdup.
2517
2518 2010-07-13  Paul R. Eggert  <eggert@cs.ucla.edu>
2519
2520         pthread: Add enough so that coreutils/src/sort.c compiles.
2521         * lib/pthread.in.h: Add self to author comment.  Conditionalize on
2522         _GL_PTHREAD_H, not PTHREAD_H_, for consistency with the rest of
2523         gnulib. Include <sched.h> and <time.h>, as per POSIX.
2524         Include <sys/types.h>, in case it defines pthread_t.
2525         (pthread_t, pthread_attr_t, pthread_barrier_t, pthread_barrierattr_t):
2526         (pthread_cond_t, pthread_condattr_t, pthread_key_t, pthread_mutex_t):
2527         (pthread_mutexattr_t, pthread_once_t, pthread_rwlock_t):
2528         (pthread_rwlockattr_t, pthread_spinlock_t):
2529         New typedefs, if HAVE_PTHREAD_T is not defined.
2530         (PTHREAD_COND_INITIALIZER, PTHREAD_MUTEX_INITIALIZER):
2531         (PTHREAD_ONCE_INIT, PTHREAD_RWLOCK_INITIALIZER):
2532         (PTHREAD_BARRIER_SERIAL_THREAD, PTHREAD_CANCEL_DEFERRED):
2533         (PTHREAD_CANCEL_ASYNCHRONOUS, PTHREAD_CANCEL_ENABLE):
2534         (PTHREAD_CANCEL_DISABLE, PTHREAD_CANCELED, PTHREAD_CREATE_JOINABLE):
2535         (PTHREAD_CREATE_DETACHED, PTHREAD_INHERIT_SCHED):
2536         (PTHREAD_EXPLICIT_SCHED, PTHREAD_MUTEX_DEFAULT, PTHREAD_MUTEX_NORMAL):
2537         (PTHREAD_MUTEX_ERRORCHECK, PTHREAD_MUTEX_RECURSIVE):
2538         (PTHREAD_MUTEX_STALLED, PTHREAD_MUTEX_ROBUST, PTHREAD_PRIO_NONE):
2539         (PTHREAD_PRIO_INHERIT, PTHREAD_PRIO_PROTECT, PTHREAD_PROCESS_PRIVATE):
2540         (PTHREAD_PROCESS_SHARED, PTHREAD_SCOPE_SYSTEM, PTHREAD_SCOPE_PROCESS):
2541         New macros.
2542         (pthread_cond_destroy, pthread_cond_init, pthread_cond_signal):
2543         (pthread_cond_wait, pthread_exit, pthread_mutex_destroy):
2544         (pthread_mutex_init, pthread_mutex_lock, pthread_mutex_unlock):
2545         (pthread_spin_init, pthread_spin_lock, pthread_spin_trylock);
2546         (pthread_spin_unlock): New dummy functions.
2547         (pthread_create): Return EAGAIN; don't set errno.
2548         * m4/pthread.m4 (gl_PTHREAD_CHECK): Check for pthread_t, and
2549         require AC_C_INLINE.
2550         * modules/pthread (Depends-on): Add sched, time.
2551         (pthread.h): Use AM_V_GEN.
2552
2553 2010-07-13  Bruno Haible  <bruno@clisp.org>
2554
2555         striconveh: Don't malloc memory if the result buffer is sufficient.
2556         * lib/striconveh.c (mem_cd_iconveh_internal): Use the provided result
2557         buffer if its size is sufficient.
2558         Reported by Ludovic Courtès <ludo@gnu.org>.
2559
2560 2010-07-13  Bruno Haible  <bruno@clisp.org>
2561
2562         strtod: Add safety check.
2563         * lib/strtod.c (ldexp): Abort if this dummy replacement gets called.
2564
2565 2010-07-12  Bruno Haible  <bruno@clisp.org>
2566
2567         Unify tests that set gl_cv_func_ldexpl_no_libm.
2568         * m4/ldexpl.m4 (gl_CHECK_LDEXPL_NO_LIBM): New macro, extracted from
2569         gl_FUNC_LDEXPL.
2570         (gl_FUNC_LDEXPL): Invoke it.
2571         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
2572
2573 2010-07-12  Bruno Haible  <bruno@clisp.org>
2574
2575         Unify tests that set gl_cv_func_ldexp_no_libm.
2576         * m4/ldexp.m4: New file, based on m4/mathfunc.m4.
2577         * m4/strtod.m4 (gl_PREREQ_STRTOD): Require gl_CHECK_LDEXP_NO_LIBM.
2578         * modules/ldexp (Files): Remove m4/mathfunc.m4. Add m4/ldexp.m4.
2579         (configure.ac): Simply invoke gl_FUNC_LDEXP.
2580         * modules/strtod (Files): Add m4/ldexp.m4.
2581
2582 2010-07-12  Bruno Haible  <bruno@clisp.org>
2583
2584         Unify tests that set gl_cv_func_frexpl_no_libm.
2585         * m4/frexpl.m4 (gl_CHECK_FREXPL_NO_LIBM): New macro, extracted from
2586         gl_FUNC_FREXPL_NO_LIBM.
2587         (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): Invoke it.
2588         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
2589
2590 2010-07-12  Bruno Haible  <bruno@clisp.org>
2591
2592         Unify tests that set gl_cv_func_frexp_no_libm.
2593         * m4/frexp.m4 (gl_CHECK_FREXP_NO_LIBM): New macro, extracted from
2594         gl_FUNC_FREXP_NO_LIBM.
2595         (gl_FUNC_FREXP, gl_FUNC_FREXP_NO_LIBM): Require it.
2596         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Likewise.
2597
2598 2010-07-12  Paul R. Eggert  <eggert@cs.ucla.edu>
2599
2600         memcoll: clarify sizes versus lengths, document better, and tweak perf
2601         * lib/memcoll.c (strcoll_loop, memcoll0):
2602         Improve quality of descriptive comments.  Name variables
2603         consistently as to whether they are lengths (which do not include
2604         terminating null) versus sizes (which do).
2605         * lib/xmemcoll.c (xmemcoll0): Likewise.
2606         * lib/memcoll.c (strcoll_loop): Tweak the way that the diff is
2607         returned when s1size == 0; this is easier to compile and saves
2608         about 17% of memcoll's code space on x86-64 with GCC 4.1.2.
2609
2610 2010-07-12  Bruno Haible  <bruno@clisp.org>
2611
2612         Tests for module '_Exit'.
2613         * modules/_Exit-tests: New file.
2614         * tests/test-_Exit.sh: New file.
2615         * tests/test-_Exit.c: New file.
2616
2617         New module '_Exit'.
2618         * lib/stdlib.in.h (__attribute__): New macro.
2619         (_Exit): New declaration.
2620         * lib/_Exit.c: New file.
2621         * m4/_Exit.m4: New file.
2622         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether _Exit is declared.
2623         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB__EXIT and HAVE__EXIT.
2624         * modules/stdlib (Makefile.am): Substitute GNULIB__EXIT and HAVE__EXIT.
2625         * modules/_Exit: New file.
2626         * tests/test-stdlib-c++.cc (_Exit): Check signature.
2627         * doc/posix-functions/_Exit_C99.texi: Mention the new module.
2628
2629 2010-07-12  Paul R. Eggert  <eggert@cs.ucla.edu>
2630
2631         strtod: make it more-accurate typically, and don't require libm
2632         * lib/strtod.c (_GL_ARG_NONNULL): Remove; no longer needed.
2633         Include limits.h.  Don't include string.h.
2634         (HAVE_LDEXP_IN_LIBC, HAVE_RAW_DECL_STRTOD): Define to 0 if not defined.
2635         (locale_isspace): New function, so that no casts are needed to
2636         check whether *s is a space.
2637         (ldexp): Provide an unused dummy if not available.
2638         (scale_radix_exp, parse_number, underlying_strtod): New functions.
2639         (strtod): Use them.  This implementation prefers to use the
2640         underlying strtod if available, falling back on our own code
2641         only to fix known bugs.  This is more likely to produce an
2642         accurate result.  Also, it avoids the use of libm functions.
2643         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't invoke _AC_LIBOBJ_STRTOD;
2644         no longer needed.  Invoke AC_LIBOBJ([strtod]); don't know why this
2645         was absent, but it caused a test failure with coreutils.
2646         (gl_PREREQ_STRTOD): Check wither ldexp can be used without linking
2647         with libm.
2648         * modules/strtod (Makefile.am, Link): libm is no longer needed.
2649         * modules/strtod-tests (Makefile.am): Likewise.
2650
2651 2010-07-11  Pádraig Brady  <P@draigBrady.com>
2652             Bruno Haible  <bruno@clisp.org>
2653
2654         unistr/u8-strchr: Optimize ASCII argument case.
2655         * lib/unistr/u8-strchr.c (u8_strchr): For ASCII arguments, use strchr.
2656
2657 2010-07-08  Paul Eggert  <eggert@cs.ucla.edu>
2658
2659         (x)memcoll: minor tweaks
2660         * lib/memcoll.c (strcoll_loop): Prefer the style where 'const'
2661         is after the type that it qualifies.
2662         (memcoll0): Likewise.
2663         * lib/memcoll.h (memcoll0): Likewise.
2664         * lib/xmemcoll.c (collate_error, xmemcoll0): Likewise.
2665         * lib/xmemcoll.h (xmemcoll0): Likewise.
2666         * lib/memcoll.c (memcoll0): Correct the comment.  This function
2667         differs from memcoll in that the NUL byte is part of the argument.
2668         Omit the abort-checks, as performance is a real issue here.  Plus,
2669         the checks were wrong anyway (an off-by-one error).  Omit local
2670         variable 'diff', as it's a bit clearer that way.
2671         * m4/memcoll.m4 (gl_MEMCOLL): Omit AC_FUNC_STRCOLL, as it's
2672         no longer needed.
2673
2674 2010-07-08  Chen Guo <chenguo4@yahoo.com>
2675
2676         (x)memcoll: speedup when input is known to be NUL delimited
2677         * lib/memcoll.c: Include stdlib.
2678         (memcoll0) New function.
2679         (strcoll_loop) New function, refactored for use in both memcoll
2680         and memcoll0.
2681         * lib/memcoll.h: Add prototype for memcoll0.
2682         * lib/xmemcoll.c: (xmemcoll0) New function.
2683         (collate_error) New function, refactored for use in both xmemcoll
2684         and xmemcoll0.
2685         * lib/xmemcoll.h: Add prototype for xmemcoll0.
2686         * m4/memcoll.m4: add inline invocation.
2687
2688 2010-07-06  Pádraig Brady  <P@draigBrady.com>
2689
2690         * build-aux/bootstrap: Remove any local translations
2691         from the translation project synchronization directory,
2692         so that local only translations are not distributed.
2693
2694 2010-07-04  Bruno Haible  <bruno@clisp.org>
2695
2696         fsusage: Clarify which code applies to which platforms.
2697         * m4/fsusage.m4 (gl_FSUSAGE): Clarify which test succeeds on which
2698         platform.
2699         * lib/fsusage.c (get_fs_usage): Likewise.
2700
2701 2010-07-04  Bruno Haible  <bruno@clisp.org>
2702
2703         havelib: Fix bug when AC_LIB_FROMPACKAGE is used more than twice.
2704         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): Use m4_defn.
2705         Reported by Martin Lambers <marlam@marlam.de>.
2706
2707 2010-07-04  Jim Meyering  <meyering@redhat.com>
2708
2709         hash: once again explicitly disallow insertion of NULL
2710         * lib/hash.c (hash_insert0): Reinstate just-removed test:
2711         inserting a NULL pointer cannot work with these functions.
2712         Add a comment with details.
2713         This reverts part of the 2010-07-01 commit, 5bef1a35
2714         "hash: extend module to deal with non-pointer keys".
2715
2716 2010-07-01  Bruno Haible  <bruno@clisp.org>
2717
2718         stdbool: Update doc.
2719         * doc/posix-headers/stdbool.texi: Mention OpenBSD bug.
2720         Info from Christian Weisgerber <naddy@mips.inka.de>.
2721
2722 2010-07-01  Jim Meyering  <meyering@redhat.com>
2723
2724         hash: extend module to deal with non-pointer keys
2725         * lib/hash.c (hash_insert0): New interface, much like hash_insert
2726         but that allows insertion of non-pointer entries.
2727         Do not disallow an ENTRY value of NULL.
2728         (hash_insert): This is now just a thin wrapper.  Call hash_insert0.
2729         * lib/hash.h (hash_insert0): Declare.
2730
2731 2010-07-01  Christian Weisgerber  <naddy@mips.inka.de>  (tiny change)
2732
2733         gettext: Use AC_GNU_SOURCE as a fallback for AC_USE_SYSTEM_EXTENSIONS.
2734         * m4/fcntl-o.m4 (gl_FCNTL_O_FLAGS): When AC_USE_SYSTEM_EXTENSIONS is
2735         not present (i.e. with autoconf 2.59 and when using gettextize, not
2736         gnulib), require AC_GNU_SOURCE instead.
2737
2738 2010-07-01  Ian Beckwith  <ianb@erislabs.net>
2739
2740         idpriv-drop: Fix tests.
2741         * tests/test-idpriv-drop.su.sh: Refer to the test-idpriv-drop program,
2742         not to the test-idpriv-droptemp program.
2743
2744 2010-06-29  Bruno Haible  <bruno@clisp.org>
2745
2746         string: Fix syntax error with g++ 2.96.
2747         * lib/string.in.h (__pure__): Remove definition.
2748         (_GL_ATTRIBUTE_PURE): New macro.
2749         (memchr, memmem, memrchr, rawmemchr, strchrnul, strnlen, strpbrk,
2750         strstr, strcasestr): Use it instead of __attribute__ ((__pure__)).
2751         Reported by Christian Weisgerber <naddy@mips.inka.de>.
2752
2753 2010-06-28  Ian Beckwith  <ianb@erislabs.net>
2754
2755         unitypes: Fix bug introduced on 2010-05-18.
2756         * modules/unitypes (Files): Really add m4/libunistring-base.m4.
2757
2758 2010-06-22  Eric Blake  <eblake@redhat.com>
2759
2760         memmem: slight optimization
2761         * lib/str-two-way.h (critical_factorization): Update comments.
2762         Reduce work during factorization phase.
2763         Reported by Carlos Bueno <carlos@bueno.org>.
2764
2765 2010-06-21  Bruno Haible  <bruno@clisp.org>
2766
2767         Fix HAVE_CALLOC_POSIX misnomer.
2768         * lib/stdlib.in.h (calloc): Use REPLACE_CALLOC instead of
2769         !HAVE_CALLOC_POSIX.
2770         * m4/calloc.m4 (gl_REPLACE_CALLOC): Set REPLACE_CALLOC instead of
2771         HAVE_CALLOC_POSIX.
2772         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize REPLACE_CALLOC
2773         instead of HAVE_CALLOC_POSIX.
2774         * modules/stdlib (Makefile.am): Substitute REPLACE_CALLOC instead of
2775         HAVE_CALLOC_POSIX.
2776
2777         Use modern idiom for calloc() replacement.
2778         * modules/calloc (configure.ac): Invoke gl_FUNC_CALLOC_GNU instead of
2779         AC_FUNC_CALLOC.
2780         * m4/calloc.m4 (gl_FUNC_CALLOC_GNU): Renamed from AC_FUNC_CALLOC.
2781         Require gl_STDLIB_H_DEFAULTS. Invoke gl_REPLACE_CALLOC.
2782         (gl_FUNC_CALLOC_POSIX): Rely on gl_STDLIB_H_DEFAULTS to initialize
2783         HAVE_CALLOC_POSIX. Invoke gl_REPLACE_CALLOC.
2784         (gl_REPLACE_CALLOC): New macro.
2785
2786 2010-06-21  Bruno Haible  <bruno@clisp.org>
2787
2788         Fix HAVE_REALLOC_POSIX misnomer.
2789         * lib/stdlib.in.h (realloc): Use REPLACE_REALLOC instead of
2790         !HAVE_REALLOC_POSIX.
2791         * m4/realloc.m4 (gl_REPLACE_REALLOC): Set REPLACE_REALLOC instead of
2792         HAVE_REALLOC_POSIX.
2793         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize REPLACE_REALLOC
2794         instead of HAVE_REALLOC_POSIX.
2795         * modules/stdlib (Makefile.am): Substitute REPLACE_REALLOC instead of
2796         HAVE_REALLOC_POSIX.
2797
2798         Use modern idiom for realloc() replacement.
2799         * modules/realloc (configure.ac): Invoke gl_FUNC_REALLOC_GNU instead of
2800         AC_FUNC_REALLOC.
2801         * m4/realloc.m4 (gl_FUNC_REALLOC_GNU): New macro, mostly copied from
2802         Autoconf's AC_FUNC_REALLOC.
2803         (gl_FUNC_REALLOC_POSIX): Rely on gl_STDLIB_H_DEFAULTS to initialize
2804         HAVE_REALLOC_POSIX. Invoke gl_REPLACE_REALLOC.
2805         (gl_REPLACE_REALLOC): New macro.
2806         Reported by Richard Lloyd <richard.lloyd@connectinternetsolutions.com>.
2807
2808 2010-06-21  Bruno Haible  <bruno@clisp.org>
2809
2810         Fix HAVE_MALLOC_POSIX misnomer.
2811         * lib/stdlib.in.h (malloc): Use REPLACE_MALLOC instead of
2812         !HAVE_MALLOC_POSIX.
2813         * m4/malloc.m4 (gl_REPLACE_MALLOC): Set REPLACE_MALLOC instead of
2814         HAVE_MALLOC_POSIX.
2815         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize REPLACE_MALLOC
2816         instead of HAVE_MALLOC_POSIX.
2817         * modules/stdlib (Makefile.am): Substitute REPLACE_MALLOC instead of
2818         HAVE_MALLOC_POSIX.
2819
2820         Use modern idiom for malloc() replacement.
2821         * modules/malloc (configure.ac): Invoke gl_FUNC_MALLOC_GNU instead of
2822         AC_FUNC_MALLOC.
2823         * m4/malloc.m4 (gl_FUNC_MALLOC_GNU): New macro, mostly copied from
2824         Autoconf's AC_FUNC_MALLOC.
2825         (gl_FUNC_MALLOC_POSIX): Rely on gl_STDLIB_H_DEFAULTS to initialize
2826         HAVE_MALLOC_POSIX. Invoke gl_REPLACE_MALLOC.
2827         (gl_REPLACE_MALLOC): New macro.
2828         Reported by Richard Lloyd <richard.lloyd@connectinternetsolutions.com>.
2829
2830 2010-06-20  Richard Lloyd  <richard.lloyd@connectinternetsolutions.com>
2831
2832         stdio.in.h: fix compilation failure when using HP-UX 11's C compiler
2833         * lib/stdio.in.h: Remove excess _GL_CXXALIAS_RPL macro argument.
2834         This macro takes 3 arguments, not 4.
2835
2836 2010-06-15  Giuseppe Scrivano  <gscrivano@gnu.org>
2837
2838         ipv6: fix detection under mingw
2839         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Include <ws2tcpip.h> for struct
2840         in6_addr.
2841
2842 2010-06-14  Ben Pfaff  <blp@cs.stanford.edu>
2843
2844         * m4/strtod.m4 (gl_FUNC_STRTOD): Factor out common code.  Assume
2845         that strtod() works when cross-compiling to a glibc version known
2846         to work.
2847
2848 2010-06-15  Bruno Haible  <bruno@clisp.org>
2849
2850         * m4/strtod.m4 (gl_FUNC_STRTOD): Stop using AC_FUNC_STRTOD.
2851
2852 2010-06-15  René Berber  <r.berber@computer.org>  (tiny change)
2853
2854         select: Correct timeout.
2855         * lib/select.c (rpl_select): Compute wait_timeout correctly.
2856
2857 2010-06-14  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
2858
2859         git-version-gen: init shell var to avoid env var influence
2860         * build-aux/git-version-gen (v): Init shell var to empty.
2861
2862 2010-06-14  Paul Eggert  <eggert@cs.ucla.edu>
2863
2864         priv-set: Don't assume that priv.h exists merely because getppriv does.
2865         See Jan Andersen's bug report about AIX 5L in
2866         http://lists.gnu.org/archive/html/bug-tar/2010-06/msg00019.html
2867         * m4/priv-set.m4 (gl_PRIV_SET): Check for priv.h.
2868         * lib/priv-set.c: Do nothing unless HAVE_PRIV_H.
2869         * lib/priv-set.h: Likewise.
2870         * tests/test-priv-set.c: Likewise.
2871
2872 2010-06-13  Bruno Haible  <bruno@clisp.org>
2873
2874         relocatable: Make it easier to test whether to install wrappers.
2875         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): New automake conditional
2876         RELOCATABLE_VIA_WRAPPER.
2877
2878 2010-06-13  Bruno Haible  <bruno@clisp.org>
2879
2880         gnulib-tool: Display specified modules and dependencies differently.
2881         * gnulib-tool (func_show_module_list): New function.
2882         (func_import, func_create_testdir): Invoke it.
2883         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
2884
2885 2010-06-13  Bruno Haible  <bruno@clisp.org>
2886
2887         gnulib-tool: Align code of func_import and func_create_testdir.
2888         * gnulib-tool (func_create_testdir): Rename variable saved_modules to
2889         specified_modules.
2890
2891 2010-06-12  Jim Meyering  <meyering@redhat.com>
2892
2893         test-inttostr: avoid spurious failure on Solaris 9
2894         * tests/test-inttostr.c (main): Skip the test when snprintf fails
2895         to accept "%ju".  Reported by Bruno Haible.
2896
2897 2010-06-11  Jim Meyering  <meyering@redhat.com>
2898
2899         test-sys_socket: mark variables as used more readably
2900         * tests/test-sys_socket.c (main): Mark otherwise unused variables
2901         as "used" explicitly via (void) statement casts.  This is more
2902         readable than using them in an artificial return expression.
2903         Suggestion from Bruno Haible.
2904
2905 2010-06-11  Bruno Haible  <bruno@clisp.org>
2906
2907         Avoid some more warnings from "gcc -Wwrite-strings".
2908         * tests/test-argp.c (test_optional): Change 5th and 6th argument type
2909         to 'const char *'.
2910         * tests/test-c-strstr.c (main): Add 'const' to variable declaration.
2911         * tests/test-c-strcasestr.c (main): Likewise.
2912         * tests/test-mbscasestr1.c (main): Likewise.
2913         * tests/test-mbscasestr2.c (main): Likewise.
2914         * tests/test-memmem.c (main): Likewise.
2915         * tests/test-strstr.c (main): Likewise.
2916         * tests/test-strcasestr.c (main): Likewise.
2917
2918 2010-06-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2919
2920         init.sh: change framework_failure_ to fail with status 99, not 1
2921         * tests/init.sh (framework_failure_): Exit 99, not 1.  This informs
2922         automake's parallel-tests rule that this is an unexpected failure,
2923         even if the test is listed in XFAIL_TESTS.
2924
2925 2010-06-11  Jim Meyering  <meyering@redhat.com>
2926
2927         test-inttostr: avoid warnings about 4-6KB literal strings
2928         * tests/test-inttostr.c: Don't use <assert.h>.  Instead, ...
2929         Include "macros.h", for its definition of ASSERT.
2930         (CK): s/assert/ASSERT/
2931         * modules/inttostr-tests (Files): Add macros.h.
2932
2933         init.sh: don't use $ME_ or skip_ before they are defined
2934         * tests/init.sh: Hoist definitions of $ME_ and skip_ to precede
2935         their first uses.  Also hoist their companions: warn_, fail_,
2936         framework_failure_, $stderr_fileno.  Prompted by a patch from
2937         Stefano Lattarini.
2938
2939         test-sys_socket: avoid set-but-not-used warnings from gcc
2940         * tests/test-sys_socket.c (main): Use "i" and "x", in order to
2941         avoid warning about set-but-not-used variables.
2942
2943         test-xvasprintf: avoid 'const' discard warnings
2944         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Use
2945         "const" when assigning from literal strings.
2946         (test_xasprintf): Add "void" in function argument list to placate
2947         -Wstrict-prototypes and to be consistent with test_xvasprintf above.
2948
2949         tests: avoid compilation warnings in argmatch and exclude tests...
2950         in packages that define ARGMATCH_DIE_DECL, like coreutils.
2951         * tests/test-exclude.c [ARGMATCH_DIE_DECL]: Also declare the function.
2952         Since it always exits, declare with the "noreturn" attribute.
2953         * tests/test-argmatch.c: Likewise.
2954
2955         tests: avoid 'const' discard warnings in mbsstr tests
2956         * tests/test-mbsstr1.c (main): Add "const" to avoid trivial warning.
2957         * tests/test-mbsstr2.c (main): Likewise.
2958
2959         test-verify: avoid warning from gcc's -Wmissing-declarations
2960         * tests/test-verify.c (function): Declare to be static.
2961
2962         test-inttostr.c: include <string.h> for use of strcmp
2963         * tests/test-inttostr.c: Include <string.h> for strcmp declaration.
2964
2965         test-linkat: avoid failed assertion on "other" architectures
2966         * tests/test-linkat.c: Include <sys/stat.h>, for declarations of stat,
2967         lstat, mkdir.  Patch by John Rigby, to fix FTBFS on armel, powerpc,
2968         sparc: https://bugs.launchpad.net/bugs/591968
2969
2970 2010-06-11  Jim Meyering  <meyering@redhat.com>
2971
2972         printf.m4: avoid autoconf's "Expanded Before Required" warning
2973         * m4/printf.m4 (gl_SNPRINTF_RETVAL_C99): Define using AC_DEFUN_ONCE,
2974         rather than AC_DEFUN, to avoid the classic "Expanded Before Required"
2975         autoconf warning.
2976
2977 2010-06-10  Ben Pfaff  <blp@cs.stanford.edu>
2978
2979         Replacement header templates are now named with ".in", not "_".
2980         * doc/gnulib-intro.texi: Correct.
2981
2982 2010-06-10  Jim Meyering  <meyering@redhat.com>
2983
2984         inttostr-tests: depend on snprintf, not snprintf-posix
2985         * modules/inttostr-tests (Depends-on): Depend on snprintf, not
2986         snprintf-posix, to avoid this aclocal failure:
2987           missing file gnulib-tests/vasnprintf.c
2988           configure.ac:45: error: expected source file, required through \
2989           AC_LIBSOURCES, not found
2990
2991 2010-06-10  Jim Meyering  <meyering@redhat.com>
2992
2993         inttostr: add a new function, inttostr, and tests
2994         The namesake function was not available.  The existence of the
2995         template file, inttostr.c makes its addition nontrivial.
2996         * lib/anytostr.c: Rename from inttostr.c.
2997         (anytostr): Rename from inttostr.
2998         * lib/inttostr.c: New file.
2999         * modules/inttostr (Files): Add anytostr.c.
3000         (Makefile.am): Set lib_SOURCES instead of ...
3001         * m4/inttostr.m4: Remove uses of AC_LIBOBJ.
3002         * lib/imaxtostr.c: Update use.  s/inttostr/anytostr/
3003         * lib/offtostr.c: Likewise.
3004         * lib/uinttostr.c: Likewise.
3005         * lib/umaxtostr.c: Likewise.
3006         * modules/inttostr-tests: New file.
3007         * tests/test-inttostr.c: New file.  Test these functions.
3008
3009 2010-06-09  Ben Pfaff  <blp@cs.stanford.edu>
3010             Bruno Haible  <bruno@clisp.org>
3011
3012         Add "Extending Gnulib" chapter to manual.
3013         * doc/gnulib.texi (Writing Modules): Add cross-reference to new
3014         chapter.
3015         (Extending Gnulib): New chapter.
3016         * doc/gnulib-intro.texi (Openness): Add cross-reference to new
3017         chapter.
3018
3019 2010-06-09  Bruno Haible  <bruno@clisp.org>
3020
3021         Avoid relocwrapper link errors due to gnulib replacement functions.
3022         * lib/areadlink.c: Use the system's malloc, realloc functions.
3023         (areadlink): Set errno to ENOMEM explicitly.
3024         * modules/areadlink (Depends-on): Remove malloc-posix.
3025         Reported by Ben Pfaff <blp@cs.stanford.edu>.
3026
3027 2010-06-09  Bruno Haible  <bruno@clisp.org>
3028
3029         Avoid relocwrapper link errors due to gnulib replacement functions.
3030         * lib/canonicalize-lgpl.c: Use the system's malloc function.
3031         * lib/malloca.c: Likewise.
3032         * lib/relocatable.c: Likewise.
3033         * lib/progreloc.c: Use the system's malloc, sprintf functions.
3034         * lib/relocwrapper.c: Use the system's fprintf, malloc functions.
3035         * lib/setenv.c: Use the system's malloc, realloc functions.
3036         * lib/strerror.c: Use the system's sprintf function.
3037         Reported by Ben Pfaff <blp@cs.stanford.edu>.
3038
3039 2010-06-04  Bruno Haible  <bruno@clisp.org>
3040
3041         Prefer documented low-level autoconf macro names.
3042         * m4/lib-link.m4: Use m4_translit instead of translit.
3043         * m4/environ.m4: Likewise.
3044         * m4/mathfunc.m4: Likewise.
3045         * m4/onceonly.m4: Likewise.
3046         * m4/stdint.m4: Likewise.
3047         Suggested by Eric Blake.
3048
3049 2010-06-04  Martin Lambers  <marlam@marlam.de>
3050             Bruno Haible  <bruno@clisp.org>
3051
3052         havelib: Allow library names with '+' characters.
3053         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
3054         AC_LIB_FROMPACKAGE, AC_LIB_LINKFLAGS_BODY): Convert '+' in name to '_'.
3055
3056 2010-06-09  Bruno Haible  <bruno@clisp.org>
3057
3058         Module setenv does not depend on 'malloc-posix', 'realloc-posix'.
3059         * lib/setenv.c (__add_to_environ): Set errno to ENOMEM when malloc or
3060         realloc failed.
3061
3062 2010-06-08  Peter Simons  <simons@cryp.to>
3063
3064         maint.mk: make the news-check rule more configurable
3065         * top/maint.mk (news-check-lines-spec) New variable.
3066         (news-check): Use "sed -n 1,10p" in place of "head".
3067
3068 2010-06-07  Jim Meyering  <meyering@redhat.com>
3069
3070         do-release-commit-and-tag: fix typo in --help
3071         * build-aux/do-release-commit-and-tag (Usage): Fix typo in --help.
3072
3073         regex: avoid new dead-code warning with gcc-4.6.0
3074         * lib/regex_internal.c (re_string_reconstruct): #if-0-out a dead
3075         if-block containing a while-loop.  It's been unused for at least
3076         5 years.
3077
3078 2010-06-05  Bruno Haible  <bruno@clisp.org>
3079
3080         * doc/posix-functions/strcoll.texi: Mention Solaris limitation.
3081         Reported by River Tarnell <river.tarnell@wikimedia.de> via Eric Blake.
3082
3083 2010-06-04  Bruno Haible  <bruno@clisp.org>
3084
3085         Update to GNU gettext 0.18.1.
3086         * modules/gettext (configure.ac): Require gettext infrastructure from
3087         version 0.18.1.
3088
3089 2010-06-03  Bruno Haible  <bruno@clisp.org>
3090
3091         Don't use AC_LIBOBJ with file names in subdirectories.
3092         * m4/libunistring-base.m4 (gl_LIBUNISTRING_MODULE): Renamed from
3093         gl_LIBUNISTRING_LIBSOURCE. Take a module name as argument, not a file
3094         name. Define an automake conditional. Don't invoke AC_LIBOBJ.
3095         * m4/libunistring.m4 (gl_LIBUNISTRING): Update AC_BEFORE invocation.
3096         * modules/uni*/* (configure.ac): Use gl_LIBUNISTRING_MODULE instead of
3097         gl_LIBUNISTRING_LIBSOURCE.
3098         (Makefile.am): Augment lib_SOURCES here, conditionally.
3099         * NEWS: Drop requirement for Automake option 'subdir-objects'.
3100
3101 2010-06-03  Bruno Haible  <bruno@clisp.org>
3102
3103         Simplify gl_LIBUNISTRING_VERSION_CMP expansion.
3104         * m4/libunistring-base.m4 (gl_LIBUNISTRING_VERSION_CMP): Ensure
3105         expansion does not end with a newline.
3106         (gl_LIBUNISTRING_LIBSOURCE, gl_LIBUNISTRING_LIBHEADER): Avoid
3107         unnecessary newline.
3108
3109 2010-06-03  Bruno Haible  <bruno@clisp.org>
3110
3111         Reduce dependencies.
3112         * tests/test-quotearg.h: New file, extracted from
3113         tests/test-quotearg.c.
3114         * tests/test-quotearg-simple.c: New file, extracted from
3115         tests/test-quotearg.c.
3116         * tests/test-quotearg.c: Don't include <ctype.h>.
3117         (struct result_strings, struct result_groups, LQ, RQ, LQ_ENC, RQ_ENC,
3118         RQ_ESC, inputs, compare, use_quotearg_buffer, use_quotearg,
3119         use_quote_double_quotes, use_quotearg_colon): Moved to
3120         tests/test-quotearg.h.
3121         (results_g, flag_results, custom_quotes, custom_results): Moved
3122         to tests/test-quotearg-simple.c.
3123         (main): Moved the part that does not depend on gettext to
3124         tests/test-quotearg-simple.c. Return 77 if the test cannot be
3125         performed.
3126         * modules/quotearg-simple: New file.
3127         * modules/quotearg-simple-tests: New file.
3128         * modules/quotearg (Depends-on): Add quotearg-simple.
3129         * modules/quotearg-tests (Status): Mark as gettext-dependent-test.
3130         (Files): Add tests/test-quotearg.h.
3131         Reported by Paolo Bonzini.
3132
3133 2010-06-03  Bruno Haible  <bruno@clisp.org>
3134
3135         Reduce dependencies.
3136         * modules/acl (Depends-on): Add gettext-h. Remove gettext.
3137
3138 2010-06-03  Bruno Haible  <bruno@clisp.org>
3139
3140         time: Undefine more broken macros.
3141         * lib/time.in.h: Undefine broken localtime_r and gmtime_r macros only
3142         for pthread-win32. Undefine also asctime_r, ctime_r, rand_r, strtok_r.
3143         Reported by Eric Blake.
3144
3145 2010-06-03  Bruno Haible  <bruno@clisp.org>
3146
3147         Choose among AC_DEFUN_ONCE, AC_DEFUN in a way that aclocal understands.
3148         * m4/iconv.m4 (gl_iconv_AC_DEFUN): New macro.
3149         (AM_ICONV): Define it through gl_iconv_AC_DEFUN.
3150         * m4/libunistring.m4 (gl_libunistring_AC_DEFUN): New macro.
3151         (gl_LIBUNISTRING): Define it through gl_libunistring_AC_DEFUN.
3152         Reported by Ludovic Courtès <ludo@gnu.org>.
3153
3154 2010-06-02  Eric Blake  <eblake@redhat.com>
3155
3156         time: work with mingw + pthreads-win32 library
3157         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Set new variable
3158         if timespec is defined only in pthread.h.
3159         * modules/time (Makefile.am): Substitute it.
3160         * lib/time.in.h (!TIME_H_DEFINES_STRUCT_TIMESPEC): Include
3161         <pthread.h>, when needed.
3162         (GNULIB_TIME_R): Undefine broken localtime_r and gmtime_r macros
3163         from the library.
3164
3165 2010-05-31  Bruno Haible  <bruno@clisp.org>
3166
3167         Avoid expanding two macros in the wrong order.
3168         * m4/libunistring-base.m4 (gl_LIBUNISTRING_LIB_PREPARE): Require
3169         gl_LIBUNISTRING if it is defined.
3170         * m4/libunistring.m4 (gl_LIBUNISTRING): Define using AC_DEFUN_ONCE for
3171         autoconf >= 2.64.
3172         Reported by Ludovic Courtès <ludo@gnu.org>.
3173
3174 2010-05-27  Jim Meyering  <meyering@redhat.com>
3175
3176         maint.mk: also prohibit "#undef" of always-defined symbols
3177         * top/maint.mk (def_sym_regex): Handle #undef as well as #define.
3178         Allow more than one space before the symbol name.
3179         (sc_prohibit_always-defined_macros): Use grep's -E, now that
3180         the regexp uses alternation.
3181
3182 2010-05-26  Eric Blake  <eblake@redhat.com>
3183
3184         maint.mk: avoid echo -e
3185         * top/maint.mk (gzip_rsyncable, _ignore_case, _sc_say_and_exit):
3186         Convert all uses of echo -* to printf.
3187         Reported by Matthias Bolte.
3188
3189 2010-05-25  Bruno Haible  <bruno@clisp.org>
3190
3191         Update to GNU gettext 0.18, part 2.
3192         * build-aux/po/Makefile.in.in: Update to GNU gettext 0.18.
3193         Reported by Martin von Gagern <Martin.vGagern@gmx.net>.
3194
3195 2010-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3196
3197         Add missing include in test-pwrite.c.
3198         * tests/test-pwrite.c: Include string.h, for strcmp.
3199
3200 2010-05-24  Bruno Haible  <bruno@clisp.org>
3201
3202         * NEWS: Mention requirement for Automake option 'subdir-objects'.
3203
3204 2010-05-24  Bruno Haible  <bruno@clisp.org>
3205
3206         Don't use conversion with transliteration in u{8,16,32}_strcoll.
3207         * lib/unistr/u-strcoll.h (FUNC): Use U_STRCONV_TO_ENCODING with
3208         iconveh_error argument.
3209         * lib/unistr/u8-strcoll.c: Define U_STRCONV_TO_ENCODING instead of
3210         U_STRCONV_TO_LOCALE.
3211         * lib/unistr/u16-strcoll.c: Likewise.
3212         * lib/unistr/u32-strcoll.c: Likewise.
3213         * modules/unistr/u8-strcoll (Depends-on): Add
3214         uniconv/u8-strconv-to-enc, localcharset. Remove
3215         uniconv/u8-strconv-to-locale.
3216         (configure.ac): Bump version number.
3217         * modules/unistr/u16-strcoll (Depends-on): Add
3218         uniconv/u16-strconv-to-enc, localcharset. Remove
3219         uniconv/u16-strconv-to-locale.
3220         (configure.ac): Bump version number.
3221         * modules/unistr/u32-strcoll (Depends-on): Add
3222         uniconv/u32-strconv-to-enc, localcharset. Remove
3223         uniconv/u32-strconv-to-locale.
3224         (configure.ac): Bump version number.
3225
3226 2010-05-24  Bruno Haible  <bruno@clisp.org>
3227
3228         Avoid a test failure on NetBSD 5.0.
3229         * tests/test-striconveh.c (main): On NetBSD, skip a test that triggers
3230         an iconv() bug.
3231
3232 2010-05-24  Bruno Haible  <bruno@clisp.org>
3233
3234         Adjust #include directive style.
3235         * modules/regex (Includes): Recommend to write <regex.h>.
3236
3237 2010-05-24  Bruno Haible  <bruno@clisp.org>
3238
3239         regex: Don't require alloca.
3240         * modules/regex (Depends-on): Remove alloca. Add alloca-opt.
3241         * lib/regex_internal.h (alloca): Ensure it's defined even if we call it
3242         only inside if (0).
3243
3244 2010-05-23  Jim Meyering  <meyering@redhat.com>
3245
3246         test-renameat.c: include <sys/stat.h>
3247         * tests/test-renameat.c: Include <sys/stat.h>; required for
3248         definition of S_IS* macros.
3249
3250 2010-05-23  Ben Pfaff  <blp@cs.stanford.edu>
3251
3252         Update maintainer documentation for 'relocatable-prog' module.
3253         * doc/relocatable-maint.texi: Update.
3254         Comments by Bruno Haible.
3255
3256 2010-05-23  Bruno Haible  <bruno@clisp.org>
3257
3258         git-merge-changelog: Enable --split-merged-entry by default.
3259         * lib/git-merge-changelog.c (main): Set split_merged_entry to true.
3260         (usage): Don't mention this option any more.
3261         Reported by Ralf Wildenhues.
3262
3263 2010-05-23  Jim Meyering  <meyering@redhat.com>
3264
3265         test-pwrite: do not leave behind a test file named "out"
3266         Revert commit d8fa18472a54c1cb2674c296b3d82443f234d5f7.
3267         The trivial-looking use of init.sh is really necessary.
3268         It ensures that the temporary file, "out", is created in
3269         a temporary directory, and removed upon termination.
3270         * tests/test-pwrite.sh: Re-add file.
3271         * modules/pwrite-tests: Reference it.
3272
3273 2010-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3274
3275         Fix output redirection buglet in init.sh.
3276         * tests/init.sh: Fix redirection of stderr.
3277
3278 2010-05-20  Simon Josefsson  <simon@josefsson.org>
3279
3280         * modules/valgrind-tests (configure.ac): Invoke gl_VALGRIND_TESTS.
3281
3282 2010-05-17  Simon Josefsson  <simon@josefsson.org>
3283
3284         * modules/valgrind-tests: New file.
3285         * m4/valgrind-tests.m4: New file.
3286         * doc/valgrind-tests.texi: New file.
3287         * doc/gnulib.texi (Running self-tests under valgrind): New
3288         section.
3289
3290 2010-05-19  Bruno Haible  <bruno@clisp.org>
3291
3292         Clean up dead code in recent commit.
3293         * m4/libunistring-base.m4 (gl_LIBUNISTRING_VERSION_CMP): Include the
3294         body of gl_LIBUNISTRING_VERSION_CMP_ORIG as fallback.
3295         (gl_LIBUNISTRING_VERSION_CMP_ORIG): Remove macro.
3296         Suggested by Paolo Bonzini.
3297
3298 2010-05-19  Bruno Haible  <bruno@clisp.org>
3299
3300         Avoid valgrind error reports from libunistring.
3301         * lib/libunistring.valgrind: New file, based on lib/malloca.valgrind.
3302         * modules/libunistring (Files): Add it.
3303         * modules/libunistring-optional (Files): Likewise.
3304
3305 2010-05-18  Paolo Bonzini  <bonzini@gnu.org>
3306             Bruno Haible  <bruno@clisp.org>
3307
3308         New module 'libunistring-optional'.
3309         * modules/libunistring-optional: New file.
3310         * m4/libunistring-base.m4: New file.
3311         * m4/libunistring-optional.m4: New file.
3312         * lib/unicase.in.h: Renamed from lib/unicase.h.
3313         * lib/uniconv.in.h: Renamed from lib/uniconv.h.
3314         * lib/unictype.in.h: Renamed from lib/unictype.h.
3315         * lib/unilbrk.in.h: Renamed from lib/unilbrk.h.
3316         * lib/uniname.in.h: Renamed from lib/uniname.h.
3317         * lib/uninorm.in.h: Renamed from lib/uninorm.h.
3318         * lib/unistdio.in.h: Renamed from lib/unistdio.h.
3319         * lib/unistr.in.h: Renamed from lib/unistr.h.
3320         * lib/unitypes.in.h: Renamed from lib/unitypes.h.
3321         * lib/uniwbrk.in.h: Renamed from lib/uniwbrk.h.
3322         * lib/uniwidth.in.h: Renamed from lib/uniwidth.h.
3323         * m4/libunistring.m4 (gl_LIBUNISTRING_CORE): Renamed from
3324         gl_LIBUNISTRING. If the library was found, determine the installed
3325         version and set LIBUNISTRING_VERSION.
3326         (gl_LIBUNISTRING): New macro, as a wrapper arount it. Document that it
3327         sets LIBUNISTRING_VERSION. If the module libunistring-optional is used,
3328         handle a configuration option --with-included-libunistring.
3329         * modules/libunistring (Files): Add m4/absolute-header.m4.
3330         * modules/unicase/base (Files): Use unicase.in.h instead of unicase.h.
3331         Add m4/libunistring-base.m4.
3332         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3333         (Makefile.am): Build unicase.h from unicase.in.h.
3334         * modules/uniconv/base (Files): Use uniconv.in.h instead of uniconv.h.
3335         Add m4/libunistring-base.m4.
3336         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3337         (Makefile.am): Build uniconv.h from uniconv.in.h.
3338         * modules/unictype/base (Files): Use unictype.in.h instead of
3339         unictype.h. Add m4/libunistring-base.m4.
3340         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3341         (Makefile.am): Build unictype.h from unictype.in.h.
3342         * modules/unilbrk/base (Files): Use unilbrk.in.h instead of unilbrk.h.
3343         Add m4/libunistring-base.m4.
3344         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3345         (Makefile.am): Build unilbrk.h from unilbrk.in.h.
3346         * modules/uniname/base (Files): Use uniname.in.h instead of uniname.h.
3347         Add m4/libunistring-base.m4.
3348         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3349         (Makefile.am): Build uniname.h from uniname.in.h.
3350         * modules/uninorm/base (Files): Use uninorm.in.h instead of uninorm.h.
3351         Add m4/libunistring-base.m4.
3352         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3353         (Makefile.am): Build uninorm.h from uninorm.in.h.
3354         * modules/unistdio/base (Files): Use unistdio.in.h instead of
3355         unistdio.h. Add m4/libunistring-base.m4.
3356         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3357         (Makefile.am): Build unistdio.h from unistdio.in.h.
3358         * modules/unistr/base (Files): Use unistr.in.h instead of unistr.h.
3359         Add m4/libunistring-base.m4.
3360         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3361         (Makefile.am): Build unistr.h from unistr.in.h.
3362         * modules/unitypes (Files): Use unitypes.in.h instead of unitypes.h.
3363         Add m4/libunistring-base.m4.
3364         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3365         (Makefile.am): Build unitypes.h from unitypes.in.h.
3366         * modules/uniwbrk/base (Files): Use uniwbrk.in.h instead of uniwbrk.h.
3367         Add m4/libunistring-base.m4.
3368         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3369         (Makefile.am): Build uniwbrk.h from uniwbrk.in.h.
3370         * modules/uniwidth/base (Files): Use uniwidth.in.h instead of
3371         uniwidth.h. Add m4/libunistring-base.m4.
3372         (configure.ac): Invoke gl_LIBUNISTRING_LIBHEADER.
3373         (Makefile.am): Build uniwidth.h from uniwidth.in.h.
3374         * modules/unicase/empty-prefix-context: Use gl_LIBUNISTRING_LIBSOURCE
3375         instead of augmenting lib_SOURCES.
3376         * modules/unicase/empty-suffix-context: Likewise.
3377         * modules/unicase/locale-language: Likewise.
3378         * modules/unicase/tolower: Likewise.
3379         * modules/unicase/totitle: Likewise.
3380         * modules/unicase/toupper: Likewise.
3381         * modules/unicase/u8-casecmp: Likewise.
3382         * modules/unicase/u8-casecoll: Likewise.
3383         * modules/unicase/u8-casefold: Likewise.
3384         * modules/unicase/u8-casexfrm: Likewise.
3385         * modules/unicase/u8-ct-casefold: Likewise.
3386         * modules/unicase/u8-ct-tolower: Likewise.
3387         * modules/unicase/u8-ct-totitle: Likewise.
3388         * modules/unicase/u8-ct-toupper: Likewise.
3389         * modules/unicase/u8-is-cased: Likewise.
3390         * modules/unicase/u8-is-casefolded: Likewise.
3391         * modules/unicase/u8-is-lowercase: Likewise.
3392         * modules/unicase/u8-is-titlecase: Likewise.
3393         * modules/unicase/u8-is-uppercase: Likewise.
3394         * modules/unicase/u8-prefix-context: Likewise.
3395         * modules/unicase/u8-suffix-context: Likewise.
3396         * modules/unicase/u8-tolower: Likewise.
3397         * modules/unicase/u8-totitle: Likewise.
3398         * modules/unicase/u8-toupper: Likewise.
3399         * modules/unicase/u16-casecmp: Likewise.
3400         * modules/unicase/u16-casecoll: Likewise.
3401         * modules/unicase/u16-casefold: Likewise.
3402         * modules/unicase/u16-casexfrm: Likewise.
3403         * modules/unicase/u16-ct-casefold: Likewise.
3404         * modules/unicase/u16-ct-tolower: Likewise.
3405         * modules/unicase/u16-ct-totitle: Likewise.
3406         * modules/unicase/u16-ct-toupper: Likewise.
3407         * modules/unicase/u16-is-cased: Likewise.
3408         * modules/unicase/u16-is-casefolded: Likewise.
3409         * modules/unicase/u16-is-lowercase: Likewise.
3410         * modules/unicase/u16-is-titlecase: Likewise.
3411         * modules/unicase/u16-is-uppercase: Likewise.
3412         * modules/unicase/u16-prefix-context: Likewise.
3413         * modules/unicase/u16-suffix-context: Likewise.
3414         * modules/unicase/u16-tolower: Likewise.
3415         * modules/unicase/u16-totitle: Likewise.
3416         * modules/unicase/u16-toupper: Likewise.
3417         * modules/unicase/u32-casecmp: Likewise.
3418         * modules/unicase/u32-casecoll: Likewise.
3419         * modules/unicase/u32-casefold: Likewise.
3420         * modules/unicase/u32-casexfrm: Likewise.
3421         * modules/unicase/u32-ct-casefold: Likewise.
3422         * modules/unicase/u32-ct-tolower: Likewise.
3423         * modules/unicase/u32-ct-totitle: Likewise.
3424         * modules/unicase/u32-ct-toupper: Likewise.
3425         * modules/unicase/u32-is-cased: Likewise.
3426         * modules/unicase/u32-is-casefolded: Likewise.
3427         * modules/unicase/u32-is-lowercase: Likewise.
3428         * modules/unicase/u32-is-titlecase: Likewise.
3429         * modules/unicase/u32-is-uppercase: Likewise.
3430         * modules/unicase/u32-prefix-context: Likewise.
3431         * modules/unicase/u32-suffix-context: Likewise.
3432         * modules/unicase/u32-tolower: Likewise.
3433         * modules/unicase/u32-totitle: Likewise.
3434         * modules/unicase/u32-toupper: Likewise.
3435         * modules/unicase/ulc-casecmp: Likewise.
3436         * modules/unicase/ulc-casecoll: Likewise.
3437         * modules/unicase/ulc-casexfrm: Likewise.
3438         * modules/uniconv/u8-conv-from-enc: Likewise.
3439         * modules/uniconv/u8-conv-to-enc: Likewise.
3440         * modules/uniconv/u8-strconv-from-enc: Likewise.
3441         * modules/uniconv/u8-strconv-from-locale: Likewise.
3442         * modules/uniconv/u8-strconv-to-enc: Likewise.
3443         * modules/uniconv/u8-strconv-to-locale: Likewise.
3444         * modules/uniconv/u16-conv-from-enc: Likewise.
3445         * modules/uniconv/u16-conv-to-enc: Likewise.
3446         * modules/uniconv/u16-strconv-from-enc: Likewise.
3447         * modules/uniconv/u16-strconv-from-locale: Likewise.
3448         * modules/uniconv/u16-strconv-to-enc: Likewise.
3449         * modules/uniconv/u16-strconv-to-locale: Likewise.
3450         * modules/uniconv/u32-conv-from-enc: Likewise.
3451         * modules/uniconv/u32-conv-to-enc: Likewise.
3452         * modules/uniconv/u32-strconv-from-enc: Likewise.
3453         * modules/uniconv/u32-strconv-from-locale: Likewise.
3454         * modules/uniconv/u32-strconv-to-enc: Likewise.
3455         * modules/uniconv/u32-strconv-to-locale: Likewise.
3456         * modules/unictype/bidicategory-byname: Likewise.
3457         * modules/unictype/bidicategory-name: Likewise.
3458         * modules/unictype/bidicategory-of: Likewise.
3459         * modules/unictype/bidicategory-test: Likewise.
3460         * modules/unictype/block-list: Likewise.
3461         * modules/unictype/block-test: Likewise.
3462         * modules/unictype/category-C: Likewise.
3463         * modules/unictype/category-Cc: Likewise.
3464         * modules/unictype/category-Cf: Likewise.
3465         * modules/unictype/category-Cn: Likewise.
3466         * modules/unictype/category-Co: Likewise.
3467         * modules/unictype/category-Cs: Likewise.
3468         * modules/unictype/category-L: Likewise.
3469         * modules/unictype/category-Ll: Likewise.
3470         * modules/unictype/category-Lm: Likewise.
3471         * modules/unictype/category-Lo: Likewise.
3472         * modules/unictype/category-Lt: Likewise.
3473         * modules/unictype/category-Lu: Likewise.
3474         * modules/unictype/category-M: Likewise.
3475         * modules/unictype/category-Mc: Likewise.
3476         * modules/unictype/category-Me: Likewise.
3477         * modules/unictype/category-Mn: Likewise.
3478         * modules/unictype/category-N: Likewise.
3479         * modules/unictype/category-Nd: Likewise.
3480         * modules/unictype/category-Nl: Likewise.
3481         * modules/unictype/category-No: Likewise.
3482         * modules/unictype/category-P: Likewise.
3483         * modules/unictype/category-Pc: Likewise.
3484         * modules/unictype/category-Pd: Likewise.
3485         * modules/unictype/category-Pe: Likewise.
3486         * modules/unictype/category-Pf: Likewise.
3487         * modules/unictype/category-Pi: Likewise.
3488         * modules/unictype/category-Po: Likewise.
3489         * modules/unictype/category-Ps: Likewise.
3490         * modules/unictype/category-S: Likewise.
3491         * modules/unictype/category-Sc: Likewise.
3492         * modules/unictype/category-Sk: Likewise.
3493         * modules/unictype/category-Sm: Likewise.
3494         * modules/unictype/category-So: Likewise.
3495         * modules/unictype/category-Z: Likewise.
3496         * modules/unictype/category-Zl: Likewise.
3497         * modules/unictype/category-Zp: Likewise.
3498         * modules/unictype/category-Zs: Likewise.
3499         * modules/unictype/category-and: Likewise.
3500         * modules/unictype/category-and-not: Likewise.
3501         * modules/unictype/category-byname: Likewise.
3502         * modules/unictype/category-name: Likewise.
3503         * modules/unictype/category-none: Likewise.
3504         * modules/unictype/category-of: Likewise.
3505         * modules/unictype/category-or: Likewise.
3506         * modules/unictype/category-test: Likewise.
3507         * modules/unictype/combining-class: Likewise.
3508         * modules/unictype/ctype-alnum: Likewise.
3509         * modules/unictype/ctype-alpha: Likewise.
3510         * modules/unictype/ctype-blank: Likewise.
3511         * modules/unictype/ctype-cntrl: Likewise.
3512         * modules/unictype/ctype-digit: Likewise.
3513         * modules/unictype/ctype-graph: Likewise.
3514         * modules/unictype/ctype-lower: Likewise.
3515         * modules/unictype/ctype-print: Likewise.
3516         * modules/unictype/ctype-punct: Likewise.
3517         * modules/unictype/ctype-space: Likewise.
3518         * modules/unictype/ctype-upper: Likewise.
3519         * modules/unictype/ctype-xdigit: Likewise.
3520         * modules/unictype/decimal-digit: Likewise.
3521         * modules/unictype/digit: Likewise.
3522         * modules/unictype/mirror: Likewise.
3523         * modules/unictype/numeric: Likewise.
3524         * modules/unictype/property-alphabetic: Likewise.
3525         * modules/unictype/property-ascii-hex-digit: Likewise.
3526         * modules/unictype/property-bidi-arabic-digit: Likewise.
3527         * modules/unictype/property-bidi-arabic-right-to-left: Likewise.
3528         * modules/unictype/property-bidi-block-separator: Likewise.
3529         * modules/unictype/property-bidi-boundary-neutral: Likewise.
3530         * modules/unictype/property-bidi-common-separator: Likewise.
3531         * modules/unictype/property-bidi-control: Likewise.
3532         * modules/unictype/property-bidi-embedding-or-override: Likewise.
3533         * modules/unictype/property-bidi-eur-num-separator: Likewise.
3534         * modules/unictype/property-bidi-eur-num-terminator: Likewise.
3535         * modules/unictype/property-bidi-european-digit: Likewise.
3536         * modules/unictype/property-bidi-hebrew-right-to-left: Likewise.
3537         * modules/unictype/property-bidi-left-to-right: Likewise.
3538         * modules/unictype/property-bidi-non-spacing-mark: Likewise.
3539         * modules/unictype/property-bidi-other-neutral: Likewise.
3540         * modules/unictype/property-bidi-pdf: Likewise.
3541         * modules/unictype/property-bidi-segment-separator: Likewise.
3542         * modules/unictype/property-bidi-whitespace: Likewise.
3543         * modules/unictype/property-byname: Likewise.
3544         * modules/unictype/property-combining: Likewise.
3545         * modules/unictype/property-composite: Likewise.
3546         * modules/unictype/property-currency-symbol: Likewise.
3547         * modules/unictype/property-dash: Likewise.
3548         * modules/unictype/property-decimal-digit: Likewise.
3549         * modules/unictype/property-default-ignorable-code-point: Likewise.
3550         * modules/unictype/property-deprecated: Likewise.
3551         * modules/unictype/property-diacritic: Likewise.
3552         * modules/unictype/property-extender: Likewise.
3553         * modules/unictype/property-format-control: Likewise.
3554         * modules/unictype/property-grapheme-base: Likewise.
3555         * modules/unictype/property-grapheme-extend: Likewise.
3556         * modules/unictype/property-grapheme-link: Likewise.
3557         * modules/unictype/property-hex-digit: Likewise.
3558         * modules/unictype/property-hyphen: Likewise.
3559         * modules/unictype/property-id-continue: Likewise.
3560         * modules/unictype/property-id-start: Likewise.
3561         * modules/unictype/property-ideographic: Likewise.
3562         * modules/unictype/property-ids-binary-operator: Likewise.
3563         * modules/unictype/property-ids-trinary-operator: Likewise.
3564         * modules/unictype/property-ignorable-control: Likewise.
3565         * modules/unictype/property-iso-control: Likewise.
3566         * modules/unictype/property-join-control: Likewise.
3567         * modules/unictype/property-left-of-pair: Likewise.
3568         * modules/unictype/property-line-separator: Likewise.
3569         * modules/unictype/property-logical-order-exception: Likewise.
3570         * modules/unictype/property-lowercase: Likewise.
3571         * modules/unictype/property-math: Likewise.
3572         * modules/unictype/property-non-break: Likewise.
3573         * modules/unictype/property-not-a-character: Likewise.
3574         * modules/unictype/property-numeric: Likewise.
3575         * modules/unictype/property-other-alphabetic: Likewise.
3576         * modules/unictype/property-other-default-ignorable-code-point: Likewise.
3577         * modules/unictype/property-other-grapheme-extend: Likewise.
3578         * modules/unictype/property-other-id-continue: Likewise.
3579         * modules/unictype/property-other-id-start: Likewise.
3580         * modules/unictype/property-other-lowercase: Likewise.
3581         * modules/unictype/property-other-math: Likewise.
3582         * modules/unictype/property-other-uppercase: Likewise.
3583         * modules/unictype/property-paired-punctuation: Likewise.
3584         * modules/unictype/property-paragraph-separator: Likewise.
3585         * modules/unictype/property-pattern-syntax: Likewise.
3586         * modules/unictype/property-pattern-white-space: Likewise.
3587         * modules/unictype/property-private-use: Likewise.
3588         * modules/unictype/property-punctuation: Likewise.
3589         * modules/unictype/property-quotation-mark: Likewise.
3590         * modules/unictype/property-radical: Likewise.
3591         * modules/unictype/property-sentence-terminal: Likewise.
3592         * modules/unictype/property-soft-dotted: Likewise.
3593         * modules/unictype/property-space: Likewise.
3594         * modules/unictype/property-terminal-punctuation: Likewise.
3595         * modules/unictype/property-test: Likewise.
3596         * modules/unictype/property-titlecase: Likewise.
3597         * modules/unictype/property-unassigned-code-value: Likewise.
3598         * modules/unictype/property-unified-ideograph: Likewise.
3599         * modules/unictype/property-uppercase: Likewise.
3600         * modules/unictype/property-variation-selector: Likewise.
3601         * modules/unictype/property-white-space: Likewise.
3602         * modules/unictype/property-xid-continue: Likewise.
3603         * modules/unictype/property-xid-start: Likewise.
3604         * modules/unictype/property-zero-width: Likewise.
3605         * modules/unictype/scripts: Likewise.
3606         * modules/unictype/syntax-c-ident: Likewise.
3607         * modules/unictype/syntax-c-whitespace: Likewise.
3608         * modules/unictype/syntax-java-ident: Likewise.
3609         * modules/unictype/syntax-java-whitespace: Likewise.
3610         * modules/unilbrk/u8-possible-linebreaks: Likewise.
3611         * modules/unilbrk/u8-width-linebreaks: Likewise.
3612         * modules/unilbrk/u16-possible-linebreaks: Likewise.
3613         * modules/unilbrk/u16-width-linebreaks: Likewise.
3614         * modules/unilbrk/u32-possible-linebreaks: Likewise.
3615         * modules/unilbrk/u32-width-linebreaks: Likewise.
3616         * modules/unilbrk/ulc-possible-linebreaks: Likewise.
3617         * modules/unilbrk/ulc-width-linebreaks: Likewise.
3618         * modules/uniname/uniname: Likewise.
3619         * modules/uninorm/canonical-decomposition: Likewise.
3620         * modules/uninorm/composition: Likewise.
3621         * modules/uninorm/decomposing-form: Likewise.
3622         * modules/uninorm/decomposition: Likewise.
3623         * modules/uninorm/filter: Likewise.
3624         * modules/uninorm/nfc: Likewise.
3625         * modules/uninorm/nfd: Likewise.
3626         * modules/uninorm/nfkc: Likewise.
3627         * modules/uninorm/nfkd: Likewise.
3628         * modules/uninorm/u8-normalize: Likewise.
3629         * modules/uninorm/u8-normcmp: Likewise.
3630         * modules/uninorm/u8-normcoll: Likewise.
3631         * modules/uninorm/u8-normxfrm: Likewise.
3632         * modules/uninorm/u16-normalize: Likewise.
3633         * modules/uninorm/u16-normcmp: Likewise.
3634         * modules/uninorm/u16-normcoll: Likewise.
3635         * modules/uninorm/u16-normxfrm: Likewise.
3636         * modules/uninorm/u32-normalize: Likewise.
3637         * modules/uninorm/u32-normcmp: Likewise.
3638         * modules/uninorm/u32-normcoll: Likewise.
3639         * modules/uninorm/u32-normxfrm: Likewise.
3640         * modules/unistdio/u8-asnprintf: Likewise.
3641         * modules/unistdio/u8-asprintf: Likewise.
3642         * modules/unistdio/u8-snprintf: Likewise.
3643         * modules/unistdio/u8-sprintf: Likewise.
3644         * modules/unistdio/u8-u8-asnprintf: Likewise.
3645         * modules/unistdio/u8-u8-asprintf: Likewise.
3646         * modules/unistdio/u8-u8-snprintf: Likewise.
3647         * modules/unistdio/u8-u8-sprintf: Likewise.
3648         * modules/unistdio/u8-u8-vasnprintf: Likewise.
3649         * modules/unistdio/u8-u8-vasprintf: Likewise.
3650         * modules/unistdio/u8-u8-vsnprintf: Likewise.
3651         * modules/unistdio/u8-u8-vsprintf: Likewise.
3652         * modules/unistdio/u8-vasnprintf: Likewise.
3653         * modules/unistdio/u8-vasprintf: Likewise.
3654         * modules/unistdio/u8-vsnprintf: Likewise.
3655         * modules/unistdio/u8-vsprintf: Likewise.
3656         * modules/unistdio/u16-asnprintf: Likewise.
3657         * modules/unistdio/u16-asprintf: Likewise.
3658         * modules/unistdio/u16-snprintf: Likewise.
3659         * modules/unistdio/u16-sprintf: Likewise.
3660         * modules/unistdio/u16-u16-asnprintf: Likewise.
3661         * modules/unistdio/u16-u16-asprintf: Likewise.
3662         * modules/unistdio/u16-u16-snprintf: Likewise.
3663         * modules/unistdio/u16-u16-sprintf: Likewise.
3664         * modules/unistdio/u16-u16-vasnprintf: Likewise.
3665         * modules/unistdio/u16-u16-vasprintf: Likewise.
3666         * modules/unistdio/u16-u16-vsnprintf: Likewise.
3667         * modules/unistdio/u16-u16-vsprintf: Likewise.
3668         * modules/unistdio/u16-vasnprintf: Likewise.
3669         * modules/unistdio/u16-vasprintf: Likewise.
3670         * modules/unistdio/u16-vsnprintf: Likewise.
3671         * modules/unistdio/u16-vsprintf: Likewise.
3672         * modules/unistdio/u32-asnprintf: Likewise.
3673         * modules/unistdio/u32-asprintf: Likewise.
3674         * modules/unistdio/u32-snprintf: Likewise.
3675         * modules/unistdio/u32-sprintf: Likewise.
3676         * modules/unistdio/u32-u32-asnprintf: Likewise.
3677         * modules/unistdio/u32-u32-asprintf: Likewise.
3678         * modules/unistdio/u32-u32-snprintf: Likewise.
3679         * modules/unistdio/u32-u32-sprintf: Likewise.
3680         * modules/unistdio/u32-u32-vasnprintf: Likewise.
3681         * modules/unistdio/u32-u32-vasprintf: Likewise.
3682         * modules/unistdio/u32-u32-vsnprintf: Likewise.
3683         * modules/unistdio/u32-u32-vsprintf: Likewise.
3684         * modules/unistdio/u32-vasnprintf: Likewise.
3685         * modules/unistdio/u32-vasprintf: Likewise.
3686         * modules/unistdio/u32-vsnprintf: Likewise.
3687         * modules/unistdio/u32-vsprintf: Likewise.
3688         * modules/unistdio/ulc-asnprintf: Likewise.
3689         * modules/unistdio/ulc-asprintf: Likewise.
3690         * modules/unistdio/ulc-fprintf: Likewise.
3691         * modules/unistdio/ulc-snprintf: Likewise.
3692         * modules/unistdio/ulc-sprintf: Likewise.
3693         * modules/unistdio/ulc-vasnprintf: Likewise.
3694         * modules/unistdio/ulc-vasprintf: Likewise.
3695         * modules/unistdio/ulc-vfprintf: Likewise.
3696         * modules/unistdio/ulc-vsnprintf: Likewise.
3697         * modules/unistdio/ulc-vsprintf: Likewise.
3698         * modules/unistr/u8-check: Likewise.
3699         * modules/unistr/u8-chr: Likewise.
3700         * modules/unistr/u8-cmp: Likewise.
3701         * modules/unistr/u8-cmp2: Likewise.
3702         * modules/unistr/u8-cpy: Likewise.
3703         * modules/unistr/u8-cpy-alloc: Likewise.
3704         * modules/unistr/u8-endswith: Likewise.
3705         * modules/unistr/u8-mblen: Likewise.
3706         * modules/unistr/u8-mbsnlen: Likewise.
3707         * modules/unistr/u8-mbtouc: Likewise.
3708         * modules/unistr/u8-mbtouc-unsafe: Likewise.
3709         * modules/unistr/u8-mbtoucr: Likewise.
3710         * modules/unistr/u8-move: Likewise.
3711         * modules/unistr/u8-next: Likewise.
3712         * modules/unistr/u8-prev: Likewise.
3713         * modules/unistr/u8-set: Likewise.
3714         * modules/unistr/u8-startswith: Likewise.
3715         * modules/unistr/u8-stpcpy: Likewise.
3716         * modules/unistr/u8-stpncpy: Likewise.
3717         * modules/unistr/u8-strcat: Likewise.
3718         * modules/unistr/u8-strchr: Likewise.
3719         * modules/unistr/u8-strcmp: Likewise.
3720         * modules/unistr/u8-strcoll: Likewise.
3721         * modules/unistr/u8-strcpy: Likewise.
3722         * modules/unistr/u8-strcspn: Likewise.
3723         * modules/unistr/u8-strdup: Likewise.
3724         * modules/unistr/u8-strlen: Likewise.
3725         * modules/unistr/u8-strmblen: Likewise.
3726         * modules/unistr/u8-strmbtouc: Likewise.
3727         * modules/unistr/u8-strncat: Likewise.
3728         * modules/unistr/u8-strncmp: Likewise.
3729         * modules/unistr/u8-strncpy: Likewise.
3730         * modules/unistr/u8-strnlen: Likewise.
3731         * modules/unistr/u8-strpbrk: Likewise.
3732         * modules/unistr/u8-strrchr: Likewise.
3733         * modules/unistr/u8-strspn: Likewise.
3734         * modules/unistr/u8-strstr: Likewise.
3735         * modules/unistr/u8-strtok: Likewise.
3736         * modules/unistr/u8-to-u16: Likewise.
3737         * modules/unistr/u8-to-u32: Likewise.
3738         * modules/unistr/u8-uctomb: Likewise.
3739         * modules/unistr/u16-check: Likewise.
3740         * modules/unistr/u16-chr: Likewise.
3741         * modules/unistr/u16-cmp: Likewise.
3742         * modules/unistr/u16-cmp2: Likewise.
3743         * modules/unistr/u16-cpy: Likewise.
3744         * modules/unistr/u16-cpy-alloc: Likewise.
3745         * modules/unistr/u16-endswith: Likewise.
3746         * modules/unistr/u16-mblen: Likewise.
3747         * modules/unistr/u16-mbsnlen: Likewise.
3748         * modules/unistr/u16-mbtouc: Likewise.
3749         * modules/unistr/u16-mbtouc-unsafe: Likewise.
3750         * modules/unistr/u16-mbtoucr: Likewise.
3751         * modules/unistr/u16-move: Likewise.
3752         * modules/unistr/u16-next: Likewise.
3753         * modules/unistr/u16-prev: Likewise.
3754         * modules/unistr/u16-set: Likewise.
3755         * modules/unistr/u16-startswith: Likewise.
3756         * modules/unistr/u16-stpcpy: Likewise.
3757         * modules/unistr/u16-stpncpy: Likewise.
3758         * modules/unistr/u16-strcat: Likewise.
3759         * modules/unistr/u16-strchr: Likewise.
3760         * modules/unistr/u16-strcmp: Likewise.
3761         * modules/unistr/u16-strcoll: Likewise.
3762         * modules/unistr/u16-strcpy: Likewise.
3763         * modules/unistr/u16-strcspn: Likewise.
3764         * modules/unistr/u16-strdup: Likewise.
3765         * modules/unistr/u16-strlen: Likewise.
3766         * modules/unistr/u16-strmblen: Likewise.
3767         * modules/unistr/u16-strmbtouc: Likewise.
3768         * modules/unistr/u16-strncat: Likewise.
3769         * modules/unistr/u16-strncmp: Likewise.
3770         * modules/unistr/u16-strncpy: Likewise.
3771         * modules/unistr/u16-strnlen: Likewise.
3772         * modules/unistr/u16-strpbrk: Likewise.
3773         * modules/unistr/u16-strrchr: Likewise.
3774         * modules/unistr/u16-strspn: Likewise.
3775         * modules/unistr/u16-strstr: Likewise.
3776         * modules/unistr/u16-strtok: Likewise.
3777         * modules/unistr/u16-to-u32: Likewise.
3778         * modules/unistr/u16-to-u8: Likewise.
3779         * modules/unistr/u16-uctomb: Likewise.
3780         * modules/unistr/u32-check: Likewise.
3781         * modules/unistr/u32-chr: Likewise.
3782         * modules/unistr/u32-cmp: Likewise.
3783         * modules/unistr/u32-cmp2: Likewise.
3784         * modules/unistr/u32-cpy: Likewise.
3785         * modules/unistr/u32-cpy-alloc: Likewise.
3786         * modules/unistr/u32-endswith: Likewise.
3787         * modules/unistr/u32-mblen: Likewise.
3788         * modules/unistr/u32-mbsnlen: Likewise.
3789         * modules/unistr/u32-mbtouc: Likewise.
3790         * modules/unistr/u32-mbtouc-unsafe: Likewise.
3791         * modules/unistr/u32-mbtoucr: Likewise.
3792         * modules/unistr/u32-move: Likewise.
3793         * modules/unistr/u32-next: Likewise.
3794         * modules/unistr/u32-prev: Likewise.
3795         * modules/unistr/u32-set: Likewise.
3796         * modules/unistr/u32-startswith: Likewise.
3797         * modules/unistr/u32-stpcpy: Likewise.
3798         * modules/unistr/u32-stpncpy: Likewise.
3799         * modules/unistr/u32-strcat: Likewise.
3800         * modules/unistr/u32-strchr: Likewise.
3801         * modules/unistr/u32-strcmp: Likewise.
3802         * modules/unistr/u32-strcoll: Likewise.
3803         * modules/unistr/u32-strcpy: Likewise.
3804         * modules/unistr/u32-strcspn: Likewise.
3805         * modules/unistr/u32-strdup: Likewise.
3806         * modules/unistr/u32-strlen: Likewise.
3807         * modules/unistr/u32-strmblen: Likewise.
3808         * modules/unistr/u32-strmbtouc: Likewise.
3809         * modules/unistr/u32-strncat: Likewise.
3810         * modules/unistr/u32-strncmp: Likewise.
3811         * modules/unistr/u32-strncpy: Likewise.
3812         * modules/unistr/u32-strnlen: Likewise.
3813         * modules/unistr/u32-strpbrk: Likewise.
3814         * modules/unistr/u32-strrchr: Likewise.
3815         * modules/unistr/u32-strspn: Likewise.
3816         * modules/unistr/u32-strstr: Likewise.
3817         * modules/unistr/u32-strtok: Likewise.
3818         * modules/unistr/u32-to-u16: Likewise.
3819         * modules/unistr/u32-to-u8: Likewise.
3820         * modules/unistr/u32-uctomb: Likewise.
3821         * modules/uniwbrk/u8-wordbreaks: Likewise.
3822         * modules/uniwbrk/u16-wordbreaks: Likewise.
3823         * modules/uniwbrk/u32-wordbreaks: Likewise.
3824         * modules/uniwbrk/ulc-wordbreaks: Likewise.
3825         * modules/uniwbrk/wordbreak-property: Likewise.
3826         * modules/uniwidth/u8-strwidth: Likewise.
3827         * modules/uniwidth/u8-width: Likewise.
3828         * modules/uniwidth/u16-strwidth: Likewise.
3829         * modules/uniwidth/u16-width: Likewise.
3830         * modules/uniwidth/u32-strwidth: Likewise.
3831         * modules/uniwidth/u32-width: Likewise.
3832         * modules/uniwidth/width: Likewise.
3833         * modules/unicase/cased-tests (Makefile.am): Link all test programs
3834         with $(LIBUNISTRING).
3835         * modules/unicase/ignorable-tests: Likewise.
3836         * modules/unicase/locale-language-tests: Likewise.
3837         * modules/unicase/tolower-tests: Likewise.
3838         * modules/unicase/totitle-tests: Likewise.
3839         * modules/unicase/toupper-tests: Likewise.
3840         * modules/unicase/u8-casecmp-tests: Likewise.
3841         * modules/unicase/u8-casecoll-tests: Likewise.
3842         * modules/unicase/u8-casefold-tests: Likewise.
3843         * modules/unicase/u8-is-cased-tests: Likewise.
3844         * modules/unicase/u8-is-casefolded-tests: Likewise.
3845         * modules/unicase/u8-is-lowercase-tests: Likewise.
3846         * modules/unicase/u8-is-titlecase-tests: Likewise.
3847         * modules/unicase/u8-is-uppercase-tests: Likewise.
3848         * modules/unicase/u8-tolower-tests: Likewise.
3849         * modules/unicase/u8-totitle-tests: Likewise.
3850         * modules/unicase/u8-toupper-tests: Likewise.
3851         * modules/unicase/u16-casecmp-tests: Likewise.
3852         * modules/unicase/u16-casecoll-tests: Likewise.
3853         * modules/unicase/u16-casefold-tests: Likewise.
3854         * modules/unicase/u16-is-cased-tests: Likewise.
3855         * modules/unicase/u16-is-casefolded-tests: Likewise.
3856         * modules/unicase/u16-is-lowercase-tests: Likewise.
3857         * modules/unicase/u16-is-titlecase-tests: Likewise.
3858         * modules/unicase/u16-is-uppercase-tests: Likewise.
3859         * modules/unicase/u16-tolower-tests: Likewise.
3860         * modules/unicase/u16-totitle-tests: Likewise.
3861         * modules/unicase/u16-toupper-tests: Likewise.
3862         * modules/unicase/u32-casecmp-tests: Likewise.
3863         * modules/unicase/u32-casecoll-tests: Likewise.
3864         * modules/unicase/u32-casefold-tests: Likewise.
3865         * modules/unicase/u32-is-cased-tests: Likewise.
3866         * modules/unicase/u32-is-casefolded-tests: Likewise.
3867         * modules/unicase/u32-is-lowercase-tests: Likewise.
3868         * modules/unicase/u32-is-titlecase-tests: Likewise.
3869         * modules/unicase/u32-is-uppercase-tests: Likewise.
3870         * modules/unicase/u32-tolower-tests: Likewise.
3871         * modules/unicase/u32-totitle-tests: Likewise.
3872         * modules/unicase/u32-toupper-tests: Likewise.
3873         * modules/unicase/ulc-casecmp-tests: Likewise.
3874         * modules/unicase/ulc-casecoll-tests: Likewise.
3875         * modules/uniconv/u8-conv-from-enc-tests: Likewise.
3876         * modules/uniconv/u8-conv-to-enc-tests: Likewise.
3877         * modules/uniconv/u8-strconv-from-enc-tests: Likewise.
3878         * modules/uniconv/u8-strconv-to-enc-tests: Likewise.
3879         * modules/uniconv/u16-conv-from-enc-tests: Likewise.
3880         * modules/uniconv/u16-conv-to-enc-tests: Likewise.
3881         * modules/uniconv/u16-strconv-from-enc-tests: Likewise.
3882         * modules/uniconv/u16-strconv-to-enc-tests: Likewise.
3883         * modules/uniconv/u32-conv-from-enc-tests: Likewise.
3884         * modules/uniconv/u32-conv-to-enc-tests: Likewise.
3885         * modules/uniconv/u32-strconv-from-enc-tests: Likewise.
3886         * modules/uniconv/u32-strconv-to-enc-tests: Likewise.
3887         * modules/unictype/bidicategory-byname-tests: Likewise.
3888         * modules/unictype/bidicategory-name-tests: Likewise.
3889         * modules/unictype/bidicategory-of-tests: Likewise.
3890         * modules/unictype/bidicategory-test-tests: Likewise.
3891         * modules/unictype/block-list-tests: Likewise.
3892         * modules/unictype/block-of-tests: Likewise.
3893         * modules/unictype/block-test-tests: Likewise.
3894         * modules/unictype/category-C-tests: Likewise.
3895         * modules/unictype/category-Cc-tests: Likewise.
3896         * modules/unictype/category-Cf-tests: Likewise.
3897         * modules/unictype/category-Cn-tests: Likewise.
3898         * modules/unictype/category-Co-tests: Likewise.
3899         * modules/unictype/category-Cs-tests: Likewise.
3900         * modules/unictype/category-L-tests: Likewise.
3901         * modules/unictype/category-Ll-tests: Likewise.
3902         * modules/unictype/category-Lm-tests: Likewise.
3903         * modules/unictype/category-Lo-tests: Likewise.
3904         * modules/unictype/category-Lt-tests: Likewise.
3905         * modules/unictype/category-Lu-tests: Likewise.
3906         * modules/unictype/category-M-tests: Likewise.
3907         * modules/unictype/category-Mc-tests: Likewise.
3908         * modules/unictype/category-Me-tests: Likewise.
3909         * modules/unictype/category-Mn-tests: Likewise.
3910         * modules/unictype/category-N-tests: Likewise.
3911         * modules/unictype/category-Nd-tests: Likewise.
3912         * modules/unictype/category-Nl-tests: Likewise.
3913         * modules/unictype/category-No-tests: Likewise.
3914         * modules/unictype/category-P-tests: Likewise.
3915         * modules/unictype/category-Pc-tests: Likewise.
3916         * modules/unictype/category-Pd-tests: Likewise.
3917         * modules/unictype/category-Pe-tests: Likewise.
3918         * modules/unictype/category-Pf-tests: Likewise.
3919         * modules/unictype/category-Pi-tests: Likewise.
3920         * modules/unictype/category-Po-tests: Likewise.
3921         * modules/unictype/category-Ps-tests: Likewise.
3922         * modules/unictype/category-S-tests: Likewise.
3923         * modules/unictype/category-Sc-tests: Likewise.
3924         * modules/unictype/category-Sk-tests: Likewise.
3925         * modules/unictype/category-Sm-tests: Likewise.
3926         * modules/unictype/category-So-tests: Likewise.
3927         * modules/unictype/category-Z-tests: Likewise.
3928         * modules/unictype/category-Zl-tests: Likewise.
3929         * modules/unictype/category-Zp-tests: Likewise.
3930         * modules/unictype/category-Zs-tests: Likewise.
3931         * modules/unictype/category-and-not-tests: Likewise.
3932         * modules/unictype/category-and-tests: Likewise.
3933         * modules/unictype/category-byname-tests: Likewise.
3934         * modules/unictype/category-name-tests: Likewise.
3935         * modules/unictype/category-none-tests: Likewise.
3936         * modules/unictype/category-of-tests: Likewise.
3937         * modules/unictype/category-or-tests: Likewise.
3938         * modules/unictype/category-test-withtable-tests: Likewise.
3939         * modules/unictype/combining-class-tests: Likewise.
3940         * modules/unictype/ctype-alnum-tests: Likewise.
3941         * modules/unictype/ctype-alpha-tests: Likewise.
3942         * modules/unictype/ctype-blank-tests: Likewise.
3943         * modules/unictype/ctype-cntrl-tests: Likewise.
3944         * modules/unictype/ctype-digit-tests: Likewise.
3945         * modules/unictype/ctype-graph-tests: Likewise.
3946         * modules/unictype/ctype-lower-tests: Likewise.
3947         * modules/unictype/ctype-print-tests: Likewise.
3948         * modules/unictype/ctype-punct-tests: Likewise.
3949         * modules/unictype/ctype-space-tests: Likewise.
3950         * modules/unictype/ctype-upper-tests: Likewise.
3951         * modules/unictype/ctype-xdigit-tests: Likewise.
3952         * modules/unictype/decimal-digit-tests: Likewise.
3953         * modules/unictype/digit-tests: Likewise.
3954         * modules/unictype/mirror-tests: Likewise.
3955         * modules/unictype/numeric-tests: Likewise.
3956         * modules/unictype/property-alphabetic-tests: Likewise.
3957         * modules/unictype/property-ascii-hex-digit-tests: Likewise.
3958         * modules/unictype/property-bidi-arabic-digit-tests: Likewise.
3959         * modules/unictype/property-bidi-arabic-right-to-left-tests: Likewise.
3960         * modules/unictype/property-bidi-block-separator-tests: Likewise.
3961         * modules/unictype/property-bidi-boundary-neutral-tests: Likewise.
3962         * modules/unictype/property-bidi-common-separator-tests: Likewise.
3963         * modules/unictype/property-bidi-control-tests: Likewise.
3964         * modules/unictype/property-bidi-embedding-or-override-tests: Likewise.
3965         * modules/unictype/property-bidi-eur-num-separator-tests: Likewise.
3966         * modules/unictype/property-bidi-eur-num-terminator-tests: Likewise.
3967         * modules/unictype/property-bidi-european-digit-tests: Likewise.
3968         * modules/unictype/property-bidi-hebrew-right-to-left-tests: Likewise.
3969         * modules/unictype/property-bidi-left-to-right-tests: Likewise.
3970         * modules/unictype/property-bidi-non-spacing-mark-tests: Likewise.
3971         * modules/unictype/property-bidi-other-neutral-tests: Likewise.
3972         * modules/unictype/property-bidi-pdf-tests: Likewise.
3973         * modules/unictype/property-bidi-segment-separator-tests: Likewise.
3974         * modules/unictype/property-bidi-whitespace-tests: Likewise.
3975         * modules/unictype/property-byname-tests: Likewise.
3976         * modules/unictype/property-combining-tests: Likewise.
3977         * modules/unictype/property-composite-tests: Likewise.
3978         * modules/unictype/property-currency-symbol-tests: Likewise.
3979         * modules/unictype/property-dash-tests: Likewise.
3980         * modules/unictype/property-decimal-digit-tests: Likewise.
3981         * modules/unictype/property-default-ignorable-code-point-tests: Likewise.
3982         * modules/unictype/property-deprecated-tests: Likewise.
3983         * modules/unictype/property-diacritic-tests: Likewise.
3984         * modules/unictype/property-extender-tests: Likewise.
3985         * modules/unictype/property-format-control-tests: Likewise.
3986         * modules/unictype/property-grapheme-base-tests: Likewise.
3987         * modules/unictype/property-grapheme-extend-tests: Likewise.
3988         * modules/unictype/property-grapheme-link-tests: Likewise.
3989         * modules/unictype/property-hex-digit-tests: Likewise.
3990         * modules/unictype/property-hyphen-tests: Likewise.
3991         * modules/unictype/property-id-continue-tests: Likewise.
3992         * modules/unictype/property-id-start-tests: Likewise.
3993         * modules/unictype/property-ideographic-tests: Likewise.
3994         * modules/unictype/property-ids-binary-operator-tests: Likewise.
3995         * modules/unictype/property-ids-trinary-operator-tests: Likewise.
3996         * modules/unictype/property-ignorable-control-tests: Likewise.
3997         * modules/unictype/property-iso-control-tests: Likewise.
3998         * modules/unictype/property-join-control-tests: Likewise.
3999         * modules/unictype/property-left-of-pair-tests: Likewise.
4000         * modules/unictype/property-line-separator-tests: Likewise.
4001         * modules/unictype/property-logical-order-exception-tests: Likewise.
4002         * modules/unictype/property-lowercase-tests: Likewise.
4003         * modules/unictype/property-math-tests: Likewise.
4004         * modules/unictype/property-non-break-tests: Likewise.
4005         * modules/unictype/property-not-a-character-tests: Likewise.
4006         * modules/unictype/property-numeric-tests: Likewise.
4007         * modules/unictype/property-other-alphabetic-tests: Likewise.
4008         * modules/unictype/property-other-default-ignorable-code-point-tests:
4009         Likewise.
4010         * modules/unictype/property-other-grapheme-extend-tests: Likewise.
4011         * modules/unictype/property-other-id-continue-tests: Likewise.
4012         * modules/unictype/property-other-id-start-tests: Likewise.
4013         * modules/unictype/property-other-lowercase-tests: Likewise.
4014         * modules/unictype/property-other-math-tests: Likewise.
4015         * modules/unictype/property-other-uppercase-tests: Likewise.
4016         * modules/unictype/property-paired-punctuation-tests: Likewise.
4017         * modules/unictype/property-paragraph-separator-tests: Likewise.
4018         * modules/unictype/property-pattern-syntax-tests: Likewise.
4019         * modules/unictype/property-pattern-white-space-tests: Likewise.
4020         * modules/unictype/property-private-use-tests: Likewise.
4021         * modules/unictype/property-punctuation-tests: Likewise.
4022         * modules/unictype/property-quotation-mark-tests: Likewise.
4023         * modules/unictype/property-radical-tests: Likewise.
4024         * modules/unictype/property-sentence-terminal-tests: Likewise.
4025         * modules/unictype/property-soft-dotted-tests: Likewise.
4026         * modules/unictype/property-space-tests: Likewise.
4027         * modules/unictype/property-terminal-punctuation-tests: Likewise.
4028         * modules/unictype/property-test-tests: Likewise.
4029         * modules/unictype/property-titlecase-tests: Likewise.
4030         * modules/unictype/property-unassigned-code-value-tests: Likewise.
4031         * modules/unictype/property-unified-ideograph-tests: Likewise.
4032         * modules/unictype/property-uppercase-tests: Likewise.
4033         * modules/unictype/property-variation-selector-tests: Likewise.
4034         * modules/unictype/property-white-space-tests: Likewise.
4035         * modules/unictype/property-xid-continue-tests: Likewise.
4036         * modules/unictype/property-xid-start-tests: Likewise.
4037         * modules/unictype/property-zero-width-tests: Likewise.
4038         * modules/unictype/scripts-tests: Likewise.
4039         * modules/unictype/syntax-c-ident-tests: Likewise.
4040         * modules/unictype/syntax-c-whitespace-tests: Likewise.
4041         * modules/unictype/syntax-java-ident-tests: Likewise.
4042         * modules/unictype/syntax-java-whitespace-tests: Likewise.
4043         * modules/unilbrk/u8-possible-linebreaks-tests: Likewise.
4044         * modules/unilbrk/u8-width-linebreaks-tests: Likewise.
4045         * modules/unilbrk/u16-possible-linebreaks-tests: Likewise.
4046         * modules/unilbrk/u16-width-linebreaks-tests: Likewise.
4047         * modules/unilbrk/u32-possible-linebreaks-tests: Likewise.
4048         * modules/unilbrk/u32-width-linebreaks-tests: Likewise.
4049         * modules/unilbrk/ulc-possible-linebreaks-tests: Likewise.
4050         * modules/unilbrk/ulc-width-linebreaks-tests: Likewise.
4051         * modules/uniname/uniname-tests: Likewise.
4052         * modules/uninorm/canonical-decomposition-tests: Likewise.
4053         * modules/uninorm/compat-decomposition-tests: Likewise.
4054         * modules/uninorm/composition-tests: Likewise.
4055         * modules/uninorm/decomposing-form-tests: Likewise.
4056         * modules/uninorm/decomposition-tests: Likewise.
4057         * modules/uninorm/filter-tests: Likewise.
4058         * modules/uninorm/nfc-tests: Likewise.
4059         * modules/uninorm/nfd-tests: Likewise.
4060         * modules/uninorm/nfkc-tests: Likewise.
4061         * modules/uninorm/nfkd-tests: Likewise.
4062         * modules/uninorm/u8-normcmp-tests: Likewise.
4063         * modules/uninorm/u8-normcoll-tests: Likewise.
4064         * modules/uninorm/u16-normcmp-tests: Likewise.
4065         * modules/uninorm/u16-normcoll-tests: Likewise.
4066         * modules/uninorm/u32-normcmp-tests: Likewise.
4067         * modules/uninorm/u32-normcoll-tests: Likewise.
4068         * modules/unistdio/u8-asnprintf-tests: Likewise.
4069         * modules/unistdio/u8-vasnprintf-tests: Likewise.
4070         * modules/unistdio/u8-vasprintf-tests: Likewise.
4071         * modules/unistdio/u8-vsnprintf-tests: Likewise.
4072         * modules/unistdio/u8-vsprintf-tests: Likewise.
4073         * modules/unistdio/u16-asnprintf-tests: Likewise.
4074         * modules/unistdio/u16-vasnprintf-tests: Likewise.
4075         * modules/unistdio/u16-vasprintf-tests: Likewise.
4076         * modules/unistdio/u16-vsnprintf-tests: Likewise.
4077         * modules/unistdio/u16-vsprintf-tests: Likewise.
4078         * modules/unistdio/u32-asnprintf-tests: Likewise.
4079         * modules/unistdio/u32-vasnprintf-tests: Likewise.
4080         * modules/unistdio/u32-vasprintf-tests: Likewise.
4081         * modules/unistdio/u32-vsnprintf-tests: Likewise.
4082         * modules/unistdio/u32-vsprintf-tests: Likewise.
4083         * modules/unistdio/ulc-asnprintf-tests: Likewise.
4084         * modules/unistdio/ulc-vasnprintf-tests: Likewise.
4085         * modules/unistdio/ulc-vasprintf-tests: Likewise.
4086         * modules/unistdio/ulc-vsnprintf-tests: Likewise.
4087         * modules/unistdio/ulc-vsprintf-tests: Likewise.
4088         * modules/unistr/u8-check-tests: Likewise.
4089         * modules/unistr/u8-chr-tests: Likewise.
4090         * modules/unistr/u8-cmp-tests: Likewise.
4091         * modules/unistr/u8-cmp2-tests: Likewise.
4092         * modules/unistr/u8-cpy-alloc-tests: Likewise.
4093         * modules/unistr/u8-cpy-tests: Likewise.
4094         * modules/unistr/u8-mblen-tests: Likewise.
4095         * modules/unistr/u8-mbsnlen-tests: Likewise.
4096         * modules/unistr/u8-mbtouc-tests: Likewise.
4097         * modules/unistr/u8-mbtouc-unsafe-tests: Likewise.
4098         * modules/unistr/u8-mbtoucr-tests: Likewise.
4099         * modules/unistr/u8-move-tests: Likewise.
4100         * modules/unistr/u8-next-tests: Likewise.
4101         * modules/unistr/u8-prev-tests: Likewise.
4102         * modules/unistr/u8-set-tests: Likewise.
4103         * modules/unistr/u8-stpcpy-tests: Likewise.
4104         * modules/unistr/u8-stpncpy-tests: Likewise.
4105         * modules/unistr/u8-strcat-tests: Likewise.
4106         * modules/unistr/u8-strcmp-tests: Likewise.
4107         * modules/unistr/u8-strcoll-tests: Likewise.
4108         * modules/unistr/u8-strcpy-tests: Likewise.
4109         * modules/unistr/u8-strdup-tests: Likewise.
4110         * modules/unistr/u8-strlen-tests: Likewise.
4111         * modules/unistr/u8-strmblen-tests: Likewise.
4112         * modules/unistr/u8-strmbtouc-tests: Likewise.
4113         * modules/unistr/u8-strncat-tests: Likewise.
4114         * modules/unistr/u8-strncmp-tests: Likewise.
4115         * modules/unistr/u8-strncpy-tests: Likewise.
4116         * modules/unistr/u8-strnlen-tests: Likewise.
4117         * modules/unistr/u8-to-u16-tests: Likewise.
4118         * modules/unistr/u8-to-u32-tests: Likewise.
4119         * modules/unistr/u8-uctomb-tests: Likewise.
4120         * modules/unistr/u16-check-tests: Likewise.
4121         * modules/unistr/u16-chr-tests: Likewise.
4122         * modules/unistr/u16-cmp-tests: Likewise.
4123         * modules/unistr/u16-cmp2-tests: Likewise.
4124         * modules/unistr/u16-cpy-alloc-tests: Likewise.
4125         * modules/unistr/u16-cpy-tests: Likewise.
4126         * modules/unistr/u16-mblen-tests: Likewise.
4127         * modules/unistr/u16-mbsnlen-tests: Likewise.
4128         * modules/unistr/u16-mbtouc-tests: Likewise.
4129         * modules/unistr/u16-mbtouc-unsafe-tests: Likewise.
4130         * modules/unistr/u16-mbtoucr-tests: Likewise.
4131         * modules/unistr/u16-move-tests: Likewise.
4132         * modules/unistr/u16-next-tests: Likewise.
4133         * modules/unistr/u16-prev-tests: Likewise.
4134         * modules/unistr/u16-set-tests: Likewise.
4135         * modules/unistr/u16-stpcpy-tests: Likewise.
4136         * modules/unistr/u16-stpncpy-tests: Likewise.
4137         * modules/unistr/u16-strcat-tests: Likewise.
4138         * modules/unistr/u16-strcmp-tests: Likewise.
4139         * modules/unistr/u16-strcoll-tests: Likewise.
4140         * modules/unistr/u16-strcpy-tests: Likewise.
4141         * modules/unistr/u16-strdup-tests: Likewise.
4142         * modules/unistr/u16-strlen-tests: Likewise.
4143         * modules/unistr/u16-strmblen-tests: Likewise.
4144         * modules/unistr/u16-strmbtouc-tests: Likewise.
4145         * modules/unistr/u16-strncat-tests: Likewise.
4146         * modules/unistr/u16-strncmp-tests: Likewise.
4147         * modules/unistr/u16-strncpy-tests: Likewise.
4148         * modules/unistr/u16-strnlen-tests: Likewise.
4149         * modules/unistr/u16-to-u32-tests: Likewise.
4150         * modules/unistr/u16-to-u8-tests: Likewise.
4151         * modules/unistr/u16-uctomb-tests: Likewise.
4152         * modules/unistr/u32-check-tests: Likewise.
4153         * modules/unistr/u32-chr-tests: Likewise.
4154         * modules/unistr/u32-cmp-tests: Likewise.
4155         * modules/unistr/u32-cmp2-tests: Likewise.
4156         * modules/unistr/u32-cpy-alloc-tests: Likewise.
4157         * modules/unistr/u32-cpy-tests: Likewise.
4158         * modules/unistr/u32-mblen-tests: Likewise.
4159         * modules/unistr/u32-mbsnlen-tests: Likewise.
4160         * modules/unistr/u32-mbtouc-tests: Likewise.
4161         * modules/unistr/u32-mbtouc-unsafe-tests: Likewise.
4162         * modules/unistr/u32-mbtoucr-tests: Likewise.
4163         * modules/unistr/u32-move-tests: Likewise.
4164         * modules/unistr/u32-next-tests: Likewise.
4165         * modules/unistr/u32-prev-tests: Likewise.
4166         * modules/unistr/u32-set-tests: Likewise.
4167         * modules/unistr/u32-stpcpy-tests: Likewise.
4168         * modules/unistr/u32-stpncpy-tests: Likewise.
4169         * modules/unistr/u32-strcat-tests: Likewise.
4170         * modules/unistr/u32-strcmp-tests: Likewise.
4171         * modules/unistr/u32-strcoll-tests: Likewise.
4172         * modules/unistr/u32-strcpy-tests: Likewise.
4173         * modules/unistr/u32-strdup-tests: Likewise.
4174         * modules/unistr/u32-strlen-tests: Likewise.
4175         * modules/unistr/u32-strmblen-tests: Likewise.
4176         * modules/unistr/u32-strmbtouc-tests: Likewise.
4177         * modules/unistr/u32-strncat-tests: Likewise.
4178         * modules/unistr/u32-strncmp-tests: Likewise.
4179         * modules/unistr/u32-strncpy-tests: Likewise.
4180         * modules/unistr/u32-strnlen-tests: Likewise.
4181         * modules/unistr/u32-to-u16-tests: Likewise.
4182         * modules/unistr/u32-to-u8-tests: Likewise.
4183         * modules/unistr/u32-uctomb-tests: Likewise.
4184         * modules/uniwbrk/u8-wordbreaks-tests: Likewise.
4185         * modules/uniwbrk/u16-wordbreaks-tests: Likewise.
4186         * modules/uniwbrk/u32-wordbreaks-tests: Likewise.
4187         * modules/uniwbrk/ulc-wordbreaks-tests: Likewise.
4188         * modules/uniwidth/u8-strwidth-tests: Likewise.
4189         * modules/uniwidth/u8-width-tests: Likewise.
4190         * modules/uniwidth/u16-strwidth-tests: Likewise.
4191         * modules/uniwidth/u16-width-tests: Likewise.
4192         * modules/uniwidth/u32-strwidth-tests: Likewise.
4193         * modules/uniwidth/u32-width-tests: Likewise.
4194         * modules/uniwidth/width-tests: Likewise.
4195
4196 2010-05-18  Richard Jones  <rjones@redhat.com>
4197
4198         doc: users.txt: list hivex
4199         * users.txt: Add hivex.
4200
4201 2010-05-18  Richard Jones  <rjones@redhat.com>
4202
4203         doc: users.txt: list febootstrap
4204         * users.txt: Add febootstrap.
4205
4206 2010-05-17  Giuseppe Scrivano  <gscrivano@gnu.org>
4207
4208         bootstrap: fix an error when gnulib is not used as a git submodule
4209         * build-aux/bootstrap (gnulib_path): If its length is zero then
4210         assign "gnulib" to it.
4211         * build-aux/bootstrap: Redirect "git clone -h" stderr to stdout.
4212
4213 2010-05-16  Bruno Haible  <bruno@clisp.org>
4214
4215         Avoid autoconf warnings about AM_ICONV.
4216         * m4/iconv.m4 (AM_ICONV): Define using AC_DEFUN_ONCE for autoconf >=
4217         2.64.
4218
4219 2010-05-16  Bruno Haible  <bruno@clisp.org>
4220
4221         absolute-header: Make the macro usable in more situations.
4222         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER_ONE): New macro, extracted
4223         from gl_ABSOLUTE_HEADER.
4224         (gl_ABSOLUTE_HEADER): Use it. Fix comment.
4225
4226 2010-05-16  James Youngman  <jay@gnu.org>
4227
4228         doc: update users.txt
4229         * users.txt: Add CSSC.
4230
4231 2010-05-16  Jim Meyering  <meyering@redhat.com>
4232
4233         init.sh: fix an error in the previous change; add more comments
4234         * tests/init.sh: Compare exit code in loop against 9, not 2.
4235         Patch by Bruno Haible.
4236         Make the two tests more similar by adding an empty "then" clause.
4237         Add comments.
4238
4239         init.sh: avoid unnecessary shell re-exec
4240         * tests/init.sh: Improve the re-exec-required check to first test the
4241         current shell.  If it passes the test, do not search for a shell that
4242         does pass, and do not re-exec.  This test is particularly contorted to
4243         avoid triggering misbehavior in Solaris 10's /bin/sh whereby any use
4244         of $(...) evokes a syntax error and causes immediate shell exit with
4245         status 2.  Bruno Haible reported that the re-exec made it impossible
4246         to single-step through any init.sh-using script.
4247
4248 2010-05-16  Bruno Haible  <bruno@clisp.org>
4249
4250         Fix collision between gnulib's and libintl's printf replacements.
4251         * lib/stdio.in.h (_GL_STDIO_STRINGIZE,
4252         _GL_STDIO_MACROEXPAND_AND_STRINGIZE): New macros.
4253         (printf): When using GNU C, map the __printf__ function to rpl_printf
4254         via __asm__. When not using GNU C, define rpl_printf instead of
4255         __printf__.
4256         * lib/printf.c: Ignore DEPENDS_ON_LIBINTL. Undoes the 2010-03-25
4257         commit.
4258         * lib/stdio-write.c: Ignore DEPENDS_ON_LIBINTL. Undoes the 2009-08-10
4259         commit.
4260         * m4/asm-underscore.m4: New file.
4261         * m4/stdio_h.m4 (gl_STDIO_H): Require gl_ASM_SYMBOL_PREFIX.
4262         * modules/stdio (Files): Add m4/asm-underscore.m4.
4263         (Makefile.am): Substitute ASM_SYMBOL_PREFIX.
4264         Reported by Ben Pfaff.
4265
4266 2010-05-16  Bruno Haible  <bruno@clisp.org>
4267
4268         verify: Avoid skipping the test on openSUSE 11.0.
4269         * tests/test-verify.sh: Unset MALLOC_PERTURB_.
4270
4271 2010-05-13  Bruno Haible  <bruno@clisp.org>
4272
4273         Avoid useless warnings from G++.
4274         * build-aux/c++defs.h (_GL_CXXALIASWARN_2, _GL_CXXALIASWARN1_2): Don't
4275         use _GL_WARN_ON_USE or _GL_WARN_ON_USE_CXX when optimizing.
4276         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
4277
4278 2010-05-11  Jim Meyering  <meyering@redhat.com>
4279
4280         maint.mk: tweak preceding change
4281         * top/maint.mk (gl_extract_significant_defines_): Make exclusion
4282         regexps tighter by anchoring at EOL, and make the new group "shy"
4283         for slightly decreased overhead.
4284
4285 2010-05-11  Eric Blake  <eblake@redhat.com>
4286
4287         maint.mk: gnulib doesn't guarantee NSIG
4288         * top/maint.mk (gl_extract_significant_defines_): Exclude NSIG.
4289
4290 2010-05-10  Peter O'Gorman  <pogma@thewrittenword.com>
4291
4292         test-pwrite.c: Remove unused variable declaration.
4293         * tests/test-pwrite.c (main): Remove read_buf declaration.
4294
4295         Remove useless test-pwrite.sh file.
4296         * tests/test-pwrite.sh: Delete file.
4297         * modules/pwrite-tests: Remove references.
4298         Reported by Bruno Haible.
4299
4300 2010-05-10  Peter O'Gorman  <pogma@thewrittenword.com>
4301
4302         init.sh: fix a typo
4303         * tests/init.sh: Correct typo in MALLOC_PERTURB_ initialization.
4304
4305 2010-05-10  Jim Meyering  <meyering@redhat.com>
4306
4307         maint.mk: avoid using a temporary file in the always-defined-macros check
4308         * top/maint.mk (.re-defmac): Remove rule.
4309         (gl_trap_): Remove definition.
4310         (sc_prohibit_always-defined_macros): Rewrite not to create and
4311         depend on a temporary file.  Instead, depend on GNU grep's ability
4312         to read a list of regular expressions from stdin when given "-f -".
4313
4314 2010-05-09  Bruno Haible  <bruno@clisp.org>
4315
4316         Update to GNU gettext 0.18, part 1.
4317         * m4/gettext.m4: Update to GNU gettext 0.18.
4318         * m4/intl.m4: Likewise.
4319         * m4/po.m4: Likewise.
4320         * modules/gettext (Files): Add m4/fcntl-o.m4.
4321         (configure.ac): Require gettext infrastructure from version 0.18.
4322
4323 2010-05-09  Jim Meyering  <meyering@redhat.com>
4324
4325         init.sh: enable MALLOC_PERTURB_
4326         * tests/init.sh: Enable glibc's malloc-perturbing option.
4327
4328         maint.mk: improve sc_cross_check_PATH_usage_in_tests
4329         With my recent change in init.sh from the two-line form:
4330             -#   : ${srcdir=.}
4331             -#   . "$srcdir/init.sh"; path_prepend_ .
4332             +#   . "${srcdir=.}/init.sh"; path_prepend_ .
4333         I noticed that using the one-line form would cause this test
4334         to fail with a false-positive, or to stop working altogether,
4335         depending on whether help-version changed or all the tests did.
4336         * top/maint.mk (_hv_regex): Remove this definition.
4337         (_hv_regex_weak): Use a weak regex to select all init.sh-sourcing files.
4338         (_hv_regex_strong): Use a stronger regex to check for conformance.
4339         (sc_cross_check_PATH_usage_in_tests): Rewrite to use the above.
4340         Give a separate diagnostic for lack of conforming use.
4341
4342         maint.mk: prohibit definition of symbols defined by gnulib
4343         * top/maint.mk (sc_prohibit_always-defined_macros): Reject the
4344         definition of symbols defined by gnulib.
4345
4346 2010-05-09  Bruno Haible  <bruno@clisp.org>
4347
4348         acl: Avoid test failure on Cygwin-hosted mingw.
4349         * tests/test-set-mode-acl.sh: Skip test if USE_ACL is 0.
4350
4351 2010-05-09  Bruno Haible  <bruno@clisp.org>
4352
4353         error: Use system's fcntl function.
4354         * lib/error.c (fcntl): Undefine.
4355
4356 2010-05-09  Jim Meyering  <meyering@redhat.com>
4357
4358         verify: adjust formatting to be more consistent
4359         * lib/verify.h (_GL_GENSYM): Add a space before each of a few
4360         argument-list '('s, and after one comma.
4361
4362 2010-05-09  Bruno Haible  <bruno@clisp.org>
4363
4364         error: More reliable output on mingw.
4365         * lib/error.c: Include <windows.h>.
4366         (is_open): New function.
4367         (flush_stdout): Call it instead of fcntl, also if F_GETFL is not
4368         defined.
4369
4370 2010-05-09  Bruno Haible  <bruno@clisp.org>
4371
4372         vasnprintf: Fix syntax errors in libintl build on mingw.
4373         * lib/vasnprintf.c (VASNPRINTF): Move a closing brace. Undefine
4374         pad_ourselves and prec_ourselves after use.
4375
4376 2010-05-08  Bruno Haible  <bruno@clisp.org>
4377
4378         * lib/config.charset: Update comments for Cygwin 1.7.
4379         * lib/localcharset.c: Likewise.
4380
4381 2010-05-07  Jim Meyering  <meyering@redhat.com>
4382
4383         init.sh: improve comments
4384         * tests/init.sh: Recommend the one-line init.sh-sourcing idiom:
4385         . "${srcdir=.}/init.sh"; path_prepend_ .
4386         Add a note about path_prepend_ and the alternative of using
4387         TESTS_ENVIRONMENT.
4388
4389 2010-05-06  Sergey Poznyakoff  <gray@gnu.org.ua>
4390
4391         exclude: Unescape hashed patterns in wildcard mode.
4392         * lib/exclude.c (add_exclude): Unescape the pattern before adding it
4393         to the hash list.
4394         * tests/test-exclude8.sh: New test case.
4395         * modules/exclude-tests: Add new test.
4396
4397 2010-05-05  Eric Blake  <eblake@redhat.com>
4398
4399         verify: automate tests
4400         * modules/verify-tests: New module.
4401         * tests/test-verify.sh: New file.
4402         * tests/test-verify.c: Guard each negative test with a unique id.
4403         Also avoid warning about unused left hand of comma expressions.
4404
4405 2010-05-05  Paul Eggert  <eggert@cs.ucla.edu>
4406
4407         Further improvements to verify.h, suggested by Eric Blake.
4408         * lib/verify.h (_GL_CONCAT, _GL_CONCAT0, _GL_GENSYM): Renamed from
4409         the GL_* versions, to avoid collision with OpenGL.
4410         (_GL_COUNTER): New macro, so that we can fall back on __LINE__ if
4411         __COUNTER__ doesn't work.  Test that __COUNTER__ increments rather
4412         than testing merely whether it's defined.
4413
4414         Modify verify.h to pacify gcc -Wredundant_decls.
4415         * lib/verify.h (GL_CONCAT, GL_CONCAT0, GL_GENSYM): New macros.
4416         These use the prefix "GL_" since they're likely to be useful elsewhere.
4417         We may need to break them out into a different .h file.
4418         (__COUNTER__): Define to 0 if the compiler doesn't support it.
4419         (verify) [!defined __cplusplus]: Use them to avoid duplicate decls
4420         of verify_function__.
4421
4422 2010-05-05  Peter O'Gorman  <pogma@thewrittenword.com>
4423
4424         Tests for module pwrite.
4425         * modules/pwrite-tests: New file.
4426         * tests/test-pwrite.sh: New file.
4427         * tests/test-pwrite.c: New file.
4428
4429         New module pwrite.
4430         * lib/unistd.in.h (pwrite): New declaration.
4431         * lib/pwrite.c: New file, from glibc with modifications.
4432         * m4/pwrite.m4: New file.
4433         * m4/unistd_h.m4 (gl_UNISTD_H): Test whether pwrite is declared.
4434         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PWRITE, HAVE_PWRITE,
4435         REPLACE_PWRITE.
4436         * modules/pwrite: New file.
4437         * modules/unistd (Makefile.am): Substitute GNULIB_PWRITE, HAVE_PWRITE,
4438         REPLACE_PWRITE.
4439         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::pwrite.
4440         * doc/posix-functions/pwrite.texi: Mention the new module.
4441
4442 2010-05-05  Peter O'Gorman  <pogma@thewrittenword.com>
4443
4444         pread: Update documentation.
4445         * doc/posix-functions/pread.texi: Mention the 'pread' module.
4446
4447 2010-05-04  Eric Blake  <eblake@redhat.com>
4448
4449         docs: update cygwin progress
4450         * doc/posix-functions/wctob.texi (wctob): Cygwin 1.7.6 will fix
4451         this bug.
4452         * doc/glibc-functions/get_nprocs_conf.texi (get_nprocs_conf):
4453         Added in cygwin 1.7.2.
4454         * doc/glibc-functions/get_phys_pages.texi (get_phys_pages):
4455         Likewise.
4456         * doc/glibc-functions/get_avphys_pages.texi (get_avphys_pages):
4457         Likewise.
4458         * doc/glibc-functions/dup3.texi (dup3): Likewise.
4459         * doc/glibc-functions/pipe2.texi (pipe2): Likewise.
4460         * doc/glibc-functions/accept4.texi (accept4): Likewise.
4461         * doc/posix-functions/strfmon.texi (strfmon): Likewise.
4462         * doc/glibc-functions/get_nprocs.texi (get_nprocs): Likewise.
4463         Mention nproc module.
4464         * doc/glibc-functions/xdr_uint16_t.texi (xdr_uint16_t): Mention
4465         bug in cygwin 1.7.5 addition.
4466         * doc/glibc-functions/xdr_uint32_t.texi (xdr_uint32_t): Likewise.
4467         * doc/glibc-functions/xdr_uint64_t.texi (xdr_uint64_t): Likewise.
4468         * doc/glibc-functions/xdr_uint8_t.texi (xdr_uint8_t): Likewise.
4469         * doc/glibc-functions/xdr_array.texi (xdr_array): Added in cygwin
4470         1.7.5.
4471         * doc/glibc-functions/xdr_bool.texi (xdr_bool): Likewise.
4472         * doc/glibc-functions/xdr_bytes.texi (xdr_bytes): Likewise.
4473         * doc/glibc-functions/xdr_char.texi (xdr_char): Likewise.
4474         * doc/glibc-functions/xdr_double.texi (xdr_double): Likewise.
4475         * doc/glibc-functions/xdr_enum.texi (xdr_enum): Likewise.
4476         * doc/glibc-functions/xdr_float.texi (xdr_float): Likewise.
4477         * doc/glibc-functions/xdr_free.texi (xdr_free): Likewise.
4478         * doc/glibc-functions/xdr_hyper.texi (xdr_hyper): Likewise.
4479         * doc/glibc-functions/xdr_int.texi (xdr_int): Likewise.
4480         * doc/glibc-functions/xdr_int16_t.texi (xdr_int16_t): Likewise.
4481         * doc/glibc-functions/xdr_int32_t.texi (xdr_int32_t): Likewise.
4482         * doc/glibc-functions/xdr_int64_t.texi (xdr_int64_t): Likewise.
4483         * doc/glibc-functions/xdr_int8_t.texi (xdr_int8_t): Likewise.
4484         * doc/glibc-functions/xdr_long.texi (xdr_long): Likewise.
4485         * doc/glibc-functions/xdr_longlong_t.texi (xdr_longlong_t):
4486         Likewise.
4487         * doc/glibc-functions/xdr_netobj.texi (xdr_netobj): Likewise.
4488         * doc/glibc-functions/xdr_opaque.texi (xdr_opaque): Likewise.
4489         * doc/glibc-functions/xdr_pointer.texi (xdr_pointer): Likewise.
4490         * doc/glibc-functions/xdr_reference.texi (xdr_reference):
4491         Likewise.
4492         * doc/glibc-functions/xdr_short.texi (xdr_short): Likewise.
4493         * doc/glibc-functions/xdr_sizeof.texi (xdr_sizeof): Likewise.
4494         * doc/glibc-functions/xdr_string.texi (xdr_string): Likewise.
4495         * doc/glibc-functions/xdr_u_char.texi (xdr_u_char): Likewise.
4496         * doc/glibc-functions/xdr_u_hyper.texi (xdr_u_hyper): Likewise.
4497         * doc/glibc-functions/xdr_u_int.texi (xdr_u_int): Likewise.
4498         * doc/glibc-functions/xdr_u_long.texi (xdr_u_long): Likewise.
4499         * doc/glibc-functions/xdr_u_longlong_t.texi (xdr_u_longlong_t):
4500         Likewise.
4501         * doc/glibc-functions/xdr_u_short.texi (xdr_u_short): Likewise.
4502         * doc/glibc-functions/xdr_union.texi (xdr_union): Likewise.
4503         * doc/glibc-functions/xdr_vector.texi (xdr_vector): Likewise.
4504         * doc/glibc-functions/xdr_void.texi (xdr_void): Likewise.
4505         * doc/glibc-functions/xdr_wrapstring.texi (xdr_wrapstring):
4506         Likewise.
4507         * doc/glibc-functions/xdrmem_create.texi (xdrmem_create):
4508         Likewise.
4509         * doc/glibc-functions/xdrrec_create.texi (xdrrec_create):
4510         Likewise.
4511         * doc/glibc-functions/xdrrec_endofrecord.texi
4512         (xdrrec_endofrecord): Likewise.
4513         * doc/glibc-functions/xdrrec_eof.texi (xdrrec_eof): Likewise.
4514         * doc/glibc-functions/xdrrec_skiprecord.texi (xdrrec_skiprecord):
4515         Likewise.
4516         * doc/glibc-functions/xdrstdio_create.texi (xdrstdio_create):
4517         Likewise.
4518
4519 2010-05-04  Jim Meyering  <meyering@redhat.com>
4520
4521         gendocs.sh: make its "-s FILE" option more useful
4522         * build-aux/gendocs.sh: When honoring the -s FILE option, update
4523         $PACKAGE to reflect the probably-different basename of "FILE".
4524
4525 2010-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
4526
4527         bootstrap: don't ignore download_po_files failure
4528         * build-aux/bootstrap (update_po_files): Don't ignore download_po_files
4529         failure.
4530
4531 2010-05-03  Jim Meyering  <meyering@redhat.com>
4532
4533         maint.mk: allow to pass options to gendocs.sh
4534         * top/maint.mk (web-manual): Pass gendocs_options_ to gendocs.sh.
4535         (gendocs_options_): New overridable variable.
4536
4537         gnu-web-doc-update: don't ignore configure or build failure
4538         * build-aux/gnu-web-doc-update: Exit nonzero upon internal failure.
4539
4540         announce-gen: backslash-escape '@'s in --help output
4541         * build-aux/announce-gen: Fix syntax errors.
4542
4543         maint.mk, announce-gen: allow project-specific announcement mail headers
4544         * top/maint.mk (translation_project_): Define default.
4545         (announcement_Cc_, announcement_mail_headers_): Likewise.
4546         (announcement): Invoke announce-gen with new --mail-headers option.
4547         * build-aux/announce-gen: New option: --mail-headers=HEADERS.
4548
4549         test-xalloc-die: avoid unwarranted test failure on OpenSolaris 5.11
4550         * tests/test-xalloc-die.sh: Redirect stdout before stderr, (i.e.,
4551         "> out 2> err", rather than "2> err > out").  Otherwise, with /bin/sh
4552         on OpenSolaris 5.11 snv_134, we would end up with a stray "1> out"
4553         line in the "err2" output file when running "make check" in verbose
4554         mode (i.e., with set -x enabled).
4555
4556 2010-05-03  Bruno Haible  <bruno@clisp.org>
4557
4558         wctob: Fix for weird platforms.
4559         * lib/wctob.c (wctob): When wint_t is larger than wchar_t, check the
4560         argument value.
4561
4562 2010-05-03  Jim Meyering  <meyering@redhat.com>
4563
4564         maint.mk: prohibit unwarranted use of <strings.h>
4565         * top/maint.mk (sc_prohibit_strings_without_use): Reject inclusion of
4566         strings.h in a file that does not also use strcasecmp, strncasecmp,
4567         ffs or ffsll.
4568
4569         maint.mk: remove obsolete comments
4570         * top/maint.mk: Remove stale, commented-out rules.
4571
4572 2010-05-02  Bruno Haible  <bruno@clisp.org>
4573
4574         wcwidth: Declare also when it's aliased.
4575         * lib/wchar.in.h (wcwidth): Don't test whether wcwidth is defined as a
4576         macro.
4577
4578 2010-05-02  Bruno Haible  <bruno@clisp.org>
4579
4580         Fix regression from 2010-04-25.
4581         * gnulib-tool (func_modules_transitive_closure): Check the status of
4582         all modules, not only of the tests that are of the form foo-tests where
4583         foo is a module.
4584
4585 2010-05-02  Bruno Haible  <bruno@clisp.org>
4586
4587         wctob: Work around nasty Cygwin 1.7.2 bug.
4588         * m4/wctob.m4 (gl_FUNC_WCTOB): Detect the Cygwin bug.
4589         * doc/posix-functions/wctob.texi: Mention the Cygwin bug.
4590
4591 2010-05-01  Bruno Haible  <bruno@clisp.org>
4592
4593         fpurge: Sharper test.
4594         * tests/test-fpurge.c (main): Add one more ftell check.
4595         * modules/fpurge-tests (Depends-on): Add ftell.
4596         Suggested by Eric Blake.
4597
4598 2010-05-01  Bruno Haible  <bruno@clisp.org>
4599
4600         ftello: Another test.
4601         * tests/test-ftello3.c: New file.
4602         * modules/ftello-tests (Files): Add it.
4603         (Makefile.am): Add it to TESTS and check_PROGRAMS. Augment
4604         MOSTLYCLEANFILES.
4605
4606         ftell: Another test.
4607         * tests/test-ftell3.c: New file.
4608         * modules/ftell-tests (Files): Add it.
4609         (Makefile.am): Add it to TESTS and check_PROGRAMS. Augment
4610         MOSTLYCLEANFILES.
4611
4612 2010-05-01  Bruno Haible  <bruno@clisp.org>
4613
4614         ftell, ftello: Work around Solaris bug.
4615         * m4/ftello.m4 (gl_FUNC_FTELLO): Detect Solaris bug.
4616         * lib/ftello.c: Include stdio-impl.h.
4617         (ftello): On Solaris, when _IOWRT is set, compute the result without
4618         looking at _IOREAD.
4619         * modules/ftello (Files): Add lib/stdio-impl.h.
4620         * doc/posix-functions/ftell.texi: Mention Solaris bug.
4621         * doc/posix-functions/ftello.texi: Likewise.
4622         Reported by Eric Blake.
4623
4624 2010-05-01  Bruno Haible  <bruno@clisp.org>
4625
4626         freading: Adapt to special meaning of _IOREAD flag on Solaris.
4627         * lib/freading.c (freading): On Solaris, ignore the _IOREAD flag if
4628         the _IOWRT flag is also set.
4629
4630 2010-05-01  Bruno Haible  <bruno@clisp.org>
4631
4632         Fix doc about a HP-UX stdio bug.
4633         * doc/posix-functions/ftell.texi: Mark HP-UX bug as unfixed.
4634         * doc/posix-functions/ftello.texi: Likewise.
4635
4636 2010-05-01  Bruno Haible  <bruno@clisp.org>
4637
4638         lseek test: Fix failure on Solaris.
4639         * tests/test-lseek.sh: Partially revert 2010-04-20 commit. Consume all
4640         output.
4641
4642 2010-04-30  Jim Meyering  <meyering@redhat.com>
4643
4644         bootstrap: don't ignore failure to generate po*/Makevars
4645         * build-aux/bootstrap (with_gettext): Don't ignore failure
4646         to create po/Makevars or runtime-po/Makevars.
4647
4648 2010-04-29  Eric Blake  <eblake@redhat.com>
4649
4650         headers: relax license to LGPLv2+
4651         * modules/fcntl-h (License): Relax license.
4652         * modules/getopt-posix (License): Likewise.
4653         * modules/locale (License): Likewise.
4654         * modules/math (License): Likewise.
4655         * modules/pty (License): Likewise.
4656         * modules/sched (License): Likewise.
4657         * modules/search (License): Likewise.
4658         * modules/spawn (License): Likewise.
4659         * modules/stdarg (License): Likewise.
4660         * modules/sysexits (License): Likewise.
4661
4662 2010-04-29  Jim Meyering  <meyering@redhat.com>
4663
4664         inttypes: relax license to LGPLv2+
4665         * modules/inttypes (License): Relax license.
4666
4667 2010-04-29  Simon Josefsson  <simon@josefsson.org>
4668
4669         * top/maint.mk (indent): Run twice to produce idempotent results.
4670
4671 2010-04-28  Bruno Haible  <bruno@clisp.org>
4672
4673         getdate: Generate getdate.c in the source directory.
4674         * modules/getdate (Makefile.am): Add rule for getdate.c. Augment
4675         MOSTLYCLEANFILES.
4676         Suggested by Daniel Richard G. <skunk@iskunk.org> and Ralf Wildenhues.
4677
4678 2010-04-27  Andreas Gruenbacher  <agruen@suse.de>  (tiny change)
4679
4680         * lib/utimens.c: On Tru64, the timestamp parameter of utimens(2)
4681         is not declared as a const *; avoid warnings in that case.
4682
4683 2010-04-28  Eric Blake  <eblake@redhat.com>
4684
4685         canonicalize-lgpl: avoid compiler warning
4686         * lib/canonicalize-lgpl.c (versioned_symbol): Avoid an 'empty
4687         declaration' / 'extraneous semicolon' warning with some compilers.
4688         Reported by Andreas Gruenbacher.
4689
4690 2010-04-28  Jim Meyering  <meyering@redhat.com>
4691
4692         init.sh: ensure a more reliable exit status when exiting via trap
4693         * tests/init.sh (setup_): Don't rely on $? in signal handler.
4694         Inspired by patches from Dmitry V. Levin.
4695         Also trap on signal 3 (SIGQUIT).
4696
4697 2010-04-27  Bruno Haible  <bruno@clisp.org>
4698
4699         Update doc about utimes().
4700         * doc/posix-functions/utimes.texi: Mention the OSF/1 problem and the
4701         'utimens' module.
4702         Reported by Andreas Gruenbacher <agruen@suse.de>.
4703
4704 2010-04-27  Eric Blake  <eblake@redhat.com>
4705
4706         full-read, full-write: relax license
4707         * modules/full-read (License): Drop to LGPLv2+.
4708         * modules/full-write (License): Likewise.
4709         * modules/safe-read (License): Likewise.
4710         * modules/safe-write (License): Likewise.
4711
4712         pthread: mention library for linking
4713         * modules/pthread (Link): Mention $(LIB_PTHREAD).
4714
4715 2010-04-27  Jim Meyering  <meyering@redhat.com>
4716
4717         maint.mk: fix a bug introduced in last change
4718         * top/maint.mk (gl_assured_headers_): Now that all names are on
4719         one line, use sed's "g" modifier.  Note that while the \.in\.h LHS
4720         is not anchored to end of word, it should be adequate.
4721
4722         maint.mk: avoid side-effect in latest syntax-check
4723         * top/maint.mk (sc_prohibit_always_true_header_tests): Rework not
4724         to run commands via $(shell...), and hence to incur cost only when
4725         the new rule is actually run.
4726
4727         maint.mk: syntax-check: prohibit HAVE_<header>_H that are always true
4728         Derive the list of guaranteed header names from gnulib/lib/*.in.h,
4729         and use that to create a regexp used to detect all #if HAVE_..._H uses.
4730         * top/maint.mk (sc_prohibit_always_true_header_tests): New rule.
4731         (gl_assured_headers_, az_, AZ_): Define.
4732         (gl_header_upper_case_or_, gl_have_header_regex_): Define.
4733
4734 2010-04-26  Jim Meyering  <jim@meyering.net>
4735             Bruno Haible  <bruno@clisp.org>
4736
4737         gnulib-common.m4: make glibc write diagnostics to stderr, not /dev/tty
4738         * m4/gnulib-common.m4 (gl_COMMON_BODY): Set LIBC_FATAL_STDERR_.
4739         Prompted by an exchange with Gilles Espinasse.
4740
4741 2010-04-26  Jim Meyering  <meyering@redhat.com>
4742
4743         git-version-gen: aesthetic tweak
4744         * build-aux/git-version-gen: Use "$nl" rather than a literal,
4745         so that the command remains on a single line.
4746
4747 2010-04-26  Eric Blake  <eblake@redhat.com>
4748
4749         git-version-gen: allow use on EBCDIC hosts
4750         * build-aux/git-version-gen (dirty): Use literal rather than tying
4751         ourselves to ascii.
4752         Reported by Steve Goetze.
4753
4754 2010-04-25  Bruno Haible  <bruno@clisp.org>
4755
4756         netdb: Add support for GNULIB_POSIXCHECK.
4757         * lib/netdb.in.h: Include warn-on-use.h.
4758         (getaddrinfo, freeaddrinfo, gai_strerror, getnameinfo): Warn if these
4759         functions are used when GNULIB_POSIXCHECK is defined and the
4760         getaddrinfo module is not in use.
4761         * m4/netdb_h.m4 (gl_HEADER_NETDB): Test whether getaddrinfo,
4762         freeaddrinfo, gai_strerror, getnameinfo are declared.
4763         * modules/netdb (Depends-on): Add warn-on-use.
4764         (Makefile.am): Include warn-on-use.h in netdb.h.
4765
4766 2010-04-24  Ian Beckwith  <ianb@erislabs.net>
4767
4768         build: avoid "make check" failure without .git/ directory
4769         * Makefile (sc_prefer_ac_check_funcs_once): Skip this test when
4770         there is no .git/ directory.
4771
4772 2010-04-25  Bruno Haible  <bruno@clisp.org>
4773
4774         ptsname: Fix misuse of ttyname_r.
4775         * lib/ptsname.c (__ptsname_r): Use __ttyname_r's return value instead
4776         of errno.
4777
4778 2010-04-25  Bruno Haible  <bruno@clisp.org>
4779
4780         ttyname_r: Make it work on Solaris 10.
4781         * m4/ttyname_r.m4 (gl_FUNC_TTYNAME_R): Define HAVE_POSIXDECL_TTYNAME_R
4782         if the system function has the POSIX declaration. Test whether the
4783         function fails if the buffer is less than 128 bytes large.
4784         * lib/ttyname_r.c (ttyname_r): Handle both possible declarations of the
4785         system's ttyname_r function. Provide a reasonably large buffer.
4786         * modules/ttyname_r (Depends-on): Add extensions.
4787         * doc/posix-functions/ttyname_r.texi: Mention the Solaris problem.
4788
4789 2010-04-25  Bruno Haible  <bruno@clisp.org>
4790
4791         Use the 'extensions' module for some more functions on Solaris.
4792         * doc/posix-functions/asctime_r.texi: Recommend to use the 'extensions'
4793         module.
4794         * doc/posix-functions/ctime_r.texi: Likewise.
4795         * doc/posix-functions/getgrgid_r.texi: Likewise.
4796         * doc/posix-functions/getgrnam_r.texi: Likewise.
4797         * doc/posix-functions/getpwnam_r.texi: Likewise.
4798         * doc/posix-functions/getpwuid_r.texi: Likewise.
4799         * doc/posix-functions/readdir_r.texi: Likewise.
4800         * doc/posix-functions/sigwait.texi: Likewise.
4801         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Add comment.
4802         * doc/posix-functions/getlogin_r.texi: Mark Solaris problem as fixed.
4803
4804 2010-04-25  Bruno Haible  <bruno@clisp.org>
4805
4806         ttyname_r: Make it work on MacOS X 10.4 and Solaris 10.
4807         * m4/ttyname_r.m4 (gl_FUNC_TTYNAME_R): Test whether the system function
4808         has the POSIX declaration. Set REPLACE_TTYNAME_R if not.
4809         * lib/ttyname_r.c: Include <limits.h>.
4810         (ttyname_r): Define using the system's ttyname_r function, if it exists
4811         and not on Solaris.
4812         * lib/unistd.in.h (ttyname_r): Replace function if REPLACE_TTYNAME_R is
4813         set.
4814         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize REPLACE_TTYNAME_R.
4815         * modules/unistd (Makefile.am): Substitute REPLACE_TTYNAME_R.
4816         * doc/posix-functions/ttyname_r.texi: Mark the problem as fixed.
4817         Reported by Simon Josefsson.
4818
4819 2010-04-25  Bruno Haible  <bruno@clisp.org>
4820
4821         Mention effects of _POSIX_PTHREAD_SEMANTICS on Solaris.
4822         * doc/posix-functions/asctime_r.texi: Mention the Solaris problem.
4823         * doc/posix-functions/ctime_r.texi: Likewise.
4824         * doc/posix-functions/getgrgid_r.texi: Likewise.
4825         * doc/posix-functions/getgrnam_r.texi: Likewise.
4826         * doc/posix-functions/getlogin_r.texi: Likewise.
4827         * doc/posix-functions/getpwnam_r.texi: Likewise.
4828         * doc/posix-functions/getpwuid_r.texi: Likewise.
4829         * doc/posix-functions/readdir_r.texi: Likewise.
4830         * doc/posix-functions/sigwait.texi: Likewise.
4831         * doc/posix-functions/ttyname_r.texi: Likewise.
4832         Reported by Simon Josefsson.
4833
4834 2010-04-25  Bruno Haible  <bruno@clisp.org>
4835
4836         gnulib-tool: Don't include hairy tests of dependencies in testdirs.
4837         * gnulib-tool (func_usage): Document that --with-*-tests options apply
4838         also to --create-testdir.
4839         (func_acceptable): Don't consider the status of *-tests modules here.
4840         (func_modules_transitive_closure): Consider it here, before including a
4841         test module.
4842         (func_import, func_create_testdir): Set inc_all_direct_tests,
4843         inc_all_indirect_tests.
4844         * doc/gnulib.texi (Extra tests modules): Document new behaviour of
4845         --create-testdir and --create-megatestdir.
4846
4847 2010-04-25  Bruno Haible  <bruno@clisp.org>
4848
4849         gnulib-tool: Add --without-*-tests options.
4850         * gnulib-tool (func_usage): Document the --without-*-tests options.
4851         (excl_cxx_tests, excl_longrunning_tests, excl_privileged_tests,
4852         excl_unportable_tests): New variables.
4853         Fail if they are specified with --import or --update.
4854         (func_acceptable): Respect the excl_*_tests variables.
4855         (func_import): Set the excl_*_tests variables to empty.
4856
4857 2010-04-25  Simon Josefsson  <simon@josefsson.org>
4858             Bruno Haible  <bruno@clisp.org>
4859
4860         Work around a MacOS X 10.4 bug with openpty.
4861         * doc/glibc-functions/openpty.texi: Mention the MacOS X 10.4 bug.
4862         * tests/test-openpty.c (main): Close the master side explicitly.
4863
4864 2010-04-25  Bruno Haible  <bruno@clisp.org>
4865
4866         strnlen: Fix a C++ test error on MacOS X and Solaris.
4867         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Don't set REPLACE_STRNLEN to 1 if
4868         the function is not declared.
4869         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com> and
4870         Simon Josefsson.
4871
4872 2010-04-24  Bruno Haible  <bruno@clisp.org>
4873
4874         Avoid a gcc warning.
4875         * tests/test-vasprintf.c (test_vasprintf, test_asprintf): Pass argument
4876         of correct type for %08lx directive.
4877         Reported by Eric Blake.
4878
4879 2010-04-24  Bruno Haible  <bruno@clisp.org>
4880
4881         vasnprintf: Correct errno value in case of out-of-memory.
4882         * lib/vasnprintf.c (VASNPRINTF): Set errno to 0 before calling SNPRINTF
4883         or sprintf. Use the errno value from SNPRINTF or sprintf.
4884         Reported by Ian Beckwith <ianb@erislabs.net>.
4885
4886 2010-04-24  Bruno Haible  <bruno@clisp.org>
4887
4888         ansi-c++-opt: Find correct compiler when cross-compiling.
4889         * m4/ansi-c++.m4 (gl_PROG_ANSI_CXX): Use AC_CHECK_TOOLS instead of
4890         AC_CHECK_PROGS.
4891         Reported by Simon Josefsson.
4892
4893 2010-04-24  Giuseppe Scrivano  <gscrivano@gnu.org>
4894
4895         vc-list-files: Add support for subversion
4896         * build-aux/vc-list-files: Use "svn list" to generate the list of
4897         files controlled by subversion.
4898
4899 2010-04-23  Jim Meyering  <meyering@redhat.com>
4900
4901         vc-list-files tests: convert to use init.sh
4902         * tests/test-vc-list-files-cvs.sh: Invoke "$srcdir/init.sh" and
4903         path_prepend_.
4904         Use Exit, not exit.
4905         Use skip_ rather than open coding it.
4906         Remove trap set-up and compare definitions.
4907         * tests/test-vc-list-files-git.sh: Likewise.
4908         * modules/vc-list-files-tests (Files): Add tests/init.sh.
4909
4910 2010-04-22  Simon Josefsson  <simon@josefsson.org>
4911
4912         * top/maint.mk (sc_prohibit_backup_files): Prohibit checked in
4913         backup files.
4914
4915 2010-04-21  Simon Josefsson  <simon@josefsson.org>
4916
4917         * tests/test-vasprintf.c (test_vasprintf, test_asprintf): Test %08lx.
4918
4919 2010-04-20  Eric Blake  <eblake@redhat.com>
4920
4921         tests: be robust to ignored SIGPIPE
4922         * tests/test-select-in.sh: Consume all output.
4923         * tests/test-lseek.sh: Check correct exit status, while avoiding
4924         EPIPE.
4925
4926 2010-04-20  Simon Josefsson  <simon@josefsson.org>
4927             Bruno Haible  <bruno@clisp.org>
4928
4929         visibility: Don't use -fvisibility if it leads to a warning.
4930         * m4/visibility.m4 (gl_VISIBILITY): Check whether -Werror is usable. If
4931         yes, don't pretend that visibility works if it leads to a warning.
4932         Reported by Mike Gran <spk121@yahoo.com>.
4933
4934 2010-04-20  Andreas Gruenbacher  <agruen@suse.de>
4935
4936         * build-aux/bootstrap: Use "git -h" for testing for supported options
4937         instead of "git --help".  The short-form option only shows a summary,
4938         and doesn't layout the full man page.  Grep for the full option name
4939         in the summary, too.
4940
4941 2010-04-19  Bruno Haible  <bruno@clisp.org>
4942
4943         relocatable: Drop the need to define RELOCATABLE_STRIP in Makefile.am.
4944         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Set RELOCATABLE_STRIP.
4945         * doc/relocatable-maint.texi (Supporting Relocation): Remove the
4946         mention of RELOCATABLE_STRIP.
4947         Reported by Sylvain Beucler <beuc@beuc.net>.
4948
4949 2010-04-19  Bruno Haible  <bruno@clisp.org>
4950
4951         * lib/diffseq.h: Fix typo in comment.
4952         Reported by Eric Blake.
4953
4954 2010-04-19  Bruno Haible  <bruno@clisp.org>
4955
4956         ioctl: Move autoconf macro to a .m4 file.
4957         * m4/ioctl.m4: New file, extracted from modules/ioctl.
4958         * modules/ioctl (Files): Add it.
4959         (configure.ac): Simply invoke gl_FUNC_IOCTL.
4960         Reported by Ian Beckwith <ianb@erislabs.net>.
4961
4962 2010-04-18  Andreas Gruenbacher  <agruen@suse.de>
4963             Bruno Haible  <bruno@clisp.org>
4964
4965         diffseq: Accommodate use-case with abstract arrays.
4966         * lib/diffseq.h (struct context): Remove xvec, yvec fields if ELEMENT
4967         is not defined.
4968         (diag, compareseq): Remove local variables xv, yv if ELEMENT is not
4969         defined. Use local macro XREF_YREF_EQUAL instead of EQUAL.
4970
4971 2010-04-18  Bruno Haible  <bruno@clisp.org>
4972
4973         * doc/posix-headers/stdbool.texi: More precise wording.
4974
4975 2010-04-17  Jim Meyering  <meyering@redhat.com>
4976
4977         maint.mk: use gnu-style indentation in an embedded perl script
4978         * top/maint.mk (detect_empty_lines_at_EOF_): Clean up formatting.
4979         Rename variable: s/two/last_two_bytes/
4980
4981 2010-04-16  Eric Blake  <eblake@redhat.com>
4982
4983         test-stdbool: skip test that fails with Solaris CC
4984         * tests/test-stdbool.c (f): Skip test that causes compilation
4985         error under buggy C++ compiler.
4986         * lib/stdbool.in.h: Document the limitation.
4987         * doc/posix-headers/stdbool.texi (stdbool.h): Likewise.
4988
4989         setenv: allow compilation with C++
4990         * lib/setenv.c (__add_to_environ): Add a cast.  Also, drop use of
4991         register keyword.
4992
4993         stdint: allow test to pass with C++
4994         * tests/test-stdint.c: Define __STDC_CONSTANT_MACROS, for glibc.
4995
4996         getopt: allow compilation with C++
4997         * lib/getopt_int.h (__ordering): Hoist enum declaration outside
4998         struct.
4999         * lib/getopt.c (_getopt_internal_r): Use correct type.
5000         Reported by Dagobert Michelson, via Joel E. Denny.
5001
5002 2010-04-16  Bruno Haible  <bruno@clisp.org>
5003
5004         Override netdb.h always.
5005         * modules/netdb (Makefile.am): Augment BUILT_SOURCES always.
5006         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't set NETDB_H.
5007         Reported by Ludovic Courtès <ludo@gnu.org>.
5008
5009 2010-04-15  Bruno Haible  <bruno@clisp.org>
5010
5011         openpty: Fix mistake from 2010-03-21.
5012         * m4/pty.m4 (gl_FUNC_OPENPTY): Define HAVE_OPENPTY when openpty exists.
5013         Reported by Simon Josefsson.
5014
5015 2010-04-15  Eric Blake  <eblake@redhat.com>
5016
5017         test-forkpty: fix expected signature
5018         * tests/test-forkpty.c (SIGNATURE_CHECK): Add appropriate const.
5019         Reported by Simon Josefsson.
5020
5021 2010-04-15  Jim Meyering  <meyering@redhat.com>
5022
5023         maint.mk: texinfo_suffix_re_: correct the default regexp
5024         * top/maint.mk (texinfo_suffix_re_): Fix default regexp.
5025
5026         * top/maint.mk (sc_texinfo_acronym): Improve filename regexp, and
5027         make it configurable via texinfo_suffix_re_.
5028
5029 2010-04-14  Eric Blake  <eblake@redhat.com>
5030
5031         strtok_r: relax license to LGPLv2+
5032         * modules/strtok_r (License): Relax license.
5033         Reported by Matthias Bolte.
5034
5035 2010-04-14  Simon Josefsson  <simon@josefsson.org>
5036
5037         * lib/gc-libgcrypt.c (gc_init): Use MIN_GCRYPT_VERSION set to
5038         version 1.4.4 by default instead of requiring the libgcrypt
5039         version used during build.  This makes it possible to use the
5040         application with older but still binary compatible libgcrypt
5041         versions.
5042
5043 2010-04-13  Eric Blake  <eblake@redhat.com>
5044
5045         getopt-gnu: match recent glibc fixes and posix ruling
5046         * tests/test-getopt.h (test_getopt): Strengthen tests of leading
5047         '+' handling, when requesting extensions.
5048         * tests/test-getopt_long.h (test_getopt_long): Strengthen test of
5049         'W;' handling.
5050         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Detect glibc 2.11 bug.
5051         * doc/posix-functions/getopt.texi (getopt): Document this.
5052         * doc/glibc-functions/getopt_long.texi (getopt_long): Likewise.
5053         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
5054         Likewise.
5055
5056         getopt: merge bug fixes from glibc
5057         * lib/getopt.c (_getopt_internal_r): Use correct message for 'W;'
5058         diagnostics.  Honor '+:' correctly.  Reject ';'.
5059
5060         getopt-posix: detect MacOS bug
5061         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Reject MacOS botch of
5062         optind when missing a required argument.
5063         * doc/posix-functions/getopt.texi (getopt): Document the bug.
5064         * doc/glibc-functions/getopt_long.texi (getopt_long): Likewise.
5065         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
5066         Likewise.
5067
5068         getopt-posix: avoid spurious failure on Solaris
5069         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Check for getopt_clip as
5070         an indicator that setting optind=1 is sufficient for reset.
5071
5072         getopt-posix: avoid spurious failure on FreeBSD
5073         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Check for optreset even
5074         in POSIX mode, since the m4 test uses it.
5075
5076         gnulib-tool: silence warning on BSD sh
5077         * gnulib-tool: Avoid leaking warning about unknown 'declare'.
5078
5079 2010-04-13  Jim Meyering  <meyering@redhat.com>
5080
5081         doc: users.txt: GNU patch now uses gnulib
5082         * users.txt: Add patch.
5083
5084 2010-04-12  Jim Meyering  <meyering@redhat.com>
5085
5086         maint.mk: generate more concise timing data for syntax-check rules
5087         * top/maint.mk ($(sc_z_rules_)): Remove the ":", "sc_" prefix and
5088         " done" from each line that reports a syntax-check test duration.
5089
5090 2010-04-12  Andreas Gruenbacher  <agruen@suse.de>
5091
5092         git-version-gen: use "git update-index..." rather than "git status"
5093         * build-aux/git-version-gen: Use git update-index --refresh, not
5094         "git status".  With some versions of git, "git status" would fail
5095         to update the index and result in an unwarranted "-dirty" suffix.
5096
5097 2010-04-11  Jim Meyering  <meyering@redhat.com>
5098
5099         openat: correct formatting (no semantic change)
5100         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Correct formatting in AC_DEFINE.
5101         Suggested by Bruno Haible.
5102
5103 2010-04-11  Bruno Haible  <bruno@clisp.org>
5104
5105         Stricter declaration checking in testdirs.
5106         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
5107         If for_tests is true, augment AM_CPPFLAGS to define
5108         GNULIB_STRICT_CHECKING.
5109         * build-aux/warn-on-use.h (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): When
5110         GNULIB_STRICT_CHECKING is defined, verify that the function is
5111         declared.
5112
5113 2010-04-11  Paolo Bonzini  <bonzini@gnu.org>
5114             Bruno Haible  <bruno@clisp.org>
5115
5116         libunistring: Improve configure output.
5117         * m4/libunistring.m4 (gl_LIBUNISTRING): Check for libiconv first.
5118         Don't say "consider installing GNU libunistring" when checking again
5119         with libiconv.
5120
5121 2010-04-11  Bruno Haible  <bruno@clisp.org>
5122
5123         libunistring: Correct value of $LTLIBUNISTRING.
5124         * m4/libunistring.m4 (gl_LIBUNISTRING): When it depends on libiconv,
5125         correct the value of $LTLIBUNISTRING.
5126
5127 2010-04-11  Bruno Haible  <bruno@clisp.org>
5128
5129         havelib: Add static libraries to LIBS in the right order.
5130         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): When $LIB[]NAME contains no
5131         -l options, prepend it to $LIBS, instead of appending it to $LIBS.
5132
5133 2010-04-11  Bruno Haible  <bruno@clisp.org>
5134
5135         libunistring: Detect libunistring also when it depends on libiconv.
5136         * m4/libunistring.m4 (gl_LIBUNISTRING): Unset the cached result before
5137         the second AC_LIB_HAVE_LINKFLAGS invocation.
5138
5139 2010-04-11  James Youngman  <jay@gnu.org>
5140
5141         close-stream: declare local scalars to be "const"
5142         * lib/close-stream.c (close_stream): Make boolean variables const
5143         to document the fact that we set but do not change them.
5144
5145 2010-04-11  Bruno Haible  <bruno@clisp.org>
5146
5147         * m4/libunistring.m4 (gl_LIBUNISTRING): Fix typo in comment.
5148
5149 2010-04-11  Jim Meyering  <meyering@redhat.com>
5150
5151         maint.mk: don't include dist-check.mk
5152         * top/maint.mk: Remove bogus include directive.
5153
5154         maint.mk: improve empty-line-at-EOF check
5155         * top/maint.mk (sc_prohibit_empty_lines_at_EOF): Use Perl-based
5156         solution, rather than tail+Perl-based one.  The latter would read
5157         a few kilobytes from the end of each file, and did not handle empty
5158         files properly.
5159
5160         maint.mk: print the elapsed time for each syntax-check rule
5161         * top/maint.mk (sc_m_rules_): Save start time in a file.
5162         (sc_z_rules_): New rules: remove temp file and print elapsed time.
5163         (local-check): Interpose the .z rules
5164
5165 2010-04-11  Jim Meyering  <meyering@redhat.com>
5166
5167         maint.mk: detect_empty_lines_at_EOF_: avoid FP for an empty file
5168         * top/maint.mk (detect_empty_lines_at_EOF_): Don't confuse an
5169         empty file with one that ends in an empty line.
5170
5171 2010-04-10  Bruno Haible  <bruno@clisp.org>
5172
5173         mkdir: Make it work on mingw64.
5174         * lib/sys_stat.in.h: Include <direct.h> together with <io.h>.
5175         * lib/mkdir.c: Update comment.
5176         Reported by Roman Donchenko (Роман Ð”онченко) <dxdragon@yandex.ru>.
5177
5178 2010-04-10  Bruno Haible  <bruno@clisp.org>
5179
5180         Don't override improved macro from newer autoconf.
5181         * m4/gnulib-common.m4 (AC_C_RESTRICT): Don't define for
5182         autoconf >= 2.62.
5183         Reported by Joel E. Denny <jdenny@clemson.edu>.
5184
5185 2010-04-10  Jim Meyering  <meyering@redhat.com>
5186
5187         maint.mk: new syntax-check rule: prohibit empty lines at end of file
5188         * top/maint.mk (sc_prohibit_empty_lines_at_EOF): New rule.
5189
5190         maint.mk: correct a diagnostic
5191         * top/maint.mk (sc_prohibit_HAVE_MBRTOWC): Fix obsolete use of $re
5192         in diagnostic; now use $prohibit.
5193
5194 2010-04-10  Bruno Haible  <address@hidden>
5195
5196         fchownat: Fix a C++ test error on Solaris 8.
5197         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Don't set REPLACE_FCHOWNAT to 1 if
5198         the function does not exist.
5199
5200 2010-04-10  Bruno Haible  <bruno@clisp.org>
5201
5202         vasnprintf: Add more tests.
5203         * tests/test-vasnprintf-posix.c: Include <errno.h>.
5204         (test_function): Test converting an invalid wide string.
5205
5206         vasnprintf: Correct handling of unconvertible wide string arguments.
5207         * lib/vasnprintf.c (MAX_ROOM_NEEDED): New function, extracted from
5208         VASNPRINTF.
5209         (VASNPRINTF): Use it. After snprintf failed, allocate more memory only
5210         if HAVE_SNPRINTF_RETVAL_C99 is false and the allocated memory is
5211         smaller than the expected maximum need for the directive. Set errno to
5212         EILSEQ, not EINVAL, when the directive is 'c' or 's'.
5213         (local_strnlen, local_wcslen, local_wcsnlen): Update conditions.
5214         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Require AC_C_INLINE and
5215         gl_SNPRINTF_RETVAL_C99. Define HAVE_SNPRINTF_RETVAL_C99.
5216         * modules/vasnprintf (Files): Add m4/printf.m4.
5217         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
5218
5219 2010-04-10  Bruno Haible  <bruno@clisp.org>
5220
5221         vasnprintf: Fix crash in %ls directive.
5222         * lib/vasnprintf.c (VASNPRINTF): Don't abort when a unconvertible wide
5223         string is passed as argument to %ls, with no precision and no width.
5224         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
5225
5226 2010-04-10  Bruno Haible  <bruno@clisp.org>
5227
5228         vasnprintf: Fix multiple test failures on mingw.
5229         * lib/vasnprintf.c (SNPRINTF) [mingw]: Define to snprintf, not
5230         _snprintf, or snwprintf, not _snwprintf.
5231
5232 2010-04-10  Bruno Haible  <bruno@clisp.org>
5233
5234         write: Fix a C++ test error on mingw.
5235         * lib/unistd.in.h (write): Use _GL_CXXALIAS_SYS_CAST.
5236
5237 2010-04-10  Bruno Haible  <bruno@clisp.org>
5238
5239         vasnprintf test: Reduce code duplication.
5240         * tests/test-vasnprintf.c (test_function): New function, extracted from
5241         test_vasnprintf.
5242         (test_vasnprintf, test_asnprintf): Invoke it.
5243
5244 2010-04-10  Bruno Haible  <bruno@clisp.org>
5245
5246         strnlen: Fix warning in C++ mode on MacOS X.
5247         * lib/string.in.h (strnlen): Use the modern idiom.
5248         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set REPLACE_STRNLEN to 1, instead of
5249         defining strnlen as a macro already in <config.h>.
5250         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
5251         REPLACE_STRNLEN.
5252         * modules/string (Makefile.am): Substitute REPLACE_STRNLEN.
5253         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
5254
5255 2010-04-08  James Youngman  <jay@gnu.org>
5256
5257         * doc/manywarnings.texi (manywarnings): Add missing parenthesis in
5258         the example.
5259
5260 2010-04-09  Jim Meyering  <meyering@redhat.com>
5261
5262         maint.mk: print better diagnostic when there is no $(_hv_file)
5263         * top/maint.mk (sc_cross_check_PATH_usage_in_tests): Skip test and
5264         announce that when $(_hv_file) (aka help-version) does not exist.
5265
5266         init.sh: run tr in the "C" locale to avoid multibyte interpretation
5267         * tests/init.sh (rand_bytes_): Run tr in the "C" locale so it does
5268         not try to interpret its random input bytes.  Jarno Rajahalme reported
5269         that ./test-xalloc-die.sh would fail with "tr: Illegal byte sequence".
5270         on Darwin 10.3.0 with LC_CTYPE=UTF-8.
5271         (mktempd_): Likewise, just in case.
5272
5273         ftruncate: add two years to projected module removal date: 2012
5274         * m4/ftruncate.m4: Adjust comments.
5275
5276         ftruncate: mark module as obsolete; even MinGW provides it, now
5277         * modules/ftruncate (Status): Obsolete.
5278         (Notice): Say that.
5279         * doc/posix-functions/ftruncate.texi: Don't say MinGW lacks it.
5280         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/9203
5281
5282 2010-04-08  Bruno Haible  <bruno@clisp.org>
5283
5284         Fix side effects from tests-related modules.
5285         * modules/dprintf-posix (Comment): New section.
5286         * modules/fprintf-posix (Comment): Likewise.
5287         * modules/obstack-printf-posix (Comment): Likewise.
5288         * modules/printf-posix (Comment): Likewise.
5289         * modules/snprintf-posix (Comment): Likewise.
5290         * modules/sprintf-posix (Comment): Likewise.
5291         * modules/vasnprintf-posix (Comment): Likewise.
5292         * modules/vasprintf-posix (Comment): Likewise.
5293         * modules/vdprintf-posix (Comment): Likewise.
5294         * modules/vfprintf-posix (Comment): Likewise.
5295         * modules/vprintf-posix (Comment): Likewise.
5296         * modules/vsnprintf-posix (Comment): Likewise.
5297         * modules/vsprintf-posix (Comment): Likewise.
5298         * modules/xprintf-posix (Comment): Likewise.
5299         * modules/xvasprintf-posix (Comment): Likewise.
5300         * modules/ceilf-tests (Depends-on): Remove fprintf-posix.
5301         * modules/floorf-tests (Depends-on): Likewise.
5302         * modules/round-tests (Depends-on): Likewise.
5303         * modules/roundf-tests (Depends-on): Likewise.
5304         * modules/trunc-tests (Depends-on): Likewise.
5305         * modules/truncf-tests (Depends-on): Likewise.
5306         * tests/test-ceilf2.c (check): Don't invoke fprintf if the
5307         'fprintf-posix' module is not present.
5308         * tests/test-floorf2.c (check): Likewise.
5309         * tests/test-trunc2.c (check): Likewise.
5310         * tests/test-truncf2.c (check): Likewise.
5311         * tests/test-round2.c (equal): Likewise.
5312         Reported by Jarno Rajahalme <jarno.rajahalme@nsn.com>.
5313
5314 2010-04-07  Karl Berry  <karl@gnu.org>
5315
5316         * config/srclist.txt,
5317         * config/srclistvars.sh,
5318         * config/srclist-update: doc fixes.
5319
5320 2010-04-07  Jim Meyering  <meyering@redhat.com>
5321
5322         maint.mk: add a PATH crosschecking syntax-check rule
5323         * top/maint.mk (sc_cross_check_PATH_usage_in_tests): New rule.
5324         Useful if you use a test like the one in help-version (coreutils,
5325         diffutils, grep, gzip) that ensures $(VERSION) matches what is
5326         printed by prog --version.
5327
5328 2010-04-06  Bruno Haible  <bruno@clisp.org>
5329
5330         Fix link error on mingw.
5331         * modules/unistd-c++-tests (test_unistd_c___LDADD): Add LIBSOCKET.
5332         * modules/fcntl-h-c++-tests (test_fcntl_h_c___LDADD): Likewise.
5333
5334 2010-04-06  Bruno Haible  <bruno@clisp.org>
5335
5336         Assume rmdir exists.
5337         * lib/rmdir.c (rpl_rmdir): Remove code that invokes the rmdir program.
5338
5339 2010-04-06  Giuseppe Scrivano <gscrivano@gnu.org>
5340
5341         doc: update users.txt
5342         * users.txt: Add gcal.
5343
5344 2010-04-06  Jim Meyering  <meyering@redhat.com>
5345
5346         init.sh: simply unset TMPDIR rather than risking env -i
5347         * tests/init.sh (mktempd_): Using env -i is rather harsh, and
5348         although it probably works fine on all Unix-based systems, some
5349         systems (Cygwin?) cannot tolerate a totally cleared environment.
5350         Suggestion from Eric Blake.
5351
5352 2010-04-06  Jim Meyering  <meyering@redhat.com>
5353
5354         init.sh: portability fix: use env's POSIX-specified -i option not -u
5355         * tests/init.sh (mktempd_): Use env -i and set PATH explicitly rather
5356         than unportable env -u.  Solaris 5.11's env lacks support for -u.
5357
5358 2010-04-05  Bruno Haible  <bruno@clisp.org>
5359
5360         btowc: Work around Cygwin 1.7.2 bug.
5361         * m4/btowc.m4 (gl_FUNC_BTOWC): Set REPLACE_BTOWC to 1 if the function
5362         does not map NUL to 0.
5363         * doc/posix-functions/btowc.texi: Mention the Cygwin bug.
5364
5365 2010-04-05  Bruno Haible  <bruno@clisp.org>
5366
5367         Make the multithread modules work on Cygwin 1.7.2.
5368         * m4/threadlib.m4 (gl_THREADLIB_BODY): Improve the test whether
5369         imported symbols can be declared weak, so that it returns "no" on
5370         Cygwin 1.7.2.
5371
5372 2010-04-05  Bruno Haible  <bruno@clisp.org>
5373
5374         Use the module 'strncat'.
5375         * modules/unistr/u8-strncat (Depends-on): Add strncat.
5376
5377         Tests for module 'strncat'.
5378         * modules/strncat-tests: New file.
5379         * tests/test-strncat.c: New file.
5380
5381         New module 'strncat'.
5382         * lib/string.in.h (strncat): New declaration.
5383         * lib/strncat.c: New file, based on lib/unistr/u-strncat.h.
5384         * m4/strncat.m4: New file, based on m4/memchr.m4.
5385         * modules/strncat: New file.
5386         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Also check whether strncat
5387         is declared.
5388         (gl_HEADER_STRING_H_DEFAULTS): Initialize GNULIB_STRNCAT,
5389         REPLACE_STRNCAT.
5390         * modules/string (Makefile.am): Substitute GNULIB_STRNCAT,
5391         REPLACE_STRNCAT.
5392         * doc/posix-functions/strncat.texi: Mention the Solaris bug and the new
5393         module.
5394         * tests/test-string-c++.cc: Check signature of strncat.
5395
5396 2010-04-05  Jim Meyering  <meyering@redhat.com>
5397
5398         xstrtoumax-tests: convert to use init.sh
5399         * modules/xstrtoumax-tests (Files): Add tests/init.sh.
5400         * tests/test-xstrtoumax.sh: Invoke "$srcdir/init.sh" and path_prepend_.
5401         Use Exit, not exit.
5402         Remove uses of $EXEEXT and "./" to run a program in the current dir.
5403
5404         xstrtoimax-tests: convert to use init.sh
5405         * modules/xstrtoimax-tests (Files): Add tests/init.sh.
5406         * tests/test-xstrtoimax.sh: Invoke "$srcdir/init.sh" and path_prepend_.
5407         Use Exit, not exit.
5408         Remove uses of $EXEEXT and "./" to run a program in the current dir.
5409
5410 2010-04-05  Bruno Haible  <bruno@clisp.org>
5411
5412         sys_socket: Avoid #define replacements in C++ mode.
5413         * lib/sys_socket.in.h (close, gethostname, select): In C++, attach a
5414         warning to the function if possible, rather than #defining the symbol
5415         to a dysfunctional alias.
5416
5417 2010-04-05  Bruno Haible  <bruno@clisp.org>
5418
5419         fseeko: Fix C++ test error on mingw.
5420         * m4/fseeko.m4 (gl_HAVE_FSEEKO): New macro, extracted from
5421         gl_FUNC_FSEEKO.
5422         (gl_REPLACE_FSEEKO): Also set REPLACE_FSEEKO if appropriate.
5423         (gl_FUNC_FSEEKO): Require gl_HAVE_FSEEKO. Update.
5424         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't fiddle with internals of the
5425         fseeko module. Instead, invoke gl_REPLACE_FSEEKO.
5426
5427 2010-04-05  Bruno Haible  <bruno@clisp.org>
5428
5429         duplocale: Improve test output.
5430         * tests/test-duplocale.c (main): Print reason for skipped test.
5431
5432 2010-04-05  Bruno Haible  <bruno@clisp.org>
5433
5434         Assume rmdir exists.
5435         * m4/rmdir.m4 (gl_FUNC_RMDIR): Remove test whether rmdir exists.
5436         * doc/posix-functions/rmdir.texi: Remove mention of "old platforms".
5437
5438 2010-04-05  Bruno Haible  <bruno@clisp.org>
5439
5440         Fix link error on Solaris 8 with cc.
5441         * modules/pty-c++-tests (test_pty_c___LDADD): Add LIBINTL.
5442
5443 2010-04-05  Bruno Haible  <bruno@clisp.org>
5444
5445         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
5446         * lib/math.in.h (frexpl): Fix condition on _GL_CXXALIASWARN invocation.
5447
5448 2010-04-05  Bruno Haible  <bruno@clisp.org>
5449
5450         vasprintf: Update documentation.
5451         * doc/glibc-functions/asprintf.texi: Mention the 'vasprintf' module.
5452
5453 2010-04-05  Bruno Haible  <bruno@clisp.org>
5454
5455         ptsname: Improve test.
5456         * tests/test-ptsname.c (main): Also try the various master names of BSD
5457         systems.
5458
5459 2010-04-05  Bruno Haible  <bruno@clisp.org>
5460
5461         memchr: Avoid a possible C++ test error.
5462         * lib/string.in.h (memchr): Provide declaration if function is missing.
5463         * m4/memchr.m4 (gl_FUNC_MEMCHR): If the function is missing, set
5464         HAVE_MEMCHR to 0, not REPLACE_MEMCHR to 1.
5465         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MEMCHR.
5466         * modules/string (Makefile.am): Substitute HAVE_MEMCHR.
5467
5468 2010-04-05  Bruno Haible  <bruno@clisp.org>
5469
5470         strtok_r: Improve idiom.
5471         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Invoke gl_PREREQ_STRDUP only when
5472         AC_LIBOBJ is used.
5473
5474 2010-04-05  Bruno Haible  <bruno@clisp.org>
5475
5476         strdup: Improve idiom.
5477         * m4/strdup.m4 (gl_FUNC_STRDUP): Invoke gl_PREREQ_STRDUP only when
5478         AC_LIBOBJ is used.
5479         (gl_FUNC_STRDUP_POSIX): When strdup is missing and malloc is not POSIX
5480         compliant, don't set REPLACE_STRDUP to 1. Invoke gl_PREREQ_STRDUP only
5481         when AC_LIBOBJ is used.
5482
5483 2010-04-05  Bruno Haible  <bruno@clisp.org>
5484
5485         mbsinit, mbrtowc, wcrtomb: Improve idioms.
5486         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): When the function does not exist,
5487         don't set REPLACE_MBSINIT to 1.
5488         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): When the function does not exist,
5489         don't set REPLACE_MBRTOWC to 1.
5490         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): When the function does not
5491         exist, don't set REPLACE_MBSRTOWCS to 1.
5492         * m4/mbsnrtowcs.m4 (gl_FUNC_MBSNRTOWCS): When the function does not
5493         exist, don't set REPLACE_MBSNRTOWCS to 1.
5494         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): When the function does not exist,
5495         don't set REPLACE_WCRTOMB to 1.
5496         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): When the function does not
5497         exist, don't set REPLACE_WCSRTOMBS to 1.
5498         * m4/wcsnrtombs.m4 (gl_FUNC_WCSNRTOMBS): When the function does not
5499         exist, don't set REPLACE_WCSNRTOMBS to 1.
5500
5501 2010-04-05  Bruno Haible  <bruno@clisp.org>
5502
5503         ldexpl: Improve idiom.
5504         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): When the function is not declared,
5505         make sure to set HAVE_DECL_LDEXPL to 0.
5506
5507 2010-04-05  Jim Meyering  <meyering@redhat.com>
5508
5509         xstrtol-tests: convert to use init.sh
5510         * modules/xstrtol-tests (Files): Add tests/init.sh.
5511         * tests/test-xstrtol.sh: Invoke "$srcdir/init.sh" and path_prepend_.
5512         Use Exit, not exit.
5513         Remove uses of $EXEEXT and "./" to run a program in the current dir.
5514
5515         atexit-tests: convert to use init.sh
5516         * modules/atexit-tests (Files): Add tests/init.sh.
5517         * tests/test-atexit.sh: Invoke "$srcdir/init.sh" and path_prepend_.
5518         Use Exit, not exit.
5519         Remove uses of $EXEEXT and "./" to run a program in the current dir.
5520
5521         init.sh: fix typo
5522         * tests/init.sh: Restore omitted ":" before stderr_fileno_ initialization.
5523
5524         init.sh: make it easier for a test script to write to the tty, ...
5525         when using automake's parallel-tests mode.
5526         * tests/init.sh (stderr_fileno_): Define overridable variable.
5527         (warn_): New function, to use it.
5528         (fail_, skip_, framework_failure_): Use warn_.
5529
5530 2010-04-04  Bruno Haible  <bruno@clisp.org>
5531
5532         btowc: Avoid warning.
5533         * lib/btowc.c: Include <stdlib.h>.
5534         Reported by Hauke Fath <hauke@espresso.rhein-neckar.de>.
5535
5536 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
5537             Bruno Haible  <bruno@clisp.org>
5538
5539         wchar: Port to NetBSD 1.5.
5540         * lib/wchar.in.h (WEOF): Provide fallback also when wint_t exists.
5541         * lib/wctype.in.h (WEOF): Likewise.
5542
5543 2010-04-04  Hauke Fath  <hauke@espresso.rhein-neckar.de>  (tiny change)
5544             Bruno Haible  <bruno@clisp.org>
5545
5546         Port extended stdio to NetBSD 1.5.
5547         * lib/stdio-impl.h [NetBSD]: Include <sys/param.h>.
5548         (struct __sfileext, fp_ub): Define the "old way" for NetBSD 1.5Z and
5549         older.
5550
5551 2010-04-04  Bruno Haible  <bruno@clisp.org>
5552
5553         string: Remove unused substitution.
5554         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
5555         HAVE_DECL_STRERROR.
5556         * modules/string (Makefile.am): Don't substitute HAVE_DECL_STRERROR.
5557
5558 2010-04-04  Bruno Haible  <bruno@clisp.org>
5559
5560         strtod: Avoid a possible C++ test error.
5561         * m4/strtod.m4 (gl_FUNC_STRTOD): When setting HAVE_STRTOD to 0, don't
5562         set REPLACE_STRTOD.
5563
5564 2010-04-04  Bruno Haible  <bruno@clisp.org>
5565
5566         strerror: Update documentation.
5567         * doc/posix-functions/strerror.texi: Remove mention of old platforms.
5568
5569 2010-04-04  Bruno Haible  <bruno@clisp.org>
5570
5571         stdio: Fix some C++ test errors on Solaris 8 with GCC.
5572         * lib/stdio.in.h (vdprintf, vfprintf, vprintf, vsprintf): Use
5573         _GL_CXXALIAS_SYS_CAST.
5574
5575 2010-04-04  Bruno Haible  <bruno@clisp.org>
5576
5577         frexpl: Fix a C++ test error on Solaris 8 and Cygwin.
5578         * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): When the
5579         function is not declared, set HAVE_DECL_FREXPL to 0, instead of setting
5580         REPLACE_FREXPL to 1.
5581         * doc/posix-functions/frexpl.texi: Update documentation.
5582
5583 2010-04-04  Bruno Haible  <bruno@clisp.org>
5584
5585         math: Fix some C++ test errors on Solaris 8 and Cygwin.
5586         * lib/math.in.h (cosl, logl, sinl): Use simpler idiom.
5587
5588 2010-04-04  Bruno Haible  <bruno@clisp.org>
5589
5590         Implement nanosleep for native Windows.
5591         * lib/nanosleep.c (nanosleep): New implementation for native Windows.
5592
5593 2010-04-04  Bruno Haible  <bruno@clisp.org>
5594
5595         math: Fix some C++ test errors on Solaris 8.
5596         * lib/math.in.h (truncf, trunc): Use simpler idiom.
5597
5598 2010-04-04  Bruno Haible  <bruno@clisp.org>
5599
5600         math: Fix some C++ test errors on Cygwin.
5601         * lib/math.in.h (ceilf, ceill, floorf, floorl, roundf, round, roundl,
5602         truncl): Provide declaration if the system does not have it.
5603         * m4/ceilf.m4 (gl_FUNC_CEILF): If the function is not declared, set
5604         HAVE_DECL_CEILF to 0, not REPLACE_CEILF to 1.
5605         * m4/ceill.m4 (gl_FUNC_CEILL): If the function is not declared, set
5606         HAVE_DECL_CEILL to 0, not REPLACE_CEILL to 1.
5607         * m4/floorf.m4 (gl_FUNC_FLOORF): If the function is not declared, set
5608         HAVE_DECL_FLOORF to 0, not REPLACE_FLOORF to 1.
5609         * m4/floorl.m4 (gl_FUNC_FLOORL): If the function is not declared, set
5610         HAVE_DECL_FLOORL to 0, not REPLACE_FLOORL to 1.
5611         * m4/round.m4 (gl_FUNC_ROUND): If the function is not declared, set
5612         HAVE_DECL_ROUND to 0, not REPLACE_ROUND to 1.
5613         * m4/roundf.m4 (gl_FUNC_ROUNDF): If the function is not declared, set
5614         HAVE_DECL_ROUNDF to 0, not REPLACE_ROUNDF to 1.
5615         * m4/roundl.m4 (gl_FUNC_ROUNDL): If the function is not declared, set
5616         HAVE_DECL_ROUNDL to 0, not REPLACE_ROUNDL to 1.
5617         * m4/truncl.m4 (gl_FUNC_TRUNCL): If the function is not declared, set
5618         HAVE_DECL_TRUNCL to 0, not REPLACE_TRUNCL to 1.
5619         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize HAVE_DECL_CEILF,
5620         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
5621         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
5622         * modules/math (Makefile.am): Substitute HAVE_DECL_CEILF,
5623         HAVE_DECL_CEILL, HAVE_DECL_FLOORF, HAVE_DECL_FLOORL, HAVE_DECL_ROUND,
5624         HAVE_DECL_ROUNDF, HAVE_DECL_ROUNDL, HAVE_DECL_TRUNCL.
5625
5626 2010-04-04  Bruno Haible  <bruno@clisp.org>
5627
5628         * m4/ceilf.m4 (gl_FUNC_CEILF): Remove redundant AC_SUBST invocation.
5629         * m4/ceill.m4 (gl_FUNC_CEILL): Likewise.
5630         * m4/floorf.m4 (gl_FUNC_FLOORF): Likewise.
5631         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
5632         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
5633         * m4/isinf.m4 (gl_ISINF): Likewise.
5634         * m4/truncl.m4 (gl_FUNC_TRUNCL): Likewise.
5635
5636 2010-04-04  Bruno Haible  <bruno@clisp.org>
5637
5638         * m4/trunc.m4 (gl_FUNC_TRUNC): Remove redundant AC_SUBST invocation.
5639         * m4/truncf.m4 (gl_FUNC_TRUNCF): Likewise.
5640
5641 2010-04-04  Bruno Haible  <bruno@clisp.org>
5642
5643         * m4/tmpfile.m4 (gl_FUNC_TMPFILE): Renamed from gl_TMPFILE.
5644         * modules/tmpfile (configure.ac): Update.
5645
5646         tmpfile: Fix C++ test error on mingw.
5647         * lib/stdio.in.h (tmpfile): New declaration.
5648         * m4/tmpfile.m4 (gl_TMPFILE): Require gl_STDIO_H_DEFAULTS. Set
5649         REPLACE_TMPFILE instead of defining tmpfile as a macro in config.h.
5650         * modules/tmpfile (Depends-on): Add stdio.
5651         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
5652         * m4/stdio_h.m4 (gl_STDIO_H): Also check whether tmpfile is declared.
5653         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_TMPFILE and REPLACE_TMPFILE.
5654         * modules/stdio (Makefile.am): Substitute GNULIB_TMPFILE and
5655         REPLACE_TMPFILE.
5656         * tests/test-stdio-c++.cc (tmpfile): Verify signature.
5657
5658 2010-04-04  Bruno Haible  <bruno@clisp.org>
5659
5660         ioctl: Fix C++ test error on mingw.
5661         * lib/ioctl.c (ioctl): Renamed from rpl_ioctl.
5662         * lib/sys_ioctl.in.h (ioctl): When SYS_IOCTL_H_HAVE_WINSOCK2_H is 1,
5663         use _GL_FUNCDECL_SYS, not _GL_FUNCDECL_RPL.
5664
5665 2010-04-03  Bruno Haible  <bruno@clisp.org>
5666
5667         wcwidth: Fix C++ test error on mingw.
5668         * lib/wcwidth.c (wcwidth): Renamed from rpl_wcwidth.
5669         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): If the wcwidth function does not
5670         exist, don't set REPLACE_WCWIDTH. Instead, rely on HAVE_DECL_WCWIDTH.
5671
5672 2010-04-03  Bruno Haible  <bruno@clisp.org>
5673
5674         nanosleep: Fix C++ test error on mingw.
5675         * lib/nanosleep.c (nanosleep): Renamed from rpl_nanosleep.
5676         * lib/time.in.h (nanosleep): Use modern idiom.
5677         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): When the system does not have a
5678         nanosleep function, set HAVE_NANOSLEEP to 0, instead of setting
5679         REPLACE_NANOSLEEP to 1.
5680         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_NANOSLEEP.
5681         * modules/time (Makefile.am): Substitute HAVE_NANOSLEEP.
5682
5683 2010-04-03  Bruno Haible  <bruno@clisp.org>
5684
5685         strptime: Fix C++ test error on mingw.
5686         * lib/time.in.h (strptime): Use HAVE_STRPTIME, not REPLACE_STRPTIME.
5687         * m4/strptime.m4 (gl_FUNC_STRPTIME): Set HAVE_STRPTIME, not
5688         REPLACE_STRPTIME. Invoke gl_PREREQ_STRPTIME.
5689         (gl_PREREQ_STRPTIME): New macro, extracted from gl_FUNC_STRPTIME.
5690         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_STRPTIME,
5691         not REPLACE_STRPTIME.
5692         * modules/time (Makefile.am): Substitute HAVE_STRPTIME, not
5693         REPLACE_STRPTIME.
5694
5695 2010-04-03  Bruno Haible  <bruno@clisp.org>
5696
5697         timegm: Fix C++ test error on mingw.
5698         * lib/time.in.h (timegm): Use modern idiom.
5699         * m4/timegm.m4 (gl_FUNC_TIMEGM): When timegm does not exist, set
5700         HAVE_TIMEGM to 0, not REPLACE_TIMEGM to 1.
5701         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_TIMEGM.
5702         * modules/time (Makefile.am): Substitute HAVE_TIMEGM.
5703
5704 2010-04-03  Bruno Haible  <bruno@clisp.org>
5705
5706         timegm: Assume declaration if function exists.
5707         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume timegm is declared if and only
5708         if it exists. Don't clobber ac_cv_func_timegm.
5709
5710 2010-04-03  Bruno Haible  <bruno@clisp.org>
5711
5712         time_r: Fix C++ test error on mingw.
5713         * lib/time.in.h (localtime_r, gmtime_r): Use modern idiom.
5714         * m4/time_r.m4 (gl_TIME_R): When localtime_r does not exist, set
5715         HAVE_LOCALTIME_R to 0, not REPLACE_LOCALTIME_R to 1.
5716         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize HAVE_LOCALTIME_R.
5717         * modules/time (Makefile.am): Substitute HAVE_LOCALTIME_R.
5718
5719 2010-04-03  Bruno Haible  <bruno@clisp.org>
5720
5721         time_r: Minor updates.
5722         * modules/time_r (Description): Mention the provided functions.
5723         * lib/time_r.c: Don't include <string.h>.
5724         * doc/posix-functions/gmtime_r.texi: Mention the 'time_r' module.
5725         * doc/posix-functions/localtime_r.texi: Likewise.
5726
5727 2010-04-03  Bruno Haible  <bruno@clisp.org>
5728
5729         time: Fix regression introduced on 2010-03-08.
5730         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Require
5731         gl_HEADER_TIME_H_DEFAULTS, not gl_HEADER_STRING_H_DEFAULTS.
5732
5733 2010-04-03  Jim Meyering  <meyering@redhat.com>
5734
5735         maint.mk: don't silently disable project-specific syntax-check rules
5736         * top/maint.mk (_prohibit_regexp): Define, to help people realize
5737         that they need to convert their project-specific syntax-check rules
5738         to use the new _sc_search_regexp.
5739
5740 2010-04-03  Bruno Haible  <bruno@clisp.org>
5741
5742         fchdir: Fix regression introduced on 2010-03-08.
5743         * lib/unistd.in.h (fchdir): Fix declaration.
5744         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set HAVE_FCHDIR, not REPLACE_FCHDIR.
5745         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize HAVE_FCHDIR, not
5746         REPLACE_FCHDIR.
5747         * modules/unistd (Makefile.am): Substitute HAVE_FCHDIR, not
5748         REPLACE_FCHDIR.
5749
5750 2010-04-03  Bruno Haible  <bruno@clisp.org>
5751
5752         getpagesize: Fix C++ test error on mingw.
5753         * lib/unistd.in.h (getpagesize): Don't use _GL_CXXALIASWARN if the
5754         system does not declare the function.
5755         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Also check whether it's
5756         declared.
5757         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
5758         HAVE_DECL_GETPAGESIZE.
5759         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETPAGESIZE.
5760
5761 2010-04-03  Bruno Haible  <bruno@clisp.org>
5762
5763         stdio: Make C++ tests work on mingw.
5764         * lib/stdio.in.h (getline): Don't use _GL_CXXALIASWARN if the system
5765         does not declare the function.
5766
5767 2010-04-03  Bruno Haible  <bruno@clisp.org>
5768
5769         ftello: Fix C++ test error on mingw.
5770         * lib/stdio.in.h (ftello): Use modern idiom.
5771         * lib/ftello.c (ftello): Renamed from rpl_ftello.
5772         * m4/ftello.m4 (gl_FUNC_FTELLO): Distinguish the case that the function
5773         is missing and that it needs to be replaced.
5774         (gl_REPLACE_FTELLO): Don't set REPLACE_FTELLO here.
5775         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FTELLO.
5776         * modules/stdio (Makefile.am): Substitute HAVE_FTELLO.
5777
5778 2010-04-03  Bruno Haible  <bruno@clisp.org>
5779
5780         fseeko: Fix C++ test error on mingw.
5781         * lib/stdio.in.h (fseeko): Use modern idiom.
5782         * lib/fseeko.c (fseeko): Renamed from rpl_fseeko.
5783         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Distinguish the case that the function
5784         is missing and that it needs to be replaced.
5785         (gl_REPLACE_FSEEKO): Don't set REPLACE_FSEEKO here.
5786         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize HAVE_FSEEKO.
5787         * modules/stdio (Makefile.am): Substitute HAVE_FSEEKO.
5788
5789 2010-04-03  Bruno Haible  <bruno@clisp.org>
5790
5791         mkstemp: Fix C++ test error on mingw.
5792         * lib/stdlib.in.h (mkstemp): Use modern idiom.
5793         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Distinguish the case that the
5794         function is missing and that it needs to be replaced.
5795         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize HAVE_MKSTEMP.
5796         * modules/stdlib (Makefile.am): Substitute HAVE_MKSTEMP.
5797
5798 2010-04-03  Bruno Haible  <bruno@clisp.org>
5799
5800         stpncpy: Fix C++ test error on mingw.
5801         * lib/string.in.h (stpncpy): Use modern idiom.
5802         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Distinguish the case that the
5803         function is missing and that it needs to be replaced.
5804         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
5805         REPLACE_STPNCPY.
5806         * modules/string (Makefile.am): Substitute REPLACE_STPNCPY.
5807
5808 2010-04-03  Bruno Haible  <bruno@clisp.org>
5809
5810         sys_stat: Fix C++ test error on mingw.
5811         * build-aux/c++defs.h (_GL_CXXALIAS_RPL_CAST_1): New macro.
5812         * lib/sys_stat.in.h (lchmod): Use it instead of _GL_CXXALIAS_RPL_1.
5813
5814 2010-04-03  Bruno Haible  <bruno@clisp.org>
5815
5816         pty: Update doc.
5817         * doc/glibc-headers/pty.texi: Mention changes done since 2010-03-18.
5818
5819 2010-04-03  Bruno Haible  <bruno@clisp.org>
5820
5821         unistd: Fix C++ test error on mingw.
5822         * lib/unistd.in.h (getcwd): Use _GL_CXXALIAS_SYS_CAST.
5823
5824 2010-04-03  Bruno Haible  <bruno@clisp.org>
5825
5826         Update doc regarding mingw.
5827         * doc/glibc-functions/openpty.texi: Update regarding mingw.
5828         * doc/glibc-functions/login_tty.texi: Likewise.
5829         * doc/glibc-functions/forkpty.texi: Likewise.
5830
5831 2010-04-03  Bruno Haible  <bruno@clisp.org>
5832
5833         stdlib: Avoid compilation failure of c-strtold on mingw.
5834         * lib/stdlib.in.h: Don't include <unistd.h> on native Windows systems.
5835
5836 2010-04-03  Bruno Haible  <bruno@clisp.org>
5837
5838         locale: Make C++ tests work on Cygwin and mingw.
5839         * lib/locale.in.h (duplocale): Don't use _GL_CXXALIASWARN if gnulib
5840         cannot provide the function.
5841         Reported by Simon Josefsson.
5842
5843 2010-04-03  Bruno Haible  <bruno@clisp.org>
5844
5845         localename: Port to MacOS X 10.6.
5846         * lib/localename.c (gl_locale_name_thread_unsafe): On MacOS X, try the
5847         memory layout of the locales in MacOS X 10.6 as well.
5848         Reported by Panu Kekäläinen <panu@kekalainen.eu>.
5849
5850 2010-04-02  Bruno Haible  <bruno@clisp.org>
5851
5852         gnulib-tool: Ensure that long-running tests are executed last.
5853         * gnulib-tool (func_emit_tests_Makefile_am): Emit the code for long-
5854         running tests after the one for the other tests.
5855
5856 2010-04-02  Bruno Haible  <bruno@clisp.org>
5857
5858         gnulib-tool: Ensure the tests in the main directory are executed first.
5859         * gnulib-tool (func_emit_tests_Makefile_am): Initialize SUBDIRS to
5860         start with the current directory.
5861
5862 2010-04-02  Bruno Haible  <bruno@clisp.org>
5863
5864         Tests for module 'havelib', moved here from GNU gettext.
5865         * modules/havelib-tests: New file, from gettext/autoconf-lib-link with
5866         modifications.
5867         * tests/havelib/README: New file, from gettext/autoconf-lib-link.
5868         * tests/havelib/Makefile.am: New file, from gettext/autoconf-lib-link
5869         with modifications.
5870         * tests/havelib/rpath-1: New file, from gettext/autoconf-lib-link with
5871         modifications.
5872         * tests/havelib/rpath-1a: New file, from gettext/autoconf-lib-link.
5873         * tests/havelib/rpath-1b: New file, from gettext/autoconf-lib-link.
5874         * tests/havelib/rpath-2_a: New file, from gettext/autoconf-lib-link
5875         with modifications.
5876         * tests/havelib/rpath-2_b: New file, from gettext/autoconf-lib-link
5877         with modifications.
5878         * tests/havelib/rpath-2aaa: New file, from gettext/autoconf-lib-link.
5879         * tests/havelib/rpath-2aab: New file, from gettext/autoconf-lib-link.
5880         * tests/havelib/rpath-2aac: New file, from gettext/autoconf-lib-link.
5881         * tests/havelib/rpath-2aad: New file, from gettext/autoconf-lib-link.
5882         * tests/havelib/rpath-2aba: New file, from gettext/autoconf-lib-link.
5883         * tests/havelib/rpath-2abb: New file, from gettext/autoconf-lib-link.
5884         * tests/havelib/rpath-2abc: New file, from gettext/autoconf-lib-link.
5885         * tests/havelib/rpath-2abd: New file, from gettext/autoconf-lib-link.
5886         * tests/havelib/rpath-2baa: New file, from gettext/autoconf-lib-link.
5887         * tests/havelib/rpath-2bab: New file, from gettext/autoconf-lib-link.
5888         * tests/havelib/rpath-2bac: New file, from gettext/autoconf-lib-link.
5889         * tests/havelib/rpath-2bad: New file, from gettext/autoconf-lib-link.
5890         * tests/havelib/rpath-2bba: New file, from gettext/autoconf-lib-link.
5891         * tests/havelib/rpath-2bbb: New file, from gettext/autoconf-lib-link.
5892         * tests/havelib/rpath-2bbc: New file, from gettext/autoconf-lib-link.
5893         * tests/havelib/rpath-2bbd: New file, from gettext/autoconf-lib-link.
5894         * tests/havelib/rpath-3_a: New file, from gettext/autoconf-lib-link
5895         with modifications.
5896         * tests/havelib/rpath-3_b: New file, from gettext/autoconf-lib-link
5897         with modifications.
5898         * tests/havelib/rpath-3aaa: New file, from gettext/autoconf-lib-link.
5899         * tests/havelib/rpath-3aab: New file, from gettext/autoconf-lib-link.
5900         * tests/havelib/rpath-3aac: New file, from gettext/autoconf-lib-link.
5901         * tests/havelib/rpath-3aad: New file, from gettext/autoconf-lib-link.
5902         * tests/havelib/rpath-3aae: New file, from gettext/autoconf-lib-link.
5903         * tests/havelib/rpath-3aaf: New file, from gettext/autoconf-lib-link.
5904         * tests/havelib/rpath-3aag: New file, from gettext/autoconf-lib-link.
5905         * tests/havelib/rpath-3aah: New file, from gettext/autoconf-lib-link.
5906         * tests/havelib/rpath-3aba: New file, from gettext/autoconf-lib-link.
5907         * tests/havelib/rpath-3abb: New file, from gettext/autoconf-lib-link.
5908         * tests/havelib/rpath-3abc: New file, from gettext/autoconf-lib-link.
5909         * tests/havelib/rpath-3abd: New file, from gettext/autoconf-lib-link.
5910         * tests/havelib/rpath-3abe: New file, from gettext/autoconf-lib-link.
5911         * tests/havelib/rpath-3abf: New file, from gettext/autoconf-lib-link.
5912         * tests/havelib/rpath-3abg: New file, from gettext/autoconf-lib-link.
5913         * tests/havelib/rpath-3abh: New file, from gettext/autoconf-lib-link.
5914         * tests/havelib/rpath-3baa: New file, from gettext/autoconf-lib-link.
5915         * tests/havelib/rpath-3bab: New file, from gettext/autoconf-lib-link.
5916         * tests/havelib/rpath-3bac: New file, from gettext/autoconf-lib-link.
5917         * tests/havelib/rpath-3bad: New file, from gettext/autoconf-lib-link.
5918         * tests/havelib/rpath-3bae: New file, from gettext/autoconf-lib-link.
5919         * tests/havelib/rpath-3baf: New file, from gettext/autoconf-lib-link.
5920         * tests/havelib/rpath-3bag: New file, from gettext/autoconf-lib-link.
5921         * tests/havelib/rpath-3bah: New file, from gettext/autoconf-lib-link.
5922         * tests/havelib/rpath-3bba: New file, from gettext/autoconf-lib-link.
5923         * tests/havelib/rpath-3bbb: New file, from gettext/autoconf-lib-link.
5924         * tests/havelib/rpath-3bbc: New file, from gettext/autoconf-lib-link.
5925         * tests/havelib/rpath-3bbd: New file, from gettext/autoconf-lib-link.
5926         * tests/havelib/rpath-3bbe: New file, from gettext/autoconf-lib-link.
5927         * tests/havelib/rpath-3bbf: New file, from gettext/autoconf-lib-link.
5928         * tests/havelib/rpath-3bbg: New file, from gettext/autoconf-lib-link.
5929         * tests/havelib/rpath-3bbh: New file, from gettext/autoconf-lib-link.
5930         * tests/havelib/rpathx/rpathx.c: New file, from
5931         gettext/autoconf-lib-link.
5932         * tests/havelib/rpathx/Makefile.am: New file, from
5933         gettext/autoconf-lib-link.
5934         * tests/havelib/rpathx/configure.ac: New file, from
5935         gettext/autoconf-lib-link with modifications.
5936         * tests/havelib/rpathy/rpathy.c: New file, from
5937         gettext/autoconf-lib-link.
5938         * tests/havelib/rpathy/Makefile.am: New file, from
5939         gettext/autoconf-lib-link.
5940         * tests/havelib/rpathy/configure.ac: New file, from
5941         gettext/autoconf-lib-link with modifications.
5942         * tests/havelib/rpathz/rpathz.c: New file, from
5943         gettext/autoconf-lib-link.
5944         * tests/havelib/rpathz/Makefile.am: New file, from
5945         gettext/autoconf-lib-link.
5946         * tests/havelib/rpathz/configure.ac: New file, from
5947         gettext/autoconf-lib-link with modifications.
5948         * tests/havelib/rpathlx/usex.c: New file, from
5949         gettext/autoconf-lib-link.
5950         * tests/havelib/rpathlx/Makefile.am: New file, from
5951         gettext/autoconf-lib-link.
5952         * tests/havelib/rpathlx/configure.ac: New file, from
5953         gettext/autoconf-lib-link with modifications.
5954         * tests/havelib/rpathly/usey.c: New file, from
5955         gettext/autoconf-lib-link.
5956         * tests/havelib/rpathly/Makefile.am: New file, from
5957         gettext/autoconf-lib-link.
5958         * tests/havelib/rpathly/configure.ac: New file, from
5959         gettext/autoconf-lib-link with modifications.
5960         * tests/havelib/rpathlz/usez.c: New file, from
5961         gettext/autoconf-lib-link.
5962         * tests/havelib/rpathlz/Makefile.am: New file, from
5963         gettext/autoconf-lib-link.
5964         * tests/havelib/rpathlz/configure.ac: New file, from
5965         gettext/autoconf-lib-link with modifications.
5966         * tests/havelib/rpathlyx/usey.c: New file, from
5967         gettext/autoconf-lib-link.
5968         * tests/havelib/rpathlyx/Makefile.am: New file, from
5969         gettext/autoconf-lib-link.
5970         * tests/havelib/rpathlyx/configure.ac: New file, from
5971         gettext/autoconf-lib-link with modifications.
5972         * tests/havelib/rpathlzyx/usez.c: New file, from
5973         gettext/autoconf-lib-link.
5974         * tests/havelib/rpathlzyx/Makefile.am: New file, from
5975         gettext/autoconf-lib-link.
5976         * tests/havelib/rpathlzyx/configure.ac: New file, from
5977         gettext/autoconf-lib-link with modifications.
5978         * tests/havelib/rpathcfg.sh: New file, from gettext/autoconf-lib-link
5979         with modifications.
5980
5981 2010-04-02  Bruno Haible  <bruno@clisp.org>
5982
5983         gnulib-tool: Create distributed built sources also for the tests.
5984         * gnulib-tool (func_create_testdir): Also generate distributed built
5985         sources in the tests directory.
5986
5987 2010-04-02  Bruno Haible  <bruno@clisp.org>
5988
5989         gnulib-tool: Obey user's environment variables.
5990         * gnulib-tool (func_create_testdir): When creating built sources,
5991         respect the environment variables for autoconf, automake, etc. given by
5992         the user.
5993
5994 2010-04-02  Bruno Haible  <bruno@clisp.org>
5995
5996         gnulib-tool: Provide the value of --m4-base to modules.
5997         * gnulib-tool (func_import, func_create_testdir): Emit a definition
5998         of gl_m4_base.
5999
6000 2010-04-02  Eric Blake  <eblake@redhat.com>
6001
6002         maint.mk: fix some fallout
6003         * NEWS: Document the incompatible change, and its effect on cfg.mk.
6004         * top/maint.mk (sc_prohibit_test_minus_ao): Update.
6005
6006 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
6007
6008         maint.mk: _sc_search_regexp: generalize and rename from _prohibit_regexp
6009         * top/maint.mk (_sc_search_regexp): Rename from _prohibit_regexp.
6010         (sc_cast_of_argument_to_free): Adapt to use _sc_search_regexp.
6011         (sc_cast_of_x_alloc_return_value): Likewise.
6012         (sc_cast_of_alloca_return_value): Likewise.
6013         (sc_space_tab): Likewise.
6014         (sc_prohibit_atoi_atof): Likewise.
6015         (sc_prohibit_magic_number_exit): Likewise.
6016         (sc_error_exit_success): Likewise.
6017         (sc_file_system): Likewise.
6018         (sc_prohibit_have_config_h): Likewise.
6019         (sc_require_config_h): Likewise.
6020         (sc_prohibit_HAVE_MBRTOWC): Likewise.
6021         (sc_obsolete_symbols): Likewise.
6022         (sc_changelog): Likewise.
6023         (sc_program_name): Likewise.
6024         (sc_the_the): Likewise.
6025         (sc_trailing_blank): Likewise.
6026         (sc_two_space_separator_in_usage): Likewise.
6027         (sc_useless_cpp_parens): Likewise.
6028         (sc_GPL_version): Likewise.
6029         (sc_GFDL_version): Likewise.
6030         (sc_texinfo_acronym): Likewise.
6031         (sc_prohibit_cvs_keyword): Likewise.
6032         (sc_prohibit_stat_st_blocks): Likewise.
6033         (sc_prohibit_S_IS_definition): Likewise.
6034         (sc_redundant_const): Likewise.
6035         (sc_makefile_TAB_only_indentation): Likewise.
6036         (sc_m4_quote_check): Likewise.
6037         (sc_makefile_path_separator_check): Likewise.
6038         (sc_copyright_check): Likewise.
6039         (sc_Wundef_boolean): Likewise.
6040         (sc_vulnerable_makefile_CVE-2009-4029): Likewise.
6041
6042         maint.mk: match 0 or more whitespace-before-function-call '('
6043         * top/maint.mk (sc_error_exit_success): Relax regexp to match uses
6044         that have zero or two-and-more spaces between the function name
6045         and the open parenthesis.
6046         (sc_error_message_warn_fatal): Likewise.
6047         (sc_error_message_uppercase): Likewise.
6048         (sc_error_message_period): Likewise.
6049
6050 2010-03-31  Eric Blake  <eblake@redhat.com>
6051
6052         maint.mk: check for [ as well as test
6053         * top/maint.mk (sc_prohibit_test_minus_ao): Extend test.
6054         Based on a libvirt report by Matthias Bolte.
6055
6056         gnumakefile: don't squelch _version output
6057         * top/GNUmakefile (_version): Create one-shot dependency rather
6058         than using $(shell) when version must be regenerated.
6059         (_autoreconf): Run verbosely, by default.
6060
6061         sys_time: avoid compiler warnings
6062         * lib/sys_time.in.h (includes): Ensure gcc pragma is
6063         unconditional, fixing regression from 2010-03-29.
6064         Reported by Simon Josefsson.
6065
6066 2010-03-28  Jose E. Marchesi  <jemarch@gnu.org>
6067
6068         maint.mk: s/_header_without_use/_sc_header_without_use/
6069         * top/maint.mk (_sc_header_without_use): Rename from _header_without_use.
6070         (sc_prohibit_assert_without_use): Use the new name.
6071         (sc_prohibit_close_stream_without_use): Likewise.
6072         (sc_prohibit_getopt_without_use): Likewise.
6073         (sc_prohibit_quotearg_without_use): Likewise.
6074         (sc_prohibit_quote_without_use): Likewise.
6075         (sc_prohibit_long_options_without_use): Likewise.
6076         (sc_prohibit_inttostr_without_use): Likewise.
6077         (sc_prohibit_ignore_value_without_use): Likewise.
6078         (sc_prohibit_error_without_use): Likewise.
6079         (sc_prohibit_xalloc_without_use): Likewise.
6080         (sc_prohibit_hash_without_use): Likewise.
6081         (sc_prohibit_hash_pjw_without_use): Likewise.
6082         (sc_prohibit_safe_read_without_use): Likewise.
6083         (sc_prohibit_argmatch_without_use): Likewise.
6084         (sc_prohibit_canonicalize_without_use): Likewise.
6085         (sc_prohibit_root_dev_ino_without_use): Likewise.
6086         (sc_prohibit_openat_without_use): Likewise.
6087         (sc_prohibit_c_ctype_without_use): Likewise.
6088         (sc_prohibit_signal_without_use): Likewise.
6089         (sc_prohibit_intprops_without_use): Likewise.
6090
6091 2010-03-30  Eric Blake  <eblake@redhat.com>
6092
6093         maint: improve module indicators
6094         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE)
6095         (gl_MODULE_INDICATOR, gl_MODULE_INDICATOR_FOR_TESTS): Fit in 80
6096         columns, and avoid extra macro expansion.
6097
6098         fdopendir: work around FreeBSD bug
6099         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
6100         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Set it.
6101         * modules/dirent (Makefile.am): Substitute it.
6102         * lib/dirent.in.h (fdopendir): Supply missing FreeBSD
6103         declaration.
6104         * doc/posix-functions/fdopendir.texi (fdopendir): Document the
6105         fix.
6106         Reported by Christian Weisgerber <naddy@mips.inka.de>.
6107
6108 2010-03-29  Bruno Haible  <bruno@clisp.org>
6109
6110         Emit #pragma system_header after the inclusion guard, not before.
6111         * lib/arpa_inet.in.h: Emit #pragma system_header after the inclusion
6112         guard that spans the entire file, not before. This enables an
6113         optimization in GCC's preprocessor.
6114         * lib/ctype.in.h: Likewise.
6115         * lib/dirent.in.h: Likewise.
6116         * lib/errno.in.h: Likewise.
6117         * lib/float.in.h: Likewise.
6118         * lib/getopt.in.h: Likewise.
6119         * lib/iconv.in.h: Likewise.
6120         * lib/langinfo.in.h: Likewise.
6121         * lib/locale.in.h: Likewise.
6122         * lib/math.in.h: Likewise.
6123         * lib/netdb.in.h: Likewise.
6124         * lib/netinet_in.in.h: Likewise.
6125         * lib/pty.in.h: Likewise.
6126         * lib/sched.in.h: Likewise.
6127         * lib/se-selinux.in.h: Likewise.
6128         * lib/search.in.h: Likewise.
6129         * lib/spawn.in.h: Likewise.
6130         * lib/stdarg.in.h: Likewise.
6131         * lib/stdint.in.h: Likewise.
6132         * lib/string.in.h: Likewise.
6133         * lib/strings.in.h: Likewise.
6134         * lib/sys_file.in.h: Likewise.
6135         * lib/sys_ioctl.in.h: Likewise.
6136         * lib/sys_time.in.h: Likewise.
6137         * lib/sys_times.in.h: Likewise.
6138         * lib/sys_utsname.in.h: Likewise.
6139         * lib/sys_wait.in.h: Likewise.
6140         * lib/sysexits.in.h: Likewise.
6141         * lib/wctype.in.h: Likewise.
6142
6143 2010-03-28  James Youngman  <jay@gnu.org>
6144
6145         save-cwd: don't leak a file descriptor when the caller execs.
6146         * lib/save-cwd.c (save_cwd): set the close-on-exec flag for the
6147         saved file descriptor.
6148         * modules/save-cwd (Depends-on): Depend on cloexec.
6149
6150 2010-03-29  Bruno Haible  <bruno@clisp.org>
6151
6152         Remove vestiges of fts-lgpl module.
6153         * lib/fts_.h: Assume GNULIB_FTS is 1.
6154         * lib/fts.c: Likewise.
6155         * modules/fts (configure.ac): Remove gl_MODULE_INDICATOR invocation.
6156
6157 2010-03-28  Bruno Haible  <bruno@clisp.org>
6158
6159         Fix definition of tests witness macro.
6160         * gnulib-tool (func_import): Fix definition of witness macro.
6161
6162 2010-03-28  Bruno Haible  <bruno@clisp.org>
6163
6164         Fix ioctl's protoype on glibc systems.
6165         * lib/sys_ioctl.in.h (ioctl): If REPLACE_IOCTL is 1, use a wrapper. Use
6166         _GL_CXXALIAS_SYS, not _GL_CXXALIAS_SYS_CAST.
6167         * lib/ioctl.c (rpl_ioctl) [HAVE_IOCTL]: New wrapper.
6168         * modules/ioctl (configure.ac): Test whether ioctl has the POSIX
6169         signature. If not, arrange to replace the ioctl function.
6170         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
6171         REPLACE_IOCTL.
6172         * modules/sys_ioctl (Makefile.am): Substitute REPLACE_IOCTL.
6173         * doc/posix-functions/ioctl.texi: Mention the glibc problem.
6174         Reported by Ludovic Courtès <ludo@gnu.org>.
6175
6176 2010-03-28  Javier Villavicencio  <the_paya@gentoo.org>
6177
6178         exclude: fix the case of globs vs. EXCLUDE_INCLUDE
6179         * lib/exclude.c (excluded_file_pattern_p): Fix logic error that
6180         made it so grep -r --include=GLOB* ... did not work.
6181
6182 2010-03-26  Jim Meyering  <meyering@redhat.com>
6183             Eric Blake  <eblake@redhat.com>
6184
6185         maint.mk: prohibit use of test's -o and -a operators
6186         * top/maint.mk (sc_prohibit_test_minus_ao): New rule.
6187
6188 2010-03-28  Bruno Haible  <bruno@clisp.org>
6189
6190         Remove unused GNULIB_XYZ macro definitions.
6191         * modules/crypto/gc-camellia (configure.ac): Remove gl_MODULE_INDICATOR
6192         invocation.
6193
6194 2010-03-28  Bruno Haible  <bruno@clisp.org>
6195
6196         Mark privileged tests modules.
6197         * modules/idpriv-drop-tests (Status): New section.
6198         * modules/idpriv-droptemp-tests (Status): New section.
6199
6200 2010-03-28  Bruno Haible  <bruno@clisp.org>
6201
6202         Split C++ tests into separate tests modules.
6203         * modules/dirent-c++-tests: New file, extracted from
6204         modules/dirent-tests.
6205         * modules/dirent-tests: Depend on it.
6206         * modules/fcntl-h-c++-tests: New file, extracted from
6207         modules/fcntl-h-tests.
6208         * modules/fcntl-h-tests: Depend on it.
6209         * modules/glob-c++-tests: New file, extracted from modules/glob-tests.
6210         * modules/glob-tests: Depend on it.
6211         * modules/iconv-h-c++-tests: New file, extracted from
6212         modules/iconv-h-tests.
6213         * modules/iconv-h-tests: Depend on it.
6214         * modules/langinfo-c++-tests: New file, extracted from
6215         modules/langinfo-tests.
6216         * modules/langinfo-tests: Depend on it.
6217         * modules/locale-c++-tests: New file, extracted from
6218         modules/locale-tests.
6219         * modules/locale-tests: Depend on it.
6220         * modules/math-c++-tests: New file, extracted from modules/math-tests.
6221         * modules/math-tests: Depend on it.
6222         * modules/pty-c++-tests: New file, extracted from modules/pty-tests.
6223         * modules/pty-tests: Depend on it.
6224         * modules/search-c++-tests: New file, extracted from
6225         modules/search-tests.
6226         * modules/search-tests: Depend on it.
6227         * modules/signal-c++-tests: New file, extracted from
6228         modules/signal-tests.
6229         * modules/signal-tests: Depend on it.
6230         * modules/spawn-c++-tests: New file, extracted from
6231         modules/spawn-tests.
6232         * modules/spawn-tests: Depend on it.
6233         * modules/stdio-c++-tests: New file, extracted from
6234         modules/stdio-tests.
6235         * modules/stdio-tests: Depend on it.
6236         * modules/stdlib-c++-tests: New file, extracted from
6237         modules/stdlib-tests.
6238         * modules/stdlib-tests: Depend on it.
6239         * modules/string-c++-tests: New file, extracted from
6240         modules/string-tests.
6241         * modules/string-tests: Depend on it.
6242         * modules/sys_ioctl-c++-tests: New file, extracted from
6243         modules/sys_ioctl-tests.
6244         * modules/sys_ioctl-tests: Depend on it.
6245         * modules/sys_select-c++-tests: New file, extracted from
6246         modules/sys_select-tests.
6247         * modules/sys_select-tests: Depend on it.
6248         * modules/sys_socket-c++-tests: New file, extracted from
6249         modules/sys_socket-tests.
6250         * modules/sys_socket-tests: Depend on it.
6251         * modules/sys_stat-c++-tests: New file, extracted from
6252         modules/sys_stat-tests.
6253         * modules/sys_stat-tests: Depend on it.
6254         * modules/sys_time-c++-tests: New file, extracted from
6255         modules/sys_time-tests.
6256         * modules/sys_time-tests: Depend on it.
6257         * modules/time-c++-tests: New file, extracted from modules/time-tests.
6258         * modules/time-tests: Depend on it.
6259         * modules/unistd-c++-tests: New file, extracted from
6260         modules/unistd-tests.
6261         * modules/unistd-tests: Depend on it.
6262         * modules/wchar-c++-tests: New file, extracted from
6263         modules/wchar-tests.
6264         * modules/wchar-tests: Depend on it.
6265         * modules/wctype-c++-tests: New file, extracted from
6266         modules/wctype-tests.
6267         * modules/wctype-tests: Depend on it.
6268         Reported by Simon Josefsson.
6269
6270 2010-03-28  Bruno Haible  <bruno@clisp.org>
6271
6272         gnulib-tool: Allow 'foo-tests' module even if there is no module 'foo'.
6273         * gnulib-tool (func_exists_module): New function, extracted from
6274         func_verify_module.
6275         (func_verify_module): Use it.
6276         (func_get_dependencies): Synthetize a dependency from 'foo-tests' to
6277         'foo' only if 'foo' exists.
6278         * doc/gnulib.texi (Extra tests modules): Explain how to split a tests
6279         module.
6280
6281 2010-03-28  Bruno Haible  <bruno@clisp.org>
6282
6283         gnulib-tool: Add support for special categories of tests.
6284         * gnulib-tool: New options --with-c++-tests, --with-longrunning-tests,
6285         --with-privileged-tests, --with-unportable-tests, --with-all-tests.
6286         (func_usage): Document them.
6287         (inc_cxx_tests, inc_longrunning_tests, inc_privileged_tests,
6288         inc_unportable_tests, inc_all_tests): New variables.
6289         (func_acceptable): Consider these variables.
6290         (func_modules_transitive_closure): Make it work when the 'Status' field
6291         consists of multiple words.
6292         (func_import): Store and restore the values of inc_cxx_tests,
6293         inc_longrunning_tests, inc_privileged_tests, inc_unportable_tests,
6294         inc_all_tests in gnulib-comp.m4.
6295         (func_create_testdir): Set inc_all_tests to true.
6296         * doc/gnulib.texi (Extra tests modules): New section.
6297         Suggested by Jim Meyering.
6298
6299 2010-03-28  Bruno Haible  <bruno@clisp.org>
6300
6301         ansi-c++-opt: Allow turning off the C++ build by default.
6302         * m4/ansi-c++.m4 (gl_CXX_CHOICE): Let CXX_CHOICE default to 'no' if
6303         gl_CXX_CHOICE_DEFAULT_NO is defined.
6304         Requested by Eric Blake.
6305
6306 2010-03-28  Bruno Haible  <bruno@clisp.org>
6307
6308         unistd: Avoid #define replacements in C++ mode.
6309         * lib/unistd.in.h (socket, connect, accept, bind, getpeername,
6310         getsockname, getsockopt, listen, recv, send, recvfrom, sendto,
6311         setsockopt, shutdown, select): In C++, attach a warning to the function
6312         if possible, rather than #defining the symbol to a dysfunctional alias.
6313         Reported by John W. Eaton <jwe@gnu.org>.
6314
6315 2010-03-28  Bruno Haible  <bruno@clisp.org>
6316
6317         Fix link errors on mingw.
6318         * lib/sys_ioctl.in.h (ioctl): Fix declaration idiom.
6319         * modules/sys_ioctl-tests (Makefile.am): Link test-sys_ioctl-c++ with
6320         $(LIBSOCKET).
6321         * modules/sys_select-tests (Makefile.am): Link test-sys_select-c++ with
6322         $(LIBSOCKET).
6323
6324 2010-03-28  Bruno Haible  <bruno@clisp.org>
6325             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6326
6327         lib-ignore: Determine different options for different compilers.
6328         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Set a variable which
6329         depends on the current language (C/C++/Fortran). Don't set LDFLAGS.
6330         Add comments.
6331         (_gl_IGNORE_UNUSED_LIBRARIES_OPTIONS): New macro.
6332         * NEWS: Mention the change.
6333
6334 2010-03-27  Bruno Haible  <bruno@clisp.org>
6335
6336         Remove unused GNULIB_XYZ macro definitions.
6337         * modules/dup3 (configure.ac): Remove gl_MODULE_INDICATOR invocation.
6338         * modules/fseek (configure.ac): Likewise.
6339         * modules/ioctl (configure.ac): Likewise.
6340         * modules/open (configure.ac): Likewise.
6341         * modules/stdlib-safer (configure.ac): Likewise.
6342
6343 2010-03-27  Bruno Haible  <bruno@clisp.org>
6344
6345         Add a remark about certain modules.
6346         * modules/malloc (Comment): New section.
6347         * modules/realloc (Comment): Likewise.
6348         * modules/sigpipe (Comment): Likewise.
6349
6350 2010-03-27  Bruno Haible  <bruno@clisp.org>
6351
6352         Resolve conflict between the two kinds of module indicators.
6353         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Define
6354         GNULIB_TEST_XYZ instead of GNULIB_XYZ.
6355         * modules/canonicalize (configure.ac): Invoke
6356         gl_MODULE_INDICATOR_FOR_TESTS.
6357         * tests/test-canonicalize-lgpl.c: Test GNULIB_TEST_XYZ instead of
6358         GNULIB_XYZ.
6359         * tests/test-dirent-c++.cc: Likewise.
6360         * tests/test-dirent-safer.c: Likewise.
6361         * tests/test-dup2.c: Likewise.
6362         * tests/test-fchdir.c: Likewise.
6363         * tests/test-fcntl-h-c++.cc: Likewise.
6364         * tests/test-getopt.c: Likewise.
6365         * tests/test-getopt.h: Likewise.
6366         * tests/test-langinfo-c++.cc: Likewise.
6367         * tests/test-locale-c++.cc: Likewise.
6368         * tests/test-math-c++.cc: Likewise.
6369         * tests/test-pty-c++.cc: Likewise.
6370         * tests/test-search-c++.cc: Likewise.
6371         * tests/test-signal-c++.cc: Likewise.
6372         * tests/test-spawn-c++.cc: Likewise.
6373         * tests/test-stdio-c++.cc: Likewise.
6374         * tests/test-stdlib-c++.cc: Likewise.
6375         * tests/test-string-c++.cc: Likewise.
6376         * tests/test-sys_ioctl-c++.cc: Likewise.
6377         * tests/test-sys_select-c++.cc: Likewise.
6378         * tests/test-sys_socket-c++.cc: Likewise.
6379         * tests/test-sys_stat-c++.cc: Likewise.
6380         * tests/test-sys_time-c++.cc: Likewise.
6381         * tests/test-time-c++.cc: Likewise.
6382         * tests/test-unistd-c++.cc: Likewise.
6383         * tests/test-wchar-c++.cc: Likewise.
6384         * tests/uninorm/test-u8-nfc.c: Likewise.
6385         * tests/uninorm/test-u8-nfd.c: Likewise.
6386         * tests/uninorm/test-u8-nfkc.c: Likewise.
6387         * tests/uninorm/test-u8-nfkd.c: Likewise.
6388         * tests/uninorm/test-u16-nfc.c: Likewise.
6389         * tests/uninorm/test-u16-nfd.c: Likewise.
6390         * tests/uninorm/test-u16-nfkc.c: Likewise.
6391         * tests/uninorm/test-u16-nfkd.c: Likewise.
6392         * tests/uninorm/test-u32-nfc.c: Likewise.
6393         * tests/uninorm/test-u32-nfc-big.c: Likewise.
6394         * tests/uninorm/test-u32-nfd.c: Likewise.
6395         * tests/uninorm/test-u32-nfd-big.c: Likewise.
6396         * tests/uninorm/test-u32-nfkc.c: Likewise.
6397         * tests/uninorm/test-u32-nfkc-big.c: Likewise.
6398         * tests/uninorm/test-u32-nfkd.c: Likewise.
6399         * tests/uninorm/test-u32-nfkd-big.c: Likewise.
6400         * tests/uninorm/test-u32-normalize-big.c: Likewise.
6401
6402 2010-03-27  Bruno Haible  <bruno@clisp.org>
6403
6404         Distinguish two kinds of module indicators.
6405         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_FOR_TESTS): Renamed from
6406         gl_MODULE_INDICATOR.
6407         (gl_MODULE_INDICATOR): New macro.
6408         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
6409         gl_MODULE_INDICATOR_FOR_TESTS instead of gl_MODULE_INDICATOR.
6410         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
6411         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
6412         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
6413         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
6414         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
6415         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
6416         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
6417         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
6418         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
6419         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
6420         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
6421         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
6422         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
6423         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
6424         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
6425         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
6426         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
6427         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
6428         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
6429         * modules/cloexec (configure.ac): Likewise.
6430         * modules/getopt-gnu (configure.ac): Likewise.
6431         * modules/uninorm/u8-normalize (configure.ac): Likewise.
6432         * modules/uninorm/u16-normalize (configure.ac): Likewise.
6433         * modules/uninorm/u32-normalize (configure.ac): Likewise.
6434         * modules/fdopendir (configure.ac): Invoke gl_MODULE_INDICATOR.
6435
6436 2010-03-27  Bruno Haible  <bruno@clisp.org>
6437
6438         New module description field 'Comment'.
6439         * gnulib-tool: New option --extract-comment.
6440         (func_usage): Document it.
6441         (sed_extract_prog, sed_extract_field_header): Support 'Comment' field.
6442         (func_get_comment): New function.
6443         * modules/TEMPLATE-EXTENDED: Add a blank Comment field.
6444
6445 2010-03-27  Bruno Haible  <bruno@clisp.org>
6446
6447         Addendum to 2010-02-07 commit.
6448         * gnulib-tool (func_usage): Document --extract-applicability option.
6449
6450 2010-03-27  Bruno Haible  <bruno@clisp.org>
6451
6452         Use GNULIB_POSIXCHECK instead of GNULIB_PORTCHECK.
6453         * lib/time.in.h (asctime, asctime_r, ctime, ctime_r): Test
6454         GNULIB_POSIXCHECK, not GNULIB_PORTCHECK. Provide compile-time warnings
6455         rather than link errors.
6456
6457 2010-03-27  Bruno Haible  <bruno@clisp.org>
6458
6459         Avoid side effects from tests-related modules on the compilation of lib.
6460         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_CONDITION): New macro.
6461         (gl_MODULE_INDICATOR_SET_VARIABLE): Use its expansion as a value.
6462         * gnulib-tool (func_emit_tests_Makefile_am): Accept a witness_macro
6463         parameter. Emit into AM_CPPFLAGS a definition of the designated C
6464         macro.
6465         (func_import): Define a witness macro. Assign it a value that depends
6466         on the current package. Override gl_MODULE_INDICATOR_CONDITION for the
6467         tests-related modules.
6468         (func_create_testdir): Update func_emit_tests_Makefile_am invocation.
6469         Reported by Jim Meyering.
6470
6471 2010-03-27  Bruno Haible  <bruno@clisp.org>
6472
6473         Factorize common .m4 code.
6474         * m4/gnulib-common.m4 (gl_MODULE_INDICATOR_SET_VARIABLE): New macro.
6475         * m4/arpa_inet_h.m4 (gl_ARPA_INET_MODULE_INDICATOR): Use it.
6476         * m4/ctype.m4 (gl_CTYPE_MODULE_INDICATOR): Likewise.
6477         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Likewise.
6478         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Likewise.
6479         * m4/iconv_h.m4 (gl_ICONV_MODULE_INDICATOR): Likewise.
6480         * m4/inttypes.m4 (gl_INTTYPES_MODULE_INDICATOR): Likewise.
6481         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Likewise.
6482         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Likewise.
6483         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Likewise.
6484         * m4/netdb_h.m4 (gl_NETDB_MODULE_INDICATOR): Likewise.
6485         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Likewise.
6486         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Likewise.
6487         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Likewise.
6488         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Likewise.
6489         * m4/stddef_h.m4 (gl_STDDEF_MODULE_INDICATOR): Likewise.
6490         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Likewise.
6491         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Likewise.
6492         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Likewise.
6493         * m4/strings_h.m4 (gl_STRINGS_MODULE_INDICATOR): Likewise.
6494         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_MODULE_INDICATOR): Likewise.
6495         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Likewise.
6496         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Likewise.
6497         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Likewise.
6498         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Likewise.
6499         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Likewise.
6500         * m4/sys_times_h.m4 (gl_SYS_TIMES_MODULE_INDICATOR): Likewise.
6501         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_MODULE_INDICATOR): Likewise.
6502         * m4/sys_wait_h.m4 (gl_SYS_WAIT_MODULE_INDICATOR): Likewise.
6503         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Likewise.
6504         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Likewise.
6505         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Likewise.
6506
6507 2010-03-27  Bruno Haible  <bruno@clisp.org>
6508
6509         Fix a compilation error on Cygwin with g++ >= 4.3.
6510         * lib/sys_stat.in.h (lchmod): Don't warn about the use of this function
6511         if it is undefined or if we alias it to chmod.
6512         (lstat): Don't warn about the use of this function if it is undefined
6513         or if we alias it to stat.
6514         Reported by Simon Josefsson.
6515
6516 2010-03-27  Bruno Haible  <bruno@clisp.org>
6517
6518         * m4/getlogin.m4 (gl_FUNC_GETLOGIN): Renamed from gl_GETLOGIN.
6519         * modules/getlogin (configure.ac): Update.
6520
6521         * m4/getlogin_r.m4 (gl_FUNC_GETLOGIN_R): Renamed from gl_GETLOGIN_R.
6522         * modules/getlogin_r (configure.ac): Update.
6523
6524         * m4/inet_ntop.m4 (gl_FUNC_INET_NTOP): Renamed from gl_INET_NTOP.
6525         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Update.
6526         * modules/inet_ntop (configure.ac): Update.
6527
6528         * m4/inet_pton.m4 (gl_FUNC_INET_PTON): Renamed from gl_INET_PTON.
6529         * modules/inet_pton (configure.ac): Update.
6530
6531         * m4/mbslen.m4 (gl_FUNC_MBSLEN): Renamed from gl_MBSLEN.
6532         * modules/mbslen (configure.ac): Update.
6533
6534         * m4/pty.m4 (gl_FUNC_FORKPTY): Renamed from gl_FORKPTY.
6535         (gl_FUNC_OPENPTY): Renamed from gl_OPENPTY.
6536         * modules/forkpty (configure.ac): Update.
6537         * modules/openpty (configure.ac): Update.
6538
6539 2010-03-26  Simon Josefsson  <simon@josefsson.org>
6540
6541         * top/maint.mk (sc_texinfo_acronym): Don't infloop if there is
6542         no *.texi files.  Reported by Eric Blake <eblake@redhat.com>.
6543
6544 2010-03-25  Eric Blake  <eblake@redhat.com>
6545
6546         maint: use pragma consistently across replacement headers
6547         * lib/ctype.in.h (system_header): Hoist for consistent placement.
6548         * lib/dirent.in.h (system_header): Likewise.
6549         * lib/errno.in.h (system_header): Likewise.
6550         * lib/float.in.h (system_header): Likewise.
6551         * lib/getopt.in.h (system_header): Likewise.
6552         * lib/iconv.in.h (system_header): Likewise.
6553         * lib/inttypes.in.h (system_header): Likewise.
6554         * lib/langinfo.in.h (system_header): Likewise.
6555         * lib/locale.in.h (system_header): Likewise.
6556         * lib/math.in.h (system_header): Likewise.
6557         * lib/netdb.in.h (system_header): Likewise.
6558         * lib/netinet_in.in.h (system_header): Likewise.
6559         * lib/pty.in.h (system_header): Likewise.
6560         * lib/sched.in.h (system_header): Likewise.
6561         * lib/se-selinux.in.h (system_header): Likewise.
6562         * lib/search.in.h (system_header): Likewise.
6563         * lib/spawn.in.h (system_header): Likewise.
6564         * lib/stdarg.in.h (system_header): Likewise.
6565         * lib/stdint.in.h (system_header): Likewise.
6566         * lib/string.in.h (system_header): Likewise.
6567         * lib/strings.in.h (system_header): Likewise.
6568         * lib/sys_file.in.h (system_header): Likewise.
6569         * lib/sys_ioctl.in.h (system_header): Likewise.
6570         * lib/sys_socket.in.h (system_header): Likewise.
6571         * lib/sys_times.in.h (system_header): Likewise.
6572         * lib/sys_utsname.in.h (system_header): Likewise.
6573         * lib/sys_wait.in.h (system_header): Likewise.
6574         * lib/sysexits.in.h (system_header): Likewise.
6575         * lib/unistd.in.h (system_header): Likewise.
6576         * lib/wctype.in.h (system_header): Likewise.
6577
6578         arpa/inet: fix mingw compilation warning
6579         * lib/arpa_inet.in.h (system_header): Hoist to be unconditional.
6580         Reported by Matthew Bolte.
6581
6582 2010-03-25  Bruno Haible  <bruno@clisp.org>
6583
6584         Avoid collision between gnulib wrapper and libintl wrapper.
6585         * lib/printf.c (printf): Don't define if a printf wrapper is already
6586         defined in intl/printf.c.
6587         Reported by Michel Boaventura <michel@michelboaventura.com>.
6588
6589 2010-03-25  Bruno Haible  <bruno@clisp.org>
6590
6591         Use ANSI C.
6592         * lib/readutmp.h (getutent): Provide ANSI C prototype.
6593
6594 2010-03-25  Bruno Haible  <bruno@clisp.org>
6595
6596         Minor formatting changes.
6597         * lib/acosl.c: Insert space before function argument list.
6598         * lib/argz.c: Likewise.
6599         * lib/asinl.c: Likewise.
6600         * lib/expl.c: Likewise.
6601         * lib/gen-uni-tables.c: Likewise.
6602         * lib/gettext.h: Likewise.
6603         * lib/glthread/lock.h: Likewise.
6604         * lib/tanl.c: Likewise.
6605         * lib/uniname/uniname.c: Likewise.
6606         * tests/test-idpriv-drop.c: Likewise.
6607         * tests/test-idpriv-droptemp.c: Likewise.
6608         * tests/test-lock.c: Likewise.
6609         * tests/test-tls.c: Likewise.
6610         * lib/argp-help.c: Insert space before function-like macro argument
6611         list.
6612         * lib/memcmp.c: Likewise.
6613         * tests/test-base64.c: Likewise.
6614         * lib/localename.c: Insert space before sizeof's argument list.
6615         * lib/safe-alloc.h: Likewise.
6616         * lib/file-set.h: Insert space before macro argument list.
6617         * tests/test-argp.c: Likewise.
6618         * lib/argp-namefrob.h: Insert space before function parameter list.
6619         * lib/getaddrinfo.c: Likewise.
6620         * lib/netdb.in.h: Likewise.
6621         * lib/parse-duration.h: Likewise.
6622         * lib/parse-duration.c: Likewise.
6623         * lib/poll.c: Likewise.
6624         * lib/select.c: Likewise.
6625         * lib/trim.h: Likewise.
6626         * tests/test-usleep.c: Likewise.
6627         * lib/ldexpl.c: Insert space before function parameter list and before
6628         function argument list.
6629         * lib/logl.c: Likewise.
6630         * lib/sqrtl.c: Likewise.
6631         * lib/trim.c: Likewise.
6632         * lib/cosl.c: Use GNU style indentation. Insert space before function
6633         argument list.
6634         * lib/sinl.c: Likewise.
6635         * lib/tsearch.c: Insert space after 'for'.
6636         Reported by Jim Meyering.
6637
6638 2010-03-23  Pádraig Brady  <P@draigBrady.com>  (tiny change)
6639
6640         * maint.mk (sc_Wundef_boolean): Check for the presence of the
6641         config header before grepping, as it's not present before
6642         autoreconf/configure are run.  Reported by Simon Josefsson.
6643
6644 2010-03-23  Bruno Haible  <bruno@clisp.org>
6645
6646         pt_chown: Make it work with automake < 1.11.
6647         * modules/pt_chown (Makefile.am): Define pkglibexecdir.
6648         Reported by Simon Josefsson.
6649
6650 2010-03-23  Bruno Haible  <bruno@clisp.org>
6651
6652         pt_chown: Don't depend on GPLed modules.
6653         * lib/pt_chown.c: Don't include idpriv.h.
6654         (main): Don't drop privileges.
6655         * modules/pt_chown (Depends-on): Remove idpriv-drop.
6656         Reported by Simon Josefsson.
6657
6658 2010-03-24  Simon Josefsson  <simon@josefsson.org>
6659
6660         * top/maint.mk (sc_texinfo_acronym): Add rule, based on
6661         suggestions from karl@freefriends.org (Karl Berry).
6662
6663 2010-03-22  Eric Blake  <eblake@redhat.com>
6664
6665         gethostname: further tweaks
6666         * lib/unistd.in.h (includes): Only worry about <winsock2.h> if we
6667         are overriding gethostname.
6668         Suggested by Bruno Haible.
6669
6670 2010-03-21  Bruno Haible  <bruno@clisp.org>
6671
6672         Fix comments.
6673         * lib/forkpty.c (rpl_forkpty): Fix comment.
6674         * lib/openpty.c (rpl_openpty): Likewise.
6675         Reported by Eric Blake.
6676
6677 2010-03-22  Eric Blake  <eblake@redhat.com>
6678
6679         gethostname: fix build on mingw
6680         * lib/unistd.in.h (includes): Work around fact that mingw
6681         <winsock2.h> re-includes <unistd.h>, by avoiding any
6682         redeclarations if we are being included by <winsock2.h>.
6683         Reported by Matthias Bolte.
6684
6685 2010-03-21  Bruno Haible  <bruno@clisp.org>
6686
6687         forkpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
6688         * lib/forkpty.c (forkpty): New replacement function, from glibc with
6689         modifications.
6690         * lib/pty.in.h (forkpty): Update declaration. Add comments.
6691         * m4/pty.m4 (gl_FORKPTY): If forkpty is not declared, arrange to
6692         provide the replacement.
6693         * modules/forkpty (Depends-on): Add openpty, login_tty.
6694         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_FORKPTY.
6695         * modules/pty (Makefile.am): Substitute HAVE_FORKPTY.
6696         * doc/glibc-functions/forkpty.texi: More supported platforms.
6697         * config/srclist.txt: Add forkpty.c (commented).
6698
6699 2010-03-21  Bruno Haible  <bruno@clisp.org>
6700
6701         * modules/forkpty-tests: Use the common TEMPLATE-TESTS.
6702         (Makefile.am): Verify that PTY_LIB is defined.
6703
6704         * modules/openpty-tests: Use the common TEMPLATE-TESTS.
6705
6706 2010-03-21  Bruno Haible  <bruno@clisp.org>
6707
6708         Tests for module 'login_tty'.
6709         * modules/login_tty-tests: New file.
6710         * tests/test-login_tty.c: New file.
6711
6712         New module 'login_tty'.
6713         * lib/login_tty.c: New file.
6714         * m4/pty.m4 (gl_FUNC_LOGIN_TTY): New macro.
6715         * modules/login_tty: New file.
6716         * doc/glibc-functions/login_tty.texi: Mention the new module.
6717
6718 2010-03-21  Bruno Haible  <bruno@clisp.org>
6719
6720         login_tty: Documentation.
6721         * doc/glibc-functions/login_tty.texi: New file.
6722         * doc/gnulib.texi (Glibc <utmp.h>): Include it.
6723
6724 2010-03-21  Bruno Haible  <bruno@clisp.org>
6725
6726         pty: Consistent macro naming.
6727         * m4/pty_h.m4 (gl_PTY_H): Renamed from gl_PTY.
6728         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): Update.
6729         * modules/pty (configure.ac): Update.
6730
6731 2010-03-21  Bruno Haible  <bruno@clisp.org>
6732
6733         Tests for openpty: Make stricter.
6734         * tests/test-openpty.c (main): Add test of canonical processing and
6735         erase.
6736         * modules/openpty-tests (Makefile.am): Verify that PTY_LIB is defined.
6737
6738         openpty: Provide replacement on AIX, HP-UX, IRIX, Solaris.
6739         * lib/openpty.c (openpty): New replacement function.
6740         * lib/pty.in.h: Include <termios.h>.
6741         (openpty): Update declaration. Add comments.
6742         * m4/pty.m4 (gl_OPENPTY): Require AC_USE_SYSTEM_EXTENSIONS. If openpty
6743         is not declared, arrange to provide the replacement. Check for _getpty
6744         and posix_openpt.
6745         * modules/openpty (Depends-on): Add extensions, fcntl-h, ioctl.
6746         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Initialize HAVE_OPENPTY.
6747         * modules/pty (Makefile.am): Substitute HAVE_OPENPTY.
6748         * modules/pty-tests (test_pty_c___LDADD): New variable.
6749         * doc/glibc-functions/openpty.texi: More supported platforms.
6750
6751 2010-03-21  Bruno Haible  <bruno@clisp.org>
6752
6753         setenv: Tweaks.
6754         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Include necessary headers in
6755         the test program.
6756         * doc/posix-functions/setenv.texi: Update platforms list.
6757
6758 2010-03-21  Bruno Haible  <bruno@clisp.org>
6759
6760         New module 'unlockpt'.
6761         * lib/unlockpt.c: New file, from glibc with modifications.
6762         * m4/unlockpt.m4: New file.
6763         * modules/unlockpt: New file.
6764         * lib/stdlib.in.h (unlockpt): New declaration.
6765         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether unlockpt is declared.
6766         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_UNLOCKPT, HAVE_UNLOCKPT.
6767         * modules/stdlib (Makefile.am): Substitute GNULIB_UNLOCKPT,
6768         HAVE_UNLOCKPT.
6769         * doc/posix-functions/unlockpt.texi: Mention the new module.
6770         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::unlockpt.
6771         * config/srclist.txt: Add unlockpt.c (commented).
6772
6773 2010-03-21  Jim Meyering  <meyering@redhat.com>
6774
6775         maint.mk: prohibit inclusion of "intprops.h" without use
6776         * top/maint.mk (sc_prohibit_intprops_without_use): New rule.
6777
6778 2010-03-21  Bruno Haible  <bruno@clisp.org>
6779
6780         New module 'grantpt'.
6781         * lib/grantpt.c: New file, from glibc with modifications.
6782         * m4/grantpt.m4: New file.
6783         * modules/grantpt: New file.
6784         * lib/stdlib.in.h (grantpt): New declaration.
6785         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether grantpt is declared.
6786         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GRANTPT, HAVE_GRANTPT.
6787         * modules/stdlib (Makefile.am): Substitute GNULIB_GRANTPT,
6788         HAVE_GRANTPT.
6789         * doc/posix-functions/grantpt.texi: Mention the new module.
6790         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::grantpt.
6791         * config/srclist.txt: Add grantpt.c (commented).
6792
6793 2010-03-21  Bruno Haible  <bruno@clisp.org>
6794
6795         New module 'pt_chown'.
6796         * lib/pt_chown.c: New file, from glibc with modifications.
6797         * lib/pty-private.h: New file, from glibc with modifications.
6798         * modules/pt_chown: New file.
6799         * config/srclist.txt: Add pt_chown.c, pty-private.h (commented).
6800
6801 2010-03-21  Bruno Haible  <bruno@clisp.org>
6802
6803         Tests for module 'ptsname'.
6804         * modules/ptsname-tests: New file.
6805         * tests/test-ptsname.c: New file.
6806
6807         New module 'ptsname'.
6808         * lib/ptsname.c: New file, from glibc with modifications.
6809         * m4/ptsname.m4: New file.
6810         * modules/ptsname: New file.
6811         * lib/stdlib.in.h (ptsname): New declaration.
6812         * m4/stdlib_h.m4 (gl_STDLIB_H): Check whether ptsname is declared.
6813         (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PTSNAME, HAVE_PTSNAME.
6814         * modules/stdlib (Makefile.am): Substitute GNULIB_PTSNAME,
6815         HAVE_PTSNAME.
6816         * doc/posix-functions/ptsname.texi: Mention the new module.
6817         * tests/test-stdlib-c++.cc: Check GNULIB_NAMESPACE::ptsname.
6818         * config/srclist.txt: Add ptsname.c (commented).
6819
6820 2010-03-21  Bruno Haible  <bruno@clisp.org>
6821
6822         Tests for module 'ttyname_r'.
6823         * modules/ttyname_r-tests: New file.
6824         * tests/test-ttyname_r.c: New file.
6825
6826         New module 'ttyname_r'.
6827         * lib/ttyname_r.c: New file.
6828         * m4/ttyname_r.m4: New file.
6829         * modules/ttyname_r: New file.
6830         * lib/unistd.in.h (ttyname_r): New declaration.
6831         * m4/unistd_h.m4 (gl_UNISTD_H): Check whether ttyname_r is declared.
6832         (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_TTYNAME_R, HAVE_TTYNAME_R.
6833         * modules/unistd (Makefile.am): Substitute GNULIB_TTYNAME_R,
6834         HAVE_TTYNAME_R.
6835         * tests/test-unistd-c++.cc: Check GNULIB_NAMESPACE::ttyname_r.
6836         * doc/posix-functions/ttyname_r.texi: Mention the new module.
6837
6838 2010-03-20  Bruno Haible  <bruno@clisp.org>
6839
6840         signal: Undefine macro definitions in C++ mode.
6841         * lib/signal.in.h (sigismember, sigemptyset, sigaddset, sigdelset,
6842         sigfillset): Undefine macro definitions from the system header in C++
6843         mode.
6844         Reported by John W. Eaton <jwe@gnu.org>.
6845
6846 2010-03-20  Bruno Haible  <bruno@clisp.org>
6847
6848         Ensure no #include statements inside extern "C" { ... }.
6849         * lib/obstack.h: Shrink extern "C" { ... } region so that it does not
6850         contain #include statements.
6851         * lib/time.in.h: Likewise.
6852
6853 2010-03-20  Bruno Haible  <bruno@clisp.org>
6854
6855         Make _GL_WARN_ON_USE usable in C++ and C mode in the same compilation.
6856         * build-aux/warn-on-use.h (_GL_WARN_EXTERN_C): New macro.
6857         (_GL_WARN_ON_USE, _GL_WARN_ON_USE_CXX): Likewise.
6858         Reported by John W. Eaton <jwe@gnu.org>.
6859
6860 2010-03-20  Bruno Haible  <bruno@clisp.org>
6861
6862         * m4/unlink.m4 (gl_FUNC_UNLINK): Fix last commit.
6863         Reported by Jim Meyering.
6864
6865 2010-03-20  Bruno Haible  <bruno@clisp.org>
6866
6867         pipe: Set errno upon failure.
6868         * lib/pipe.h: Specify that when -1 is returned, errno is set.
6869         * lib/pipe.c (create_pipe): Set errno when returning -1. Use the right
6870         errno value in error message.
6871
6872 2010-03-20  Bruno Haible  <bruno@clisp.org>
6873             Jim Meyering  <meyering@redhat.com>
6874
6875         lchown: Avoid "unused variable" warning.
6876         * lib/lchown.c (rpl_lchown): Move variable 'st' into #if block.
6877
6878 2010-03-20  Bruno Haible  <bruno@clisp.org>
6879
6880         Work around unlink() bug on MacOS X 10.5.6.
6881         * lib/unlink.c (rpl_unlink): If UNLINK_PARENT_BUG is defined, fail when
6882         attempting to unlink a parent directory.
6883         * m4/unlink.m4 (gl_FUNC_UNLINK): Require AC_CANONICAL_HOST. Test for
6884         MacOS X 10.5 bug. If the bug is present, define UNLINK_PARENT_BUG and
6885         activate for the replacement function.
6886         * doc/posix-functions/unlink.texi: Mention the MacOS X 10.5 bug.
6887
6888 2010-03-20  Bruno Haible  <bruno@clisp.org>
6889
6890         Fix link errors on Solaris 8.
6891         * modules/dirent-tests (test_dirent_c___LDADD): Add LIB_NANOSLEEP.
6892         * modules/wctype-tests (test_wctype_c___LDADD): Likewise.
6893
6894 2010-03-19  Jim Meyering  <meyering@redhat.com>
6895
6896         regcomp.c: make non-_LIBC implementation of build_range_exp consistent
6897         The _LIBC implementation of build_range_exp correctly honors the
6898         RE_NO_EMPTY_RANGES flag when checking for reversed range endpoints.
6899         However, the non-_LIBC implementation would ignore that syntax-bit
6900         flag and return REG_ERANGE unconditionally.
6901         This change makes it honor that flag.
6902         * lib/regcomp.c (build_range_exp) [!_LIBC]: Add a parameter: "syntax".
6903         Make two pointer parameters "const".
6904         Use "syntax" bits in order to honor RE_NO_EMPTY_RANGES.
6905         (parse_bracket_exp): Update caller.
6906
6907         regex.m4: correct the reversed range endpoint ([b-a]) test
6908         * m4/regex.m4: When requiring that [b-a] evoke failure,
6909         use RE_NO_EMPTY_RANGES.  This makes this entire configure-time
6910         test pass once again for x86-based systems.
6911
6912 2010-03-19  Bruno Haible  <bruno@clisp.org>
6913
6914         scandir: Fix link error on Solaris 8.
6915         * lib/scandir.c (_D_EXACT_NAMLEN, _D_ALLOC_NAMLEN): New fallback
6916         macros.
6917
6918 2010-03-19  Bruno Haible  <bruno@clisp.org>
6919
6920         getusershell: Fix documentation.
6921         * doc/glibc-functions/endusershell.texi: Refer to the getusershell
6922         module.
6923         * doc/glibc-functions/setusershell.texi: Likewise.
6924
6925         getusershell: Provide declaration, missing on Solaris 9.
6926         * lib/unistd.in.h (getusershell, setusershell, endusershell): Declare
6927         also if HAVE_GETUSERSHELL && !HAVE_DECL_GETUSERSHELL.
6928         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): When the function exists,
6929         check whether it is declared. Set HAVE_DECL_GETUSERSHELL.
6930         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
6931         HAVE_DECL_GETUSERSHELL, not HAVE_GETUSERSHELL.
6932         * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETUSERSHELL, not
6933         HAVE_GETUSERSHELL.
6934         * doc/glibc-functions/getusershell.texi: Mention the Solaris problem.
6935
6936 2010-03-19  Bruno Haible  <bruno@clisp.org>
6937
6938         wctype: Provide iswblank function.
6939         * lib/wctype.in.h (iswblank): Provide a replacement also when iswcntrl
6940         exists and is fine.
6941         * m4/wctype_h.m4 (gl_WCTYPE_H): Also check whether iswcntrl exists.
6942         * modules/wctype (Makefile.am): Substitute HAVE_ISWBLANK.
6943         * tests/test-wctype.c (main): Re-enable the iswblank tests.
6944         * doc/posix-functions/iswblank.texi: Update.
6945
6946 2010-03-19  Bruno Haible  <bruno@clisp.org>
6947
6948         Tests of module 'pty' in C++ mode.
6949         * modules/pty-tests: New file.
6950         * tests/test-pty-c++.cc: New file.
6951         * m4/pty_h.m4 (gl_PTY_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
6952
6953 2010-03-19  Eric Blake  <eblake@redhat.com>
6954
6955         logb: fix documentation
6956         * doc/posix-functions/logb.texi (logb): Gnulib fixes the cygwin
6957         1.5 declaration bug.
6958
6959         forkpty, openpty: prefer glibc's const-safe prototype
6960         * lib/forkpty.c (rpl_forkpty): New file.
6961         * lib/openpty.c (rpl_openpty): Likewise.
6962         * modules/forkpty (Files): Distribute it.
6963         * modules/openpty (Files): Likewise.
6964         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.  Move decl
6965         check...
6966         * m4/pty.m4 (gl_FORKPTY, gl_OPENPTY): ...here.  Request
6967         replacement for for non-const BSD signature.
6968         * modules/pty (Makefile.am): Substitute witnesses.
6969         * lib/pty.in.h (forkpty, openpty): Declare replacements.
6970         * tests/test-forkpty.c: Update signature check.
6971         * tests/test-openpty.c: Likewise.
6972         * doc/glibc-functions/forkpty.texi (forkpty): Document the fix.
6973         * doc/glibc-functions/openpty.texi (openpty): Likewise.
6974
6975         forkpty, openpty: split functions into new modules
6976         * modules/pty (Makefile.am): Substitute new witnesses.
6977         (Libraries): Move library detection...
6978         * modules/forkpty: ...into new module.
6979         * modules/openpty: Another new module.
6980         * modules/pty-tests: Rename and split...
6981         * modules/forkpty-tests: ...to this...
6982         * modules/openpty-tests: ...and this.
6983         * tests/test-pty.c: Rename and split...
6984         * tests/test-forkpty.c: ...to this...
6985         * tests/test-openpty.c: ...and this.
6986         * m4/pty_h.m4 (gl_PTY_H_DEFAULTS): Add new witnesses.
6987         (gl_PTY): Split library searching...
6988         * m4/pty.m4 (gl_PTY_LIB): ...into new file.
6989         (gl_FORKPTY, gl_OPENPTY): New macros.
6990         * lib/pty.in.h (forkpty, openpty): Honor new witnesses.
6991         * NEWS: Mention the split.
6992         * MODULES.html.sh (Misc): Document the modules.
6993         * doc/glibc-functions/forkpty.texi (forkpty): Likewise.
6994         * doc/glibc-functions/openpty.texi (openpty): Likewise.
6995
6996         pty: improve replacement header
6997         * lib/pty.in.h: New file.
6998         * modules/pty (Files): Ship it.
6999         (Makefile.am): Always build replacement.
7000         * m4/pty.m4: Rename...
7001         * m4/pty_h.m4: ...to this.
7002         (gl_PTY): Modernize setting of witness macros; update check of
7003         forkpty to take proper advantage of cache.
7004         (gl_PTY_MODULE_INDICATOR, gl_PTY_H_DEFAULTS): New macros.
7005
7006         getopt: avoid compiler warning
7007         * lib/getopt.c (attribute_hidden): Remove unused macro.
7008
7009 2010-03-18  Bruno Haible  <bruno@clisp.org>
7010
7011         Fix link errors on Solaris 8.
7012         * modules/iconv-h-tests (test_iconv_h_c___LDADD): Add LIB_NANOSLEEP.
7013         * modules/search-tests (test_search_c___LDADD): Likewise.
7014         * modules/signal-tests (test_signal_c___LDADD): Likewise.
7015         * modules/spawn-tests (test_spawn_c___LDADD): Likewise.
7016         * modules/stdio-tests (test_stdio_c___LDADD): Likewise.
7017         * modules/sys_select-tests (test_sys_select_c___LDADD): Likewise.
7018         * modules/sys_socket-tests (test_sys_socket_c___LDADD): Likewise.
7019         * modules/sys_time-tests (test_sys_time_c___LDADD): Likewise.
7020         * modules/wchar-tests (test_wchar_c___LDADD): Likewise.
7021
7022 2010-03-18  Bruno Haible  <bruno@clisp.org>
7023
7024         Fix bug introduced on 2010-03-14.
7025         * m4/spawn_h.m4 (gl_HAVE_POSIX_SPAWN): New macro.
7026         (gl_SPAWN_H): Require it.
7027         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Likewise.
7028         Reported by Simon Josefsson.
7029
7030 2010-03-18  Bruno Haible  <bruno@clisp.org>
7031
7032         Fix typo introduced on 2009-12-31.
7033         * m4/spawn_h.m4 (gl_SPAWN_H): Check for the declaration of
7034         posix_spawn_file_actions_adddup2.
7035
7036 2010-03-17  Bert Wesarg  <bert.wesarg@googlemail.com>  (tiny change)
7037         and Eric Blake  <eblake@redhat.com>
7038
7039         test-vc-list-files-git: make more robust
7040         * tests/test-vc-list-files-git.sh: Unset problematic environment
7041         variables.  Chain commands together.
7042
7043 2010-03-17  Ludovic Courtès <ludo@gnu.org>  (tiny change)
7044
7045         * m4/pty.m4: Unset $ac_cv_have_decl_forkpty before the second
7046         `AC_CHECK_DECL' invocation.
7047
7048 2010-03-15  Sergey Poznyakoff  <gray@gnu.org.ua>
7049
7050         * lib/inttostr.c (inttostr): Make sure the invocation of verify
7051         appears before executable statements. Suggested by Petr Sumbera
7052         <Petr.Sumbera@Sun.COM>.
7053
7054 2010-03-14  Bruno Haible  <bruno@clisp.org>
7055
7056         * tests/test-flock.c (test_exclusive): Comment out a test that causes
7057         portability problems. Instead use a simpler test.
7058         (main): Check that invalid arguments are rejected only on Linux.
7059
7060 2010-03-14  Bruno Haible  <bruno@clisp.org>
7061
7062         Fix bug introduced on 2009-12-31.
7063         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
7064         gl_PREREQ_SYS_H_WINSOCK2 always.
7065         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise. Remove
7066         SYS_SOCKET_H variable.
7067         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Remove test for flock.
7068         Update comments.
7069         * m4/ctype.m4 (gl_CTYPE_H): Update comments.
7070         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
7071         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
7072         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
7073         * m4/sys_wait_h.m4 (gl_SYS_WAIT_H): Likewise.
7074
7075 2010-03-14  Bruno Haible  <bruno@clisp.org>
7076
7077         Fix values returned by sinl, cosl.
7078         * lib/trigl.h: Add specification comments.
7079         * lib/sincosl.c (kernel_sinl, kernel_cosl): Fix comments and formula
7080         that combines the values from the precomputed table with the values of
7081         the Chebyshev polynomials.
7082
7083 2010-03-14  Bruno Haible  <bruno@clisp.org>
7084
7085         Fix compilation error when modules 'posix_spawn[p]' are not used.
7086         * m4/spawn_h.m4 (gl_SPAWN_H): Set HAVE_POSIX_SPAWN here.
7087         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): ... not here.
7088
7089 2010-03-14  Bruno Haible  <bruno@clisp.org>
7090
7091         Fix compilation error on mingw when module 'time_r' is not used.
7092         * lib/time.in.h (localtime_r, gmtime_r): Declare only if GNULIB_TIME_R
7093         is 1.
7094         * tests/test-time-c++.cc (localtime_r, gmtime_r): Likewise.
7095         * modules/time_r (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
7096         * modules/time (Makefile.am): Substitute GNULIB_TIME_R.
7097         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize GNULIB_TIME_R.
7098
7099 2010-03-14  Bruno Haible  <bruno@clisp.org>
7100
7101         Fix compilation error with Sun C.
7102         * lib/strtol.c: Use LLONG_MIN instead of GCC specific LONG_LONG_MIN.
7103         Use LLONG_MAX instead of GCC specific LONG_LONG_MAX. Use ULLONG_MAX
7104         instead of GCC specific ULONG_LONG_MAX.
7105         * lib/xstrtoll.c: Likewise.
7106         * lib/xstrtoull.c: Likewise.
7107
7108 2010-03-13  Bruno Haible  <bruno@clisp.org>
7109
7110         Allow the user to disable C++ code and tests.
7111         * m4/ansi-c++.m4 (gl_CXX_CHOICE): New macro.
7112         (gl_PROG_ANSI_CXX): Require it.
7113
7114 2010-03-13  Bruno Haible  <bruno@clisp.org>
7115
7116         * DEPENDENCIES (libtool): Mention libtool 2.2.x requirement in special
7117         cases.
7118
7119 2010-03-13  Bruno Haible  <bruno@clisp.org>
7120
7121         Test that gnulib does not break the standard C++ headers.
7122         * tests/test-locale-c++2.cc: New file.
7123         * modules/locale-tests (Files): Add it.
7124         (Makefile.am): Compile it for test-locale-c++.
7125         * tests/test-math-c++2.cc: New file.
7126         * modules/math-tests (Files): Add it.
7127         (Makefile.am): Compile it for test-math-c++.
7128         * tests/test-signal-c++2.cc: New file.
7129         * modules/signal-tests (Files): Add it.
7130         (Makefile.am): Compile it for test-signal-c++.
7131         * tests/test-stdio-c++2.cc: New file.
7132         * modules/stdio-tests (Files): Add it.
7133         (Makefile.am): Compile it for test-stdio-c++.
7134         * tests/test-stdlib-c++2.cc: New file.
7135         * modules/stdlib-tests (Files): Add it.
7136         (Makefile.am): Compile it for test-stdlib-c++.
7137         * tests/test-string-c++2.cc: New file.
7138         * modules/string-tests (Files): Add it.
7139         (Makefile.am): Compile it for test-string-c++.
7140         * tests/test-time-c++2.cc: New file.
7141         * modules/time-tests (Files): Add it.
7142         (Makefile.am): Compile it for test-time-c++.
7143         Reported by John W. Eaton <jwe@gnu.org>.
7144
7145 2010-03-13  Bruno Haible  <bruno@clisp.org>
7146
7147         * gnulib-tool (func_usage): Clarify which options are available for
7148         --create-testdir and --create-megatestdir.
7149
7150 2010-03-13  Bruno Haible  <bruno@clisp.org>
7151
7152         Fix compilation error with glibc >= 2.10 and g++ >= 4.4.
7153         * build-aux/warn-on-use.h (_GL_WARN_ON_USE_CXX): New macro.
7154         * build-aux/c++defs.h (_GL_CXXALIASWARN1): New macro.
7155         * lib/string.in.h (memchr, memrchr, rawmemchr, strchrnul, strpbrk,
7156         strstr, strcasestr): Use _GL_CXXALIASWARN1 instead of _GL_CXXALIASWARN
7157         when appropriate.
7158         Reported by Jim Meyering.
7159
7160 2010-03-12  Simon Josefsson  <simon@josefsson.org>
7161
7162         * gnulib-tool (func_import): Explain origin of code.
7163
7164 2010-03-12  Bruno Haible  <bruno@clisp.org>
7165
7166         Fix problem with automake's definition of CXXLINK.
7167         * gnulib-tool (func_create_testdir): After LT_INIT, also use LT_LANG.
7168         Reported by Simon Josefsson and Ludovic Courtès.
7169
7170 2010-03-12  Bruno Haible  <bruno@clisp.org>
7171
7172         * doc/gnulib-intro.texi (Steady Development): Mention Ian Beckwith's
7173         stable releases.
7174
7175 2010-03-11  Bruno Haible  <bruno@clisp.org>
7176
7177         Fix problems with overloaded C++ definitions of memchr, strpbrk, etc.
7178         * build-aux/c++defs.h (_GL_CXXALIAS_SYS_CAST2): Make it work regardless
7179         whether the system provides one variant or multiple variants of the
7180         function.
7181         * lib/string.in.h (memchr, strpbrk): Use _GL_CXXALIAS_SYS_CAST2 for all
7182         C++ compilers.
7183         (memrchr, rawmemchr, strchrnul, strstr, strcasestr): Use
7184         _GL_CXXALIAS_SYS_CAST2 instead of _GL_CXXALIAS_SYS.
7185         Reported by Jim Meyering.
7186
7187 2010-03-09  Simon Josefsson  <simon@josefsson.org>
7188
7189         * gnulib-tool (LIBTOOLPATH): Fix cut'n'paste bug.
7190
7191 2010-03-08  Bruno Haible  <bruno@clisp.org>
7192
7193         gnulib-tool: Add support for --libtool in --create-testdir.
7194         * gnulib-tool (LIBTOOLPATH, LIBTOOLIZE): New variables.
7195         (func_create_testdir): Emit LT_INIT invocations. Invoke LIBTOOLIZE.
7196
7197 2010-03-08  Eric Blake  <eblake@redhat.com>
7198
7199         gnulib-tool.texi: mention possibility of git submodule
7200         * doc/gnulib-tool.texi (VCS Issues): Add details about using git
7201         submodules.
7202         * doc/.gitignore: Ignore another generated file.
7203
7204 2010-03-08  Karl Berry  <karl@gnu.org>
7205
7206         * doc/gnulib-tool.texi (VCS Issues): Mention third option
7207         of committing gnulib files while skipping others.
7208
7209 2010-03-07  Bruno Haible  <bruno@clisp.org>
7210
7211         Tests of module 'wctype' in C++ mode.
7212         * tests/test-wctype-c++.cc: New file.
7213         * modules/wctype-tests (Files): Add it and tests/signature.h.
7214         (Depends-on): Add ansi-c++-opt.
7215         (Makefile.am): Arrange to compile and run test-wctype-c++.
7216
7217         Tests of module 'wchar' in C++ mode.
7218         * tests/test-wchar-c++.cc: New file.
7219         * modules/wchar-tests (Files): Add it and tests/signature.h.
7220         (Depends-on): Add ansi-c++-opt.
7221         (Makefile.am): Arrange to compile and run test-wchar-c++.
7222         * m4/wchar_h.m4 (gl_WCHAR_MODULE_INDICATOR): Invoke
7223         gl_MODULE_INDICATOR.
7224
7225         Tests of module 'unistd' in C++ mode.
7226         * tests/test-unistd-c++.cc: New file.
7227         * modules/unistd-tests (Files): Add it and tests/signature.h.
7228         (Depends-on): Add ansi-c++-opt.
7229         (Makefile.am): Arrange to compile and run test-unistd-c++.
7230         * m4/unistd_h.m4 (gl_UNISTD_MODULE_INDICATOR): Invoke
7231         gl_MODULE_INDICATOR.
7232
7233         Tests of module 'time' in C++ mode.
7234         * tests/test-time-c++.cc: New file.
7235         * modules/time-tests (Files): Add it and tests/signature.h.
7236         (Depends-on): Add ansi-c++-opt.
7237         (Makefile.am): Arrange to compile and run test-time-c++.
7238         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
7239
7240         Tests of module 'sys_time' in C++ mode.
7241         * tests/test-sys_time-c++.cc: New file.
7242         * modules/sys_time-tests (Files): Add it and tests/signature.h.
7243         (Depends-on): Add ansi-c++-opt.
7244         (Makefile.am): Arrange to compile and run test-sys_time-c++.
7245         * m4/sys_time_h.m4 (gl_SYS_TIME_MODULE_INDICATOR): Invoke
7246         gl_MODULE_INDICATOR.
7247
7248         Tests of module 'sys_stat' in C++ mode.
7249         * tests/test-sys_stat-c++.cc: New file.
7250         * modules/sys_stat-tests (Files): Add it and tests/signature.h.
7251         (Depends-on): Add ansi-c++-opt.
7252         (Makefile.am): Arrange to compile and run test-sys_stat-c++.
7253         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): Invoke
7254         gl_MODULE_INDICATOR.
7255
7256         Tests of module 'sys_socket' in C++ mode.
7257         * tests/test-sys_socket-c++.cc: New file.
7258         * modules/sys_socket-tests (Files): Add it and tests/signature.h.
7259         (Depends-on): Add ansi-c++-opt.
7260         (Makefile.am): Arrange to compile and run test-sys_socket-c++.
7261         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Invoke
7262         gl_MODULE_INDICATOR.
7263
7264         Tests of module 'sys_select' in C++ mode.
7265         * tests/test-sys_select-c++.cc: New file.
7266         * modules/sys_select-tests (Files): Add it and tests/signature.h.
7267         (Depends-on): Add ansi-c++-opt.
7268         (Makefile.am): Arrange to compile and run test-sys_select-c++.
7269         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): Invoke
7270         gl_MODULE_INDICATOR.
7271
7272         Tests of module 'sys_ioctl' in C++ mode.
7273         * tests/test-sys_ioctl-c++.cc: New file.
7274         * modules/sys_ioctl-tests (Files): Add it and tests/signature.h.
7275         (Depends-on): Add ansi-c++-opt.
7276         (Makefile.am): Arrange to compile and run test-sys_ioctl-c++.
7277         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_MODULE_INDICATOR): Invoke
7278         gl_MODULE_INDICATOR.
7279
7280         Tests of module 'string' in C++ mode.
7281         * tests/test-string-c++.cc: New file.
7282         * modules/string-tests (Files): Add it and tests/signature.h.
7283         (Depends-on): Add ansi-c++-opt.
7284         (Makefile.am): Arrange to compile and run test-string-c++.
7285         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Invoke
7286         gl_MODULE_INDICATOR.
7287
7288         Tests of module 'stdlib' in C++ mode.
7289         * tests/test-stdlib-c++.cc: New file.
7290         * modules/stdlib-tests (Files): Add it and tests/signature.h.
7291         (Depends-on): Add ansi-c++-opt.
7292         (Makefile.am): Arrange to compile and run test-stdlib-c++.
7293         * m4/stdlib_h.m4 (gl_STDLIB_MODULE_INDICATOR): Invoke
7294         gl_MODULE_INDICATOR.
7295
7296         Tests of module 'stdio' in C++ mode.
7297         * tests/test-stdio-c++.cc: New file.
7298         * modules/stdio-tests (Files): Add it and tests/signature.h.
7299         (Depends-on): Add ansi-c++-opt.
7300         (Makefile.am): Arrange to compile and run test-stdio-c++.
7301         * m4/stdio_h.m4 (gl_STDIO_MODULE_INDICATOR): Invoke
7302         gl_MODULE_INDICATOR.
7303
7304         Tests of module 'spawn' in C++ mode.
7305         * tests/test-spawn-c++.cc: New file.
7306         * modules/spawn-tests (Files): Add it and tests/signature.h.
7307         (Depends-on): Add ansi-c++-opt.
7308         (Makefile.am): Arrange to compile and run test-spawn-c++.
7309         * m4/spawn_h.m4 (gl_SPAWN_MODULE_INDICATOR): Invoke
7310         gl_MODULE_INDICATOR.
7311
7312         Tests of module 'signal' in C++ mode.
7313         * tests/test-signal-c++.cc: New file.
7314         * modules/signal-tests (Files): Add it and tests/signature.h.
7315         (Depends-on): Add ansi-c++-opt.
7316         (Makefile.am): Arrange to compile and run test-signal-c++.
7317         * m4/signal_h.m4 (gl_SIGNAL_MODULE_INDICATOR): Invoke
7318         gl_MODULE_INDICATOR.
7319
7320         Tests of module 'search' in C++ mode.
7321         * tests/test-search-c++.cc: New file.
7322         * modules/search-tests (Files): Add it and tests/signature.h.
7323         (Depends-on): Add ansi-c++-opt.
7324         (Makefile.am): Arrange to compile and run test-search-c++.
7325         * m4/search_h.m4 (gl_SEARCH_MODULE_INDICATOR): Invoke
7326         gl_MODULE_INDICATOR.
7327
7328         Tests of module 'math' in C++ mode.
7329         * tests/test-math-c++.cc: New file.
7330         * modules/math-tests (Files): Add it and tests/signature.h.
7331         (Depends-on): Add ansi-c++-opt.
7332         (Makefile.am): Arrange to compile and run test-math-c++.
7333         * m4/math_h.m4 (gl_MATH_MODULE_INDICATOR): Invoke gl_MODULE_INDICATOR.
7334
7335         Tests of module 'locale' in C++ mode.
7336         * tests/test-locale-c++.cc: New file.
7337         * modules/locale-tests (Files): Add it and tests/signature.h.
7338         (Depends-on): Add ansi-c++-opt.
7339         (Makefile.am): Arrange to compile and run test-locale-c++.
7340         * m4/locale_h.m4 (gl_LOCALE_MODULE_INDICATOR): Invoke
7341         gl_MODULE_INDICATOR.
7342
7343         Tests of module 'langinfo' in C++ mode.
7344         * tests/test-langinfo-c++.cc: New file.
7345         * modules/langinfo-tests (Files): Add it and tests/signature.h.
7346         (Depends-on): Add ansi-c++-opt.
7347         (Makefile.am): Arrange to compile and run test-langinfo-c++.
7348         * m4/langinfo_h.m4 (gl_LANGINFO_MODULE_INDICATOR): Invoke
7349         gl_MODULE_INDICATOR.
7350
7351         Tests of module 'iconv-h' in C++ mode.
7352         * tests/test-iconv-h-c++.cc: New file.
7353         * modules/iconv-h-tests (Files): Add it and tests/signature.h.
7354         (Depends-on): Add ansi-c++-opt.
7355         (Makefile.am): Arrange to compile and run test-iconv-h-c++.
7356
7357         Tests of module 'glob' in C++ mode.
7358         * tests/test-glob-c++.cc: New file.
7359         * modules/glob-tests (Files): Add it.
7360         (Depends-on): Add ansi-c++-opt.
7361         (Makefile.am): Arrange to compile and run test-glob-c++.
7362
7363         Tests of module 'fcntl-h' in C++ mode.
7364         * tests/test-fcntl-h-c++.cc: New file.
7365         * modules/fcntl-h-tests (Files): Add it and tests/signature.h.
7366         (Depends-on): Add ansi-c++-opt.
7367         (Makefile.am): Arrange to compile and run test-fcntl-h-c++.
7368         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR): Invoke
7369         gl_MODULE_INDICATOR.
7370
7371         Tests of module 'dirent' in C++ mode.
7372         * tests/test-dirent-c++.cc: New file.
7373         * modules/dirent-tests (Files): Add it and tests/signature.h.
7374         (Depends-on): Add ansi-c++-opt.
7375         (Makefile.am): Arrange to compile and run test-dirent-c++.
7376         * m4/dirent_h.m4 (gl_DIRENT_MODULE_INDICATOR): Invoke
7377         gl_MODULE_INDICATOR.
7378
7379         New module 'ansi-c++-opt'.
7380         * modules/ansi-c++-opt: New file.
7381         * m4/ansi-c++.m4: New file, from GNU gettext with modifications.
7382
7383         Document C++ namespace mode.
7384         * doc/gnulib.texi (A C++ namespace for gnulib): New section.
7385
7386         wctype: Avoid #define replacements in C++ mode.
7387         * lib/wctype.in.h: Include c++defs.h, warn-on-use.h.
7388         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
7389         iswprint, iswpunct, iswspace, iswupper, iswxdigit, towlower, towupper):
7390         In C++, define a namespaced alias symbol.
7391         * m4/wctype_h.m4 (gl_WCTYPE_H): Don't set WCTYPE_H.
7392         * modules/wctype (Depends-on): Add c++defs, warn-on-use.
7393         (Makefile.am): Provide a wctype.h replacement always. Update wctype.h
7394         rule.
7395
7396         wchar: Avoid #define replacements in C++ mode.
7397         * lib/wchar.in.h: Include c++defs.h.
7398         (btowc, wctob, mbsinit, mbrtowc, mbrlen, mbsrtowcs, mbsnrtowcs,
7399         wcrtomb, wcsrtombs, wcsnrtombs): In C++, define a namespaced alias
7400         symbol.
7401         (wcwidth): Likewise. Fix prototype to be POSIX compliant.
7402         * modules/wchar (Depends-on): Add c++defs.
7403         (Makefile.am): Update wchar.h rule.
7404
7405         unistd: Avoid #define replacements in C++ mode.
7406         * lib/unistd.in.h: Include c++defs.h.
7407         (chown, close, dup, dup2, dup3, euidaccess, faccessat, fchdir,
7408         fchownat, fsync, ftruncate, getcwd, getdomainname, getdtablesize,
7409         getgroups, gethostname, getlogin, getlogin_r, getpagesize,
7410         getusershell, setusershell, endusershell, lchown, link, linkat, lseek,
7411         pipe2, pread, readlink, readlinkat, rmdir, sleep, symlink, symlinkat,
7412         unlink, unlinkat, usleep, write): In C++, define a namespaced alias
7413         symbol.
7414         (environ): Update.
7415         * modules/unistd (Depends-on): Add c++defs.
7416         (Makefile.am): Update unistd.h rule.
7417
7418         time: Avoid #define replacements in C++ mode.
7419         * lib/time.in.h: Include c++defs.h, warn-on-use.h.
7420         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): In C++,
7421         define a namespaced alias symbol.
7422         * m4/time_h.m4 (gl_TIME_MODULE_INDICATOR): New macro.
7423         (gl_HEADER_TIME_H_DEFAULTS): Initialize also GNULIB_MKTIME,
7424         GNULIB_NANOSLEEP, GNULIB_STRPTIME, GNULIB_TIMEGM.
7425         * modules/time (Depends-on): Add c++defs, warn-on-use.
7426         (Makefile.am): Update time.h rule.
7427         * modules/mktime (configure.ac): Invoke gl_TIME_MODULE_INDICATOR.
7428         * modules/nanosleep (configure.ac): Likewise.
7429         * modules/strptime (configure.ac): Likewise.
7430         * modules/timegm (configure.ac): Likewise.
7431
7432         sys_time: Avoid #define replacements in C++ mode.
7433         * lib/sys_time.in.h: Include c++defs.h.
7434         (gettimeofday): In C++, define a namespaced alias symbol.
7435         * modules/sys_time (Depends-on): Add c++defs.
7436         (Makefile.am): Update sys/time.h rule.
7437
7438         sys_stat: Avoid #define replacements in C++ mode.
7439         * lib/sys_stat.in.h: Include c++defs.h.
7440         (fchmodat, fstat, fstatat, futimens, lchmod, lstat, mkdir, mkdirat,
7441         mkfifo, mkfifoat, mknod, mknodat, utimensat): In C++, define a
7442         namespaced alias symbol.
7443         In C++, define a namespaced alias symbol.
7444         * modules/sys_stat (Depends-on): Add c++defs.
7445         (Makefile.am): Update sys/stat.h rule.
7446
7447         sys_socket: Avoid #define replacements in C++ mode.
7448         * lib/sys_socket.in.h: Handle the case of recursive include on Cygwin.
7449         Include c++defs.h. Include warn-on-use.h earlier. Enable the function
7450         definitions also when the system has a <sys/socket.h>.
7451         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
7452         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, accept4):
7453         In C++, define a namespaced alias symbol.
7454         * modules/sys_socket (Depends-on): Add c++defs.
7455         (Makefile.am): Update sys/socket.h rule.
7456
7457         sys_select: Avoid #define replacements in C++ mode.
7458         * lib/sys_select.in.h: Include c++defs.h. Enable the function
7459         definitions also when the system has a <sys/select.h>.
7460         (select): In C++, define a namespaced alias symbol.
7461         * modules/sys_select (Depends-on): Add c++defs.
7462         (Makefile.am): Update sys/select.h rule.
7463
7464         sys_ioctl: Avoid #define replacements in C++ mode.
7465         * lib/sys_ioctl.in.h: Include c++defs.h.
7466         (ioctl): In C++, define a namespaced alias symbol.
7467         * modules/sys_ioctl (Depends-on): Add c++defs.
7468         (Makefile.am): Update sys/ioctl.h rule.
7469
7470         string: Avoid #define replacements in C++ mode.
7471         * lib/string.in.h: Include c++defs.h.
7472         (stpncpy): Define to rpl_stpncpy, not gnu_stpncpy.
7473         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
7474         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
7475         strcasestr, strtok_r, mbslen, mbschr, mbsrchr, mbspbrk, strerror,
7476         strsignal, strverscmp): In C++, define a namespaced alias symbol.
7477         * modules/string (Depends-on): Add c++defs.
7478         (Makefile.am): Update string.h rule.
7479
7480         stdlib: Avoid #define replacements in C++ mode.
7481         * lib/stdlib.in.h: Include c++defs.h.
7482         (atoll, calloc, canonicalize_file_name, getloadavg, getsubopt, malloc,
7483         mkdtemp, mkostemp, mkostemps, mkstemp, mkstemps, putenv, random_r,
7484         srandom_r, initstate_r, setstate_r, realloc, realpath, rpmatch, setenv,
7485         strtod, strtoll, strtoull, unsetenv): In C++, define a namespaced alias
7486         symbol.
7487         * modules/stdlib (Depends-on): Add c++defs.
7488         (Makefile.am): Update stdlib.h rule.
7489
7490         stdio: Avoid #define replacements in C++ mode.
7491         * lib/stdio.in.h: Include c++defs.h.
7492         (dprintf, fclose, fflush, fopen, fprintf, fpurge, fputc, fputs,
7493         freopen, fseek, fseeko, ftell, ftello, fwrite, getdelim, getline,
7494         obstack_printf, obstack_vprintf, perror, popen, printf, fputc, putchar,
7495         puts, remove, rename, renameat, snprintf, sprintf, asprintf, vasprintf,
7496         vdprintf, vfprintf, vprintf, vsnprintf, vsprintf): In C++, define a
7497         namespaced alias symbol.
7498         * modules/stdio (Depends-on): Add c++defs.
7499         (Makefile.am): Update stdio.h rule.
7500
7501         spawn: Avoid #define replacements in C++ mode.
7502         * lib/spawn.in.h: Include c++defs.h.
7503         (posix_spawn, posix_spawnp, posix_spawnattr_init,
7504         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
7505         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
7506         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
7507         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
7508         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
7509         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
7510         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
7511         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
7512         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
7513         In C++, define a namespaced alias symbol.
7514         * modules/spawn (Depends-on): Add c++defs.
7515         (Makefile.am): Update spawn.h rule.
7516
7517         signal: Avoid #define replacements in C++ mode.
7518         * lib/signal.in.h: Include c++defs.h.
7519         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
7520         sigpending, sigprocmask, signal, raise, sigaction): In C++, define a
7521         namespaced alias symbol.
7522         * modules/signal (Depends-on): Add c++defs.
7523         (Makefile.am): Update signal.h rule.
7524
7525         search: Avoid #define replacements in C++ mode.
7526         * lib/search.in.h: Include c++defs.h.
7527         (_gl_search_compar_fn, _gl_search_action_fn): New types.
7528         (tsearch, tfind, tdelete, twalk): In C++, define a namespaced alias
7529         symbol.
7530         * modules/search (Depends-on): Add c++defs.
7531         (Makefile.am): Update search.h rule.
7532
7533         math: Avoid #define replacements in C++ mode.
7534         * lib/math.in.h: Include c++defs.h.
7535         (frexp, acosl, asinl, atanl, ceilf, ceill, cosl, expl, floorf, floorl,
7536         frexpl, ldexpl, logl, roundf, round, roundl, sinl, sqrtl, tanl, truncf,
7537         trunc, truncl): In C++, define a namespaced alias symbol.
7538         * modules/math (Depends-on): Add c++defs.
7539         (Makefile.am): Update math.h rule.
7540
7541         locale: Avoid #define replacements in C++ mode.
7542         * lib/locale.in.h: Include c++defs.h.
7543         (duplocale): In C++, define a namespaced alias symbol.
7544         * m4/locale_h.m4 (gl_LOCALE_H_DEFAULTS): Initialize HAVE_DUPLOCALE.
7545         * m4/duplocale.m4 (gl_FUNC_DUPLOCALE): Set HAVE_DUPLOCALE.
7546         * modules/locale (Depends-on): Add c++defs.
7547         (Makefile.am): Update locale.h rule. Substitute HAVE_DUPLOCALE.
7548
7549         langinfo: Avoid #define replacements in C++ mode.
7550         * lib/langinfo.in.h: Include c++defs.h.
7551         (nl_langinfo): In C++, define a namespaced alias symbol.
7552         * modules/langinfo (Depends-on): Add c++defs.
7553         (Makefile.am): Update langinfo.h rule.
7554
7555         iconv-h: Avoid #define replacements in C++ mode.
7556         * lib/iconv.in.h: Include c++defs.h, warn-on-use.h.
7557         (iconv_open, iconv, iconv_close): In C++, define a namespaced alias
7558         symbol.
7559         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
7560         whenever iconv is present.
7561         * modules/iconv-h (Depends-on): Add c++defs, warn-on-use.
7562         (Makefile.am): Update iconv.h rule.
7563
7564         glob: Avoid #define replacements in C++ mode.
7565         * lib/glob.in.h: Include c++defs.h, warn-on-use.h.
7566         (_gl_glob_errfunc_fn): New type.
7567         (glob, globfree, glob_pattern_p): In C++, define a namespaced alias
7568         symbol.
7569         * modules/glob (Depends-on): Add c++defs, warn-on-use.
7570         (Makefile.am): Update glob.h rule.
7571
7572         fcntl-h: Avoid #define replacements in C++ mode.
7573         * lib/fcntl.in.h: Include c++defs.h.
7574         (fcntl, open, openat): In C++, define a namespaced alias symbol.
7575         * modules/fcntl-h (Depends-on): Add c++defs.
7576         (Makefile.am): Update fcntl.h rule.
7577
7578         dirent: Avoid #define replacements in C++ mode.
7579         * lib/dirent.in.h: Include c++defs.h.
7580         (closedir, fdopendir, opendir, scandir, alphasort): In C++, define a
7581         namespaced alias symbol.
7582         (dirfd): Update declaration.
7583         * modules/dirent (Depends-on): Add c++defs.
7584         (Makefile.am): Update dirent.h rule.
7585
7586         ctype: Make it usable in C++ code.
7587         * lib/ctype.in.h: Include c++defs.h.
7588         (isblank): Declare as extern "C".
7589         * modules/ctype (Depends-on): Add c++defs.
7590         (Makefile.am): Update ctype.h rule.
7591
7592         New module 'c++defs'.
7593         * modules/c++defs: New file.
7594         * build-aux/c++defs.h: New file.
7595         Reported by John W. Eaton <jwe@gnu.org>.
7596
7597 2010-03-07  Bruno Haible  <bruno@clisp.org>
7598
7599         logb: Provide missing declaration for Cygwin.
7600         * lib/math.in.h (logb): New declaration.
7601         * m4/logb.m4: New file.
7602         * modules/logb (Files): Add m4/logb.m4.
7603         (Depends-on): Add math.
7604         (configure.ac): Invoke gl_FUNC_LOGB, gl_MATH_MODULE_INDICATOR.
7605         * m4/math_h.m4 (gl_MATH_H): Check also for logb declaration.
7606         (gl_MATH_H_DEFAULTS): Initialize GNULIB_LOGB, HAVE_DECL_LOGB.
7607         * modules/math (Makefile.am): Substitute GNULIB_LOGB, HAVE_DECL_LOGB.
7608         * doc/posix-functions/logb.texi: Mention the Cygwin bug.
7609
7610 2010-03-07  Bruno Haible  <bruno@clisp.org>
7611
7612         Fix test-cond link error.
7613         * tests/test-cond.c: Include <stdio.h>.
7614
7615 2010-03-07  Bruno Haible  <bruno@clisp.org>
7616
7617         Fix test-dirent-safer link error.
7618         * modules/dirent-safer-tests (Makefile.am): Define
7619         test_dirent_safer_LDADD.
7620
7621 2010-03-07  Bruno Haible  <bruno@clisp.org>
7622
7623         * gnulib-tool (func_create_testdir): Don't use 'lib-ignore' module
7624         among default module list.
7625
7626 2010-03-07  Bruno Haible  <bruno@clisp.org>
7627
7628         Fix link error on platforms with GNU libiconv.
7629         * modules/unistr/u8-strcoll-tests (Makefile): Define
7630         test_u8_strcoll_LDADD.
7631         * modules/unistr/u16-strcoll-tests (Makefile): Define
7632         test_u16_strcoll_LDADD.
7633         * modules/unistr/u32-strcoll-tests (Makefile): Define
7634         test_u32_strcoll_LDADD.
7635
7636 2010-03-07  Bruno Haible  <bruno@clisp.org>
7637
7638         Use POSIX declarations for socket functions.
7639         * lib/sys_socket.in.h (rpl_connect, rpl_accept, rpl_bind,
7640         rpl_getpeername, rpl_getsockname, rpl_recv, rpl_send, rpl_recvfrom,
7641         rpl_sendto): Change declaration to match POSIX.
7642         * lib/connect.c (rpl_connect): Likewise.
7643         * lib/accept.c (rpl_accept): Likewise.
7644         * lib/bind.c (rpl_bind): Likewise.
7645         * lib/getpeername.c (rpl_getpeername): Likewise.
7646         * lib/getsockname.c (rpl_getsockname): Likewise.
7647         * lib/recv.c (rpl_recv): Likewise.
7648         * lib/send.c (rpl_send): Likewise.
7649         * lib/recvfrom.c (rpl_recvfrom): Likewise.
7650         * lib/sendto.c (rpl_sendto): Likewise.
7651
7652 2010-03-06  Bruno Haible  <bruno@clisp.org>
7653
7654         Clarify access, euidaccess, faccessat.
7655         * doc/posix-functions/faccessat.texi: Mention security problem under
7656         "Other problems", not "Portability problems".
7657         * doc/posix-functions/access.texi: Likewise. Mention a related security
7658         problem.
7659         * doc/glibc-functions/euidaccess.texi: Mention security problems.
7660         * lib/euidaccess.c: Add comments about platforms.
7661         * lib/unistd.in.h (access, euidaccess): Add warnings.
7662
7663 2010-03-07  Bruno Haible  <bruno@clisp.org>
7664
7665         Ensure posix_spawnattr_{get,set}sched{policy,param} are defined.
7666         * lib/spawn.in.h (POSIX_SPAWN_SETSCHEDPARAM): Define fallback.
7667         (POSIX_SPAWN_SETSCHEDULER): Likewise.
7668         (POSIX_SPAWN_USEVFORK): Define in a way that works when
7669         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
7670         (posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy): Also
7671         declare when POSIX_SPAWN_SETSCHEDULER is zero.
7672         (posix_spawnattr_getschedparam, posix_spawnattr_setschedparam): Also
7673         declare when POSIX_SPAWN_SETSCHEDPARAM is zero.
7674         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_BODY): Test whether
7675         POSIX_SPAWN_SETSCHEDULER or POSIX_SPAWN_SETSCHEDPARAM are zero.
7676         * modules/posix_spawnattr_getschedparam (configure.ac): Enable the
7677         replacement also when POSIX_SPAWN_SETSCHEDPARAM is zero.
7678         * modules/posix_spawnattr_setschedparam (configure.ac): Likewise.
7679         * modules/posix_spawnattr_getschedpolicy (configure.ac): Enable the
7680         replacement also when POSIX_SPAWN_SETSCHEDULER is zero.
7681         * modules/posix_spawnattr_setschedpolicy (configure.ac): Likewise.
7682         * lib/spawnattr_getschedparam.c (posix_spawnattr_getschedparam): Do
7683         nothing if POSIX_SPAWN_SETSCHEDPARAM is zero.
7684         * lib/spawnattr_setschedparam.c (posix_spawnattr_setschedparam):
7685         Likewise.
7686         * lib/spawnattr_getschedpolicy.c (posix_spawnattr_getschedpolicy): Do
7687         nothing if POSIX_SPAWN_SETSCHEDULER is zero.
7688         * lib/spawnattr_setschedpolicy.c (posix_spawnattr_setschedpolicy):
7689         Likewise.
7690         * tests/test-spawn.c (main): Make it work when
7691         POSIX_SPAWN_SETSCHEDPARAM and POSIX_SPAWN_SETSCHEDULER are zero.
7692
7693 2010-03-07  Bruno Haible  <bruno@clisp.org>
7694
7695         Fix incorrect Makefile.am generation in German locale.
7696         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
7697         Execute sed command with character range in C locale.
7698
7699 2010-03-06  Bruno Haible  <bruno@clisp.org>
7700
7701         Tests for module 'iconv-h'.
7702         * modules/iconv-h-tests: New file.
7703         * tests/test-iconv-h.c: New file.
7704
7705         New module 'iconv-h'.
7706         * modules/iconv-h: New file.
7707         * modules/iconv_open (Files): Remove lib/iconv.in.h, m4/iconv_h.m4.
7708         (Depends-on): Add iconv-h. Remove include_next, arg-nonnull.
7709         (configure.ac): Remove gl_ICONV_H.
7710         (Makefile.am): Remove rule for iconv.h.
7711
7712 2010-03-06  Bruno Haible  <bruno@clisp.org>
7713
7714         More consistent naming of *.m4 files.
7715         * m4/wctype_h.m4: Renamed from m4/wctype.m4.
7716         * modules/wctype (Files): Update.
7717
7718         More consistent naming of *.m4 files.
7719         * m4/wchar_h.m4: Renamed from m4/wchar.m4.
7720         * modules/wchar (Files): Update.
7721
7722 2010-03-06  Jim Meyering  <meyering@redhat.com>
7723
7724         euidaccess: relax license to LGPLv2+
7725         * modules/euidaccess (License): Relax to LGPLv2+.
7726
7727 2010-03-06  Bruno Haible  <bruno@clisp.org>
7728
7729         Prefer lib_SOURCES over unconditional AC_LIBOBJ.
7730         * modules/exitfail (configure.ac): Remove AC_LIBOBJ invocation.
7731         (Makefile.am): Augment lib_SOURCES instead.
7732
7733 2010-03-04  Jim Meyering  <meyering@redhat.com>
7734
7735         utime: remove obsolete module
7736         This module, like autoconf's AC_FUNC_UTIME_NULL macro, has been
7737         unnecessary for years, and has been marked as obsolete for 10 months.
7738         * modules/utime: Remove file.
7739         * lib/utime.c: Remove file.
7740         * m4/utime.m4: Remove file.
7741         * m4/utimes-null.m4: Remove file.
7742         * doc/posix-functions/utime.texi (utime): Remove reference to
7743         the module.  Move the sole "fixed by gnulib" item into the
7744         "problems not fixed by Gnulib" list.
7745         * MODULES.html.sh (func_all_modules): Remove reference to "utime".
7746
7747 2010-03-05  Simon Josefsson  <simon@josefsson.org>
7748
7749         * modules/exit (License): Relax license to LGPLv2+.
7750         (Status): Mark as obsolete.
7751         * NEWS: Mention deprecated 'exit' module.
7752         * doc/posix-functions/exit.texi: Recommend 'stdlib' module instead
7753         of now obsolete 'exit'.
7754
7755 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7756
7757         fts-lgpl: remove unused module
7758         * modules/fts-lgpl: Remove.
7759         * MODULES.html.sh (func_all_modules): Adjust.
7760         * check-module (find_included_lib_files): Adjust.
7761         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove.
7762
7763 2010-03-02  Ben Walton  <bwalton@artsci.utoronto.ca>  (tiny change)
7764
7765         copy-acl: enhance Solaris ACL error handling
7766         * lib/copy-acl.c (qcopy_acl): Also ignore EOPNOTSUPP.
7767         * lib/set-mode-acl.c (qset_acl): Likewise.
7768
7769 2010-03-02  Bruno Haible  <bruno@clisp.org>
7770
7771         spawn: Don't override the system defined values on FreeBSD 8.
7772         * lib/spawn.in.h (POSIX_SPAWN_RESETIDS, POSIX_SPAWN_SETPGROUP,
7773         POSIX_SPAWN_SETSIGDEF, POSIX_SPAWN_SETSIGMASK,
7774         POSIX_SPAWN_SETSCHEDPARAM, POSIX_SPAWN_SETSCHEDULER): Don't redefine
7775         if HAVE_POSIX_SPAWN is 1.
7776         Reported by Johan van Selst <johans@stack.nl> via Eric Blake.
7777
7778 2010-03-01  Bruno Haible  <bruno@clisp.org>
7779
7780         * doc/gnulib-tool.texi (Initial import): Clarify the requirements
7781         regarding Automake.
7782
7783 2010-02-25  Bruno Haible  <bruno@clisp.org>
7784
7785         Fix breakage of gnulib-tool with ksh, introduced on 2010-02-21.
7786         * gnulib-tool: Define 'echo' as a function only before the ksh alias
7787         setting, not afterwards.
7788         Reported by Ben Walton <bwalton@artsci.utoronto.ca>.
7789
7790 2010-02-24  Eric Blake  <eblake@redhat.com>
7791
7792         bootstrap, git-version-gen: use timestamp
7793         * build-aux/git-version-gen (scriptversion): Force UTC.
7794         * build-aux/bootstrap (scriptversion): New variable.
7795
7796         bootstrap: allow older git
7797         * build-aux/bootstrap (GNULIB_SRCDIR): Add fallback if git is
7798         older than 1.6.4.  Requested by the libvirt project.
7799
7800 2010-02-23  Eric Blake  <eblake@redhat.com>
7801
7802         warn-on-use: work with old autoconf
7803         * m4/warn-on-use.m4 (gl_WARN_ON_USE_PREPARE): Accomodate older
7804         AS_VAR semantics of autoconf 2.60.
7805         Reported by Bruno Haible.
7806
7807         bootstrap: improve some comments
7808         * build-aux/bootstrap: Drop unneeded emacs hint.  Add some
7809         clarification comments.
7810
7811         gettimeofday: provide correct function
7812         * lib/gettimeofday.c (gettimeofday): Provide rpl_gettimeofday only
7813         when replacement is declared, otherwise provide gettimeofday.
7814         Reported by Michael Goffioul.
7815
7816 2010-02-23  Jim Meyering  <meyering@redhat.com>
7817
7818         lib-ignore: relax license to "unlimited", not LGPLv2+
7819         * modules/lib-ignore (License): Relax to "unlimited".
7820
7821 2010-02-23  Jim Meyering  <meyering@redhat.com>
7822
7823         lib-ignore: relax license to LGPLv2+
7824         * modules/lib-ignore (License): Relax to LGPLv2+.
7825
7826 2010-02-22  Eric Blake  <eblake@redhat.com>
7827
7828         lseek: avoid bash 3.2 broken pipe bug
7829         * m4/lseek.m4 (gl_FUNC_LSEEK): Drain pipe, to avoid spurious
7830         warning from bash 3.2.
7831         Reported by Ben Pfaff, with analysis from Bruno Haible.
7832
7833         bootstrap: support non-FSF copyright holder
7834         * build-aux/bootstrap (COPYRIGHT_HOLDER, with_gettext): Allow
7835         bootstrap.conf override of COPYRIGHT_HOLDER.
7836         (MSGID_BUGS_ADDRESS): Allow URL rather than email.
7837
7838         bootstrap: interoperate with gettext 0.14.1
7839         * build-aux/bootstrap (slurp): Fix typo when using older gettext.
7840
7841         bootstrap: allow for alternate submodule location
7842         * build-aux/bootstrap (gnulib_path): New variable; use instead of
7843         hardcoding submodule location.
7844         (gnulib_mk): Allow direct use of Makefile.am.
7845
7846         bootstrap: use GNULIB_SRCDIR to reduce disk usage
7847         * build-aux/bootstrap (GNULIB_SRCDIR): If set, use as a reference,
7848         rather than reconfiguring where the submodule points.
7849
7850         gettimeofday: restore support for platforms that lack function
7851         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Also compile
7852         replacement if function is missing.
7853         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_DEFAULTS): New witness.
7854         * modules/sys_time (Makefile.am): Substitute it.
7855         * lib/sys_time.in.h (gettimeofday): Check it.
7856         Reported by Michael Goffioul.
7857
7858 2010-02-21  Bruno Haible  <bruno@clisp.org>
7859
7860         * lib/stdio.in.h (obstack_printf): Fix typo.
7861
7862 2010-02-21  Jose E. Marchesi  <jemarch@gnu.org>
7863
7864         vc-list-files: use bzr ls's -R option
7865         * build-aux/vc-list-files: Invoke bazaar to generate a recursive
7866         list of versioned files based on 'dir' (usage of -R in 'bzr ls').
7867
7868 2010-02-21  Jim Meyering  <meyering@redhat.com>
7869
7870         init.sh: fix EXEEXT shims to work also for names like test-prog
7871         * tests/init.sh: Re-exec a better shell, when needed.
7872         If the current shell lacks support for posix $(...), an init.sh-using
7873         test will now try to find a shell that supports that.  If EXEEXT is
7874         nonempty, we also require support for hyphen-in-alias-name and shell
7875         substitutions like ${var#glob}.  Failure to find such a shell results
7876         in a skipped test.
7877
7878 2010-02-21  Bruno Haible  <bruno@clisp.org>
7879
7880         Really work around around "broken pipe" error message from bash 3.2.
7881         * gnulib-tool (func_reset_sigpipe): Remove function.
7882         (echo): In bash 3.2, define to a function that uses printf.
7883         Analyzed by Ralf Wildenhues, Chet Ramey, Ben Pfaff.
7884
7885 2010-02-20  Bruno Haible  <bruno@clisp.org>
7886
7887         Restore support for automake 1.9.6 with autoconf 2.61.
7888         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Ensure MKDIR_P is AC_SUBSTed.
7889         Reported by James Youngman <jay@gnu.org>.
7890
7891 2010-02-20  Bruno Haible  <bruno@clisp.org>
7892
7893         Improve *printf warning condition.
7894         * lib/stdio.in.h (fprintf, printf, vfprintf, vprintf): Emit warning
7895         also if GNULIB_POSIXCHECK is defined, the *-posix module is not used,
7896         and the function is overridden due to SIGPIPE emulation.
7897
7898 2010-02-20  Bruno Haible  <bruno@clisp.org>
7899
7900         * lib/stdio.in.h: Tweak comments.
7901
7902 2010-02-19  Bruno Haible  <bruno@clisp.org>
7903
7904         Make it easier to find modules. New gnulib-tool option '--find'.
7905         * gnulib-tool: New option --find.
7906         (func_usage): Document it.
7907         (func_sanitize_modulelist): New function, extracted from
7908         func_all_modules.
7909         (func_all_modules): Invoke it.
7910         * doc/gnulib-tool.texi (Which modules?): New node.
7911
7912 2010-02-18  Markus Duft <mduft@gentoo.org>  (tiny change)
7913
7914         * lib/sys_select.in.h: Provide select replacement even if
7915         sys/select.h exists on a system, for Interix.
7916
7917 2010-02-18  Jim Meyering  <meyering@redhat.com>
7918
7919         init.sh: don't use $(...) just yet
7920         * tests/init.sh (create_exe_shim_functions_): Use `...`, not $(...),
7921         to accommodate e.g., Solaris' /bin/sh.
7922
7923 2010-02-17  Bruno Haible  <bruno@clisp.org>
7924
7925         * doc/posix-headers/netdb.texi: Mention NetBSD 5.0 problem.
7926         Reported by Ludovic Courtès <ludo@gnu.org>.
7927
7928 2010-02-16  Simon Josefsson  <simon@josefsson.org>
7929
7930         * modules/userspec-tests (test_userspec_LDADD): Add variable, for
7931         linking with -lintl.
7932
7933 2010-02-17  Simon Josefsson  <simon@josefsson.org>
7934
7935         * lib/netdb.in.h (AI_V4MAPPED, AI_ALL, AI_ADDRCONFIG): Define to 0
7936         if not provided by the system's netdb.h.  Reported by
7937         ludo@gnu.org (Ludovic Courtès).
7938
7939 2010-02-15  Jim Meyering  <meyering@redhat.com>
7940
7941         init.sh: improve portability and efficiency
7942         * tests/init.sh (find_exe_basenames_): Remove unnecessary use of
7943         "dummy" in a for loop.
7944         Use '!', not '^' to select the complement of a character set used
7945         in a "case" statement.
7946         Use shell variable manipulation, a la ${...%.exe}, rather than sed.
7947         Suggestions from Eric Blake.
7948
7949         init.sh: automatically accommodate programs with the .exe suffix
7950         Automatically arrange for an invocation of "prog" to execute the
7951         program named "prog$EXEEXT" (usually prog.exe).  Thus, all invocations
7952         may use the simpler "prog", yet still work when built on a system
7953         that requires specifying the added suffix.
7954         Do this by constructing a function named "prog" that invokes
7955         "prog.exe" for each .exe file in selected directories.
7956         * tests/init.sh (find_exe_basenames_): New function.
7957         (create_exe_shim_functions_): New function.
7958         (path_prepend_): Use it.
7959
7960         maint.mk: mark syntax-check sc_*.m rules as .PHONY
7961         * top/maint.mk ($(syntax-check-rules)): Add .PHONY, so that
7962         "make -t syntax-check" doesn't create a ton of sc_*.m files.
7963
7964 2010-02-14  Jim Meyering  <meyering@redhat.com>
7965
7966         maint.mk: prohibit inclusion of "hash-pjw.h" without_use
7967         * top/maint.mk (sc_prohibit_hash_without_use): Re-add "@".
7968         (sc_prohibit_hash_pjw_without_use): New rule.
7969
7970         maint.mk: allow the default upload destination dir to be overridden
7971         * top/maint.mk (upload_dest_dir_): Define with a default that
7972         preserves the status quo.
7973         (emit_upload_commands): Use it, rather than hard-coding $(PACKAGE).
7974         Reported by Peter Simons.
7975
7976         maint.mk: prohibit inclusion of "hash.h" without_use
7977         * top/maint.mk (sc_prohibit_hash_without_use): New rule.
7978
7979 2010-02-10  Jim Meyering  <meyering@redhat.com>
7980
7981         maint.mk: prohibit inclusion of "ignore-value.h" without_use
7982         * top/maint.mk (sc_prohibit_ignore_value_without_use): New rule.
7983
7984 2010-02-09  Eric Blake  <ebb9@byu.net>
7985         and Bruno Haible  <bruno@clisp.org>
7986
7987         obstack-printf-posix: ensure declaration
7988         * m4/obstack-printf.m4 (gl_DECL_OBSTACK_PRINTF): New macro,
7989         extracted from gl_FUNC_OBSTACK_PRINTF.
7990         (gl_FUNC_OBSTACK_PRINTF): Invoke it.
7991         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
7992         Likewise.
7993         * lib/stdio.in.h (obstack_printf, obstack_vprintf): Declare also
7994         if GNULIB_OBSTACK_PRINTF_POSIX is 1 and GNULIB_OBSTACK_PRINTF is
7995         0.
7996
7997 2010-02-08  Bruno Haible  <bruno@clisp.org>
7998
7999         gnulib-tool: Fix typo in 2010-02-07 commit.
8000         * gnulib-tool (func_get_dependencies): Fix typo in last commit.
8001         Reported by Eric Blake.
8002
8003 2010-02-07  Bruno Haible  <bruno@clisp.org>
8004
8005         gnulib-tool: Fix up caching patches.
8006         * gnulib-tool: New options --cache-modules, --no-cache-modules. Remove
8007         option --no-cache. Use associative arrays when supported by the shell.
8008         (sed_comments): New variable.
8009         (modcache): Renamed from do_cache.
8010         (sed_extract_field_header): Renamed from sed_extract_cache_prog. Don't
8011         abbreviate unnecessarily.
8012         (have_associative): New variable.
8013         (func_cache_var): Define correctly for bash 1.x. Define in an optimized
8014         way also for ksh and zsh.
8015         (func_init_sed_convert_to_cache_statements): New function, extracted
8016         from func_cache_lookup_module. Add support for associative arrays.
8017         Don't set the c_MODULE_cached variable here. Ignore all lines before
8018         the first field header. Remove only the final newline, not all trailing
8019         newlines. Support empty fields correctly. Limit the use of 'eval' to
8020         assignments.
8021         (func_get_description, func_get_status, func_get_notice,
8022         func_get_applicability, func_get_filelist, func_get_dependencies,
8023         func_get_autoconf_early_snippet, func_get_autoconf_snippet,
8024         func_get_automake_snippet, func_get_include_directive,
8025         func_get_link_directive, func_get_license, func_get_maintainer):
8026         Update documentation. List the unoptimized code first. Add support for
8027         associative arrays. Limit the use of 'eval' to assignments.
8028         (func_get_applicability): Undo stylistic pessimisations.
8029         (func_get_automake_snippet, func_get_include_directive): Reduce code
8030         duplication.
8031         (func_modules_transitive_closure, func_modules_add_dummy,
8032         func_modules_notice, func_modules_to_filelist, func_add_file,
8033         func_update_file, func_emit_lib_Makefile_am, func_emit_po_Makevars,
8034         func_emit_po_POTFILES_in, func_emit_tests_Makefile_am, func_import,
8035         func_create_testdir, func_create_megatestdir): Update documentation.
8036
8037 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8038
8039         * gnulib-tool (func_cache_lookup_module): Store the module name
8040         belonging to the cache variable; error out if two different
8041         module names map to the same cache variable name.
8042
8043 2010-01-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8044
8045         gnulib-tool: Make caching optional.
8046         * gnulib-tool: Accept option --no-cache, turning off $do_cache.
8047         Update matching short versions of --no-changelog.
8048         (func_usage): Update.
8049         (sed_extract_cache_prog): Renamed from ...
8050         (sed_extract_prog): ... this; revert to old extraction script.
8051         (func_get_description, func_get_status)
8052         (func_get_notice, func_get_applicability, func_get_filelist)
8053         (func_get_dependencies, func_get_autoconf_early_snippet)
8054         (func_get_autoconf_snippet, func_get_automake_snippet)
8055         (func_get_include_directive, func_get_link_directive)
8056         (func_get_license, func_get_maintainer): If $do_cache is false,
8057         use old, non-caching extraction scripts.
8058         Suggestion by Bruno Haible.
8059
8060 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8061
8062         gnulib-tool: cache module metainformation.
8063         * gnulib-tool (sed_extract_prog): Match newline before each
8064         header, and rewrite header to a shell variable suffix.
8065         (func_cache_var, func_cache_lookup_module): New functions,
8066         to turn a module name into a cache variable prefix, and to
8067         look up and cache module metainformation.
8068         (func_get_description, func_get_status)
8069         (func_get_notice, func_get_applicability, func_get_filelist)
8070         (func_get_dependencies, func_get_autoconf_early_snippet)
8071         (func_get_autoconf_snippet, func_get_automake_snippet)
8072         (func_get_include_directive, func_get_link_directive)
8073         (func_get_license, func_get_maintainer): Use
8074         func_cache_lookup_module.
8075
8076 2010-02-07  Bruno Haible  <bruno@clisp.org>
8077
8078         fnctl: Fix missing dependency.
8079         * modules/fcntl (Depends-on): Add getdtablesize.
8080         Reported by John W. Eaton <jwe@gnu.org>.
8081
8082 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
8083
8084         Argp: fix recognition of short alias options.
8085
8086         * lib/argp-parse.c (convert_options): Fix improper use of
8087         `|' between character values.
8088         * tests/test-argp.c (group1_option): New alias option
8089         --read (-r).
8090         (group1_parser): Special handling for 'r'.
8091         (test15): New test case.
8092         (test_fun): Add test15.
8093         * tests/test-argp-2.sh: Update expected --help and --usage
8094         outputs.
8095
8096 2010-02-05  Sergey Poznyakoff  <gray@gnu.org.ua>
8097
8098         * tests/test-argp.c: Fix indentation.
8099
8100 2010-02-04  Eric Blake  <ebb9@byu.net>
8101
8102         gettimeofday: expose type of second argument
8103         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Do better detection
8104         of glibc extension signature, and define GETTIMEOFDAY_TIMEZONE.
8105         * tests/test-gettimeofday.c: Use it to silence warning.
8106         * doc/posix-functions/gettimeofday.texi (gettimeofday): Document
8107         the issue.
8108
8109 2010-02-03  Jim Meyering  <meyering@redhat.com>
8110
8111         regcomp.c: avoid the sole warning from gcc's -Wtype-limits
8112         * lib/regcomp.c (TYPE_SIGNED): Define.
8113         (parse_dup_op): Use it to avoid the sole warning from -Wtype-limits.
8114
8115         regcomp.c: avoid a new -Wshadow warning
8116         * lib/regcomp.c (create_initial_state): Do not shadow local "err".
8117
8118 2010-02-01  Jim Meyering  <meyering@redhat.com>
8119
8120         removing useless parentheses in cpp #define directives
8121         For motivation, see commit c0221df4, "define STREQ(a,b)
8122         consistently, removing useless parentheses"
8123         * lib/memcmp.c (CMP_LT_OR_GT): Remove useless parentheses.
8124         * lib/mountlist.c (MNT_IGNORE): Likewise.
8125         * lib/trim.h (trim, trim_trailing, trim_leading): Likewise.
8126
8127 2010-02-01  Eric Blake  <ebb9@byu.net>
8128
8129         sys_time: use link-warning
8130         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Split defaults...
8131         (gl_HEADER_SYS_TIME_H_DEFAULTS): ...into new macro.
8132         (gl_SYS_TIME_MODULE_INDICATOR): New macro.
8133         * modules/sys_time (Depends-on): Add warn-on-use.
8134         (Makefile.am): Always build replacement.
8135         (configure.ac): Update substitutions.
8136         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY)
8137         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Include defaults, and no longer
8138         bother with SYS_TIME_H.
8139         * modules/gettimeofday (configure.ac): Declare indicator.
8140         * lib/sys_time.in.h (gettimeofday): Warn if gnulib module is not
8141         in use.
8142
8143         closein-tests: silence compiler warning
8144         * tests/test-closein.c (main): Ignore fread result.
8145         * modules/closein-tests (Depends-on): Add ignore-value.
8146
8147         tests: silence warning about system return
8148         * tests/test-areadlink-with-size.c (main): Ignore system result.
8149         * tests/test-areadlink.c (main): Likewise.
8150         * tests/test-areadlinkat-with-size.c (main): Likewise.
8151         * tests/test-areadlinkat.c (main): Likewise.
8152         * tests/test-canonicalize-lgpl.c (main): Likewise.
8153         * tests/test-canonicalize.c (main): Likewise.
8154         * tests/test-chown.c (main): Likewise.
8155         * tests/test-fchownat.c (main): Likewise.
8156         * tests/test-fdutimensat.c (main): Likewise.
8157         * tests/test-fstatat.c (main): Likewise.
8158         * tests/test-futimens.c (main): Likewise.
8159         * tests/test-lchown.c (main): Likewise.
8160         * tests/test-link.c (main): Likewise.
8161         * tests/test-linkat.c (main): Likewise.
8162         * tests/test-lstat.c (main): Likewise.
8163         * tests/test-mkdir.c (main): Likewise.
8164         * tests/test-mkdirat.c (main): Likewise.
8165         * tests/test-mkfifo.c (main): Likewise.
8166         * tests/test-mkfifoat.c (main): Likewise.
8167         * tests/test-mknod.c (main): Likewise.
8168         * tests/test-readlink.c (main): Likewise.
8169         * tests/test-remove.c (main): Likewise.
8170         * tests/test-rename.c (main): Likewise.
8171         * tests/test-renameat.c (main): Likewise.
8172         * tests/test-rmdir.c (main): Likewise.
8173         * tests/test-symlink.c (main): Likewise.
8174         * tests/test-symlinkat.c (main): Likewise.
8175         * tests/test-unlink.c (main): Likewise.
8176         * tests/test-unlinkat.c (main): Likewise.
8177         * tests/test-utimens.c (main): Likewise.
8178         * tests/test-utimensat.c (main): Likewise.
8179         * modules/areadlink-tests (Depends-on): Add ignore-value.
8180         * modules/areadlink-with-size-tests (Depends-on): Likewise.
8181         * modules/areadlinkat-tests (Depends-on): Likewise.
8182         * modules/areadlinkat-with-size-tests (Depends-on): Likewise.
8183         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
8184         * modules/canonicalize-tests (Depends-on): Likewise.
8185         * modules/chown-tests (Depends-on): Likewise.
8186         * modules/fdutimensat-tests (Depends-on): Likewise.
8187         * modules/futimens-tests (Depends-on): Likewise.
8188         * modules/lchown-tests (Depends-on): Likewise.
8189         * modules/link-tests (Depends-on): Likewise.
8190         * modules/linkat-tests (Depends-on): Likewise.
8191         * modules/lstat-tests (Depends-on): Likewise.
8192         * modules/mkdir-tests (Depends-on): Likewise.
8193         * modules/mkfifo-tests (Depends-on): Likewise.
8194         * modules/mkfifoat-tests (Depends-on): Likewise.
8195         * modules/mknod-tests (Depends-on): Likewise.
8196         * modules/openat-tests (Depends-on): Likewise.
8197         * modules/readlink-tests (Depends-on): Likewise.
8198         * modules/remove-tests (Depends-on): Likewise.
8199         * modules/rename-tests (Depends-on): Likewise.
8200         * modules/renameat-tests (Depends-on): Likewise.
8201         * modules/rmdir-tests (Depends-on): Likewise.
8202         * modules/symlink-tests (Depends-on): Likewise.
8203         * modules/symlinkat-tests (Depends-on): Likewise.
8204         * modules/unlink-tests (Depends-on): Likewise.
8205         * modules/utimens-tests (Depends-on): Likewise.
8206         * modules/utimensat-tests (Depends-on): Likewise.
8207
8208 2010-01-31  Bruno Haible  <bruno@clisp.org>
8209
8210         Perform the same test for many <math.h> functions.
8211         * m4/mathfunc.m4 (gl_COMMON_DOUBLE_MATHFUNC,
8212         gl_COMMON_DOUBLE_MATHFUNC_TEST): New macros.
8213         * m4/sqrt.m4 (gl_FUNC_SQRT): Invoke gl_COMMON_DOUBLE_MATHFUNC instead
8214         of gl_MATHFUNC.
8215         * modules/acos (configure.ac): Likewise.
8216         * modules/asin (configure.ac): Likewise.
8217         * modules/atan (configure.ac): Likewise.
8218         * modules/atan2 (configure.ac): Likewise.
8219         * modules/cbrt (configure.ac): Likewise.
8220         * modules/copysign (configure.ac): Likewise.
8221         * modules/cos (configure.ac): Likewise.
8222         * modules/cosh (configure.ac): Likewise.
8223         * modules/erf (configure.ac): Likewise.
8224         * modules/erfc (configure.ac): Likewise.
8225         * modules/exp (configure.ac): Likewise.
8226         * modules/fmod (configure.ac): Likewise.
8227         * modules/hypot (configure.ac): Likewise.
8228         * modules/j0 (configure.ac): Likewise.
8229         * modules/j1 (configure.ac): Likewise.
8230         * modules/jn (configure.ac): Likewise.
8231         * modules/lgamma (configure.ac): Likewise.
8232         * modules/log (configure.ac): Likewise.
8233         * modules/log10 (configure.ac): Likewise.
8234         * modules/log1p (configure.ac): Likewise.
8235         * modules/pow (configure.ac): Likewise.
8236         * modules/remainder (configure.ac): Likewise.
8237         * modules/sin (configure.ac): Likewise.
8238         * modules/sinh (configure.ac): Likewise.
8239         * modules/tan (configure.ac): Likewise.
8240         * modules/tanh (configure.ac): Likewise.
8241         * modules/y0 (configure.ac): Likewise.
8242         * modules/y1 (configure.ac): Likewise.
8243         * modules/yn (configure.ac): Likewise.
8244         Suggested by Paolo Bonzini.
8245
8246 2010-01-31  Bruno Haible  <bruno@clisp.org>
8247
8248         * m4/getline.m4 (gl_FUNC_GETLINE): Add comment about REPLACE_GETLINE.
8249
8250 2010-01-31  Bruno Haible  <bruno@clisp.org>
8251
8252         Work around getdelim() bug on FreeBSD 8.0.
8253         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Test whether getdelim supports an
8254         initially NULL line. Set REPLACE_GETDELIM if getdelim exists but does
8255         not work.
8256         * lib/stdio.in.h (getdelim): Define as an alias if REPLACE_GETDELIM
8257         is 1.
8258         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize REPLACE_GETDELIM.
8259         * modules/stdio (Makefile.am): Also substitute REPLACE_GETDELIM.
8260         * tests/test-getdelim.c (main): Also test result for a NULL buffer and
8261         a non-zero size.
8262         * doc/posix-functions/getdelim.texi: Mention the FreeBSD bug.
8263
8264 2010-01-31  Bruno Haible  <bruno@clisp.org>
8265
8266         Work around getline() bug on FreeBSD 8.0.
8267         * m4/getline.m4 (gl_FUNC_GETLINE): Also test result for a NULL buffer
8268         and a non-zero size.
8269         * tests/test-getline.c (main): Likewise.
8270         * doc/posix-functions/getline.texi: Mention the FreeBSD bug.
8271         Reported by Dennis <noordsij@cs.helsinki.fi> via Eric Blake.
8272
8273 2010-01-28  Eric Blake  <ebb9@byu.net>
8274
8275         regex: fix build failure
8276         * lib/regex_internal.h (__GNUC_PREREQ): Define for non-glibc
8277         platforms.
8278
8279 2010-01-28  Jim Meyering  <meyering@redhat.com>
8280
8281         regex: do not ignore memory allocation failure
8282         * lib/regex_internal.c (create_cd_newstate): Detect
8283         re_node_set_init_copy failure.   Extracted from glibc commit
8284         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
8285
8286         regex: sync more white-space changes from libc
8287         * lib/regex_internal.c: White-space only changes.
8288         * lib/regexec.c: Likewise.
8289
8290         regex: add many uses of __attribute_warn_unused_result__
8291         * lib/regex_internal.c: Use __attribute_warn_unused_result__.
8292         * lib/regexec.c: Likewise.
8293         Extracted from a messy glibc commit.
8294
8295         regcomp.c: spelling and merge-artifact from glibc
8296         * lib/regcomp.c: Merge remainder of glibc's
8297         2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
8298
8299         regcomp.c: sync white-space changes from glibc
8300         * lib/regcomp.c: Merge to accommodate white space
8301         changes from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c.
8302
8303         regcomp.c: do not ignore internal return values
8304         * lib/regcomp.c: Do not ignore internal return values.
8305         This is from glibc's 2da42bc06566bc89785e580fa1ac89b4c9f2a63c,
8306         but without its white-space changes and spelling fixes.
8307
8308         regex_internal.h: define __attribute_warn_unused_result__
8309         * lib/regex_internal.h (__attribute_warn_unused_result__): Define.
8310
8311         maint: add a syntax-check rule to check for vulnerable Makefile.in
8312         * top/maint.mk (sc_vulnerable_makefile_CVE-2009-4029): New rule.
8313
8314 2010-01-27  Jim Meyering  <meyering@redhat.com>
8315
8316         ncftpput-ftp: clean up spaces
8317         * build-aux/ncftpput-ftp: Make Copyright line consistent.
8318         Remove trailing blanks.
8319
8320 2010-01-27  Simon Josefsson  <simon@josefsson.org>
8321
8322         * build-aux/git-version-gen: Fix copyright statement.
8323         * build-aux/gnupload: Likewise.
8324         * tests/test-arcfour.c: Likewise.
8325         * tests/test-arctwo.c: Likewise.
8326         * tests/test-count-one-bits.c: Likewise.
8327         * tests/test-crc.c: Likewise.
8328         * tests/test-des.c: Likewise.
8329         * tests/test-gc-arcfour.c: Likewise.
8330         * tests/test-gc-arctwo.c: Likewise.
8331         * tests/test-gc-des.c: Likewise.
8332         * tests/test-gc-hmac-md5.c: Likewise.
8333         * tests/test-gc-hmac-sha1.c: Likewise.
8334         * tests/test-gc-md2.c: Likewise.
8335         * tests/test-gc-md4.c: Likewise.
8336         * tests/test-gc-md5.c: Likewise.
8337         * tests/test-gc-pbkdf2-sha1.c: Likewise.
8338         * tests/test-gc-rijndael.c: Likewise.
8339         * tests/test-gc-sha1.c: Likewise.
8340         * tests/test-gc.c: Likewise.
8341         * tests/test-gethostname.c: Likewise.
8342         * tests/test-gettimeofday.c: Likewise.
8343         * tests/test-hash.c: Likewise.
8344         * tests/test-hmac-md5.c: Likewise.
8345         * tests/test-hmac-sha1.c: Likewise.
8346         * tests/test-md2.c: Likewise.
8347         * tests/test-md4.c: Likewise.
8348         * tests/test-md5.c: Likewise.
8349         * tests/test-memchr.c: Likewise.
8350         * tests/test-memchr2.c: Likewise.
8351         * tests/test-memcmp.c: Likewise.
8352         * tests/test-memmem.c: Likewise.
8353         * tests/test-memrchr.c: Likewise.
8354         * tests/test-rawmemchr.c: Likewise.
8355         * tests/test-read-file.c: Likewise.
8356         * tests/test-rijndael.c: Likewise.
8357         * tests/test-sockets.c: Likewise.
8358         * tests/test-strchrnul.c: Likewise.
8359         * tests/test-strstr.c: Likewise.
8360         * tests/test-strtod.c: Likewise.
8361         * build-aux/ncftpput-ftp: Likewise.
8362
8363 2010-01-26  Eric Blake  <ebb9@byu.net>
8364
8365         ignore-value: update recommended header name
8366         * modules/ignore-value (Include): Only use <> for headers that
8367         exist in glibc.
8368
8369 2010-01-26  Jim Meyering  <meyering@redhat.com>
8370
8371         test-userspec.c: avoid compiler warnings
8372         * tests/test-userspec.c (main): Avoid shadowing ("uid"),
8373         and "initialization discards qualifiers..." warnings.
8374         Put the first "uid" in its own scope, and make char* members "const".
8375
8376 2010-01-25  Bruno Haible  <bruno@clisp.org>
8377
8378         gnulib-tool: Make warning diagnostics consistent.
8379         * gnulib-tool (func_warning): New function.
8380         Use it everywhere where gnulib-tool produces output to stderr and it is
8381         not a fatal error.
8382
8383 2010-01-25  Bruno Haible  <bruno@clisp.org>
8384
8385         Fix test dependencies.
8386         * modules/xstrtol-tests (Depends-on): Add inttypes.
8387         * modules/xstrtoll-tests (Depends-on): Likewise. Remove xstrtoll.
8388
8389 2010-01-25 Pádraig Brady <P@draigBrady.com>
8390
8391         syntax-check: detect incorrect boolean macro values in config.h
8392         * modules/maintainer-makefile (configure.ac): Parameterize the location
8393         of config.h which will be available to makefiles as $(CONFIG_INCLUDE).
8394         The logic is from Eric Blake and the location indicated by Jim Meyering.
8395         Note the more natural CONFIG_HEADER name is prohibited by automake
8396         for backwards compatibility reasons.
8397         * top/maint.mk (sc_Wundef_boolean): New rule.
8398
8399 2010-01-25  Jim Meyering  <meyering@redhat.com>
8400
8401         bootstrap: detect MacOS 10.6's shasum, too
8402         * build-aux/bootstrap: Also recognize MacOS 10.6's shasum.
8403         Suggested by Thomas Treichl <Thomas.Treichl@gmx.net>.
8404
8405 2010-01-23  Jim Meyering  <meyering@redhat.com>
8406
8407         xstrtoll: new module
8408         * modules/xstrtoll: New file.
8409         * MODULES.html.sh (Numeric conversion functions): Add xstrtoll.
8410         * lib/xstrtol.h [HAVE_LONG_LONG_INT]: Declare xstrtoll and xstrtoull.
8411         * lib/xstrtoll.c, lib/xstrtoull.c: New files.
8412         ./configure fails if you use this module and lack "long long".
8413         * modules/xstrtoll-tests: New module.
8414         * tests/test-xstrtoll.c, tests/test-xstrtoull.c: New files.
8415         * tests/test-xstrtoll.sh: Like test-xstrtol.c, but use the
8416         new init.sh-based test framework.
8417
8418 2010-01-24  Bruno Haible  <bruno@clisp.org>
8419
8420         Tests for module 'yn'.
8421         * modules/yn-tests: New file.
8422         * tests/test-yn.c: New file.
8423
8424         Tests for module 'y1'.
8425         * modules/y1-tests: New file.
8426         * tests/test-y1.c: New file.
8427
8428         Tests for module 'y0'.
8429         * modules/y0-tests: New file.
8430         * tests/test-y0.c: New file.
8431
8432         Tests for module 'tanh'.
8433         * modules/tanh-tests: New file.
8434         * tests/test-tanh.c: New file.
8435
8436         Tests for module 'tan'.
8437         * modules/tan-tests: New file.
8438         * tests/test-tan.c: New file.
8439
8440         Tests for module 'sqrt'.
8441         * modules/sqrt-tests: New file.
8442         * tests/test-sqrt.c: New file.
8443
8444         Tests for module 'sinh'.
8445         * modules/sinh-tests: New file.
8446         * tests/test-sinh.c: New file.
8447
8448         Tests for module 'sin'.
8449         * modules/sin-tests: New file.
8450         * tests/test-sin.c: New file.
8451
8452         Tests for module 'rint'.
8453         * modules/rint-tests: New file.
8454         * tests/test-rint.c: New file.
8455
8456         Tests for module 'remainder'.
8457         * modules/remainder-tests: New file.
8458         * tests/test-remainder.c: New file.
8459
8460         Tests for module 'pow'.
8461         * modules/pow-tests: New file.
8462         * tests/test-pow.c: New file.
8463
8464         Tests for module 'nextafter'.
8465         * modules/nextafter-tests: New file.
8466         * tests/test-nextafter.c: New file.
8467
8468         Tests for module 'modf'.
8469         * modules/modf-tests: New file.
8470         * tests/test-modf.c: New file.
8471
8472         Tests for module 'logb'.
8473         * modules/logb-tests: New file.
8474         * tests/test-logb.c: New file.
8475
8476         Tests for module 'log1p'.
8477         * modules/log1p-tests: New file.
8478         * tests/test-log1p.c: New file.
8479
8480         Tests for module 'log10'.
8481         * modules/log10-tests: New file.
8482         * tests/test-log10.c: New file.
8483
8484         Tests for module 'log'.
8485         * modules/log-tests: New file.
8486         * tests/test-log.c: New file.
8487
8488         Tests for module 'lgamma'.
8489         * modules/lgamma-tests: New file.
8490         * tests/test-lgamma.c: New file.
8491
8492         Tests for module 'ldexp'.
8493         * modules/ldexp-tests: New file.
8494         * tests/test-ldexp.c: New file.
8495
8496         Tests for module 'jn'.
8497         * modules/jn-tests: New file.
8498         * tests/test-jn.c: New file.
8499
8500         Tests for module 'j1'.
8501         * modules/j1-tests: New file.
8502         * tests/test-j1.c: New file.
8503
8504         Tests for module 'j0'.
8505         * modules/j0-tests: New file.
8506         * tests/test-j0.c: New file.
8507
8508         Tests for module 'hypot'.
8509         * modules/hypot-tests: New file.
8510         * tests/test-hypot.c: New file.
8511
8512         Tests for module 'fmod'.
8513         * modules/fmod-tests: New file.
8514         * tests/test-fmod.c: New file.
8515
8516         Tests for module 'fabs'.
8517         * modules/fabs-tests: New file.
8518         * tests/test-fabs.c: New file.
8519
8520         Tests for module 'exp'.
8521         * modules/exp-tests: New file.
8522         * tests/test-exp.c: New file.
8523
8524         Tests for module 'erfc'.
8525         * modules/erfc-tests: New file.
8526         * tests/test-erfc.c: New file.
8527
8528         Tests for module 'erf'.
8529         * modules/erf-tests: New file.
8530         * tests/test-erf.c: New file.
8531
8532         Tests for module 'cosh'.
8533         * modules/cosh-tests: New file.
8534         * tests/test-cosh.c: New file.
8535
8536         Tests for module 'cos'.
8537         * modules/cos-tests: New file.
8538         * tests/test-cos.c: New file.
8539
8540         Tests for module 'copysign'.
8541         * modules/copysign-tests: New file.
8542         * tests/test-copysign.c: New file.
8543
8544         Tests for module 'cbrt'.
8545         * modules/cbrt-tests: New file.
8546         * tests/test-cbrt.c: New file.
8547
8548         Tests for module 'atan2'.
8549         * modules/atan2-tests: New file.
8550         * tests/test-atan2.c: New file.
8551
8552         Tests for module 'atan'.
8553         * modules/atan-tests: New file.
8554         * tests/test-atan.c: New file.
8555
8556         Tests for module 'asin'.
8557         * modules/asin-tests: New file.
8558         * tests/test-asin.c: New file.
8559
8560         Tests for module 'acos'.
8561         * modules/acos-tests: New file.
8562         * tests/test-acos.c: New file.
8563
8564 2010-01-24  Bruno Haible  <bruno@clisp.org>
8565
8566         Fix tests for common <math.h> functions.
8567         * m4/mathfunc.m4 (gl_MATHFUNC): Take two additional parameters. Use a
8568         code snippet that references the function pointer, rather than merely
8569         calling the function. Substitute the FUNC_LIBM variable.
8570         * m4/sqrt.m4 (gl_FUNC_SQRT): Update gl_MATHFUNC invocation.
8571         * modules/acos (configure.ac): Likewise.
8572         * modules/asin (configure.ac): Likewise.
8573         * modules/atan (configure.ac): Likewise.
8574         * modules/atan2 (configure.ac): Likewise.
8575         * modules/cbrt (configure.ac): Likewise.
8576         * modules/copysign (configure.ac): Likewise.
8577         * modules/cos (configure.ac): Likewise.
8578         * modules/cosh (configure.ac): Likewise.
8579         * modules/erf (configure.ac): Likewise.
8580         * modules/erfc (configure.ac): Likewise.
8581         * modules/exp (configure.ac): Likewise.
8582         * modules/fabs (configure.ac): Likewise.
8583         * modules/fmod (configure.ac): Likewise.
8584         * modules/hypot (configure.ac): Likewise.
8585         * modules/j0 (configure.ac): Likewise.
8586         * modules/j1 (configure.ac): Likewise.
8587         * modules/jn (configure.ac): Likewise.
8588         * modules/ldexp (configure.ac): Likewise.
8589         * modules/lgamma (configure.ac): Likewise.
8590         * modules/log (configure.ac): Likewise.
8591         * modules/log10 (configure.ac): Likewise.
8592         * modules/log1p (configure.ac): Likewise.
8593         * modules/logb (configure.ac): Likewise.
8594         * modules/modf (configure.ac): Likewise.
8595         * modules/nextafter (configure.ac): Likewise.
8596         * modules/pow (configure.ac): Likewise.
8597         * modules/remainder (configure.ac): Likewise.
8598         * modules/rint (configure.ac): Likewise.
8599         * modules/sin (configure.ac): Likewise.
8600         * modules/sinh (configure.ac): Likewise.
8601         * modules/tan (configure.ac): Likewise.
8602         * modules/tanh (configure.ac): Likewise.
8603         * modules/y0 (configure.ac): Likewise.
8604         * modules/y1 (configure.ac): Likewise.
8605         * modules/yn (configure.ac): Likewise.
8606
8607 2010-01-24  Bruno Haible  <bruno@clisp.org>
8608
8609         Tests: Defeat inlining of math functions by GCC >= 4.3.0.
8610         * tests/test-acosl.c (x): New variable.
8611         (main): Store argument in x and fetch it from x.
8612         * tests/test-asinl.c (x): New variable.
8613         (main): Store argument in x and fetch it from x.
8614         * tests/test-atanl.c (x): New variable.
8615         (main): Store argument in x and fetch it from x.
8616         * tests/test-cosl.c (x): New variable.
8617         (main): Store argument in x and fetch it from x.
8618         * tests/test-expl.c (x): New variable.
8619         (main): Store argument in x and fetch it from x.
8620         * tests/test-logl.c (x): New variable.
8621         (main): Store argument in x and fetch it from x.
8622         * tests/test-sinl.c (x): New variable.
8623         (main): Store argument in x and fetch it from x.
8624         * tests/test-sqrtl.c (x): New variable.
8625         (main): Store argument in x and fetch it from x.
8626         * tests/test-tanl.c (x): New variable.
8627         (main): Store argument in x and fetch it from x.
8628
8629 2010-01-24  Bruno Haible  <bruno@clisp.org>
8630
8631         Provide EXEEXT and srcdir in TESTS_ENVIRONMENT by default.
8632         * gnulib-tool (func_emit_tests_Makefile_am): Add EXEEXT and srcdir
8633         assignments to the initial TESTS_ENVIRONMENT.
8634         * doc/gnulib.texi (Unit test modules): Document it.
8635         * modules/acl-tests (Makefile.am): Drop EXEEXT assignment from
8636         TESTS_ENVIRONMENT.
8637         * modules/btowc-tests (Makefile.am): Likewise.
8638         * modules/c-stack-tests (Makefile.am): Likewise.
8639         * modules/c-strcase-tests (Makefile.am): Likewise.
8640         * modules/copy-file-tests (Makefile.am): Likewise.
8641         * modules/mbmemcasecmp-tests (Makefile.am): Likewise.
8642         * modules/mbmemcasecoll-tests (Makefile.am): Likewise.
8643         * modules/mbrtowc-tests (Makefile.am): Likewise.
8644         * modules/mbscasecmp-tests (Makefile.am): Likewise.
8645         * modules/mbscasestr-tests (Makefile.am): Likewise.
8646         * modules/mbschr-tests (Makefile.am): Likewise.
8647         * modules/mbscspn-tests (Makefile.am): Likewise.
8648         * modules/mbsinit-tests (Makefile.am): Likewise.
8649         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
8650         * modules/mbsnrtowcs-tests (Makefile.am): Likewise.
8651         * modules/mbspbrk-tests (Makefile.am): Likewise.
8652         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
8653         * modules/mbsrchr-tests (Makefile.am): Likewise.
8654         * modules/mbsrtowcs-tests (Makefile.am): Likewise.
8655         * modules/mbsspn-tests (Makefile.am): Likewise.
8656         * modules/mbsstr-tests (Makefile.am): Likewise.
8657         * modules/nl_langinfo-tests (Makefile.am): Likewise.
8658         * modules/unicase/locale-language-tests (Makefile.am): Likewise.
8659         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
8660         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
8661         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
8662         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
8663         * modules/uniwbrk/ulc-wordbreaks-tests (Makefile.am): Likewise.
8664         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
8665         * modules/wcrtomb-tests (Makefile.am): Likewise.
8666         * modules/wcsnrtombs-tests (Makefile.am): Likewise.
8667         * modules/wcsrtombs-tests (Makefile.am): Likewise.
8668         * modules/quotearg-tests (Makefile.am): Drop EXEEXT and srcdir
8669         assignments from TESTS_ENVIRONMENT.
8670         * modules/argp-tests (Makefile.am): Drop TESTS_ENVIRONMENT
8671         augmentation.
8672         * modules/argp-version-etc-tests (Makefile.am): Likewise.
8673         * modules/atexit-tests (Makefile.am): Likewise.
8674         * modules/binary-io-tests (Makefile.am): Likewise.
8675         * modules/closein-tests (Makefile.am): Likewise.
8676         * modules/dprintf-posix-tests (Makefile.am): Likewise.
8677         * modules/exclude-tests (Makefile.am): Likewise.
8678         * modules/fflush-tests (Makefile.am): Likewise.
8679         * modules/fpending-tests (Makefile.am): Likewise.
8680         * modules/fprintf-posix-tests (Makefile.am): Likewise.
8681         * modules/freadahead-tests (Makefile.am): Likewise.
8682         * modules/freadptr-tests (Makefile.am): Likewise.
8683         * modules/freadseek-tests (Makefile.am): Likewise.
8684         * modules/fseek-tests (Makefile.am): Likewise.
8685         * modules/fseeko-tests (Makefile.am): Likewise.
8686         * modules/ftell-tests (Makefile.am): Likewise.
8687         * modules/ftello-tests (Makefile.am): Likewise.
8688         * modules/idpriv-drop-tests (Makefile.am): Likewise.
8689         * modules/idpriv-droptemp-tests (Makefile.am): Likewise.
8690         * modules/lseek-tests (Makefile.am): Likewise.
8691         * modules/parse-duration-tests (Makefile.am): Likewise.
8692         * modules/perror-tests (Makefile.am): Likewise.
8693         * modules/pipe-filter-gi-tests (Makefile.am): Likewise.
8694         * modules/pipe-filter-ii-tests (Makefile.am): Likewise.
8695         * modules/pipe-tests (Makefile.am): Likewise.
8696         * modules/pread-tests (Makefile.am): Likewise.
8697         * modules/printf-posix-tests (Makefile.am): Likewise.
8698         * modules/select-tests (Makefile.am): Likewise.
8699         * modules/sigpipe-tests (Makefile.am): Likewise.
8700         * modules/tsearch-tests (Makefile.am): Likewise.
8701         * modules/unicase/ulc-casecmp-tests (Makefile.am): Likewise.
8702         * modules/unicase/ulc-casecoll-tests (Makefile.am): Likewise.
8703         * modules/uniname/uniname-tests (Makefile.am): Likewise.
8704         * modules/uniwidth/width-tests (Makefile.am): Likewise.
8705         * modules/vdprintf-posix-tests (Makefile.am): Likewise.
8706         * modules/version-etc-tests (Makefile.am): Likewise.
8707         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
8708         * modules/vprintf-posix-tests (Makefile.am): Likewise.
8709         * modules/xalloc-die-tests (Makefile.am): Likewise.
8710         * modules/xprintf-posix-tests (Makefile.am): Likewise.
8711         * modules/xstrtoimax-tests (Makefile.am): Likewise.
8712         * modules/xstrtol-tests (Makefile.am): Likewise.
8713         * modules/xstrtoumax-tests (Makefile.am): Likewise.
8714         * modules/yesno-tests (Makefile.am): Likewise.
8715         Suggested by Jim Meyering.
8716
8717 2010-01-24  Bruno Haible  <bruno@clisp.org>
8718
8719         More documentation.
8720         * doc/gnulib.texi (Writing modules): New chapter.
8721         (Miscellaneous Notes): Move sections "Comments" and "Header files" to
8722         the new chapter.
8723
8724 2010-01-24  Jim Meyering  <meyering@redhat.com>
8725
8726         maint.mk: do not prepend "./" after filtering
8727         * top/maint.mk (_prepend_srcdir_prefix): New variable
8728         (VC_LIST_EXCEPT): Use it to avoid prepending (post-filter)
8729         "./" when $(srcdir) is ".".
8730
8731         define STREQ(a,b) consistently, removing useless parentheses
8732         #define STREQ(a, b) (strcmp ((a), (b)) == 0) is over-parenthesized,
8733         since the only risk is that "a" or "b" contains an unparenthesized
8734         comma, but if either did that, STREQ would have 3 or more arguments.
8735         Hence, #define STREQ(a, b) (strcmp (a, b) == 0) is better.
8736         * lib/fts.c (STREQ): Remove unnecessary parentheses.
8737         * lib/hash-triple.c (STREQ): Likewise.
8738         * tests/test-argv-iter.c (STREQ): Use a and b, not s1 and s2.
8739         * lib/getugroups.c (STREQ): Likewise.
8740
8741 2010-01-23  Jim Meyering  <meyering@redhat.com>
8742
8743         maint.mk: fix syntax-check in a non-srcdir build directory
8744         * top/maint.mk (_dot_escaped_srcdir): Remove erroneous backslash,
8745         introduced in my 2010-01-21 commit, a6da6c45.  Reported by Eric Blake.
8746
8747 2010-01-22  Jim Meyering  <meyering@redhat.com>
8748
8749         userspec: add unit tests
8750         * tests/test-userspec.c: New file.
8751         * modules/userspec-tests: Likewise.
8752
8753 2010-01-21  Jim Meyering  <meyering@redhat.com>
8754
8755         maint.mk: handle source file names containing "." robustly
8756         * top/maint.mk (_dot_escaped_srcdir): Define.
8757         (VC_LIST): Use it in LHS of sed substitution.
8758
8759 2010-01-21  Jiri Denemark  <jdenemar@redhat.com>
8760
8761         maint.mk: fix VC_LIST_EXCEPT for srcdir != builddir
8762         * top/maint.mk (VC_LIST_EXCEPT): Preprocess the output of
8763         $(VC_LIST) to remove a prefix of '$(srcdir)/', so that it works
8764         from a non-srcdir build.
8765
8766 2010-01-20  Eric Blake  <ebb9@byu.net>
8767
8768         warn-on-use: use instead of link-warning
8769         * modules/stdio (Depends-on, Makefile.am): Drop link-warning.
8770         * modules/unistd (Depends-on, Makefile.am): Likewise.
8771         * modules/arpa_inet (Depends-on): Replace link-warning with
8772         warn-on-use.
8773         (Makefile.am): Update rules accordingly.
8774         * modules/ctype (Depends-on, Makefile.am): Likewise.
8775         * modules/dirent (Depends-on, Makefile.am): Likewise.
8776         * modules/fcntl-h (Depends-on, Makefile.am): Likewise.
8777         * modules/inttypes (Depends-on, Makefile.am): Likewise.
8778         * modules/langinfo (Depends-on, Makefile.am): Likewise.
8779         * modules/locale (Depends-on, Makefile.am): Likewise.
8780         * modules/math (Depends-on, Makefile.am): Likewise.
8781         * modules/search (Depends-on, Makefile.am): Likewise.
8782         * modules/signal (Depends-on, Makefile.am): Likewise.
8783         * modules/spawn (Depends-on, Makefile.am): Likewise.
8784         * modules/stdlib (Depends-on, Makefile.am): Likewise.
8785         * modules/string (Depends-on, Makefile.am): Likewise.
8786         * modules/strings (Depends-on, Makefile.am): Likewise.
8787         * modules/sys_file (Depends-on, Makefile.am): Likewise.
8788         * modules/sys_ioctl (Depends-on, Makefile.am): Likewise.
8789         * modules/sys_select (Depends-on, Makefile.am): Likewise.
8790         * modules/sys_socket (Depends-on, Makefile.am): Likewise.
8791         * modules/sys_stat (Depends-on, Makefile.am): Likewise.
8792         * modules/sys_times (Depends-on, Makefile.am): Likewise.
8793         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
8794         * modules/wchar (Depends-on, Makefile.am): Likewise.
8795         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Check which functions
8796         should be poisoned.
8797         * m4/ctype.m4 (gl_CTYPE_H): Likewise.
8798         * m4/dirent_h.m4 (gl_DIRENT_H): Likewise.
8799         * m4/fcntl_h.m4 (gl_FCNTL_H): Likewise.
8800         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
8801         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
8802         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
8803         * m4/math_h.m4 (gl_MATH_H): Likewise.
8804         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
8805         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
8806         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
8807         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
8808         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
8809         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
8810         * m4/strings_h.m4 (gl_HEADER_STRINGS_H_BODY): Likewise.
8811         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H_DEFAULTS): Likewise.
8812         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Likewise.
8813         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
8814         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
8815         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
8816         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
8817         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H): Likewise.
8818         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
8819         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
8820         * lib/arpa_inet.in.h: Use _GL_WARN_ON_USE instead of
8821         GL_LINK_WARNING.
8822         * lib/ctype.in.h: Likewise.
8823         * lib/dirent.in.h: Likewise.
8824         * lib/fcntl.in.h: Likewise.
8825         * lib/inttypes.in.h: Likewise.
8826         * lib/langinfo.in.h: Likewise.
8827         * lib/locale.in.h: Likewise.
8828         * lib/math.in.h: Likewise.
8829         * lib/search.in.h: Likewise.
8830         * lib/signal.in.h: Likewise.
8831         * lib/spawn.in.h: Likewise.
8832         * lib/stdio.in.h: Likewise.
8833         * lib/stdlib.in.h: Likewise.
8834         * lib/string.in.h: Likewise.
8835         * lib/strings.in.h: Likewise.
8836         * lib/sys_file.in.h: Likewise.
8837         * lib/sys_ioctl.in.h: Likewise.
8838         * lib/sys_select.in.h: Likewise.
8839         * lib/sys_socket.in.h: Likewise.
8840         * lib/sys_stat.in.h: Likewise.
8841         * lib/sys_times.in.h: Likewise.
8842         * lib/sys_utsname.in.h: Likewise.
8843         * lib/unistd.in.h: Likewise.
8844         * lib/wchar.in.h: Likewise.
8845
8846 2010-01-20  Bruno Haible  <bruno@clisp.org>
8847
8848         Avoid duplicate -lm.
8849         * m4/isnan.m4 (gl_ISNAN): Avoid duplicate -lm in $ISNAN_LIBM.
8850         * m4/round.m4 (gl_FUNC_ROUND): Avoid duplicate -lm in $ROUND_LIBM.
8851         * m4/roundf.m4 (gl_FUNC_ROUNDF): Avoid duplicate -lm in $ROUNDF_LIBM.
8852         * m4/roundl.m4 (gl_FUNC_ROUNDL): Avoid duplicate -lm in $ROUNDL_LIBM.
8853         * m4/acosl.m4 (gl_FUNC_ACOSL): Avoid duplicate -lm in $ACOSL_LIBM.
8854         * m4/cosl.m4 (gl_FUNC_COSL): Avoid duplicate -lm in $COSL_LIBM.
8855         * m4/logl.m4 (gl_FUNC_LOGL): Avoid duplicate -lm in $LOGL_LIBM.
8856         * m4/sinl.m4 (gl_FUNC_SINL): Avoid duplicate -lm in $SINL_LIBM.
8857         * m4/sqrtl.m4 (gl_FUNC_SQRTL): Avoid duplicate -lm in $SQRTL_LIBM.
8858         * m4/tanl.m4 (gl_FUNC_TANL): Avoid duplicate -lm in $TANL_LIBM.
8859         * m4/asinl.m4 (gl_FUNC_ASINL): Same change, for consistency.
8860         * m4/atanl.m4 (gl_FUNC_ATANL): Likewise.
8861         Reported by Paolo Bonzini.
8862
8863 2010-01-19  Bruno Haible  <bruno@clisp.org>
8864
8865         langinfo, nl_langinfo: Relicense under LGPLv2+.
8866         * modules/langinfo (License): Change to LGPLv2+.
8867         * modules/nl_langinfo (License): Likewise.
8868         Patch by David Lutterkort <lutter@redhat.com>.
8869
8870 2010-01-19  Bruno Haible  <bruno@clisp.org>
8871
8872         Avoid compilation error with cc on OSF/1 5.1.
8873         * lib/fcntl.in.h: Include <unistd.h> after the #include_next <fcntl.h>
8874         statement, not before.
8875         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8876
8877 2010-01-18  Bruno Haible  <bruno@clisp.org>
8878
8879         Avoid a link error due to the __printf__ symbol.
8880         * lib/stdio.in.h (__attribute__): Define to empty also for gcc 2.5.x
8881         and 2.6.x.
8882         (__format__, __printf__): Remove definitions.
8883         * lib/argp-fmtstream.h: Likewise.
8884         * lib/argp.h: Likewise.
8885         * lib/error.h: Likewise.
8886         * lib/vasnprintf.h: Likewise.
8887         * lib/xprintf.h: Likewise.
8888         * lib/xvasprintf.h: Likewise.
8889         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
8890
8891 2010-01-18  Bruno Haible  <bruno@clisp.org>
8892
8893         Tests for module 'tanl'.
8894         * modules/tanl-tests: New file.
8895         * tests/test-tanl.c: New file.
8896
8897         Tests for module 'sqrtl'.
8898         * modules/sqrtl-tests: New file.
8899         * tests/test-sqrtl.c: New file.
8900
8901         Tests for module 'sinl'.
8902         * modules/sinl-tests: New file.
8903         * tests/test-sinl.c: New file.
8904
8905         Tests for module 'logl'.
8906         * modules/logl-tests: New file.
8907         * tests/test-logl.c: New file.
8908
8909         Tests for module 'expl'.
8910         * modules/expl-tests: New file.
8911         * tests/test-expl.c: New file.
8912
8913         Tests for module 'cosl'.
8914         * modules/cosl-tests: New file.
8915         * tests/test-cosl.c: New file.
8916
8917         Tests for module 'atanl'.
8918         * modules/atanl-tests: New file.
8919         * tests/test-atanl.c: New file.
8920
8921         Tests for module 'asinl'.
8922         * modules/asinl-tests: New file.
8923         * tests/test-asinl.c: New file.
8924
8925         Tests for module 'acosl'.
8926         * modules/acosl-tests: New file.
8927         * tests/test-acosl.c: New file.
8928
8929         New modules acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
8930         * lib/math.in.h (acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl,
8931         tanl): Use the standard gnulib idiom.
8932         * lib/cosl.c: Don't include trigl.c and sincosl.c.
8933         * lib/sinl.c: Likewise.
8934         * lib/tanl.c: Don't include trigl.c.
8935         (kernel_tanl): Make static.
8936         * lib/sincosl.c: Include trigl.h first.
8937         * lib/trigl.c: Likewise.
8938         * m4/acosl.m4: New file.
8939         * m4/asinl.m4: New file.
8940         * m4/atanl.m4: New file.
8941         * m4/cosl.m4: New file.
8942         * m4/expl.m4: New file.
8943         * m4/logl.m4: New file.
8944         * m4/sinl.m4: New file.
8945         * m4/sqrtl.m4: New file.
8946         * m4/tanl.m4: New file.
8947         * m4/mathl.m4: Remove file.
8948         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_* and HAVE_*
8949         variables for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl.
8950         Don't initialize GNULIB_MATHL.
8951         * modules/acosl: New file.
8952         * modules/asinl: New file.
8953         * modules/atanl: New file.
8954         * modules/cosl: New file.
8955         * modules/expl: New file.
8956         * modules/logl: New file.
8957         * modules/sinl: New file.
8958         * modules/sqrtl: New file.
8959         * modules/tanl: New file.
8960         * modules/math (Makefile.am): Substitute GNULIB_* and HAVE_* variables
8961         for acosl, asinl, atanl, cosl, expl, logl, sinl, sqrtl, tanl. Don't
8962         substitute GNULIB_MATHL.
8963         * modules/mathl: Rewritten.
8964         * doc/posix-functions/acosl.texi: Mention the 'acosl' module.
8965         * doc/posix-functions/asinl.texi: Mention the 'asinl' module.
8966         * doc/posix-functions/atanl.texi: Mention the 'atanl' module.
8967         * doc/posix-functions/cosl.texi: Mention the 'cosl' module.
8968         * doc/posix-functions/expl.texi: Mention the 'expl' module.
8969         * doc/posix-functions/logl.texi: Mention the 'logl' module.
8970         * doc/posix-functions/sinl.texi: Mention the 'sinl' module.
8971         * doc/posix-functions/sqrtl.texi: Mention the 'sqrtl' module.
8972         * doc/posix-functions/tanl.texi: Mention the 'tanl' module.
8973
8974 2010-01-18  Bruno Haible  <bruno@clisp.org>
8975
8976         sqrt: Make gl_FUNC_SQRT requirable.
8977         * m4/sqrt.m4: New file.
8978         * modules/sqrt (Files): Add it.
8979         (configure.ac): Invoke gl_FUNC_SQRT.
8980
8981 2010-01-18  Bruno Haible  <bruno@clisp.org>
8982
8983         New modules for common <math.h> functions.
8984         * m4/mathfunc.m4: New file.
8985         * modules/acos: New file.
8986         * modules/asin: New file.
8987         * modules/atan: New file.
8988         * modules/atan2: New file.
8989         * modules/cbrt: New file.
8990         * modules/copysign: New file.
8991         * modules/cos: New file.
8992         * modules/cosh: New file.
8993         * modules/erf: New file.
8994         * modules/erfc: New file.
8995         * modules/exp: New file.
8996         * modules/fabs: New file.
8997         * modules/fmod: New file.
8998         * modules/hypot: New file.
8999         * modules/j0: New file.
9000         * modules/j1: New file.
9001         * modules/jn: New file.
9002         * modules/ldexp: New file.
9003         * modules/lgamma: New file.
9004         * modules/log: New file.
9005         * modules/log10: New file.
9006         * modules/log1p: New file.
9007         * modules/logb: New file.
9008         * modules/modf: New file.
9009         * modules/nextafter: New file.
9010         * modules/pow: New file.
9011         * modules/remainder: New file.
9012         * modules/rint: New file.
9013         * modules/sin: New file.
9014         * modules/sinh: New file.
9015         * modules/sqrt: New file.
9016         * modules/tan: New file.
9017         * modules/tanh: New file.
9018         * modules/y0: New file.
9019         * modules/y1: New file.
9020         * modules/yn: New file.
9021         * doc/posix-functions/acos.texi: Mention the 'acos' module.
9022         * doc/posix-functions/asin.texi: Mention the 'asin' module.
9023         * doc/posix-functions/atan.texi: Mention the 'atan' module.
9024         * doc/posix-functions/atan2.texi: Mention the 'atan2' module.
9025         * doc/posix-functions/cbrt.texi: Mention the 'cbrt' module.
9026         * doc/posix-functions/copysign.texi: Mention the 'copysign' module.
9027         * doc/posix-functions/cos.texi: Mention the 'cos' module.
9028         * doc/posix-functions/cosh.texi: Mention the 'cosh' module.
9029         * doc/posix-functions/erf.texi: Mention the 'erf' module.
9030         * doc/posix-functions/erfc.texi: Mention the 'erfc' module.
9031         * doc/posix-functions/exp.texi: Mention the 'exp' module.
9032         * doc/posix-functions/fabs.texi: Mention the 'fabs' module.
9033         * doc/posix-functions/fmod.texi: Mention the 'fmod' module.
9034         * doc/posix-functions/hypot.texi: Mention the 'hypot' module.
9035         * doc/posix-functions/j0.texi: Mention the 'j0' module.
9036         * doc/posix-functions/j1.texi: Mention the 'j1' module.
9037         * doc/posix-functions/jn.texi: Mention the 'jn' module.
9038         * doc/posix-functions/ldexp.texi: Mention the 'ldexp' module.
9039         * doc/posix-functions/lgamma.texi: Mention the 'lgamma' module.
9040         * doc/posix-functions/log.texi: Mention the 'log' module.
9041         * doc/posix-functions/log10.texi: Mention the 'log10' module.
9042         * doc/posix-functions/log1p.texi: Mention the 'log1p' module.
9043         * doc/posix-functions/logb.texi: Mention the 'logb' module.
9044         * doc/posix-functions/modf.texi: Mention the 'modf' module.
9045         * doc/posix-functions/nextafter.texi: Mention the 'nextafter' module.
9046         * doc/posix-functions/pow.texi: Mention the 'pow' module.
9047         * doc/posix-functions/remainder.texi: Mention the 'remainder' module.
9048         * doc/posix-functions/rint.texi: Mention the 'rint' module.
9049         * doc/posix-functions/sin.texi: Mention the 'sin' module.
9050         * doc/posix-functions/sinh.texi: Mention the 'sinh' module.
9051         * doc/posix-functions/sqrt.texi: Mention the 'sqrt' module.
9052         * doc/posix-functions/tan.texi: Mention the 'tan' module.
9053         * doc/posix-functions/tanh.texi: Mention the 'tanh' module.
9054         * doc/posix-functions/y0.texi: Mention the 'y0' module.
9055         * doc/posix-functions/y1.texi: Mention the 'y1' module.
9056         * doc/posix-functions/yn.texi: Mention the 'yn' module.
9057
9058 2010-01-18  Jim Meyering  <meyering@redhat.com>
9059
9060         ignore-value: relax license to LGPLv2+
9061         * modules/ignore-value (License): Relax to LGPLv2+.
9062
9063         getdate: don't leak when TZ contains two or more '"'s
9064         * lib/getdate.y (get_date): Don't leak a copy of TZ for each
9065         double quote in TZ after the first one.
9066
9067         readtokens: do not leak internal token_lengths buffer
9068         * lib/readtokens.c (readtokens): Free the local, lengths,
9069         when the supplied "token_lengths" parameter is NULL.
9070
9071 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9072
9073         Fix a couple of missing LIBTHREAD link failures on AIX.
9074         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add
9075         $(LIBTHREAD).
9076         * modules/strsignal-tests (test_strsignal_LDADD): Likewise.
9077
9078         Link test-poll against INET_PTON_LIB.
9079         * modules/poll-tests (test_poll_LDADD): Add $(INET_PTON_LIB),
9080         for inet_pton on Solaris 10.
9081
9082 2010-01-17  Bruno Haible  <bruno@clisp.org>
9083
9084         unistdio/*-sprintf: Fix typo in module description.
9085         * modules/unistdio/u8-sprintf (Depends-on): Fix typo.
9086         * modules/unistdio/u8-u8-sprintf (Depends-on): Likewise.
9087         * modules/unistdio/u16-sprintf (Depends-on): Likewise.
9088         * modules/unistdio/u16-u16-sprintf (Depends-on): Likewise.
9089         * modules/unistdio/u32-sprintf (Depends-on): Likewise.
9090         * modules/unistdio/u32-u32-sprintf (Depends-on): Likewise.
9091         * modules/unistdio/ulc-sprintf (Depends-on): Likewise.
9092         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9093
9094 2010-01-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9095
9096         gnulib-tool: fix filelist for AIX, HP-UX ksh.
9097         * gnulib-tool (func_filter_filelist): Do not quote possibly-empty
9098         variables in shell case patterns, for AIX and HP-UX ksh.
9099
9100         Split large sed scripts, for HP-UX sed.
9101         * modules/stdio: Split sed scripts around 50 sed commands,
9102         to avoid HP-UX limit of 99 commands, in the near future.
9103         * modules/string: Likewise.
9104         * modules/unistd: Likewise.
9105
9106         gnulib-tool: avoid writing in the current directory.
9107         * gnulib-tool (func_emit_lib_Makefile_am)
9108         (func_emit_tests_Makefile_am): Put temporary files in $tmp,
9109         not in the current directory, so concurrent gnulib-tool
9110         instances do not interfere.
9111
9112 2010-01-16  Jim Meyering  <meyering@redhat.com>
9113
9114         doc: update users.txt
9115         * users.txt: Add grep.
9116         (diffutils, gzip): Update URLs.
9117
9118 2010-01-12  Bruno Haible  <bruno@clisp.org>
9119
9120         posix_spawn: Avoid test failure on Cygwin.
9121         * tests/test-posix_spawn3.c (DATA_FILENAME) [CYGWIN]: Use less risky
9122         characters.
9123         Reported by Simon Josefsson.
9124
9125 2010-01-12  Bruno Haible  <bruno@clisp.org>
9126
9127         * tests/test-cond.c (main): When skipping the test, show the reason.
9128
9129 2010-01-12  Simon Josefsson  <simon@josefsson.org>
9130
9131         * lib/striconv.c (str_cd_iconv): Avoid if before free.
9132
9133 2010-01-12  Simon Josefsson  <simon@josefsson.org>
9134
9135         * top/maint.mk (VC_LIST_EXCEPT): Filter list through
9136         VC_LIST_ALWAYS_EXCLUDE_REGEX.
9137
9138 2010-01-12  Eric Blake  <ebb9@byu.net>
9139
9140         build: guarantee AS_VAR_IF
9141         * m4/warnings.m4 (gl_WARN_ADD): Use autoconf name.
9142         (gl_AS_VAR_IF): Move...
9143         * m4/gnulib-common.m4 (AS_VAR_IF): ...here.
9144         Reported by Simon Josefsson.
9145
9146 2010-01-12  Simon Josefsson  <simon@josefsson.org>
9147
9148         * lib/stdio.in.h: Fix typo.
9149
9150 2010-01-12  Simon Josefsson  <simon@josefsson.org>
9151
9152         * m4/gc.m4: Check if linking to libgcrypt also needs linking to
9153         libgpg-error.
9154
9155 2010-01-12  Simon Josefsson  <simon@josefsson.org>
9156
9157         * tests/test-xalloc-die.sh: Use $EXEEXT.
9158
9159 2010-01-12  Simon Josefsson  <simon@josefsson.org>
9160             Bruno Haible  <bruno@clisp.org>
9161
9162         getlogin, getlogin_r: Avoid test failure.
9163         * tests/test-getlogin.c: Include <stdio.h>.
9164         (main): Skip the test when the function fails because stdin is not a
9165         tty.
9166         * tests/test-getlogin_r.c: Include <stdio.h>.
9167         (main): Skip the test when the function fails because stdin is not a
9168         tty.
9169
9170 2010-01-11  Eric Blake  <ebb9@byu.net>
9171
9172         tests: avoid more large file warnings
9173         * tests/test-fflush.c: Avoid warning about ftell use.
9174         * tests/test-fseek.c: Avoid warning about fseek use.
9175
9176 2010-01-10  Bruno Haible  <bruno@clisp.org>
9177
9178         nproc: Work better on Linux when /proc and /sys are not mounted.
9179         * lib/nproc.c (num_processors): Use num_processors_via_affinity_mask ()
9180         as lower bound when, on glibc/Linux systems,
9181         sysconf (_SC_NPROCESSORS_CONF) returns 1.
9182         Suggested by Pádraig Brady <P@draigbrady.com>.
9183         Reported by Dmitry V. Levin <ldv@altlinux.org>.
9184
9185         nproc: Refactor.
9186         * lib/nproc.c (num_processors_via_affinity_mask): New function,
9187         extracted from num_processors.
9188         (num_processors): Call it.
9189
9190 2010-01-11  Jim Meyering  <meyering@redhat.com>
9191
9192         utimecmp: avoid new warning from upcoming gcc-4.5.0
9193         * lib/utimecmp.c (BILLION): Define using #define rather than an
9194         anonymous enum, to placate upcoming gcc-4.5.0's -Wenum-compare.
9195
9196 2010-01-11  Eric Blake  <ebb9@byu.net>
9197
9198         math: add portability warnings for classification macros
9199         * modules/math (Depends-on): Add warn-on-use.
9200         (Makefile.am): Provide new substitutions.
9201         * m4/math_h.m4 (gl_MATH_H): Require inline.
9202         * lib/math.in.h (_GL_WARN_REAL_FLOATING_DECL)
9203         (_GL_WARN_REAL_FLOATING_IMPL): New helper macros.
9204         (isfinite, isinf, isnan, signbit) [GNULIB_POSIXCHECK]: Use them to
9205         implement warnings.
9206
9207         unistd: warn on use of environ without module
9208         * modules/unistd (Depends-on): Add warn-on-use.
9209         (Makefile.am): Provide new substitutions.
9210         * m4/unistd_h.m4 (gl_UNISTD_H): Check for inline and environ.
9211         * lib/unistd.in.h (environ): Wrap with a warning helper function.
9212
9213         stdio: warn on suspicious uses
9214         * modules/stdio (Depends-on): Add warn-on-use.
9215         (Makefile.am): Provide new substitutions.
9216         * m4/stdio_h.m4 (gl_STDIO_H): Check for inline, ftello, and
9217         fseeko.
9218         * lib/stdio.in.h (gets): Always warn on use.
9219         (fseek, ftell): Adjust when warnings are issued, and honor
9220         _GL_NO_LARGE_FILES as a way to silence the warning.
9221         * tests/test-fpurge.c [!GNULIB_FSEEK]: Use new means to squelch
9222         any warning about large file offsets.
9223         * tests/test-freadable.c [!GNULIB_FSEEK]: Likewise.
9224         * tests/test-freading.c [!GNULIB_FSEEK]: Likewise.
9225         * tests/test-fseeko.c [!GNULIB_FSEEK]: Likewise.
9226         * tests/test-ftell.c [!GNULIB_FSEEK]: Likewise.
9227         * tests/test-ftello.c [!GNULIB_FSEEK]: Likewise.
9228         * tests/test-fwritable.c [!GNULIB_FSEEK]: Likewise.
9229         * tests/test-fwriting.c [!GNULIB_FSEEK]: Likewise.
9230         * tests/test-getopt.c [!GNULIB_FTELL]: Likewise.
9231
9232         warn-on-use: new module
9233         * modules/warn-on-use: New file.
9234         * build-aux/warn-on-use.h: Likewise.
9235         * m4/warn-on-use.m4: Likewise.
9236         * MODULES.html.sh (Support for building): Mention it.
9237
9238 2010-01-10  Bruno Haible  <bruno@clisp.org>
9239
9240         Tests for module 'unistr/u32-strdup'.
9241         * modules/unistr/u32-strdup-tests: New file.
9242         * tests/unistr/test-u32-strdup.c: New file.
9243
9244         Tests for module 'unistr/u16-strdup'.
9245         * modules/unistr/u16-strdup-tests: New file.
9246         * tests/unistr/test-u16-strdup.c: New file.
9247
9248         Tests for module 'unistr/u8-strdup'.
9249         * modules/unistr/u8-strdup-tests: New file.
9250         * tests/unistr/test-u8-strdup.c: New file.
9251         * tests/unistr/test-strdup.h: New file.
9252
9253         Tests for module 'unistr/u32-strncmp'.
9254         * modules/unistr/u32-strncmp-tests: New file.
9255         * tests/unistr/test-u32-strncmp.c: New file.
9256
9257         Tests for module 'unistr/u16-strncmp'.
9258         * modules/unistr/u16-strncmp-tests: New file.
9259         * tests/unistr/test-u16-strncmp.c: New file.
9260
9261         Tests for module 'unistr/u8-strncmp'.
9262         * modules/unistr/u8-strncmp-tests: New file.
9263         * tests/unistr/test-u8-strncmp.c: New file.
9264         * tests/unistr/test-strncmp.h: New file.
9265
9266         Tests for module 'unistr/u32-strcoll'.
9267         * modules/unistr/u32-strcoll-tests: New file.
9268         * tests/unistr/test-u32-strcoll.c: New file.
9269
9270         Tests for module 'unistr/u16-strcoll'.
9271         * modules/unistr/u16-strcoll-tests: New file.
9272         * tests/unistr/test-u16-strcoll.c: New file.
9273
9274         Tests for module 'unistr/u8-strcoll'.
9275         * modules/unistr/u8-strcoll-tests: New file.
9276         * tests/unistr/test-u8-strcoll.c: New file.
9277
9278         Tests for module 'unistr/u32-strcmp'.
9279         * modules/unistr/u32-strcmp-tests: New file.
9280         * tests/unistr/test-u32-strcmp.c: New file.
9281         * tests/unistr/test-u32-strcmp.h: New file.
9282
9283         Tests for module 'unistr/u16-strcmp'.
9284         * modules/unistr/u16-strcmp-tests: New file.
9285         * tests/unistr/test-u16-strcmp.c: New file.
9286         * tests/unistr/test-u16-strcmp.h: New file.
9287
9288         Tests for module 'unistr/u8-strcmp'.
9289         * modules/unistr/u8-strcmp-tests: New file.
9290         * tests/unistr/test-u8-strcmp.c: New file.
9291         * tests/unistr/test-u8-strcmp.h: New file.
9292         * tests/unistr/test-strcmp.h: New file.
9293
9294         Tests for module 'unistr/u32-strncat'.
9295         * modules/unistr/u32-strncat-tests: New file.
9296         * tests/unistr/test-u32-strncat.c: New file.
9297
9298         Tests for module 'unistr/u16-strncat'.
9299         * modules/unistr/u16-strncat-tests: New file.
9300         * tests/unistr/test-u16-strncat.c: New file.
9301
9302         Tests for module 'unistr/u8-strncat'.
9303         * modules/unistr/u8-strncat-tests: New file.
9304         * tests/unistr/test-u8-strncat.c: New file.
9305         * tests/unistr/test-strncat.h: New file.
9306
9307         Tests for module 'unistr/u32-strcat'.
9308         * modules/unistr/u32-strcat-tests: New file.
9309         * tests/unistr/test-u32-strcat.c: New file.
9310
9311         Tests for module 'unistr/u16-strcat'.
9312         * modules/unistr/u16-strcat-tests: New file.
9313         * tests/unistr/test-u16-strcat.c: New file.
9314
9315         Tests for module 'unistr/u8-strcat'.
9316         * modules/unistr/u8-strcat-tests: New file.
9317         * tests/unistr/test-u8-strcat.c: New file.
9318         * tests/unistr/test-strcat.h: New file.
9319
9320         Tests for module 'unistr/u32-stpncpy'.
9321         * modules/unistr/u32-stpncpy-tests: New file.
9322         * tests/unistr/test-u32-stpncpy.c: New file.
9323
9324         Tests for module 'unistr/u16-stpncpy'.
9325         * modules/unistr/u16-stpncpy-tests: New file.
9326         * tests/unistr/test-u16-stpncpy.c: New file.
9327
9328         Tests for module 'unistr/u8-stpncpy'.
9329         * modules/unistr/u8-stpncpy-tests: New file.
9330         * tests/unistr/test-u8-stpncpy.c: New file.
9331         * tests/unistr/test-stpncpy.h: New file.
9332
9333         Tests for module 'unistr/u32-strncpy'.
9334         * modules/unistr/u32-strncpy-tests: New file.
9335         * tests/unistr/test-u32-strncpy.c: New file.
9336
9337         Tests for module 'unistr/u16-strncpy'.
9338         * modules/unistr/u16-strncpy-tests: New file.
9339         * tests/unistr/test-u16-strncpy.c: New file.
9340
9341         Tests for module 'unistr/u8-strncpy'.
9342         * modules/unistr/u8-strncpy-tests: New file.
9343         * tests/unistr/test-u8-strncpy.c: New file.
9344         * tests/unistr/test-strncpy.h: New file.
9345
9346         Tests for module 'unistr/u32-stpcpy'.
9347         * modules/unistr/u32-stpcpy-tests: New file.
9348         * tests/unistr/test-u32-stpcpy.c: New file.
9349
9350         Tests for module 'unistr/u16-stpcpy'.
9351         * modules/unistr/u16-stpcpy-tests: New file.
9352         * tests/unistr/test-u16-stpcpy.c: New file.
9353
9354         Tests for module 'unistr/u8-stpcpy'.
9355         * modules/unistr/u8-stpcpy-tests: New file.
9356         * tests/unistr/test-u8-stpcpy.c: New file.
9357         * tests/unistr/test-stpcpy.h: New file.
9358
9359         Tests for module 'unistr/u32-strcpy'.
9360         * modules/unistr/u32-strcpy-tests: New file.
9361         * tests/unistr/test-u32-strcpy.c: New file.
9362
9363         Tests for module 'unistr/u16-strcpy'.
9364         * modules/unistr/u16-strcpy-tests: New file.
9365         * tests/unistr/test-u16-strcpy.c: New file.
9366
9367         Tests for module 'unistr/u8-strcpy'.
9368         * modules/unistr/u8-strcpy-tests: New file.
9369         * tests/unistr/test-u8-strcpy.c: New file.
9370         * tests/unistr/test-strcpy.h: New file.
9371
9372         Tests for module 'unistr/u32-strnlen'.
9373         * modules/unistr/u32-strnlen-tests: New file.
9374         * tests/unistr/test-u32-strnlen.c: New file.
9375
9376         Tests for module 'unistr/u16-strnlen'.
9377         * modules/unistr/u16-strnlen-tests: New file.
9378         * tests/unistr/test-u16-strnlen.c: New file.
9379
9380         Tests for module 'unistr/u8-strnlen'.
9381         * modules/unistr/u8-strnlen-tests: New file.
9382         * tests/unistr/test-u8-strnlen.c: New file.
9383         * tests/unistr/test-strnlen.h: New file.
9384
9385         Tests for module 'unistr/u32-strlen'.
9386         * modules/unistr/u32-strlen-tests: New file.
9387         * tests/unistr/test-u32-strlen.c: New file.
9388
9389         Tests for module 'unistr/u16-strlen'.
9390         * modules/unistr/u16-strlen-tests: New file.
9391         * tests/unistr/test-u16-strlen.c: New file.
9392
9393         Tests for module 'unistr/u8-strlen'.
9394         * modules/unistr/u8-strlen-tests: New file.
9395         * tests/unistr/test-u8-strlen.c: New file.
9396
9397         Tests for module 'unistr/u32-prev'.
9398         * modules/unistr/u32-prev-tests: New file.
9399         * tests/unistr/test-u32-prev.c: New file.
9400
9401         Tests for module 'unistr/u16-prev'.
9402         * modules/unistr/u16-prev-tests: New file.
9403         * tests/unistr/test-u16-prev.c: New file.
9404
9405         Tests for module 'unistr/u8-prev'.
9406         * modules/unistr/u8-prev-tests: New file.
9407         * tests/unistr/test-u8-prev.c: New file.
9408
9409         Tests for module 'unistr/u32-next'.
9410         * modules/unistr/u32-next-tests: New file.
9411         * tests/unistr/test-u32-next.c: New file.
9412
9413         Tests for module 'unistr/u16-next'.
9414         * modules/unistr/u16-next-tests: New file.
9415         * tests/unistr/test-u16-next.c: New file.
9416
9417         Tests for module 'unistr/u8-next'.
9418         * modules/unistr/u8-next-tests: New file.
9419         * tests/unistr/test-u8-next.c: New file.
9420
9421         Tests for module 'unistr/u32-strmbtouc'.
9422         * modules/unistr/u32-strmbtouc-tests: New file.
9423         * tests/unistr/test-u32-strmbtouc.c: New file.
9424
9425         Tests for module 'unistr/u16-strmbtouc'.
9426         * modules/unistr/u16-strmbtouc-tests: New file.
9427         * tests/unistr/test-u16-strmbtouc.c: New file.
9428
9429         Tests for module 'unistr/u8-strmbtouc'.
9430         * modules/unistr/u8-strmbtouc-tests: New file.
9431         * tests/unistr/test-u8-strmbtouc.c: New file.
9432
9433         Tests for module 'unistr/u32-strmblen'.
9434         * modules/unistr/u32-strmblen-tests: New file.
9435         * tests/unistr/test-u32-strmblen.c: New file.
9436
9437         Tests for module 'unistr/u16-strmblen'.
9438         * modules/unistr/u16-strmblen-tests: New file.
9439         * tests/unistr/test-u16-strmblen.c: New file.
9440
9441         Tests for module 'unistr/u8-strmblen'.
9442         * modules/unistr/u8-strmblen-tests: New file.
9443         * tests/unistr/test-u8-strmblen.c: New file.
9444
9445         Tests for module 'unistr/u32-cpy-alloc'.
9446         * modules/unistr/u32-cpy-alloc-tests: New file.
9447         * tests/unistr/test-u32-cpy-alloc.c: New file.
9448
9449         Tests for module 'unistr/u16-cpy-alloc'.
9450         * modules/unistr/u16-cpy-alloc-tests: New file.
9451         * tests/unistr/test-u16-cpy-alloc.c: New file.
9452
9453         Tests for module 'unistr/u8-cpy-alloc'.
9454         * modules/unistr/u8-cpy-alloc-tests: New file.
9455         * tests/unistr/test-u8-cpy-alloc.c: New file.
9456         * tests/unistr/test-cpy-alloc.h: New file.
9457
9458         Tests for module 'unistr/u32-mbsnlen'.
9459         * modules/unistr/u32-mbsnlen-tests: New file.
9460         * tests/unistr/test-u32-mbsnlen.c: New file.
9461
9462         Tests for module 'unistr/u16-mbsnlen'.
9463         * modules/unistr/u16-mbsnlen-tests: New file.
9464         * tests/unistr/test-u16-mbsnlen.c: New file.
9465
9466         Tests for module 'unistr/u8-mbsnlen'.
9467         * modules/unistr/u8-mbsnlen-tests: New file.
9468         * tests/unistr/test-u8-mbsnlen.c: New file.
9469
9470         Tests for module 'unistr/u32-chr'.
9471         * modules/unistr/u32-chr-tests: New file.
9472         * tests/unistr/test-u32-chr.c: New file.
9473
9474         Tests for module 'unistr/u16-chr'.
9475         * modules/unistr/u16-chr-tests: New file.
9476         * tests/unistr/test-u16-chr.c: New file.
9477
9478         Tests for module 'unistr/u8-chr'.
9479         * modules/unistr/u8-chr-tests: New file.
9480         * tests/unistr/test-u8-chr.c: New file.
9481         * tests/unistr/test-chr.h: New file, based on tests/test-memchr.c.
9482
9483         Tests for module 'unistr/u32-cmp2'.
9484         * modules/unistr/u32-cmp2-tests: New file.
9485         * tests/unistr/test-u32-cmp2.c: New file.
9486
9487         Tests for module 'unistr/u16-cmp2'.
9488         * modules/unistr/u16-cmp2-tests: New file.
9489         * tests/unistr/test-u16-cmp2.c: New file.
9490
9491         Tests for module 'unistr/u8-cmp2'.
9492         * modules/unistr/u8-cmp2-tests: New file.
9493         * tests/unistr/test-u8-cmp2.c: New file.
9494         * tests/unistr/test-cmp2.h: New file, based on tests/unistr/test-cmp.h.
9495
9496         Tests for module 'unistr/u32-cmp'.
9497         * modules/unistr/u32-cmp-tests: New file.
9498         * tests/unistr/test-u32-cmp.c: New file.
9499
9500         Tests for module 'unistr/u16-cmp'.
9501         * modules/unistr/u16-cmp-tests: New file.
9502         * tests/unistr/test-u16-cmp.c: New file.
9503
9504         Tests for module 'unistr/u8-cmp'.
9505         * modules/unistr/u8-cmp-tests: New file.
9506         * tests/unistr/test-u8-cmp.c: New file.
9507         * tests/unistr/test-cmp.h: New file, based on tests/test-memcmp.c.
9508
9509         Tests for module 'unistr/u32-set'.
9510         * modules/unistr/u32-set-tests: New file.
9511         * tests/unistr/test-u32-set.c: New file.
9512
9513         Tests for module 'unistr/u16-set'.
9514         * modules/unistr/u16-set-tests: New file.
9515         * tests/unistr/test-u16-set.c: New file.
9516
9517         Tests for module 'unistr/u8-set'.
9518         * modules/unistr/u8-set-tests: New file.
9519         * tests/unistr/test-u8-set.c: New file.
9520         * tests/unistr/test-set.h: New file.
9521
9522         Tests for module 'unistr/u32-move'.
9523         * modules/unistr/u32-move-tests: New file.
9524         * tests/unistr/test-u32-move.c: New file.
9525
9526         Tests for module 'unistr/u16-move'.
9527         * modules/unistr/u16-move-tests: New file.
9528         * tests/unistr/test-u16-move.c: New file.
9529
9530         Tests for module 'unistr/u8-move'.
9531         * modules/unistr/u8-move-tests: New file.
9532         * tests/unistr/test-u8-move.c: New file.
9533         * tests/unistr/test-move.h: New file.
9534
9535         Tests for module 'unistr/u32-cpy'.
9536         * modules/unistr/u32-cpy-tests: New file.
9537         * tests/unistr/test-u32-cpy.c: New file.
9538
9539         Tests for module 'unistr/u16-cpy'.
9540         * modules/unistr/u16-cpy-tests: New file.
9541         * tests/unistr/test-u16-cpy.c: New file.
9542
9543         Tests for module 'unistr/u8-cpy'.
9544         * modules/unistr/u8-cpy-tests: New file.
9545         * tests/unistr/test-u8-cpy.c: New file.
9546         * tests/unistr/test-cpy.h: New file.
9547
9548 2010-01-09  Bruno Haible  <bruno@clisp.org>
9549
9550         Tests for module 'unistr/u32-uctomb'.
9551         * modules/unistr/u32-uctomb-tests: New file.
9552         * tests/unistr/test-u32-uctomb.c: New file.
9553
9554         Tests for module 'unistr/u16-uctomb'.
9555         * modules/unistr/u16-uctomb-tests: New file.
9556         * tests/unistr/test-u16-uctomb.c: New file.
9557
9558         Tests for module 'unistr/u8-uctomb'.
9559         * modules/unistr/u8-uctomb-tests: New file.
9560         * tests/unistr/test-u8-uctomb.c: New file.
9561
9562         Tests for module 'unistr/u32-mbtoucr'.
9563         * modules/unistr/u32-mbtoucr-tests: New file.
9564         * tests/unistr/test-u32-mbtoucr.c: New file.
9565
9566         Tests for module 'unistr/u16-mbtoucr'.
9567         * modules/unistr/u16-mbtoucr-tests: New file.
9568         * tests/unistr/test-u16-mbtoucr.c: New file.
9569
9570         Tests for module 'unistr/u8-mbtoucr'.
9571         * modules/unistr/u8-mbtoucr-tests: New file.
9572         * tests/unistr/test-u8-mbtoucr.c: New file.
9573
9574         Tests for module 'unistr/u32-mbtouc'.
9575         * modules/unistr/u32-mbtouc-tests: New file.
9576         * tests/unistr/test-u32-mbtouc.c: New file.
9577
9578         Tests for module 'unistr/u16-mbtouc'.
9579         * modules/unistr/u16-mbtouc-tests: New file.
9580         * tests/unistr/test-u16-mbtouc.c: New file.
9581
9582         Tests for module 'unistr/u8-mbtouc'.
9583         * modules/unistr/u8-mbtouc-tests: New file.
9584         * tests/unistr/test-u8-mbtouc.c: New file.
9585
9586         Tests for module 'unistr/u32-mbtouc-unsafe'.
9587         * modules/unistr/u32-mbtouc-unsafe-tests: New file.
9588         * tests/unistr/test-u32-mbtouc-unsafe.c: New file.
9589         * tests/unistr/test-u32-mbtouc.h: New file.
9590
9591         Tests for module 'unistr/u16-mbtouc-unsafe'.
9592         * modules/unistr/u16-mbtouc-unsafe-tests: New file.
9593         * tests/unistr/test-u16-mbtouc-unsafe.c: New file.
9594         * tests/unistr/test-u16-mbtouc.h: New file.
9595
9596         Tests for module 'unistr/u8-mbtouc-unsafe'.
9597         * modules/unistr/u8-mbtouc-unsafe-tests: New file.
9598         * tests/unistr/test-u8-mbtouc-unsafe.c: New file.
9599         * tests/unistr/test-u8-mbtouc.h: New file.
9600
9601         Tests for module 'unistr/u32-mblen'.
9602         * modules/unistr/u32-mblen-tests: New file.
9603         * tests/unistr/test-u32-mblen.c: New file.
9604
9605         Tests for module 'unistr/u16-mblen'.
9606         * modules/unistr/u16-mblen-tests: New file.
9607         * tests/unistr/test-u16-mblen.c: New file.
9608
9609         Tests for module 'unistr/u8-mblen'.
9610         * modules/unistr/u8-mblen-tests: New file.
9611         * tests/unistr/test-u8-mblen.c: New file.
9612
9613         Tests for module 'unistr/u32-to-u16'.
9614         * modules/unistr/u32-to-u16-tests: New file.
9615         * tests/unistr/test-u32-to-u16.c: New file.
9616
9617         Tests for module 'unistr/u32-to-u8'.
9618         * modules/unistr/u32-to-u8-tests: New file.
9619         * tests/unistr/test-u32-to-u8.c: New file.
9620
9621         Tests for module 'unistr/u16-to-u32'.
9622         * modules/unistr/u16-to-u32-tests: New file.
9623         * tests/unistr/test-u16-to-u32.c: New file.
9624
9625         Tests for module 'unistr/u16-to-u8'.
9626         * modules/unistr/u16-to-u8-tests: New file.
9627         * tests/unistr/test-u16-to-u8.c: New file.
9628
9629         Tests for module 'unistr/u8-to-u32'.
9630         * modules/unistr/u8-to-u32-tests: New file.
9631         * tests/unistr/test-u8-to-u32.c: New file.
9632
9633         Tests for module 'unistr/u8-to-u16'.
9634         * modules/unistr/u8-to-u16-tests: New file.
9635         * tests/unistr/test-u8-to-u16.c: New file.
9636
9637         Tests for module 'unistr/u32-check'.
9638         * modules/unistr/u32-check-tests: New file.
9639         * tests/unistr/test-u32-check.c: New file.
9640
9641         Tests for module 'unistr/u16-check'.
9642         * modules/unistr/u16-check-tests: New file.
9643         * tests/unistr/test-u16-check.c: New file.
9644
9645         Tests for module 'unistr/u8-check'.
9646         * modules/unistr/u8-check-tests: New file.
9647         * tests/unistr/test-u8-check.c: New file.
9648
9649         * tests/unictype/test-categ_byname.c: Include <stdbool.h>.
9650         (category_equals): New function.
9651         (main): Add more tests.
9652         * modules/unictype/category-byname-tests (Depends-on): Add stdbool.
9653
9654         * tests/unictype/test-bidi_byname.c (main): Add more tests.
9655
9656 2010-01-10  Bruno Haible  <bruno@clisp.org>
9657
9658         unistr/u*-strcoll: Try harder to distinguish different strings.
9659         * lib/unistr/u-strcoll.h (FUNC): When sl1 and sl2 are the same,
9660         compare s1 and s2 to see if they are different.
9661
9662 2010-01-10  Bruno Haible  <bruno@clisp.org>
9663
9664         unistr/u*-stpncpy: Fix the return value.
9665         * lib/unistr.h (u8_stpncpy, u16_stpncpy, u32_stpncpy): Make the
9666         description of the return value consistent with stpncpy in glibc.
9667         * lib/unistr/u-stpncpy.h (FUNC): Return the pointer past the last
9668         written non-NUL unit.
9669
9670 2010-01-10  Bruno Haible  <bruno@clisp.org>
9671
9672         unistr/u*-next: Add missing dependencies.
9673         * modules/unistr/u8-next (Depends-on): Add unistr/u8-strmbtouc.
9674         * modules/unistr/u16-next (Depends-on): Add unistr/u16-strmbtouc.
9675         * modules/unistr/u32-next (Depends-on): Add unistr/u32-strmbtouc.
9676
9677 2010-01-10  Bruno Haible  <bruno@clisp.org>
9678
9679         unistr/u8-mbsnlen: Fix return value for incomplete character.
9680         * lib/unistr/u8-mbsnlen.c (u8_mbsnlen): Use u8_mbtoucr instead of
9681         u8_mblen.
9682         * modules/unistr/u8-mbsnlen (Depends-on): Add unistr/u8-mbtoucr.
9683         Remove unistr/u8-mblen.
9684         * lib/unistr/u16-mbsnlen.c (u16_mbsnlen): Use u16_mbtoucr instead of
9685         u16_mblen.
9686         * modules/unistr/u16-mbsnlen (Depends-on): Add unistr/u16-mbtoucr.
9687         Remove unistr/u16-mblen.
9688
9689 2010-01-10  Bruno Haible  <bruno@clisp.org>
9690
9691         wchar: Fix compilation error when <wchar.h> is used from coreutils.
9692         * lib/wchar.in.h: Treat __need_wint_t like __need_mbstate_t.
9693         Reported by Brian Gough <bjg@gnu.org> and
9694         Chris Clayton <chris2553@googlemail.com> via
9695         Mike Frysinger <vapier@gentoo.org> and Jim Meyering <jim@meyering.net>.
9696
9697 2010-01-09  Bruno Haible  <bruno@clisp.org>
9698
9699         unistr/u16-to-u32: Reject invalid input.
9700         * lib/unistr/u16-to-u32.c (u16_to_u32): Call u16_mbtoucr instead of
9701         u16_mbtouc.
9702         * modules/unistr/u16-to-u32 (Depends-on): Add unistr/u16-mbtoucr.
9703         Remove unistr/u16-mbtouc.
9704
9705         unistr/u16-to-u8: Reject invalid input.
9706         * lib/unistr/u16-to-u8.c (u16_to_u8): Call u16_mbtoucr instead of
9707         u16_mbtouc.
9708         * modules/unistr/u16-to-u8 (Depends-on): Add unistr/u16-mbtoucr.
9709         Remove unistr/u16-mbtouc.
9710
9711         unistr/u8-to-u32: Reject invalid input.
9712         * lib/unistr/u8-to-u32.c (u8_to_u32): Call u8_mbtoucr instead of
9713         u8_mbtouc.
9714         * modules/unistr/u8-to-u32 (Depends-on): Add unistr/u8-mbtoucr.
9715         Remove unistr/u8-mbtouc.
9716
9717         unistr/u8-to-u16: Reject invalid input.
9718         * lib/unistr/u8-to-u16.c (u8_to_u16): Call u8_mbtoucr instead of
9719         u8_mbtouc.
9720         * modules/unistr/u8-to-u16 (Depends-on): Add unistr/u8-mbtoucr.
9721         Remove unistr/u8-mbtouc.
9722
9723 2010-01-09  Bruno Haible  <bruno@clisp.org>
9724
9725         Tests for module 'getlogin'.
9726         * modules/getlogin-tests: New file.
9727         * tests/test-getlogin.c: New file.
9728
9729         New module 'getlogin'.
9730         * lib/unistd.in.h (getlogin): New declaration.
9731         * lib/getlogin.c: New file.
9732         * m4/getlogin.m4: New file.
9733         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETLOGIN,
9734         HAVE_GETLOGIN.
9735         * modules/unistd (Makefile.am): Substitute GNULIB_GETLOGIN,
9736         HAVE_GETLOGIN.
9737         * modules/getlogin: New file.
9738         * doc/posix-functions/getlogin.texi: Mention the new module.
9739         Reported by John W. Eaton <jwe@gnu.org>.
9740
9741 2010-01-09  Bruno Haible  <bruno@clisp.org>
9742
9743         getlogin_r: Support for native Windows.
9744         * lib/getlogin_r.c: Include <windows.h>
9745         (getlogin_r): Implement for native Windows.
9746         * tests/test-getlogin_r.c (main): Also test with a huge buffer.
9747         Reported by Tatsuro MATSUOKA <tmacchant5@yahoo.co.jp>
9748         via John W. Eaton <jwe@gnu.org>.
9749
9750 2010-01-09  Bruno Haible  <bruno@clisp.org>
9751
9752         getlogin_r: Small fixes.
9753         * lib/getlogin_r.c (getlogin_r): Don't set errno if the function
9754         succeeds.
9755         * m4/getlogin_r.m4 (gl_GETLOGIN_R): Require gl_USE_SYSTEM_EXTENSIONS
9756         before testing whether getlogin_r is declared. No need to set
9757         HAVE_DECL_GETLOGIN_R to 1.
9758         (gl_PREREQ_GETLOGIN_R): Don't check for the getlogin_r declaration.
9759
9760 2010-01-09  Bruno Haible  <bruno@clisp.org>
9761
9762         * lib/unistd.in.h (getlogin_r): Add comment.
9763
9764 2010-01-09  Bruno Haible  <bruno@clisp.org>
9765
9766         Tests for module 'getlogin_r'.
9767         * modules/getlogin_r-tests: New file.
9768         * tests/test-getlogin_r.c: New file.
9769
9770 2010-01-09  Jim Meyering  <meyering@redhat.com>
9771
9772         maint.mk: extend proper_name_utf8-vs-LIBICONV-checking rule
9773         * top/maint.mk (sc_proper_name_utf8_requires_ICONV): Adapt to work
9774         also when $(LIBICONV) is part of LDADD, rather than ${prog}_LDADD.
9775
9776 2010-01-08  Simon Josefsson  <simon@josefsson.org>
9777
9778         * lib/dup2.c (rpl_dup2): Improve comment.
9779
9780 2010-01-08  Eric Blake  <ebb9@byu.net>
9781
9782         maint.mk: allow packages to add makefile @@ exceptions
9783         * top/maint.mk (_makefile_at_at_check_exceptions): New hook.
9784         (sc_makefile_check): Rename...
9785         (sc_makefile_at_at_check): ...to this, and use hook.
9786
9787         dup2: work around mingw bug
9788         * lib/dup2.c (rpl_dup2): Sanitize return value on mingw.
9789         Reported by Simon Josefsson.
9790
9791 2010-01-07  John W. Eaton  <jwe@octave.org>  (tiny change)
9792
9793         glob: Fix C++ compilation.
9794         * lib/glob.in.h [__cplusplus]: Define __BEGIN_DECLS and __END_DECLS for
9795         C++.
9796
9797 2010-01-07  Bruno Haible  <bruno@clisp.org>
9798
9799         Fix indentation of wctype.in.h, broken since 2007-01-06.
9800         * lib/wctype.in.h: Fix indentation of preprocessor directives.
9801
9802 2010-01-07  Bruno Haible  <bruno@clisp.org>
9803
9804         mbslen: Avoid collision with system function.
9805         * lib/string.in.h [MirBSD]: Include <wchar.h>.
9806         (mbslen): Undefine first. Alias mbslen to rpl_mbslen.
9807         * m4/mbslen.m4: New file.
9808         * modules/mbslen (Files): Add it.
9809         (configure.ac): Invoke gl_MBSLEN.
9810         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize HAVE_MBSLEN.
9811         * modules/string (Makefile.am): Substitute HAVE_MBSLEN.
9812         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>
9813         via Ian Beckwith <ianb@erislabs.net>.
9814
9815 2010-01-07  Bruno Haible  <bruno@clisp.org>
9816
9817         dirent: Document the last fix.
9818         * doc/posix-headers/dirent.texi: Document the bug of missing 'ino_t'.
9819
9820 2010-01-07  Bruno Haible  <bruno@clisp.org>
9821
9822         stdio: Ensure <stdio.h> defines off_t, ssize_t, va_list.
9823         * lib/stdio.in.h: Include <sys/types.h> unconditionally.
9824         * tests/test-stdio.c: Verify that fpos_t, off_t, size_t, ssize_t,
9825         va_list are defined.
9826         * doc/posix-headers/stdio.texi: Document the bug of missing types.
9827         Reported by Eric Blake.
9828
9829 2010-01-07  Bruno Haible  <bruno@clisp.org>
9830
9831         xlist, xoset: Fix missing dependency bug, introduced on 2009-12-13.
9832         * modules/xlist (Depends-on): Add 'list',
9833         * modules/xoset (Depends-on): Add 'oset'.
9834         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
9835
9836 2010-01-07  Bruno Haible  <bruno@clisp.org>
9837
9838         * doc/posix-functions/strcasecmp.texi: Clarify the platforms.
9839         * doc/posix-functions/strncasecmp.texi: Likewise.
9840
9841 2010-01-07  Bruno Haible  <bruno@clisp.org>
9842
9843         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Simplify logic.
9844
9845 2010-01-07  John W. Eaton  <jwe@octave.org>
9846
9847         wctype: allow C++ use
9848         * lib/wctype.in.h: Add extern "C" block for C++.
9849
9850 2010-01-06  Eric Blake  <ebb9@byu.net>
9851
9852         maint.mk: detect incorrect GFDL usage
9853         * top/maint.mk (_GFDL_regexp, sc_GFDL_version): New rule.
9854
9855 2010-01-06  Jim Meyering  <meyering@redhat.com>
9856         and Eric Blake  <ebb9@byu.net>
9857
9858         maint.mk: ignore multi-line copyright in NEWS
9859         * top/maint.mk (NEWS_hash): Add immunity to multi-line copyright.
9860
9861 2010-01-06  Eric Blake  <ebb9@byu.net>
9862
9863         select: add missing dependency
9864         * modules/select-tests (Depends-on): Move sockets dependency...
9865         * modules/select (Depends-on): ...here.
9866         Reported by Ian Beckwith.
9867
9868         doc: regenerate INSTALL
9869         * doc/INSTALL: Reflect recent autoconf update.
9870         * doc/INSTALL.ISO: Likewise.
9871         * doc/INSTALL.UTF-8: Likewise.
9872
9873         pread: fix compilation on glibc
9874         * m4/pread.m4 (gl_FUNC_PREAD): Request all interfaces.
9875         Reported by Ralf Wildenhues.
9876
9877         dirent: fix test failure
9878         * lib/dirent.in.h (includes): Guarantee ino_t.
9879         Reported by Ralf Wildenhues.
9880
9881 2010-01-06  Petr Salinger  <Petr.Salinger@seznam.cz>  (tiny change)
9882
9883         linkat, renameat: avoid bad free
9884         * lib/at-func2.c (at_func2): Fix typo.
9885         Reported via Ian Beckwith, from http://bugs.debian.org/561117.
9886
9887 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9888
9889         cleanup after gl_FUNC_READLINK, for gl_FUNC_SYMLINK test
9890         * m4/readlink.m4 (gl_FUNC_READLINK): Remove conftest.lnk2,
9891         to avoid failure of symlink test later.
9892
9893 2010-01-06  Eric Blake  <ebb9@byu.net>
9894
9895         stdio, unistd: guarantee ssize_t
9896         * lib/unistd.in.h (includes): Ensure that types required by POSIX
9897         2008 are exposed when needed.
9898         * lib/stdio.in.h (includes): Likewise.
9899         Reported by Ralf Wildenhues.
9900
9901 2010-01-06  Paolo Bonzini  <bonzini@gnu.org>
9902
9903         nl_langinfo: do not call AC_CHECK_FUNC_ONCE inside if.
9904         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): Do not call
9905         AC_CHECK_FUNC_ONCE inside if, do not adjust ac_cv_func_nl_langinfo.
9906
9907 2010-01-06  Jim Meyering  <meyering@redhat.com>
9908
9909         readtokens: this module *does* require xalloc.h
9910         It uses only functions that were omitted by the old syntax-check rule.
9911         * lib/readtokens.c: Include "xalloc.h" once again.
9912         * modules/readtokens (Depends-on): Add xalloc.
9913         This reverts part of 0e0f8f12ec241c0f1c1f21f960bb5cf908a0fa3c.
9914
9915 2010-01-05  Eric Blake  <ebb9@byu.net>
9916
9917         maint: support 'make announcement' from a VPATH build
9918         * top/maint.mk (announcement): Look for correct NEWS file.
9919
9920 2010-01-05  Aurelien Jarno  <aurelien@aurel32.net>  (tiny change)
9921
9922         utimens (fdutimens): ignore a negative FD, per contract
9923         * lib/utimens.c (fdutimens) [HAVE_FUTIMENS]: Call futimens only
9924         when we have a valid file descriptor.  Otherwise, using a brand
9925         new glibc (with just-patched futimens that now fails with EBADF)
9926         would cause this function to fail with ENOSYS.
9927         Reported by Guillaume Ayoub in http://bugs.debian.org/563726.
9928         See also http://bugzilla.redhat.com/552320.
9929
9930 2010-01-05  Eric Blake  <ebb9@byu.net>
9931
9932         strcase: document what it provides
9933         * doc/posix-functions/strcasecmp.texi (strcasecmp): Mention the
9934         gnulib module.
9935         * doc/posix-functions/strncasecmp.texi (strncasecmp): Likewise.
9936         Reported by Dilyan Palauzov <Dilyan.Palauzov@aegee.org>.
9937
9938 2010-01-05  Jim Meyering  <meyering@redhat.com>
9939
9940         maint: remove useless inclusions of "xalloc.h"
9941         * lib/getloadavg.c: Remove useless inclusion of "xalloc.h".
9942         * lib/readtokens.c: Likewise.
9943         * lib/same.c: Likewise.
9944         * modules/getloadavg (Depends-on): Remove xalloc.
9945         * modules/readtokens: Likewise.
9946         * modules/same: Likewise.
9947
9948         maint.mk: include 4 more function names in alloca.h-checking regexp
9949         * top/maint.mk (sc_prohibit_xalloc_without_use): Use more complete
9950         regexp.  Before, we would give a false-positive (saying alloca.h
9951         is included unnecessarily) when the only uses involved omitted symbols.
9952
9953         xalloc.h: use consistent formatting
9954         * lib/xalloc.h: Move declarations to start in the first column.
9955
9956 2010-01-05  Eric Blake  <ebb9@byu.net>
9957
9958         mkdir: avoid xalloc
9959         * lib/mkdir.c (includes): Drop unused header.
9960         Reported by John W. Eaton.
9961
9962 2010-01-04  Jim Meyering  <meyering@redhat.com>
9963
9964         nl_langinfo: avoid configure-time syntax error
9965         * m4/nl_langinfo.m4 (gl_FUNC_NL_LANGINFO): When we've already tested
9966         for nl_langinfo.h, AC_CHECK_FUNCS_ONCE([nl_langinfo]) expands to
9967         the empty string.  Don't let that provoke a shell syntax error.
9968
9969         regcomp, regexec, fnmatch: avoid array bounds read error
9970         * lib/regcomp.c (build_equiv_class): From glibc:
9971         Use only the low 24 bits of a findidx return value as an index
9972         into the weights array.  Patch by Ulrich Drepper:
9973         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commit;h=b7d1c5fa30
9974         * lib/regexec.c (check_node_accept_bytes): Likewise.
9975         * lib/fnmatch_loop.c (FCT): Likewise.
9976
9977         regcomp: skip collseq lookup when there are no rules
9978         * lib/regcomp.c (lookup_collation_sequence_value): From glibc:
9979         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a532a41df58
9980
9981         regcomp: recognize ill-formed { } expressions
9982         * lib/regcomp.c (parse_dup_op): From glibc:
9983         http://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=a87cd2894cb
9984
9985         regcomp: fix typo in comment
9986         * lib/regcomp.c (duplicate_node_closure): Sync from glibc.
9987         s/satisfy/satisfies/.
9988
9989         regcomp: sync from glibc: remove dead store
9990         * lib/regcomp.c (duplicate_node_closure): Remove useless
9991         search_duplicated_node call and dead store.
9992
9993         regcomp: sync from glibc; always use nl_langinfo
9994         * lib/regcomp.c (init_dfa) [!LIBC]: Always use nl_langinfo (CODESET),
9995         now that gnulib provides it.  Recognize UTF8 as well as UTF-8.
9996         * modules/regex (Depends-on): Add nl_langinfo.
9997
9998 2010-01-04  Eric Blake  <ebb9@byu.net>
9999
10000         fdopendir: fix configure test
10001         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for existing file.
10002
10003 2010-01-01  Bruno Haible  <bruno@clisp.org>
10004
10005         wchar: Remove unused configure check.
10006         * m4/wchar.m4 (gl_WCHAR_H): Don't test whether <wchar.h> is standalone.
10007
10008 2010-01-01  Eric Blake  <ebb9@byu.net>
10009
10010         headers: make check of system header explicit
10011         * m4/netdb_h.m4 (gl_HEADER_NETDB): Don't exploit knowledge of
10012         gl_CHECK_NEXT_HEADER internals, but call AC_CHECK_HEADERS_ONCE
10013         ourselves.
10014         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
10015         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
10016         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
10017         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise, for gt_INTTYPES_PRI
10018         internals.
10019         * m4/wchar.m4 (gl_WCHAR_H): Skip followup test if header is
10020         missing.
10021         Suggested by Bruno Haible.
10022
10023 2010-01-01  Jim Meyering  <meyering@redhat.com>
10024
10025         ChangeLog: tweak to eliminate unnecessary copyright line
10026         * ChangeLog: Remove a copyright line that was mistakenly updated
10027         by today's update-copyright run.  Reported by Eric Blake.
10028
10029         test-update-copyright: don't let envvar setting cause test failure
10030         * tests/test-update-copyright.sh: Set UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
10031
10032 2010-01-01  Bruno Haible  <bruno@clisp.org>
10033
10034         localename: Avoid gcc warning.
10035         * lib/localename.c (gl_locale_name_thread_unsafe): Don't define this
10036         function if it is not used.
10037
10038 2010-01-01  Jim Meyering  <meyering@redhat.com>
10039
10040         update nearly all FSF copyright year lists to include 2010
10041         Use the same procedure as for 2009, outlined in
10042         http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/20081
10043
10044         version-etc: set COPYRIGHT_YEAR to 2010
10045         * lib/version-etc.c (COPYRIGHT_YEAR): Manually update the enum.
10046
10047 2009-12-31  Eric Blake  <ebb9@byu.net>
10048
10049         doc: correct availability of cygwin 1.5.x getopt
10050         * doc/posix-functions/optarg.texi (optarg): Cygwin supplies getopt
10051         variables.
10052         * doc/posix-functions/opterr.texi (opterr): Likewise.
10053         * doc/posix-functions/optind.texi (optind): Likewise.
10054         * doc/posix-functions/optopt.texi (optopt): Likewise.
10055         * doc/posix-functions/tzname.texi (tzname): Likewise.
10056
10057         openat: update maintainer
10058         * modules/openat (Maintainer): Add myself.
10059
10060         utimens: avoid shadowing warning
10061         * lib/utimens.c (fdutimens, lutimens): Consolidate separate stat
10062         buffers into one, to avoid shadowing, as well as avoiding a
10063         redundant stat.
10064         Reported by Jim Meyering.
10065
10066         test-dup2: avoid compiler warning
10067         * tests/test-dup2.c (is_inheritable): Only define if used.
10068
10069 2010-01-01  Bruno Haible  <bruno@clisp.org>
10070
10071         vasnprintf: Avoid passing an 'rpl_mbstate_t *' to the system's wcrtomb.
10072         * lib/vasnprintf.c (VASNPRINTF): If GNULIB_defined_mbstate_t is
10073         defined, use wctomb instead of wcrtomb.
10074
10075 2010-01-01  Bruno Haible  <bruno@clisp.org>
10076
10077         iconv: Reject native Solaris iconv.
10078         * m4/iconv.m4 (AM_ICONV_LINK): Recognize native Solaris iconv() bug.
10079         * doc/posix-functions/iconv.texi: Document native Solaris iconv() bug.
10080
10081 2009-12-31  Bruno Haible  <bruno@clisp.org>
10082
10083         * tests/test-signal.c (main): Remove test of 'SIG'.
10084
10085 2009-12-31  Bruno Haible  <bruno@clisp.org>
10086
10087         spawn: Fix incomplete fix.
10088         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
10089         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
10090         warnings for GNULIB_POSIXCHECK again.
10091         Reported by Eric Blake.
10092
10093 2009-12-31  Bruno Haible  <bruno@clisp.org>
10094
10095         Avoid namespace pollution on glibc systems.
10096         * lib/spawn.in.h: Don't include <sched.h>, <signal.h> on glibc systems.
10097         * lib/sys_times.in.h: Don't include <time.h> on glibc systems.
10098         * lib/wchar.in.h: Don't include <stddef.h>, <stdio.h>, <time.h> on
10099         glibc systems.
10100
10101 2009-12-31  Bruno Haible  <bruno@clisp.org>
10102
10103         * m4/wchar.m4 (gl_WCHAR_H): Remove gl_STDDEF_H invocation.
10104         (gl_REPLACE_WCHAR_H): Turn into a no-op.
10105         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Likewise.
10106         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H): Likewise.
10107         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H): Likewise.
10108         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H): Likewise.
10109         * m4/sys_ioctl_h.m4 (gl_REPLACE_SYS_IOCTL_H): Likewise.
10110
10111 2009-12-31  Bruno Haible  <bruno@clisp.org>
10112
10113         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Invoke
10114         gl_CHECK_NEXT_HEADERS before testing ac_cv_header_sys_select_h, not
10115         afterwards.
10116
10117 2009-12-31  Bruno Haible  <bruno@clisp.org>
10118
10119         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H_DEFAULTS): Don't set
10120         SYS_UTSNAME_H.
10121
10122 2009-12-31  Bruno Haible  <bruno@clisp.org>
10123
10124         spawn: Fix misapplied patch.
10125         * lib/spawn.in.h (posix_spawnattr_getflags, posix_spawnattr_setflags,
10126         posix_spawnattr_getpgroup, posix_spawnattr_setpgroup): Correct the link
10127         warnings for GNULIB_POSIXCHECK.
10128
10129 2009-12-31  Bruno Haible  <bruno@clisp.org>
10130
10131         times: Update after sys_times changed.
10132         * m4/times.m4: New file, extracted from modules/times. Set HAVE_TIMES.
10133         * modules/times (Files): Add it.
10134         (configure.ac): Invoke gl_FUNC_TIMES.
10135
10136 2009-12-31  Bruno Haible  <bruno@clisp.org>
10137
10138         Use AC_C_INLINE where necessary.
10139         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Require AC_C_INLINE.
10140         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
10141         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
10142         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
10143         * m4/mbfile.m4 (gl_MBFILE): Likewise.
10144         * m4/mbiter.m4 (gl_MBITER): Likewise.
10145         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
10146         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
10147         * m4/wait-process.m4 (gl_WAIT_PROCESS): Likewise.
10148         * modules/u64 (configure.ac): Likewise.
10149
10150 2009-12-31  Bruno Haible  <bruno@clisp.org>
10151
10152         Use AC_C_INLINE instead of module 'inline' where possible.
10153         * modules/inline (Description): Clarify purpose.
10154         * m4/count-one-bits.m4 (gl_COUNT_ONE_BITS): Require AC_C_INLINE.
10155         * modules/count-one-bits (Depends-on): Remove inline.
10156         * m4/openat.m4 (gl_PREREQ_OPENAT): Require AC_C_INLINE.
10157         * modules/openat (Depends-on): Remove inline.
10158         * modules/fdutimensat (Depends-on, configure.ac): Require AC_C_INLINE
10159         instead of depending on module 'inline'.
10160         * modules/filevercmp (Depends-on, configure.ac): Likewise.
10161         * modules/unicase/cased (Depends-on, configure.ac): Likewise.
10162         * modules/unicase/ignorable (Depends-on, configure.ac): Likewise.
10163         * modules/unictype/category-of (Depends-on, configure.ac): Likewise.
10164         * modules/unictype/category-test (Depends-on, configure.ac): Likewise.
10165         * modules/unictype/ctype-alnum (Depends-on, configure.ac): Likewise.
10166         * modules/unictype/ctype-alpha (Depends-on, configure.ac): Likewise.
10167         * modules/unictype/ctype-blank (Depends-on, configure.ac): Likewise.
10168         * modules/unictype/ctype-cntrl (Depends-on, configure.ac): Likewise.
10169         * modules/unictype/ctype-digit (Depends-on, configure.ac): Likewise.
10170         * modules/unictype/ctype-graph (Depends-on, configure.ac): Likewise.
10171         * modules/unictype/ctype-lower (Depends-on, configure.ac): Likewise.
10172         * modules/unictype/ctype-print (Depends-on, configure.ac): Likewise.
10173         * modules/unictype/ctype-punct (Depends-on, configure.ac): Likewise.
10174         * modules/unictype/ctype-space (Depends-on, configure.ac): Likewise.
10175         * modules/unictype/ctype-upper (Depends-on, configure.ac): Likewise.
10176         * modules/unictype/ctype-xdigit (Depends-on, configure.ac): Likewise.
10177         * modules/unictype/property-alphabetic (Depends-on, configure.ac):
10178         Likewise.
10179         * modules/unictype/property-ascii-hex-digit (Depends-on,
10180         configure.ac): Likewise.
10181         * modules/unictype/property-bidi-arabic-digit (Depends-on,
10182         configure.ac): Likewise.
10183         * modules/unictype/property-bidi-arabic-right-to-left (Depends-on,
10184         configure.ac): Likewise.
10185         * modules/unictype/property-bidi-block-separator (Depends-on,
10186         configure.ac): Likewise.
10187         * modules/unictype/property-bidi-boundary-neutral (Depends-on,
10188         configure.ac): Likewise.
10189         * modules/unictype/property-bidi-common-separator (Depends-on,
10190         configure.ac): Likewise.
10191         * modules/unictype/property-bidi-control (Depends-on, configure.ac):
10192         Likewise.
10193         * modules/unictype/property-bidi-embedding-or-override (Depends-on,
10194         configure.ac): Likewise.
10195         * modules/unictype/property-bidi-eur-num-separator (Depends-on,
10196         configure.ac): Likewise.
10197         * modules/unictype/property-bidi-eur-num-terminator (Depends-on,
10198         configure.ac): Likewise.
10199         * modules/unictype/property-bidi-european-digit (Depends-on,
10200         configure.ac): Likewise.
10201         * modules/unictype/property-bidi-hebrew-right-to-left (Depends-on,
10202         configure.ac): Likewise.
10203         * modules/unictype/property-bidi-left-to-right (Depends-on,
10204         configure.ac): Likewise.
10205         * modules/unictype/property-bidi-non-spacing-mark (Depends-on,
10206         configure.ac): Likewise.
10207         * modules/unictype/property-bidi-other-neutral (Depends-on,
10208         configure.ac): Likewise.
10209         * modules/unictype/property-bidi-pdf (Depends-on, configure.ac):
10210         Likewise.
10211         * modules/unictype/property-bidi-segment-separator (Depends-on,
10212         configure.ac): Likewise.
10213         * modules/unictype/property-bidi-whitespace (Depends-on,
10214         configure.ac): Likewise.
10215         * modules/unictype/property-combining (Depends-on, configure.ac):
10216         Likewise.
10217         * modules/unictype/property-composite (Depends-on, configure.ac):
10218         Likewise.
10219         * modules/unictype/property-currency-symbol (Depends-on,
10220         configure.ac): Likewise.
10221         * modules/unictype/property-dash (Depends-on, configure.ac): Likewise.
10222         * modules/unictype/property-decimal-digit (Depends-on, configure.ac):
10223         Likewise.
10224         * modules/unictype/property-default-ignorable-code-point (Depends-on,
10225         configure.ac): Likewise.
10226         * modules/unictype/property-deprecated (Depends-on, configure.ac):
10227         Likewise.
10228         * modules/unictype/property-diacritic (Depends-on, configure.ac):
10229         Likewise.
10230         * modules/unictype/property-extender (Depends-on, configure.ac):
10231         Likewise.
10232         * modules/unictype/property-format-control (Depends-on, configure.ac):
10233         Likewise.
10234         * modules/unictype/property-grapheme-base (Depends-on, configure.ac):
10235         Likewise.
10236         * modules/unictype/property-grapheme-extend (Depends-on, configure.ac):
10237         Likewise.
10238         * modules/unictype/property-grapheme-link (Depends-on, configure.ac):
10239         Likewise.
10240         * modules/unictype/property-hex-digit (Depends-on, configure.ac):
10241         Likewise.
10242         * modules/unictype/property-hyphen (Depends-on, configure.ac):
10243         Likewise.
10244         * modules/unictype/property-id-continue (Depends-on, configure.ac):
10245         Likewise.
10246         * modules/unictype/property-id-start (Depends-on, configure.ac):
10247         Likewise.
10248         * modules/unictype/property-ideographic (Depends-on, configure.ac):
10249         Likewise.
10250         * modules/unictype/property-ids-binary-operator (Depends-on,
10251         configure.ac): Likewise.
10252         * modules/unictype/property-ids-trinary-operator (Depends-on,
10253         configure.ac): Likewise.
10254         * modules/unictype/property-ignorable-control (Depends-on,
10255         configure.ac): Likewise.
10256         * modules/unictype/property-iso-control (Depends-on, configure.ac):
10257         Likewise.
10258         * modules/unictype/property-join-control (Depends-on, configure.ac):
10259         Likewise.
10260         * modules/unictype/property-left-of-pair (Depends-on, configure.ac):
10261         Likewise.
10262         * modules/unictype/property-line-separator (Depends-on, configure.ac):
10263         Likewise.
10264         * modules/unictype/property-logical-order-exception (Depends-on,
10265         configure.ac): Likewise.
10266         * modules/unictype/property-lowercase (Depends-on, configure.ac):
10267         Likewise.
10268         * modules/unictype/property-math (Depends-on, configure.ac): Likewise.
10269         * modules/unictype/property-non-break (Depends-on, configure.ac):
10270         Likewise.
10271         * modules/unictype/property-not-a-character (Depends-on, configure.ac):
10272         Likewise.
10273         * modules/unictype/property-numeric (Depends-on, configure.ac):
10274         Likewise.
10275         * modules/unictype/property-other-alphabetic (Depends-on,
10276         configure.ac): Likewise.
10277         * modules/unictype/property-other-default-ignorable-code-point
10278         (Depends-on, configure.ac): Likewise.
10279         * modules/unictype/property-other-grapheme-extend (Depends-on,
10280         configure.ac): Likewise.
10281         * modules/unictype/property-other-id-continue (Depends-on,
10282         configure.ac): Likewise.
10283         * modules/unictype/property-other-id-start (Depends-on, configure.ac):
10284         Likewise.
10285         * modules/unictype/property-other-lowercase (Depends-on, configure.ac):
10286         Likewise.
10287         * modules/unictype/property-other-math (Depends-on, configure.ac):
10288         Likewise.
10289         * modules/unictype/property-other-uppercase (Depends-on, configure.ac):
10290         Likewise.
10291         * modules/unictype/property-paired-punctuation (Depends-on,
10292         configure.ac): Likewise.
10293         * modules/unictype/property-paragraph-separator (Depends-on,
10294         configure.ac): Likewise.
10295         * modules/unictype/property-pattern-syntax (Depends-on, configure.ac):
10296         Likewise.
10297         * modules/unictype/property-pattern-white-space (Depends-on,
10298         configure.ac): Likewise.
10299         * modules/unictype/property-private-use (Depends-on, configure.ac):
10300         Likewise.
10301         * modules/unictype/property-punctuation (Depends-on, configure.ac):
10302         Likewise.
10303         * modules/unictype/property-quotation-mark (Depends-on, configure.ac):
10304         Likewise.
10305         * modules/unictype/property-radical (Depends-on, configure.ac):
10306         Likewise.
10307         * modules/unictype/property-sentence-terminal (Depends-on,
10308         configure.ac): Likewise.
10309         * modules/unictype/property-soft-dotted (Depends-on, configure.ac):
10310         Likewise.
10311         * modules/unictype/property-space (Depends-on, configure.ac): Likewise.
10312         * modules/unictype/property-terminal-punctuation (Depends-on,
10313         configure.ac): Likewise.
10314         * modules/unictype/property-titlecase (Depends-on, configure.ac):
10315         Likewise.
10316         * modules/unictype/property-unassigned-code-value (Depends-on,
10317         configure.ac): Likewise.
10318         * modules/unictype/property-unified-ideograph (Depends-on,
10319         configure.ac): Likewise.
10320         * modules/unictype/property-uppercase (Depends-on, configure.ac):
10321         Likewise.
10322         * modules/unictype/property-variation-selector (Depends-on,
10323         configure.ac): Likewise.
10324         * modules/unictype/property-white-space (Depends-on, configure.ac):
10325         Likewise.
10326         * modules/unictype/property-xid-continue (Depends-on, configure.ac):
10327         Likewise.
10328         * modules/unictype/property-xid-start (Depends-on, configure.ac):
10329         Likewise.
10330         * modules/unictype/property-zero-width (Depends-on, configure.ac):
10331         Likewise.
10332         * modules/unictype/syntax-c-ident (Depends-on, configure.ac): Likewise.
10333         * modules/unictype/syntax-java-ident (Depends-on, configure.ac):
10334         Likewise.
10335
10336 2009-12-31  Bruno Haible  <bruno@clisp.org>
10337
10338         Remove unnecessary AC_C_INLINE invocation.
10339         * m4/popen.m4 (gl_PREREQ_POPEN): Don't invoke AC_C_INLINE. Not needed
10340         since 2009-08-21.
10341
10342 2009-12-31  Jim Meyering  <meyering@redhat.com>
10343
10344         maint.mk: don't require explicit gpg_key_ID in cfg.mk
10345         * top/maint.mk (gpg_key_ID): Derive key ID from signed release tag.
10346         With this change, we can all remove the gpg_key_ID = ... definition
10347         from our respective cfg.mk files.
10348
10349         maint.mk: create announcement template in ~/, not in /tmp
10350         * top/maint.mk (emit_upload_commands): Adjust.
10351         (release-prep): Emit into ~/announce-..., not /tmp/announce-...
10352         Remove temporary file, .ci-msg.
10353
10354 2009-12-31  Eric Blake  <ebb9@byu.net>
10355
10356         link-warning: always build headers with link warnings
10357         * modules/arpa_inet (Makefile.am): Always build replacement
10358         header.
10359         * modules/ctype (Makefile.am): Likewise.
10360         * modules/dirent (Makefile.am): Likewise.
10361         * modules/inttypes (Makefile.am): Likewise.
10362         * modules/langinfo (Makefile.am): Likewise.
10363         * modules/locale (Makefile.am): Likewise.
10364         * modules/spawn (Makefile.am): Likewise.
10365         * modules/sys_file (Makefile.am): Likewise.
10366         * modules/sys_ioctl (Makefile.am): Likewise.
10367         * modules/sys_select (Makefile.am): Likewise.
10368         * modules/sys_socket (Makefile.am): Likewise.
10369         * modules/sys_times (Makefile.am): Likewise.
10370         * modules/sys_utsname (Makefile.am): Likewise.
10371         * modules/sys_wait (Makefile.am): Likewise.
10372         * modules/wchar (Makefile.am): Likewise.
10373         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET)
10374         (gl_ARPA_INET_H_DEFAULTS): Drop unneeded variable.
10375         * m4/ctype.m4 (gl_CTYPE_H_DEFAULTS): Likewise.
10376         * m4/isblank.m4 (gl_FUNC_ISBLANK): Likewise.
10377         * m4/dirent_h.m4 (gl_REPLACE_DIRENT_H, gl_DIRENT_H_DEFAULTS):
10378         Likewise.
10379         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
10380         * m4/langinfo_h.m4 (gl_LANGINFO_H): Likewise.
10381         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_H_DEFAULTS):
10382         Likewise.
10383         * m4/spawn_h.m4 (gl_REPLACE_SPAWN_H, gl_SPAWN_H_DEFAULTS):
10384         Likewise.
10385         * m4/sys_file_h.m4 (gl_HEADER_SYS_FILE_H): Likewise.
10386         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H, gl_REPLACE_SYS_IOCTL_H)
10387         (gl_SYS_IOCTL_H_DEFAULTS): Likewise.
10388         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
10389         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Likewise.
10390         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
10391         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
10392         * m4/wchar.m4 (gl_WCHAR_H, gl_REPLACE_WCHAR_H)
10393         (gl_WCHAR_H_DEFAULTS): Likewise.
10394
10395 2009-12-31  Eric Blake  <ebb9@byu.net>
10396
10397         signal, spawn: use link warnings
10398         * lib/signal.in.h (sigset_t): Make unconditional.
10399         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset)
10400         (sigpending, sigprocmask, sigaction): Add link warnings.
10401         * lib/spawn.in.h (posix_spawn, posix_spawnp, posix_spawnattr_init)
10402         (posix_spawnattr_destroy, posix_spawnattr_getsigdefault)
10403         (posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask)
10404         (posix_spawnattr_setsigmask, posix_spawnattr_getflags)
10405         (posix_spawnattr_setflags, posix_spawnattr_getpgroup)
10406         (posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy)
10407         (posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam)
10408         (posix_spawnattr_setschedparam, posix_spawn_file_actions_init)
10409         (posix_spawn_file_actions_destroy)
10410         (posix_spawn_file_actions_addopen)
10411         (posix_spawn_file_actions_addclose)
10412         (posix_spawn_file_actions_adddup2): Likewise.
10413         * m4/signal_h.m4 (gl_SIGNAL_H): Guarantee uid_t.
10414         * tests/test-signal.c (main): Enhance test.
10415
10416         spawn: improve wrapper support
10417         * m4/spawn_h.m4 (gl_SPAWN_H): Check for type existence.
10418         (gl_SPAWN_H_DEFAULTS): New defaults.
10419         * modules/spawn (Makefile.am): Substitute them.
10420         * lib/spawn.in.h: (posix_spawnattr_t, posix_spawn_file_actions_t):
10421         Only declare if missing or broken.
10422
10423         sys_times, sys_utsname: use include_next
10424         * m4/sys_times_h.m4 (gl_SYS_TIMES_H): Support wrapping an existing
10425         header.
10426         (gl_SYS_TIMES_H_DEFAULTS): Add another variable.
10427         * m4/sys_utsname_h.m4 (gl_SYS_UTSNAME_H)
10428         (gl_SYS_UTSNAME_H_DEFAULTS): Likewise.
10429         * modules/sys_times (Depends-on): Add include_next.
10430         (Makefile.am): Substitute additional values.
10431         * modules/sys_utsname (Depends-on, Makefile.am): Likewise.
10432         * lib/sys_times.in.h (includes): Include native header, if
10433         available.
10434         * lib/sys_utsname.in.h (includes): Likewise.
10435         * tests/test-sys_times.c (main): Enhance test.
10436
10437         fdutimensat: revert prior patch
10438         * modules/fdutimensat (Depends-on): Re-add inline; it is needed by
10439         utimens.h.
10440         Reported by Bruno Haible.
10441
10442 2009-12-30  Eric Blake  <ebb9@byu.net>
10443
10444         sys_wait: drop link-warning dependency
10445         * modules/sys_wait (Depends-on, Makefile.am): Drop unneeded
10446         link-warning efforts.
10447         * lib/sys_wait.in.h: Likewise.
10448
10449         fdutimensat: remove bogus dependency
10450         * modules/fdutimensat (Depends-on): Drop inline.
10451
10452         unistd: fix typo
10453         * lib/unistd.in.h (linkat) [GNULIB_POSIXCHECK]: Fix typo.
10454
10455 2009-12-30  Bruno Haible  <bruno@clisp.org>
10456
10457         Fix compilation error with Solaris cc.
10458         * lib/unicase/u8-is-invariant.c: Include <stdbool.h>.
10459         * lib/unicase/u16-is-invariant.c: Likewise.
10460         * lib/unicase/u32-is-invariant.c: Likewise.
10461         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
10462
10463 2009-12-30  Bruno Haible  <bruno@clisp.org>
10464
10465         Fix test crash.
10466         * tests/test-localename.c (test_locale_name_thread): Skip unavailable
10467         locales.
10468         Reported by Simon Josefsson <simon@josefsson.org>.
10469
10470 2009-12-30  Bruno Haible  <bruno@clisp.org>
10471
10472         Fix compilation error on most platforms.
10473         * tests/test-localename.c (categories): Define only if HAVE_NEWLOCALE.
10474         Reported by Simon Josefsson <simon@josefsson.org>
10475         and Nelson H. F. Beebe <beebe@math.utah.edu>.
10476
10477 2009-12-30  Eric Blake  <ebb9@byu.net>
10478
10479         futimens, utimensat: work around ntfs-3g bug
10480         * lib/utimensat.c (rpl_utimensat): Drop attempts to cache whether
10481         a ctime bug is present, and expand workaround to cover ntfs-3g.
10482         * lib/utimens.c (fdutimens, lutimens): Likewise.
10483         (utimensat_ctime_really, detect_ctime_bug): Drop cache mechanism.
10484         (validate_timespec): Adjust return value.
10485         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Update comment.
10486         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
10487         Reported by ctrn3e8 <ctrn3e8@gmail.com>.
10488
10489 2009-12-29  Eric Blake  <ebb9@byu.net>
10490
10491         link-warning: make usage consistent
10492         * modules/ctype (Depends-on): Add link-warning.
10493         (Makefile.am): Update rules accordingly.
10494         * modules/langinfo (Depends-on, Makefile.am): Likewise.
10495         * modules/locale (Depends-on, Makefile.am): Likewise.
10496         * modules/sys_file (Makefile.am): Likewise.
10497         * modules/getopt-posix (Makefile.am): Delete unused link warning
10498         efforts.
10499         * lib/ctype.in.h (GL_LINK_WARNING): Ensure definition before use.
10500         * lib/langinfo.in.h (GL_LINK_WARNING): Likewise.
10501         * lib/locale.in.h (GL_LINK_WARNING): Likewise.
10502         * lib/sys_file.in.h (GL_LINK_WARNING): Likewise.
10503
10504         stdio: remove unused variables
10505         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Remove unused variables.
10506         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Likewise.
10507         * m4/ftello.m4 (gl_FUNC_FTELLO): Likewise.
10508
10509         tests: test more substitute headers
10510         * modules/ctype-tests: New file.
10511         * modules/dirent-tests: Likewise.
10512         * modules/spawn-tests: Likewise.
10513         * modules/sys_file-tests: Likewise.
10514         * modules/sys_ioctl-tests: Likewise.
10515         * modules/sys_wait-tests: Likewise.
10516         * tests/test-ctype.c: Likewise.
10517         * tests/test-dirent.c: Likewise.
10518         * tests/test-spawn.c: Likewise.
10519         * tests/test-sys_file.c: Likewise.
10520         * tests/test-sys_ioctl.c: Likewise.
10521         * tests/test-sys_wait.c: Likewise.
10522         * m4/spawn_h.m4 (gl_SPAWN_H): Replace header if it is missing.
10523         * lib/sys_file.in.h (LOCK_SH, LOCK_EX, LOCK_UN, LOCK_NB): Provide
10524         whether or not flock is in use.
10525
10526         tests: remove License section from module
10527         * modules/arpa_inet-tests: Remove unneeded section.
10528         * modules/byteswap-tests: Likewise.
10529         * modules/ceilf-tests: Likewise.
10530         * modules/ceill-tests: Likewise.
10531         * modules/crypto/des-tests: Likewise.
10532         * modules/crypto/gc-arcfour-tests: Likewise.
10533         * modules/crypto/gc-arctwo-tests: Likewise.
10534         * modules/crypto/gc-des-tests: Likewise.
10535         * modules/crypto/gc-hmac-md5-tests: Likewise.
10536         * modules/crypto/gc-hmac-sha1-tests: Likewise.
10537         * modules/crypto/gc-md2-tests: Likewise.
10538         * modules/crypto/gc-md4-tests: Likewise.
10539         * modules/crypto/gc-md5-tests: Likewise.
10540         * modules/crypto/gc-pbkdf2-sha1-tests: Likewise.
10541         * modules/crypto/gc-rijndael-tests: Likewise.
10542         * modules/crypto/gc-sha1-tests: Likewise.
10543         * modules/crypto/gc-tests: Likewise.
10544         * modules/crypto/md2-tests: Likewise.
10545         * modules/crypto/md4-tests: Likewise.
10546         * modules/fcntl-h-tests: Likewise.
10547         * modules/floorf-tests: Likewise.
10548         * modules/floorl-tests: Likewise.
10549         * modules/frexp-nolibm-tests: Likewise.
10550         * modules/frexp-tests: Likewise.
10551         * modules/frexpl-nolibm-tests: Likewise.
10552         * modules/frexpl-tests: Likewise.
10553         * modules/getaddrinfo-tests: Likewise.
10554         * modules/inttypes-tests: Likewise.
10555         * modules/isfinite-tests: Likewise.
10556         * modules/isinf-tests: Likewise.
10557         * modules/ldexpl-tests: Likewise.
10558         * modules/locale-tests: Likewise.
10559         * modules/math-tests: Likewise.
10560         * modules/netdb-tests: Likewise.
10561         * modules/netinet_in-tests: Likewise.
10562         * modules/printf-frexp-tests: Likewise.
10563         * modules/printf-frexpl-tests: Likewise.
10564         * modules/priv-set-tests: Likewise.
10565         * modules/random_r-tests: Likewise.
10566         * modules/round-tests: Likewise.
10567         * modules/roundf-tests: Likewise.
10568         * modules/roundl-tests: Likewise.
10569         * modules/search-tests: Likewise.
10570         * modules/select-tests: Likewise.
10571         * modules/signal-tests: Likewise.
10572         * modules/stdbool-tests: Likewise.
10573         * modules/stddef-tests: Likewise.
10574         * modules/stdint-tests: Likewise.
10575         * modules/stdio-tests: Likewise.
10576         * modules/stdlib-tests: Likewise.
10577         * modules/string-tests: Likewise.
10578         * modules/strings-tests: Likewise.
10579         * modules/sys_select-tests: Likewise.
10580         * modules/sys_socket-tests: Likewise.
10581         * modules/sys_stat-tests: Likewise.
10582         * modules/sys_time-tests: Likewise.
10583         * modules/sys_utsname-tests: Likewise.
10584         * modules/sysexits-tests: Likewise.
10585         * modules/time-tests: Likewise.
10586         * modules/trunc-tests: Likewise.
10587         * modules/truncf-tests: Likewise.
10588         * modules/truncl-tests: Likewise.
10589         * modules/tsearch-tests: Likewise.
10590         * modules/unistd-tests: Likewise.
10591         * modules/wchar-tests: Likewise.
10592         * modules/wctype-tests: Likewise.
10593
10594         tests: fix license on several tests
10595         * tests/test-des.c: Update to GPLv3+.
10596         * tests/test-flock.c: Likewise.
10597         * tests/test-fsync.c: Likewise.
10598         * tests/test-futimens.h: Likewise.
10599         * tests/test-gc-arcfour.c: Likewise.
10600         * tests/test-gc-arctwo.c: Likewise.
10601         * tests/test-gc-des.c: Likewise.
10602         * tests/test-gc-hmac-md5.c: Likewise.
10603         * tests/test-gc-hmac-sha1.c: Likewise.
10604         * tests/test-gc-md2.c: Likewise.
10605         * tests/test-gc-md4.c: Likewise.
10606         * tests/test-gc-md5.c: Likewise.
10607         * tests/test-gc-pbkdf2-sha1.c: Likewise.
10608         * tests/test-gc-rijndael.c: Likewise.
10609         * tests/test-gc-sha1.c: Likewise.
10610         * tests/test-gc.c: Likewise.
10611         * tests/test-getcwd.c: Likewise.
10612         * tests/test-link.c: Likewise.
10613         * tests/test-link.h: Likewise.
10614         * tests/test-lutimens.h: Likewise.
10615         * tests/test-md2.c: Likewise.
10616         * tests/test-md4.c: Likewise.
10617         * tests/test-mkdir.h: Likewise.
10618         * tests/test-rename.c: Likewise.
10619         * tests/test-rename.h: Likewise.
10620         * tests/test-safe-alloc.c: Likewise.
10621         * tests/test-utimens-common.h: Likewise.
10622         * tests/test-utimens.h: Likewise.
10623
10624         maint: sync license texts
10625         * config/srclist.txt: Add gpl-1.3.texi, lgpl-1.3.texi.
10626         * doc/gpl-3.0.texi: Revert copyright year update.
10627         * doc/lgpl-3.0.texi: Likewise.
10628
10629 2009-12-29  Jim Meyering  <meyering@redhat.com>
10630
10631         update nearly all FSF copyright year lists to include 2009
10632         The files named by the following are exempted:
10633             grep -v '^#' config/srclist.txt|grep -v '^$' | while read src dst; do
10634               test -f "$dst" && { echo "$dst"; continue; }
10635               test -d "$dst" || continue
10636               echo "$dst"/$(basename "$src")
10637             done > exempt
10638             git ls-files tests/unictype >> exempt
10639         In the remaining files, convert to all-interval notation if
10640         - there is already at least one year interval like 2000-2003
10641         - the file is maintained by me
10642         - the file is in lib/uni*/, where that style already prevails
10643         Otherwise, use update-copyright's default.
10644
10645 2009-12-29  Simon Josefsson  <simon@josefsson.org>
10646         and Eric Blake  <ebb9@byu.net>
10647
10648         tests: don't require debug system() to pass
10649         * tests/test-lstat.h (test_lstat_func): Move debug cleanup...
10650         * tests/test-rmdir.h (test_rmdir_func): Likewise.
10651         * tests/test-unlink.h (test_unlink_func): Likewise.
10652         * tests/test-fstatat.c (main): ...into callers.
10653         * tests/test-lstat.c (main): Likewise.
10654         * tests/test-rmdir.c (main): Likewise.
10655         * tests/test-unlink.c (main): Likewise.
10656         * tests/test-unlinkat.c (main): Likewise.
10657         * tests/test-areadlink-with-size.c (main): Don't require a
10658         debug-only system call to pass, aiding cross-testing to mingw.
10659         * tests/test-areadlink.c (main): Likewise.
10660         * tests/test-areadlinkat-with-size.c (main): Likewise.
10661         * tests/test-areadlinkat.c (main): Likewise.
10662         * tests/test-canonicalize-lgpl.c (main): Likewise.
10663         * tests/test-canonicalize.c (main): Likewise.
10664         * tests/test-chown.c (main): Likewise.
10665         * tests/test-fchownat.c (main): Likewise.
10666         * tests/test-lchown.c (main): Likewise.
10667         * tests/test-fdutimensat.c (main): Likewise.
10668         * tests/test-futimens.c (main): Likewise.
10669         * tests/test-link.c (main): Likewise.
10670         * tests/test-linkat.c (main): Likewise.
10671         * tests/test-mkdir.c (main): Likewise.
10672         * tests/test-mkdirat.c (main): Likewise.
10673         * tests/test-mkfifo.c (main): Likewise.
10674         * tests/test-mkfifoat.c (main): Likewise.
10675         * tests/test-mknod.c (main): Likewise.
10676         * tests/test-readlink.c (main): Likewise.
10677         * tests/test-remove.c (main): Likewise.
10678         * tests/test-rename.c (main): Likewise.
10679         * tests/test-renameat.c (main): Likewise.
10680         * tests/test-symlink.c (main): Likewise.
10681         * tests/test-symlinkat.c (main): Likewise.
10682         * tests/test-utimens.c (main): Likewise.
10683         * tests/test-utimensat.c (main): Likewise.
10684
10685 2009-12-29  Simon Josefsson  <simon@josefsson.org>
10686
10687         * modules/selinux-h (selinux/selinux.h, selinux/context.h): Depend
10688         on $(UNUSED_PARAMETER_H) to avoid build failure.
10689
10690 2009-12-28  Jim Meyering  <meyering@redhat.com>
10691
10692         update-copyright: you may specify a max. line length other than 72
10693         * build-aux/update-copyright: Honor $UPDATE_COPYRIGHT_MAX_LINE_LENGTH.
10694
10695         maint: use consistent FSF copyright line syntax
10696         * lib/posixtm.c: Add missing comma in FSF copyright line.
10697         * lib/posixtm.h: Likewise.
10698         * lib/getugroups.c: Add missing ", Inc.".
10699
10700         pmccabe2html: emit consistent FSF copyright; remove trailing blanks
10701         * build-aux/pmccabe2html: Insert comma before "Inc." in emitted
10702         FSF copyright line.  Remove trailing blanks.
10703
10704 2009-12-28  Eric Blake  <ebb9@byu.net>
10705
10706         test-dup2: reduce dependencies
10707         * modules/cloexec (Configure.ac): Set witness.
10708         * modules/dup2-tests (Depends-on): Drop cloexec.
10709         * tests/test-dup2.c (main): Skip portion of test if cloexec module
10710         not present.
10711         Suggested by Bruno Haible.
10712
10713 2009-12-26  Bruno Haible  <bruno@clisp.org>
10714
10715         Remove an unneeded dependency.
10716         * modules/fseterr (Depends-on): Remove dup2.
10717
10718 2009-12-26  Eric Blake  <ebb9@byu.net>
10719
10720         tests: use macros.h in more places
10721         * tests/macros.h (ASSERT): Depend on ASSERT_STREAM.
10722         (ASSERT_STREAM): Provide default of stderr.
10723         * tests/test-dirent-safer.c: Include macros.h, using alternate
10724         stream for assertions.
10725         * tests/test-dup-safer.c: Likewise.
10726         * tests/test-freopen-safer.c: Likewise.
10727         * tests/test-getopt.c: Likewise.
10728         * tests/test-openat-safer.c: Likewise.
10729         * tests/test-pipe.c: Likewise.
10730         * tests/test-popen-safer.c: Likewise.
10731         * modules/dirent-safer-tests (Files): Include macros.h.
10732         * modules/unistd-safer-tests (Files): Likewise.
10733         * modules/freopen-safer-tests (Files): Likewise.
10734         * modules/getopt-posix-tests (Files): Likewise.
10735         * modules/openat-safer-tests (Files): Likewise.
10736         * modules/pipe-tests (Files): Likewise.
10737
10738 2009-12-26  Bruno Haible  <bruno@clisp.org>
10739
10740         javacomp: Portability fix.
10741         * m4/javacomp.m4 (gt_JAVACOMP): Fix creation of conftestver.class so
10742         that it also works on Solaris.
10743
10744 2009-12-26  Bruno Haible  <bruno@clisp.org>
10745
10746         localename: Fix storage allocation of gl_locale_name_thread's result.
10747         * lib/localename.c (SIZE_BITS, string_hash, struct hash_node,
10748         HASH_TABLE_SIZE, struniq_hash_table, struniq_lock, struniq): Define on
10749         all platforms that have 'uselocale'.
10750         (gl_locale_name_thread_unsafe): New function, extracted from
10751         gl_locale_name_thread.
10752         (gl_locale_name_thread): Call struniq on all platforms that have
10753         'uselocale'.
10754         * tests/test-localename.c (test_locale_name_thread): Check that the
10755         resulting strings are permanently allocated.
10756         * modules/localename-tests (Depends-on): Add strdup.
10757
10758 2009-12-26  Bruno Haible  <bruno@clisp.org>
10759
10760         * tests/test-localename.c (categories): Fill in the strings.
10761
10762 2009-12-26  Jim Meyering  <meyering@redhat.com>
10763
10764         isdir: complete the removal of m4/isdir.m4
10765         * modules/isdir (configure.ac): Remove reference to gl_ISDIR.
10766
10767         isdir: clean up, since at least grep still uses it
10768         * lib/isdir.c: Include "isdir.h".
10769         (S_ISDIR): Remove now-unneeded definition.
10770         * modules/isdir (Files): Add lib/isdir.h.
10771         * lib/isdir.h: New file, with declaration.
10772         * m4/isdir.m4: Remove file -- unneeded.
10773
10774 2009-12-25  Bruno Haible  <bruno@clisp.org>
10775
10776         selinux-h: Make generated .h files standalone.
10777         * lib/se-context.in.h: Arrange to include _GL_UNUSED_PARAMETER
10778         definition. Use _GL_UNUSED_PARAMETER instead of _GL_UNUSED.
10779         * lib/se-selinux.in.h: Likewise.
10780         * modules/selinux-h (Depends-on): Add unused-parameter.
10781         (Makefile.am): Insert definition of _GL_UNUSED_PARAMETER into
10782         selinux/selinux.h and selinux/context.h.
10783         Suggested by Eric Blake.
10784
10785 2009-12-25  Bruno Haible  <bruno@clisp.org>
10786
10787         Move gl_FCNTL_O_FLAGS to a separate .m4 file.
10788         * m4/fcntl-o.m4: New file, extracted from m4/fcntl_h.m4.
10789         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): Remove macro.
10790         * modules/fcntl-h (Files): Add m4/fcntl-o.m4.
10791         * modules/localcharset (Files): Likewise. Remove m4/fcntl_h.m4.
10792
10793 2009-12-24  Bruno Haible  <bruno@clisp.org>
10794
10795         openat: Fix warning.
10796         * lib/openat-proc.c: Include <unistd.h>.
10797
10798 2009-12-24  Bruno Haible  <bruno@clisp.org>
10799
10800         New module 'unused-parameter'.
10801         * build-aux/unused-parameter.h: New file, extracted from earlier
10802         gnulib-common.m4.
10803         * modules/unused-parameter: New file.
10804         * lib/unistr.h: Include unused-parameter.h.
10805         (u32_mbtouc_unsafe, u32_mbtouc): Use _GL_UNUSED_PARAMETER instead of
10806         _GL_UNUSED.
10807         * modules/unistr/base (Depends-on): Add unused-parameter.
10808
10809 2009-12-24  Bruno Haible  <bruno@clisp.org>
10810
10811         Add missing dependencies to 'extensions' module.
10812         * m4/extensions.m4: Add comment.
10813         * modules/accept4 (Depends-on): Add extensions.
10814         * modules/dup3 (Depends-on): Likewise.
10815         * modules/fcntl (Depends-on): Likewise.
10816         * modules/futimens (Depends-on): Likewise.
10817         * modules/mknod (Depends-on): Likewise.
10818         * modules/pipe2 (Depends-on): Likewise.
10819         * modules/stat-time (Depends-on): Likewise.
10820         * modules/strcasestr-simple (Depends-on): Likewise.
10821         * modules/strsignal (Depends-on): Likewise.
10822         * modules/utimensat (Depends-on): Likewise.
10823         * modules/localcharset (Depends-on): Likewise. Needed because of
10824         gl_FCNTL_O_FLAGS.
10825         * modules/wcrtomb (Depends-on): Likewise. Needed because of
10826         AC_TYPE_MBSTATE_T.
10827         * modules/wcsnrtombs (Depends-on): Likewise.
10828         * modules/wcsrtombs (Depends-on): Likewise.
10829
10830 2009-12-24  Bruno Haible  <bruno@clisp.org>
10831
10832         binary-io: Avoid gcc warning due to SET_BINARY.
10833         * lib/binary-io.h (SET_BINARY): Cast the result to void.
10834         Reported by Jim Meyering <jim@meyering.net>. Suggestion by Eric Blake.
10835
10836 2009-12-24  Bruno Haible  <bruno@clisp.org>
10837
10838         Avoid future namespace pollution on glibc systems.
10839         * lib/arpa_inet.in.h: Don't include <sys/socket.h> on glibc systems.
10840         * lib/sys_ioctl.in.h: Don't include <unistd.h> on glibc systems.
10841         * lib/sys_select.in.h: Don't include <sys/time.h> and <string.h> on
10842         glibc systems.
10843
10844 2009-12-24  Bruno Haible  <bruno@clisp.org>
10845
10846         Refactor common macros used in tests.
10847         * tests/macros.h: New file.
10848         * tests/test-areadlink.c: Include macros.h. Don't include <stdio.h>
10849         and/or <stdlib.h>, if appropriate.
10850         (ASSERT, SIZEOF): Remove macros.
10851         * tests/test-areadlink-with-size.c: Likewise.
10852         * tests/test-areadlinkat.c: Likewise.
10853         * tests/test-areadlinkat-with-size.c: Likewise.
10854         * tests/test-argmatch.c: Likewise.
10855         * tests/test-argv-iter.c: Likewise.
10856         * tests/test-array-mergesort.c: Likewise.
10857         * tests/test-array_list.c: Likewise.
10858         * tests/test-array_oset.c: Likewise.
10859         * tests/test-avltree_list.c: Likewise.
10860         * tests/test-avltree_oset.c: Likewise.
10861         * tests/test-avltreehash_list.c: Likewise.
10862         * tests/test-base64.c: Likewise.
10863         * tests/test-binary-io.c: Likewise.
10864         * tests/test-bitrotate.c: Likewise.
10865         * tests/test-btowc.c: Likewise.
10866         * tests/test-byteswap.c: Likewise.
10867         * tests/test-c-ctype.c: Likewise.
10868         * tests/test-c-stack.c: Likewise.
10869         * tests/test-c-strcasecmp.c: Likewise.
10870         * tests/test-c-strcasestr.c: Likewise.
10871         * tests/test-c-strncasecmp.c: Likewise.
10872         * tests/test-c-strstr.c: Likewise.
10873         * tests/test-canonicalize-lgpl.c: Likewise.
10874         * tests/test-canonicalize.c: Likewise.
10875         * tests/test-carray_list.c: Likewise.
10876         * tests/test-ceilf1.c: Likewise.
10877         * tests/test-ceilf2.c: Likewise.
10878         * tests/test-ceill.c: Likewise.
10879         * tests/test-chown.c: Likewise.
10880         * tests/test-cloexec.c: Likewise.
10881         * tests/test-copy-acl.c: Likewise.
10882         * tests/test-copy-file.c: Likewise.
10883         * tests/test-count-one-bits.c: Likewise.
10884         * tests/test-dprintf-posix.c: Likewise.
10885         * tests/test-dup2.c: Likewise.
10886         * tests/test-dup3.c: Likewise.
10887         * tests/test-duplocale.c: Likewise.
10888         * tests/test-fbufmode.c: Likewise.
10889         * tests/test-fchdir.c: Likewise.
10890         * tests/test-fchownat.c: Likewise.
10891         * tests/test-fcntl-safer.c: Likewise.
10892         * tests/test-fcntl.c: Likewise.
10893         * tests/test-fdopendir.c: Likewise.
10894         * tests/test-fdutimensat.c: Likewise.
10895         * tests/test-fflush2.c: Likewise.
10896         * tests/test-file-has-acl.c: Likewise.
10897         * tests/test-filevercmp.c: Likewise.
10898         * tests/test-flock.c: Likewise.
10899         * tests/test-floorf1.c: Likewise.
10900         * tests/test-floorf2.c: Likewise.
10901         * tests/test-floorl.c: Likewise.
10902         * tests/test-fnmatch.c: Likewise.
10903         * tests/test-fopen.h: Likewise.
10904         * tests/test-fpending.c: Likewise.
10905         * tests/test-fprintf-posix.c: Likewise.
10906         * tests/test-fpurge.c: Likewise.
10907         * tests/test-freadable.c: Likewise.
10908         * tests/test-freadahead.c: Likewise.
10909         * tests/test-freading.c: Likewise.
10910         * tests/test-freadptr.c: Likewise.
10911         * tests/test-freadptr2.c: Likewise.
10912         * tests/test-freadseek.c: Likewise.
10913         * tests/test-freopen.c: Likewise.
10914         * tests/test-frexp.c: Likewise.
10915         * tests/test-frexpl.c: Likewise.
10916         * tests/test-fseek.c: Likewise.
10917         * tests/test-fseeko.c: Likewise.
10918         * tests/test-fstatat.c: Likewise.
10919         * tests/test-fstrcmp.c: Likewise.
10920         * tests/test-fsync.c: Likewise.
10921         * tests/test-ftell.c: Likewise.
10922         * tests/test-ftello.c: Likewise.
10923         * tests/test-func.c: Likewise.
10924         * tests/test-futimens.c: Likewise.
10925         * tests/test-fwritable.c: Likewise.
10926         * tests/test-fwriting.c: Likewise.
10927         * tests/test-getcwd.c: Likewise.
10928         * tests/test-getdate.c: Likewise.
10929         * tests/test-getdelim.c: Likewise.
10930         * tests/test-getdtablesize.c: Likewise.
10931         * tests/test-getgroups.c: Likewise.
10932         * tests/test-getline.c: Likewise.
10933         * tests/test-getndelim2.c: Likewise.
10934         * tests/test-glob.c: Likewise.
10935         * tests/test-hash.c: Likewise.
10936         * tests/test-i-ring.c: Likewise.
10937         * tests/test-iconv-utf.c: Likewise.
10938         * tests/test-iconv.c: Likewise.
10939         * tests/test-idpriv-drop.c: Likewise.
10940         * tests/test-idpriv-droptemp.c: Likewise.
10941         * tests/test-inet_ntop.c: Likewise.
10942         * tests/test-inet_pton.c: Likewise.
10943         * tests/test-isblank.c: Likewise.
10944         * tests/test-isfinite.c: Likewise.
10945         * tests/test-isinf.c: Likewise.
10946         * tests/test-isnan.c: Likewise.
10947         * tests/test-isnand.h: Likewise.
10948         * tests/test-isnanf.h: Likewise.
10949         * tests/test-isnanl.h: Likewise.
10950         * tests/test-lchown.c: Likewise.
10951         * tests/test-ldexpl.c: Likewise.
10952         * tests/test-link.c: Likewise.
10953         * tests/test-linkat.c: Likewise.
10954         * tests/test-linked_list.c: Likewise.
10955         * tests/test-linkedhash_list.c: Likewise.
10956         * tests/test-localename.c: Likewise.
10957         * tests/test-lseek.c: Likewise.
10958         * tests/test-lstat.c: Likewise.
10959         * tests/test-mbmemcasecmp.c: Likewise.
10960         * tests/test-mbmemcasecoll.c: Likewise.
10961         * tests/test-mbrtowc.c: Likewise.
10962         * tests/test-mbscasecmp.c: Likewise.
10963         * tests/test-mbscasestr1.c: Likewise.
10964         * tests/test-mbscasestr2.c: Likewise.
10965         * tests/test-mbscasestr3.c: Likewise.
10966         * tests/test-mbscasestr4.c: Likewise.
10967         * tests/test-mbschr.c: Likewise.
10968         * tests/test-mbscspn.c: Likewise.
10969         * tests/test-mbsinit.c: Likewise.
10970         * tests/test-mbsncasecmp.c: Likewise.
10971         * tests/test-mbsnrtowcs.c: Likewise.
10972         * tests/test-mbspbrk.c: Likewise.
10973         * tests/test-mbspcasecmp.c: Likewise.
10974         * tests/test-mbsrchr.c: Likewise.
10975         * tests/test-mbsrtowcs.c: Likewise.
10976         * tests/test-mbsspn.c: Likewise.
10977         * tests/test-mbsstr1.c: Likewise.
10978         * tests/test-mbsstr2.c: Likewise.
10979         * tests/test-mbsstr3.c: Likewise.
10980         * tests/test-memchr.c: Likewise.
10981         * tests/test-memchr2.c: Likewise.
10982         * tests/test-memcmp.c: Likewise.
10983         * tests/test-memmem.c: Likewise.
10984         * tests/test-memrchr.c: Likewise.
10985         * tests/test-mkdir.c: Likewise.
10986         * tests/test-mkdirat.c: Likewise.
10987         * tests/test-mkfifo.c: Likewise.
10988         * tests/test-mkfifoat.c: Likewise.
10989         * tests/test-mknod.c: Likewise.
10990         * tests/test-nanosleep.c: Likewise.
10991         * tests/test-nl_langinfo.c: Likewise.
10992         * tests/test-obstack-printf.c: Likewise.
10993         * tests/test-open.c: Likewise.
10994         * tests/test-openat.c: Likewise.
10995         * tests/test-pipe-filter-gi1.c: Likewise.
10996         * tests/test-pipe-filter-gi2-main.c: Likewise.
10997         * tests/test-pipe-filter-ii1.c: Likewise.
10998         * tests/test-pipe-filter-ii2-main.c: Likewise.
10999         * tests/test-pipe2.c: Likewise.
11000         * tests/test-popen.h: Likewise.
11001         * tests/test-posixtm.c: Likewise.
11002         * tests/test-pread.c: Likewise.
11003         * tests/test-printf-frexp.c: Likewise.
11004         * tests/test-printf-frexpl.c: Likewise.
11005         * tests/test-printf-posix.c: Likewise.
11006         * tests/test-priv-set.c: Likewise.
11007         * tests/test-quotearg.c: Likewise.
11008         * tests/test-random_r.c: Likewise.
11009         * tests/test-rawmemchr.c: Likewise.
11010         * tests/test-rbtree_list.c: Likewise.
11011         * tests/test-rbtree_oset.c: Likewise.
11012         * tests/test-rbtreehash_list.c: Likewise.
11013         * tests/test-readlink.c: Likewise.
11014         * tests/test-remove.c: Likewise.
11015         * tests/test-rename.c: Likewise.
11016         * tests/test-renameat.c: Likewise.
11017         * tests/test-rmdir.c: Likewise.
11018         * tests/test-round1.c: Likewise.
11019         * tests/test-roundf1.c: Likewise.
11020         * tests/test-roundl.c: Likewise.
11021         * tests/test-safe-alloc.c: Likewise.
11022         * tests/test-sameacls.c: Likewise.
11023         * tests/test-set-mode-acl.c: Likewise.
11024         * tests/test-setenv.c: Likewise.
11025         * tests/test-sigaction.c: Likewise.
11026         * tests/test-signbit.c: Likewise.
11027         * tests/test-sleep.c: Likewise.
11028         * tests/test-snprintf-posix.c: Likewise.
11029         * tests/test-snprintf.c: Likewise.
11030         * tests/test-sprintf-posix.c: Likewise.
11031         * tests/test-stat-time.c: Likewise.
11032         * tests/test-stat.c: Likewise.
11033         * tests/test-strcasestr.c: Likewise.
11034         * tests/test-strchrnul.c: Likewise.
11035         * tests/test-strerror.c: Likewise.
11036         * tests/test-striconv.c: Likewise.
11037         * tests/test-striconveh.c: Likewise.
11038         * tests/test-striconveha.c: Likewise.
11039         * tests/test-strsignal.c: Likewise.
11040         * tests/test-strstr.c: Likewise.
11041         * tests/test-strtod.c: Likewise.
11042         * tests/test-strverscmp.c: Likewise.
11043         * tests/test-symlink.c: Likewise.
11044         * tests/test-symlinkat.c: Likewise.
11045         * tests/test-trunc1.c: Likewise.
11046         * tests/test-trunc2.c: Likewise.
11047         * tests/test-truncf1.c: Likewise.
11048         * tests/test-truncf2.c: Likewise.
11049         * tests/test-truncl.c: Likewise.
11050         * tests/test-uname.c: Likewise.
11051         * tests/test-unlink.c: Likewise.
11052         * tests/test-unlinkat.c: Likewise.
11053         * tests/test-unsetenv.c: Likewise.
11054         * tests/test-usleep.c: Likewise.
11055         * tests/test-utimens.c: Likewise.
11056         * tests/test-utimensat.c: Likewise.
11057         * tests/test-vasnprintf-posix.c: Likewise.
11058         * tests/test-vasnprintf-posix2.c: Likewise.
11059         * tests/test-vasnprintf.c: Likewise.
11060         * tests/test-vasprintf-posix.c: Likewise.
11061         * tests/test-vasprintf.c: Likewise.
11062         * tests/test-vdprintf-posix.c: Likewise.
11063         * tests/test-vfprintf-posix.c: Likewise.
11064         * tests/test-vprintf-posix.c: Likewise.
11065         * tests/test-vsnprintf-posix.c: Likewise.
11066         * tests/test-vsnprintf.c: Likewise.
11067         * tests/test-vsprintf-posix.c: Likewise.
11068         * tests/test-wcrtomb.c: Likewise.
11069         * tests/test-wcsnrtombs.c: Likewise.
11070         * tests/test-wcsrtombs.c: Likewise.
11071         * tests/test-wctype.c: Likewise.
11072         * tests/test-wcwidth.c: Likewise.
11073         * tests/test-xfprintf-posix.c: Likewise.
11074         * tests/test-xmemdup0.c: Likewise.
11075         * tests/test-xprintf-posix.c: Likewise.
11076         * tests/test-xvasprintf.c: Likewise.
11077         * tests/unicase/test-locale-language.c: Likewise.
11078         * tests/unicase/test-mapping-part1.h: Likewise.
11079         * tests/unicase/test-predicate-part1.h: Likewise.
11080         * tests/unicase/test-u8-casecmp.c: Likewise.
11081         * tests/unicase/test-u8-casecoll.c: Likewise.
11082         * tests/unicase/test-u8-casefold.c: Likewise.
11083         * tests/unicase/test-u8-is-cased.c: Likewise.
11084         * tests/unicase/test-u8-is-casefolded.c: Likewise.
11085         * tests/unicase/test-u8-is-lowercase.c: Likewise.
11086         * tests/unicase/test-u8-is-titlecase.c: Likewise.
11087         * tests/unicase/test-u8-is-uppercase.c: Likewise.
11088         * tests/unicase/test-u8-tolower.c: Likewise.
11089         * tests/unicase/test-u8-totitle.c: Likewise.
11090         * tests/unicase/test-u8-toupper.c: Likewise.
11091         * tests/unicase/test-u16-casecmp.c: Likewise.
11092         * tests/unicase/test-u16-casecoll.c: Likewise.
11093         * tests/unicase/test-u16-casefold.c: Likewise.
11094         * tests/unicase/test-u16-is-cased.c: Likewise.
11095         * tests/unicase/test-u16-is-casefolded.c: Likewise.
11096         * tests/unicase/test-u16-is-lowercase.c: Likewise.
11097         * tests/unicase/test-u16-is-titlecase.c: Likewise.
11098         * tests/unicase/test-u16-is-uppercase.c: Likewise.
11099         * tests/unicase/test-u16-tolower.c: Likewise.
11100         * tests/unicase/test-u16-totitle.c: Likewise.
11101         * tests/unicase/test-u16-toupper.c: Likewise.
11102         * tests/unicase/test-u32-casecmp.c: Likewise.
11103         * tests/unicase/test-u32-casecoll.c: Likewise.
11104         * tests/unicase/test-u32-casefold.c: Likewise.
11105         * tests/unicase/test-u32-is-cased.c: Likewise.
11106         * tests/unicase/test-u32-is-casefolded.c: Likewise.
11107         * tests/unicase/test-u32-is-lowercase.c: Likewise.
11108         * tests/unicase/test-u32-is-titlecase.c: Likewise.
11109         * tests/unicase/test-u32-is-uppercase.c: Likewise.
11110         * tests/unicase/test-u32-tolower.c: Likewise.
11111         * tests/unicase/test-u32-totitle.c: Likewise.
11112         * tests/unicase/test-u32-toupper.c: Likewise.
11113         * tests/unicase/test-ulc-casecmp.c: Likewise.
11114         * tests/unicase/test-ulc-casecoll.c: Likewise.
11115         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
11116         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
11117         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
11118         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
11119         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
11120         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
11121         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
11122         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
11123         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
11124         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
11125         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
11126         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
11127         * tests/unictype/test-bidi_byname.c: Likewise.
11128         * tests/unictype/test-bidi_name.c: Likewise.
11129         * tests/unictype/test-bidi_of.c: Likewise.
11130         * tests/unictype/test-bidi_test.c: Likewise.
11131         * tests/unictype/test-block_list.c: Likewise.
11132         * tests/unictype/test-block_of.c: Likewise.
11133         * tests/unictype/test-block_test.c: Likewise.
11134         * tests/unictype/test-categ_and.c: Likewise.
11135         * tests/unictype/test-categ_and_not.c: Likewise.
11136         * tests/unictype/test-categ_byname.c: Likewise.
11137         * tests/unictype/test-categ_name.c: Likewise.
11138         * tests/unictype/test-categ_none.c: Likewise.
11139         * tests/unictype/test-categ_of.c: Likewise.
11140         * tests/unictype/test-categ_or.c: Likewise.
11141         * tests/unictype/test-categ_test_withtable.c: Likewise.
11142         * tests/unictype/test-combining.c: Likewise.
11143         * tests/unictype/test-decdigit.c: Likewise.
11144         * tests/unictype/test-digit.c: Likewise.
11145         * tests/unictype/test-mirror.c: Likewise.
11146         * tests/unictype/test-numeric.c: Likewise.
11147         * tests/unictype/test-pr_byname.c: Likewise.
11148         * tests/unictype/test-pr_test.c: Likewise.
11149         * tests/unictype/test-predicate-part1.h: Likewise.
11150         * tests/unictype/test-scripts.c: Likewise.
11151         * tests/unictype/test-sy_c_ident.c: Likewise.
11152         * tests/unictype/test-sy_java_ident.c: Likewise.
11153         * tests/unilbrk/test-u8-possible-linebreaks.c: Likewise.
11154         * tests/unilbrk/test-u8-width-linebreaks.c: Likewise.
11155         * tests/unilbrk/test-u16-possible-linebreaks.c: Likewise.
11156         * tests/unilbrk/test-u16-width-linebreaks.c: Likewise.
11157         * tests/unilbrk/test-u32-possible-linebreaks.c: Likewise.
11158         * tests/unilbrk/test-u32-width-linebreaks.c: Likewise.
11159         * tests/unilbrk/test-ulc-possible-linebreaks.c: Likewise.
11160         * tests/unilbrk/test-ulc-width-linebreaks.c: Likewise.
11161         * tests/uninorm/test-canonical-decomposition.c: Likewise.
11162         * tests/uninorm/test-compat-decomposition.c: Likewise.
11163         * tests/uninorm/test-composition.c: Likewise.
11164         * tests/uninorm/test-decomposing-form.c: Likewise.
11165         * tests/uninorm/test-decomposition.c: Likewise.
11166         * tests/uninorm/test-u8-nfc.c: Likewise.
11167         * tests/uninorm/test-u8-nfd.c: Likewise.
11168         * tests/uninorm/test-u8-nfkc.c: Likewise.
11169         * tests/uninorm/test-u8-nfkd.c: Likewise.
11170         * tests/uninorm/test-u8-normcmp.c: Likewise.
11171         * tests/uninorm/test-u8-normcoll.c: Likewise.
11172         * tests/uninorm/test-u16-nfc.c: Likewise.
11173         * tests/uninorm/test-u16-nfd.c: Likewise.
11174         * tests/uninorm/test-u16-nfkc.c: Likewise.
11175         * tests/uninorm/test-u16-nfkd.c: Likewise.
11176         * tests/uninorm/test-u16-normcmp.c: Likewise.
11177         * tests/uninorm/test-u16-normcoll.c: Likewise.
11178         * tests/uninorm/test-u32-nfc.c: Likewise.
11179         * tests/uninorm/test-u32-nfd.c: Likewise.
11180         * tests/uninorm/test-u32-nfkc.c: Likewise.
11181         * tests/uninorm/test-u32-nfkd.c: Likewise.
11182         * tests/uninorm/test-u32-normalize-big.c: Likewise.
11183         * tests/uninorm/test-u32-normcmp.c: Likewise.
11184         * tests/uninorm/test-u32-normcoll.c: Likewise.
11185         * tests/uninorm/test-uninorm-filter-nfc.c: Likewise.
11186         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
11187         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
11188         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
11189         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
11190         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
11191         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
11192         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
11193         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
11194         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
11195         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
11196         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
11197         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
11198         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
11199         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
11200         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
11201         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
11202         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
11203         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
11204         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
11205         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
11206         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
11207         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
11208         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
11209         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
11210         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
11211         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
11212         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
11213         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
11214         * tests/uniwbrk/test-u8-wordbreaks.c: Likewise.
11215         * tests/uniwbrk/test-u16-wordbreaks.c: Likewise.
11216         * tests/uniwbrk/test-u32-wordbreaks.c: Likewise.
11217         * tests/uniwbrk/test-ulc-wordbreaks.c: Likewise.
11218         * tests/uniwidth/test-u8-strwidth.c: Likewise.
11219         * tests/uniwidth/test-u8-width.c: Likewise.
11220         * tests/uniwidth/test-u16-strwidth.c: Likewise.
11221         * tests/uniwidth/test-u16-width.c: Likewise.
11222         * tests/uniwidth/test-u32-strwidth.c: Likewise.
11223         * tests/uniwidth/test-u32-width.c: Likewise.
11224         * tests/uniwidth/test-uc_width.c: Likewise.
11225         * tests/uniwidth/test-uc_width2.c: Likewise.
11226         * modules/acl-tests (Files): Add tests/macros.h.
11227         * modules/areadlink-tests (Files): Likewise.
11228         * modules/areadlink-with-size-tests (Files): Likewise.
11229         * modules/areadlinkat-tests (Files): Likewise.
11230         * modules/areadlinkat-with-size-tests (Files): Likewise.
11231         * modules/argmatch-tests (Files): Likewise.
11232         * modules/argv-iter-tests (Files): Likewise.
11233         * modules/array-list-tests (Files): Likewise.
11234         * modules/array-mergesort-tests (Files): Likewise.
11235         * modules/array-oset-tests (Files): Likewise.
11236         * modules/avltree-list-tests (Files): Likewise.
11237         * modules/avltree-oset-tests (Files): Likewise.
11238         * modules/avltreehash-list-tests (Files): Likewise.
11239         * modules/base64-tests (Files): Likewise.
11240         * modules/binary-io-tests (Files): Likewise.
11241         * modules/bitrotate-tests (Files): Likewise.
11242         * modules/btowc-tests (Files): Likewise.
11243         * modules/byteswap-tests (Files): Likewise.
11244         * modules/c-ctype-tests (Files): Likewise.
11245         * modules/c-stack-tests (Files): Likewise.
11246         * modules/c-strcase-tests (Files): Likewise.
11247         * modules/c-strcasestr-tests (Files): Likewise.
11248         * modules/c-strstr-tests (Files): Likewise.
11249         * modules/canonicalize-lgpl-tests (Files): Likewise.
11250         * modules/canonicalize-tests (Files): Likewise.
11251         * modules/carray-list-tests (Files): Likewise.
11252         * modules/ceilf-tests (Files): Likewise.
11253         * modules/ceill-tests (Files): Likewise.
11254         * modules/chown-tests (Files): Likewise.
11255         * modules/cloexec-tests (Files): Likewise.
11256         * modules/copy-file-tests (Files): Likewise.
11257         * modules/count-one-bits-tests (Files): Likewise.
11258         * modules/dprintf-posix-tests (Files): Likewise.
11259         * modules/dup2-tests (Files): Likewise.
11260         * modules/dup3-tests (Files): Likewise.
11261         * modules/duplocale-tests (Files): Likewise.
11262         * modules/fbufmode-tests (Files): Likewise.
11263         * modules/fchdir-tests (Files): Likewise.
11264         * modules/fcntl-safer-tests (Files): Likewise.
11265         * modules/fcntl-tests (Files): Likewise.
11266         * modules/fdopendir-tests (Files): Likewise.
11267         * modules/fdutimensat-tests (Files): Likewise.
11268         * modules/fflush-tests (Files): Likewise.
11269         * modules/filevercmp-tests (Files): Likewise.
11270         * modules/flock-tests (Files): Likewise.
11271         * modules/floorf-tests (Files): Likewise.
11272         * modules/floorl-tests (Files): Likewise.
11273         * modules/fnmatch-tests (Files): Likewise.
11274         * modules/fopen-safer-tests (Files): Likewise.
11275         * modules/fopen-tests (Files): Likewise.
11276         * modules/fpending-tests (Files): Likewise.
11277         * modules/fprintf-posix-tests (Files): Likewise.
11278         * modules/fpurge-tests (Files): Likewise.
11279         * modules/freadable-tests (Files): Likewise.
11280         * modules/freadahead-tests (Files): Likewise.
11281         * modules/freading-tests (Files): Likewise.
11282         * modules/freadptr-tests (Files): Likewise.
11283         * modules/freadseek-tests (Files): Likewise.
11284         * modules/freopen-tests (Files): Likewise.
11285         * modules/frexp-nolibm-tests (Files): Likewise.
11286         * modules/frexp-tests (Files): Likewise.
11287         * modules/frexpl-nolibm-tests (Files): Likewise.
11288         * modules/frexpl-tests (Files): Likewise.
11289         * modules/fseek-tests (Files): Likewise.
11290         * modules/fseeko-tests (Files): Likewise.
11291         * modules/fstrcmp-tests (Files): Likewise.
11292         * modules/fsync-tests (Files): Likewise.
11293         * modules/ftell-tests (Files): Likewise.
11294         * modules/ftello-tests (Files): Likewise.
11295         * modules/func-tests (Files): Likewise.
11296         * modules/futimens-tests (Files): Likewise.
11297         * modules/fwritable-tests (Files): Likewise.
11298         * modules/fwriting-tests (Files): Likewise.
11299         * modules/getcwd-tests (Files): Likewise.
11300         * modules/getdate-tests (Files): Likewise.
11301         * modules/getdelim-tests (Files): Likewise.
11302         * modules/getdtablesize-tests (Files): Likewise.
11303         * modules/getgroups-tests (Files): Likewise.
11304         * modules/getline-tests (Files): Likewise.
11305         * modules/getndelim2-tests (Files): Likewise.
11306         * modules/glob-tests (Files): Likewise.
11307         * modules/hash-tests (Files): Likewise.
11308         * modules/i-ring-tests (Files): Likewise.
11309         * modules/iconv-tests (Files): Likewise.
11310         * modules/iconv_open-utf-tests (Files): Likewise.
11311         * modules/idpriv-drop-tests (Files): Likewise.
11312         * modules/idpriv-droptemp-tests (Files): Likewise.
11313         * modules/inet_ntop-tests (Files): Likewise.
11314         * modules/inet_pton-tests (Files): Likewise.
11315         * modules/isblank-tests (Files): Likewise.
11316         * modules/isfinite-tests (Files): Likewise.
11317         * modules/isinf-tests (Files): Likewise.
11318         * modules/isnan-tests (Files): Likewise.
11319         * modules/isnand-nolibm-tests (Files): Likewise.
11320         * modules/isnand-tests (Files): Likewise.
11321         * modules/isnanf-nolibm-tests (Files): Likewise.
11322         * modules/isnanf-tests (Files): Likewise.
11323         * modules/isnanl-nolibm-tests (Files): Likewise.
11324         * modules/isnanl-tests (Files): Likewise.
11325         * modules/lchown-tests (Files): Likewise.
11326         * modules/ldexpl-tests (Files): Likewise.
11327         * modules/link-tests (Files): Likewise.
11328         * modules/linkat-tests (Files): Likewise.
11329         * modules/linked-list-tests (Files): Likewise.
11330         * modules/linkedhash-list-tests (Files): Likewise.
11331         * modules/localename-tests (Files): Likewise.
11332         * modules/lseek-tests (Files): Likewise.
11333         * modules/lstat-tests (Files): Likewise.
11334         * modules/mbmemcasecmp-tests (Files): Likewise.
11335         * modules/mbmemcasecoll-tests (Files): Likewise.
11336         * modules/mbrtowc-tests (Files): Likewise.
11337         * modules/mbscasecmp-tests (Files): Likewise.
11338         * modules/mbscasestr-tests (Files): Likewise.
11339         * modules/mbschr-tests (Files): Likewise.
11340         * modules/mbscspn-tests (Files): Likewise.
11341         * modules/mbsinit-tests (Files): Likewise.
11342         * modules/mbsncasecmp-tests (Files): Likewise.
11343         * modules/mbsnrtowcs-tests (Files): Likewise.
11344         * modules/mbspbrk-tests (Files): Likewise.
11345         * modules/mbspcasecmp-tests (Files): Likewise.
11346         * modules/mbsrchr-tests (Files): Likewise.
11347         * modules/mbsrtowcs-tests (Files): Likewise.
11348         * modules/mbsspn-tests (Files): Likewise.
11349         * modules/mbsstr-tests (Files): Likewise.
11350         * modules/memchr-tests (Files): Likewise.
11351         * modules/memchr2-tests (Files): Likewise.
11352         * modules/memcmp-tests (Files): Likewise.
11353         * modules/memmem-tests (Files): Likewise.
11354         * modules/memrchr-tests (Files): Likewise.
11355         * modules/mkdir-tests (Files): Likewise.
11356         * modules/mkfifo-tests (Files): Likewise.
11357         * modules/mkfifoat-tests (Files): Likewise.
11358         * modules/mknod-tests (Files): Likewise.
11359         * modules/nanosleep-tests (Files): Likewise.
11360         * modules/nl_langinfo-tests (Files): Likewise.
11361         * modules/obstack-printf-tests (Files): Likewise.
11362         * modules/open-tests (Files): Likewise.
11363         * modules/openat-tests (Files): Likewise.
11364         * modules/pipe-filter-gi-tests (Files): Likewise.
11365         * modules/pipe-filter-ii-tests (Files): Likewise.
11366         * modules/pipe2-tests (Files): Likewise.
11367         * modules/popen-safer-tests (Files): Likewise.
11368         * modules/popen-tests (Files): Likewise.
11369         * modules/posixtm-tests (Files): Likewise.
11370         * modules/pread-tests (Files): Likewise.
11371         * modules/printf-frexp-tests (Files): Likewise.
11372         * modules/printf-frexpl-tests (Files): Likewise.
11373         * modules/printf-posix-tests (Files): Likewise.
11374         * modules/priv-set-tests (Files): Likewise.
11375         * modules/quotearg-tests (Files): Likewise.
11376         * modules/random_r-tests (Files): Likewise.
11377         * modules/rawmemchr-tests (Files): Likewise.
11378         * modules/rbtree-list-tests (Files): Likewise.
11379         * modules/rbtree-oset-tests (Files): Likewise.
11380         * modules/rbtreehash-list-tests (Files): Likewise.
11381         * modules/readlink-tests (Files): Likewise.
11382         * modules/remove-tests (Files): Likewise.
11383         * modules/rename-tests (Files): Likewise.
11384         * modules/renameat-tests (Files): Likewise.
11385         * modules/rmdir-tests (Files): Likewise.
11386         * modules/round-tests (Files): Likewise.
11387         * modules/roundf-tests (Files): Likewise.
11388         * modules/roundl-tests (Files): Likewise.
11389         * modules/safe-alloc-tests (Files): Likewise.
11390         * modules/setenv-tests (Files): Likewise.
11391         * modules/sigaction-tests (Files): Likewise.
11392         * modules/signbit-tests (Files): Likewise.
11393         * modules/sleep-tests (Files): Likewise.
11394         * modules/snprintf-posix-tests (Files): Likewise.
11395         * modules/snprintf-tests (Files): Likewise.
11396         * modules/sprintf-posix-tests (Files): Likewise.
11397         * modules/stat-tests (Files): Likewise.
11398         * modules/stat-time-tests (Files): Likewise.
11399         * modules/strcasestr-tests (Files): Likewise.
11400         * modules/strchrnul-tests (Files): Likewise.
11401         * modules/strerror-tests (Files): Likewise.
11402         * modules/striconv-tests (Files): Likewise.
11403         * modules/striconveh-tests (Files): Likewise.
11404         * modules/striconveha-tests (Files): Likewise.
11405         * modules/strsignal-tests (Files): Likewise.
11406         * modules/strstr-tests (Files): Likewise.
11407         * modules/strtod-tests (Files): Likewise.
11408         * modules/strverscmp-tests (Files): Likewise.
11409         * modules/symlink-tests (Files): Likewise.
11410         * modules/symlinkat-tests (Files): Likewise.
11411         * modules/trunc-tests (Files): Likewise.
11412         * modules/truncf-tests (Files): Likewise.
11413         * modules/truncl-tests (Files): Likewise.
11414         * modules/uname-tests (Files): Likewise.
11415         * modules/unicase/cased-tests (Files): Likewise.
11416         * modules/unicase/ignorable-tests (Files): Likewise.
11417         * modules/unicase/locale-language-tests (Files): Likewise.
11418         * modules/unicase/tolower-tests (Files): Likewise.
11419         * modules/unicase/totitle-tests (Files): Likewise.
11420         * modules/unicase/toupper-tests (Files): Likewise.
11421         * modules/unicase/u8-casecmp-tests (Files): Likewise.
11422         * modules/unicase/u8-casecoll-tests (Files): Likewise.
11423         * modules/unicase/u8-casefold-tests (Files): Likewise.
11424         * modules/unicase/u8-is-cased-tests (Files): Likewise.
11425         * modules/unicase/u8-is-casefolded-tests (Files): Likewise.
11426         * modules/unicase/u8-is-lowercase-tests (Files): Likewise.
11427         * modules/unicase/u8-is-titlecase-tests (Files): Likewise.
11428         * modules/unicase/u8-is-uppercase-tests (Files): Likewise.
11429         * modules/unicase/u8-tolower-tests (Files): Likewise.
11430         * modules/unicase/u8-totitle-tests (Files): Likewise.
11431         * modules/unicase/u8-toupper-tests (Files): Likewise.
11432         * modules/unicase/u16-casecmp-tests (Files): Likewise.
11433         * modules/unicase/u16-casecoll-tests (Files): Likewise.
11434         * modules/unicase/u16-casefold-tests (Files): Likewise.
11435         * modules/unicase/u16-is-cased-tests (Files): Likewise.
11436         * modules/unicase/u16-is-casefolded-tests (Files): Likewise.
11437         * modules/unicase/u16-is-lowercase-tests (Files): Likewise.
11438         * modules/unicase/u16-is-titlecase-tests (Files): Likewise.
11439         * modules/unicase/u16-is-uppercase-tests (Files): Likewise.
11440         * modules/unicase/u16-tolower-tests (Files): Likewise.
11441         * modules/unicase/u16-totitle-tests (Files): Likewise.
11442         * modules/unicase/u16-toupper-tests (Files): Likewise.
11443         * modules/unicase/u32-casecmp-tests (Files): Likewise.
11444         * modules/unicase/u32-casecoll-tests (Files): Likewise.
11445         * modules/unicase/u32-casefold-tests (Files): Likewise.
11446         * modules/unicase/u32-is-cased-tests (Files): Likewise.
11447         * modules/unicase/u32-is-casefolded-tests (Files): Likewise.
11448         * modules/unicase/u32-is-lowercase-tests (Files): Likewise.
11449         * modules/unicase/u32-is-titlecase-tests (Files): Likewise.
11450         * modules/unicase/u32-is-uppercase-tests (Files): Likewise.
11451         * modules/unicase/u32-tolower-tests (Files): Likewise.
11452         * modules/unicase/u32-totitle-tests (Files): Likewise.
11453         * modules/unicase/u32-toupper-tests (Files): Likewise.
11454         * modules/unicase/ulc-casecmp-tests (Files): Likewise.
11455         * modules/unicase/ulc-casecoll-tests (Files): Likewise.
11456         * modules/uniconv/u8-conv-from-enc-tests (Files): Likewise.
11457         * modules/uniconv/u8-conv-to-enc-tests (Files): Likewise.
11458         * modules/uniconv/u8-strconv-from-enc-tests (Files): Likewise.
11459         * modules/uniconv/u8-strconv-to-enc-tests (Files): Likewise.
11460         * modules/uniconv/u16-conv-from-enc-tests (Files): Likewise.
11461         * modules/uniconv/u16-conv-to-enc-tests (Files): Likewise.
11462         * modules/uniconv/u16-strconv-from-enc-tests (Files): Likewise.
11463         * modules/uniconv/u16-strconv-to-enc-tests (Files): Likewise.
11464         * modules/uniconv/u32-conv-from-enc-tests (Files): Likewise.
11465         * modules/uniconv/u32-conv-to-enc-tests (Files): Likewise.
11466         * modules/uniconv/u32-strconv-from-enc-tests (Files): Likewise.
11467         * modules/uniconv/u32-strconv-to-enc-tests (Files): Likewise.
11468         * modules/unictype/bidicategory-byname-tests (Files): Likewise.
11469         * modules/unictype/bidicategory-name-tests (Files): Likewise.
11470         * modules/unictype/bidicategory-of-tests (Files): Likewise.
11471         * modules/unictype/bidicategory-test-tests (Files): Likewise.
11472         * modules/unictype/block-list-tests (Files): Likewise.
11473         * modules/unictype/block-of-tests (Files): Likewise.
11474         * modules/unictype/block-test-tests (Files): Likewise.
11475         * modules/unictype/category-C-tests (Files): Likewise.
11476         * modules/unictype/category-Cc-tests (Files): Likewise.
11477         * modules/unictype/category-Cf-tests (Files): Likewise.
11478         * modules/unictype/category-Cn-tests (Files): Likewise.
11479         * modules/unictype/category-Co-tests (Files): Likewise.
11480         * modules/unictype/category-Cs-tests (Files): Likewise.
11481         * modules/unictype/category-L-tests (Files): Likewise.
11482         * modules/unictype/category-Ll-tests (Files): Likewise.
11483         * modules/unictype/category-Lm-tests (Files): Likewise.
11484         * modules/unictype/category-Lo-tests (Files): Likewise.
11485         * modules/unictype/category-Lt-tests (Files): Likewise.
11486         * modules/unictype/category-Lu-tests (Files): Likewise.
11487         * modules/unictype/category-M-tests (Files): Likewise.
11488         * modules/unictype/category-Mc-tests (Files): Likewise.
11489         * modules/unictype/category-Me-tests (Files): Likewise.
11490         * modules/unictype/category-Mn-tests (Files): Likewise.
11491         * modules/unictype/category-N-tests (Files): Likewise.
11492         * modules/unictype/category-Nd-tests (Files): Likewise.
11493         * modules/unictype/category-Nl-tests (Files): Likewise.
11494         * modules/unictype/category-No-tests (Files): Likewise.
11495         * modules/unictype/category-P-tests (Files): Likewise.
11496         * modules/unictype/category-Pc-tests (Files): Likewise.
11497         * modules/unictype/category-Pd-tests (Files): Likewise.
11498         * modules/unictype/category-Pe-tests (Files): Likewise.
11499         * modules/unictype/category-Pf-tests (Files): Likewise.
11500         * modules/unictype/category-Pi-tests (Files): Likewise.
11501         * modules/unictype/category-Po-tests (Files): Likewise.
11502         * modules/unictype/category-Ps-tests (Files): Likewise.
11503         * modules/unictype/category-S-tests (Files): Likewise.
11504         * modules/unictype/category-Sc-tests (Files): Likewise.
11505         * modules/unictype/category-Sk-tests (Files): Likewise.
11506         * modules/unictype/category-Sm-tests (Files): Likewise.
11507         * modules/unictype/category-So-tests (Files): Likewise.
11508         * modules/unictype/category-Z-tests (Files): Likewise.
11509         * modules/unictype/category-Zl-tests (Files): Likewise.
11510         * modules/unictype/category-Zp-tests (Files): Likewise.
11511         * modules/unictype/category-Zs-tests (Files): Likewise.
11512         * modules/unictype/category-and-not-tests (Files): Likewise.
11513         * modules/unictype/category-and-tests (Files): Likewise.
11514         * modules/unictype/category-byname-tests (Files): Likewise.
11515         * modules/unictype/category-name-tests (Files): Likewise.
11516         * modules/unictype/category-none-tests (Files): Likewise.
11517         * modules/unictype/category-of-tests (Files): Likewise.
11518         * modules/unictype/category-or-tests (Files): Likewise.
11519         * modules/unictype/category-test-withtable-tests (Files): Likewise.
11520         * modules/unictype/combining-class-tests (Files): Likewise.
11521         * modules/unictype/ctype-alnum-tests (Files): Likewise.
11522         * modules/unictype/ctype-alpha-tests (Files): Likewise.
11523         * modules/unictype/ctype-blank-tests (Files): Likewise.
11524         * modules/unictype/ctype-cntrl-tests (Files): Likewise.
11525         * modules/unictype/ctype-digit-tests (Files): Likewise.
11526         * modules/unictype/ctype-graph-tests (Files): Likewise.
11527         * modules/unictype/ctype-lower-tests (Files): Likewise.
11528         * modules/unictype/ctype-print-tests (Files): Likewise.
11529         * modules/unictype/ctype-punct-tests (Files): Likewise.
11530         * modules/unictype/ctype-space-tests (Files): Likewise.
11531         * modules/unictype/ctype-upper-tests (Files): Likewise.
11532         * modules/unictype/ctype-xdigit-tests (Files): Likewise.
11533         * modules/unictype/decimal-digit-tests (Files): Likewise.
11534         * modules/unictype/digit-tests (Files): Likewise.
11535         * modules/unictype/mirror-tests (Files): Likewise.
11536         * modules/unictype/numeric-tests (Files): Likewise.
11537         * modules/unictype/property-alphabetic-tests (Files): Likewise.
11538         * modules/unictype/property-ascii-hex-digit-tests (Files): Likewise.
11539         * modules/unictype/property-bidi-arabic-digit-tests (Files): Likewise.
11540         * modules/unictype/property-bidi-arabic-right-to-left-tests (Files):
11541         Likewise.
11542         * modules/unictype/property-bidi-block-separator-tests (Files):
11543         Likewise.
11544         * modules/unictype/property-bidi-boundary-neutral-tests (Files):
11545         Likewise.
11546         * modules/unictype/property-bidi-common-separator-tests (Files):
11547         Likewise.
11548         * modules/unictype/property-bidi-control-tests (Files): Likewise.
11549         * modules/unictype/property-bidi-embedding-or-override-tests (Files):
11550         Likewise.
11551         * modules/unictype/property-bidi-eur-num-separator-tests (Files):
11552         Likewise.
11553         * modules/unictype/property-bidi-eur-num-terminator-tests (Files):
11554         Likewise.
11555         * modules/unictype/property-bidi-european-digit-tests (Files): Likewise.
11556         * modules/unictype/property-bidi-hebrew-right-to-left-tests (Files):
11557         Likewise.
11558         * modules/unictype/property-bidi-left-to-right-tests (Files): Likewise.
11559         * modules/unictype/property-bidi-non-spacing-mark-tests (Files):
11560         Likewise.
11561         * modules/unictype/property-bidi-other-neutral-tests (Files): Likewise.
11562         * modules/unictype/property-bidi-pdf-tests (Files): Likewise.
11563         * modules/unictype/property-bidi-segment-separator-tests (Files):
11564         Likewise.
11565         * modules/unictype/property-bidi-whitespace-tests (Files): Likewise.
11566         * modules/unictype/property-byname-tests (Files): Likewise.
11567         * modules/unictype/property-combining-tests (Files): Likewise.
11568         * modules/unictype/property-composite-tests (Files): Likewise.
11569         * modules/unictype/property-currency-symbol-tests (Files): Likewise.
11570         * modules/unictype/property-dash-tests (Files): Likewise.
11571         * modules/unictype/property-decimal-digit-tests (Files): Likewise.
11572         * modules/unictype/property-default-ignorable-code-point-tests (Files):
11573         Likewise.
11574         * modules/unictype/property-deprecated-tests (Files): Likewise.
11575         * modules/unictype/property-diacritic-tests (Files): Likewise.
11576         * modules/unictype/property-extender-tests (Files): Likewise.
11577         * modules/unictype/property-format-control-tests (Files): Likewise.
11578         * modules/unictype/property-grapheme-base-tests (Files): Likewise.
11579         * modules/unictype/property-grapheme-extend-tests (Files): Likewise.
11580         * modules/unictype/property-grapheme-link-tests (Files): Likewise.
11581         * modules/unictype/property-hex-digit-tests (Files): Likewise.
11582         * modules/unictype/property-hyphen-tests (Files): Likewise.
11583         * modules/unictype/property-id-continue-tests (Files): Likewise.
11584         * modules/unictype/property-id-start-tests (Files): Likewise.
11585         * modules/unictype/property-ideographic-tests (Files): Likewise.
11586         * modules/unictype/property-ids-binary-operator-tests (Files): Likewise.
11587         * modules/unictype/property-ids-trinary-operator-tests (Files):
11588         Likewise.
11589         * modules/unictype/property-ignorable-control-tests (Files): Likewise.
11590         * modules/unictype/property-iso-control-tests (Files): Likewise.
11591         * modules/unictype/property-join-control-tests (Files): Likewise.
11592         * modules/unictype/property-left-of-pair-tests (Files): Likewise.
11593         * modules/unictype/property-line-separator-tests (Files): Likewise.
11594         * modules/unictype/property-logical-order-exception-tests (Files):
11595         Likewise.
11596         * modules/unictype/property-lowercase-tests (Files): Likewise.
11597         * modules/unictype/property-math-tests (Files): Likewise.
11598         * modules/unictype/property-non-break-tests (Files): Likewise.
11599         * modules/unictype/property-not-a-character-tests (Files): Likewise.
11600         * modules/unictype/property-numeric-tests (Files): Likewise.
11601         * modules/unictype/property-other-alphabetic-tests (Files): Likewise.
11602         * modules/unictype/property-other-default-ignorable-code-point-tests
11603         (Files): Likewise.
11604         * modules/unictype/property-other-grapheme-extend-tests (Files):
11605         Likewise.
11606         * modules/unictype/property-other-id-continue-tests (Files): Likewise.
11607         * modules/unictype/property-other-id-start-tests (Files): Likewise.
11608         * modules/unictype/property-other-lowercase-tests (Files): Likewise.
11609         * modules/unictype/property-other-math-tests (Files): Likewise.
11610         * modules/unictype/property-other-uppercase-tests (Files): Likewise.
11611         * modules/unictype/property-paired-punctuation-tests (Files): Likewise.
11612         * modules/unictype/property-paragraph-separator-tests (Files): Likewise.
11613         * modules/unictype/property-pattern-syntax-tests (Files): Likewise.
11614         * modules/unictype/property-pattern-white-space-tests (Files): Likewise.
11615         * modules/unictype/property-private-use-tests (Files): Likewise.
11616         * modules/unictype/property-punctuation-tests (Files): Likewise.
11617         * modules/unictype/property-quotation-mark-tests (Files): Likewise.
11618         * modules/unictype/property-radical-tests (Files): Likewise.
11619         * modules/unictype/property-sentence-terminal-tests (Files): Likewise.
11620         * modules/unictype/property-soft-dotted-tests (Files): Likewise.
11621         * modules/unictype/property-space-tests (Files): Likewise.
11622         * modules/unictype/property-terminal-punctuation-tests (Files):
11623         Likewise.
11624         * modules/unictype/property-test-tests (Files): Likewise.
11625         * modules/unictype/property-titlecase-tests (Files): Likewise.
11626         * modules/unictype/property-unassigned-code-value-tests (Files):
11627         Likewise.
11628         * modules/unictype/property-unified-ideograph-tests (Files): Likewise.
11629         * modules/unictype/property-uppercase-tests (Files): Likewise.
11630         * modules/unictype/property-variation-selector-tests (Files): Likewise.
11631         * modules/unictype/property-white-space-tests (Files): Likewise.
11632         * modules/unictype/property-xid-continue-tests (Files): Likewise.
11633         * modules/unictype/property-xid-start-tests (Files): Likewise.
11634         * modules/unictype/property-zero-width-tests (Files): Likewise.
11635         * modules/unictype/scripts-tests (Files): Likewise.
11636         * modules/unictype/syntax-c-ident-tests (Files): Likewise.
11637         * modules/unictype/syntax-c-whitespace-tests (Files): Likewise.
11638         * modules/unictype/syntax-java-ident-tests (Files): Likewise.
11639         * modules/unictype/syntax-java-whitespace-tests (Files): Likewise.
11640         * modules/unilbrk/u8-possible-linebreaks-tests (Files): Likewise.
11641         * modules/unilbrk/u8-width-linebreaks-tests (Files): Likewise.
11642         * modules/unilbrk/u16-possible-linebreaks-tests (Files): Likewise.
11643         * modules/unilbrk/u16-width-linebreaks-tests (Files): Likewise.
11644         * modules/unilbrk/u32-possible-linebreaks-tests (Files): Likewise.
11645         * modules/unilbrk/u32-width-linebreaks-tests (Files): Likewise.
11646         * modules/unilbrk/ulc-possible-linebreaks-tests (Files): Likewise.
11647         * modules/unilbrk/ulc-width-linebreaks-tests (Files): Likewise.
11648         * modules/uninorm/canonical-decomposition-tests (Files): Likewise.
11649         * modules/uninorm/compat-decomposition-tests (Files): Likewise.
11650         * modules/uninorm/composition-tests (Files): Likewise.
11651         * modules/uninorm/decomposing-form-tests (Files): Likewise.
11652         * modules/uninorm/decomposition-tests (Files): Likewise.
11653         * modules/uninorm/filter-tests (Files): Likewise.
11654         * modules/uninorm/nfc-tests (Files): Likewise.
11655         * modules/uninorm/nfd-tests (Files): Likewise.
11656         * modules/uninorm/nfkc-tests (Files): Likewise.
11657         * modules/uninorm/nfkd-tests (Files): Likewise.
11658         * modules/uninorm/u8-normcmp-tests (Files): Likewise.
11659         * modules/uninorm/u8-normcoll-tests (Files): Likewise.
11660         * modules/uninorm/u16-normcmp-tests (Files): Likewise.
11661         * modules/uninorm/u16-normcoll-tests (Files): Likewise.
11662         * modules/uninorm/u32-normcmp-tests (Files): Likewise.
11663         * modules/uninorm/u32-normcoll-tests (Files): Likewise.
11664         * modules/unistdio/u8-asnprintf-tests (Files): Likewise.
11665         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
11666         * modules/unistdio/u8-vasprintf-tests (Files): Likewise.
11667         * modules/unistdio/u8-vsnprintf-tests (Files): Likewise.
11668         * modules/unistdio/u8-vsprintf-tests (Files): Likewise.
11669         * modules/unistdio/u16-asnprintf-tests (Files): Likewise.
11670         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
11671         * modules/unistdio/u16-vasprintf-tests (Files): Likewise.
11672         * modules/unistdio/u16-vsnprintf-tests (Files): Likewise.
11673         * modules/unistdio/u16-vsprintf-tests (Files): Likewise.
11674         * modules/unistdio/u32-asnprintf-tests (Files): Likewise.
11675         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
11676         * modules/unistdio/u32-vasprintf-tests (Files): Likewise.
11677         * modules/unistdio/u32-vsnprintf-tests (Files): Likewise.
11678         * modules/unistdio/u32-vsprintf-tests (Files): Likewise.
11679         * modules/unistdio/ulc-asnprintf-tests (Files): Likewise.
11680         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
11681         * modules/unistdio/ulc-vasprintf-tests (Files): Likewise.
11682         * modules/unistdio/ulc-vsnprintf-tests (Files): Likewise.
11683         * modules/unistdio/ulc-vsprintf-tests (Files): Likewise.
11684         * modules/uniwbrk/u8-wordbreaks-tests (Files): Likewise.
11685         * modules/uniwbrk/u16-wordbreaks-tests (Files): Likewise.
11686         * modules/uniwbrk/u32-wordbreaks-tests (Files): Likewise.
11687         * modules/uniwbrk/ulc-wordbreaks-tests (Files): Likewise.
11688         * modules/uniwidth/u8-strwidth-tests (Files): Likewise.
11689         * modules/uniwidth/u8-width-tests (Files): Likewise.
11690         * modules/uniwidth/u16-strwidth-tests (Files): Likewise.
11691         * modules/uniwidth/u16-width-tests (Files): Likewise.
11692         * modules/uniwidth/u32-strwidth-tests (Files): Likewise.
11693         * modules/uniwidth/u32-width-tests (Files): Likewise.
11694         * modules/uniwidth/width-tests (Files): Likewise.
11695         * modules/unlink-tests (Files): Likewise.
11696         * modules/unsetenv-tests (Files): Likewise.
11697         * modules/usleep-tests (Files): Likewise.
11698         * modules/utimens-tests (Files): Likewise.
11699         * modules/utimensat-tests (Files): Likewise.
11700         * modules/vasnprintf-posix-tests (Files): Likewise.
11701         * modules/vasnprintf-tests (Files): Likewise.
11702         * modules/vasprintf-posix-tests (Files): Likewise.
11703         * modules/vasprintf-tests (Files): Likewise.
11704         * modules/vdprintf-posix-tests (Files): Likewise.
11705         * modules/vfprintf-posix-tests (Files): Likewise.
11706         * modules/vprintf-posix-tests (Files): Likewise.
11707         * modules/vsnprintf-posix-tests (Files): Likewise.
11708         * modules/vsnprintf-tests (Files): Likewise.
11709         * modules/vsprintf-posix-tests (Files): Likewise.
11710         * modules/wcrtomb-tests (Files): Likewise.
11711         * modules/wcsnrtombs-tests (Files): Likewise.
11712         * modules/wcsrtombs-tests (Files): Likewise.
11713         * modules/wctype-tests (Files): Likewise.
11714         * modules/wcwidth-tests (Files): Likewise.
11715         * modules/xmemdup0-tests (Files): Likewise.
11716         * modules/xprintf-posix-tests (Files): Likewise.
11717         * modules/xvasprintf-tests (Files): Likewise.
11718
11719 2009-12-24  Eric Blake  <ebb9@byu.net>
11720
11721         test-nanosleep: fix typo
11722         * tests/test-nanosleep.c (SIGNATURE_CHECK): Fix typo in previous
11723         patch.
11724         Reported by Bruno Haible.
11725
11726 2009-12-24  Bruno Haible  <bruno@clisp.org>
11727
11728         Reduce namespace pollution on glibc systems.
11729         * lib/inttypes.in.h: Don't include <stdint.h> on glibc systems.
11730         * lib/stdlib.in.h: Don't include <stdint.h>, <unistd.h> on glibc
11731         systems.
11732         * lib/unistd.in.h: Don't include <stdio.h>, <fcntl.h>, <stdlib.h>,
11733         <getopt.h> on glibc systems.
11734         * lib/fcntl.in.h: Don't include <sys/stat.h>, <unistd.h> on glibc
11735         systems.
11736         * lib/fcntl.c: Include <unistd.h> here instead.
11737
11738 2009-12-24  Bruno Haible  <bruno@clisp.org>
11739
11740         * lib/stdlib.in.h (includes): Fix typo in today's commit.
11741
11742 2009-12-24  Eric Blake  <ebb9@byu.net>
11743
11744         tests: add signature checks
11745         * tests/signature.h (SIGNATURE_CHECK): New file.
11746         * modules/atexit-tests (Files): Use it.
11747         * modules/btowc-tests (Files): Likewise.
11748         * modules/canonicalize-lgpl-tests (Files): Likewise.
11749         * modules/ceilf-tests (Files): Likewise.
11750         * modules/ceill-tests (Files): Likewise.
11751         * modules/chown-tests (Files): Likewise.
11752         * modules/dprintf-posix-tests (Files): Likewise.
11753         * modules/dup2-tests (Files): Likewise.
11754         * modules/dup3-tests (Files): Likewise.
11755         * modules/duplocale-tests (Files): Likewise.
11756         * modules/fchdir-tests (Files): Likewise.
11757         * modules/fcntl-tests (Files): Likewise.
11758         * modules/fdopendir-tests (Files): Likewise.
11759         * modules/fflush-tests (Files): Likewise.
11760         * modules/flock-tests (Files): Likewise.
11761         * modules/floorf-tests (Files): Likewise.
11762         * modules/floorl-tests (Files): Likewise.
11763         * modules/fnmatch-tests (Files): Likewise.
11764         * modules/fopen-tests (Files): Likewise.
11765         * modules/fprintf-posix-tests (Files): Likewise.
11766         * modules/freopen-tests (Files): Likewise.
11767         * modules/frexp-nolibm-tests (Files): Likewise.
11768         * modules/frexp-tests (Files): Likewise.
11769         * modules/frexpl-nolibm-tests (Files): Likewise.
11770         * modules/frexpl-tests (Files): Likewise.
11771         * modules/fseek-tests (Files): Likewise.
11772         * modules/fseeko-tests (Files): Likewise.
11773         * modules/fsync-tests (Files): Likewise.
11774         * modules/ftell-tests (Files): Likewise.
11775         * modules/ftello-tests (Files): Likewise.
11776         * modules/futimens-tests (Files): Likewise.
11777         * modules/getaddrinfo-tests (Files): Likewise.
11778         * modules/getcwd-tests (Files): Likewise.
11779         * modules/getdelim-tests (Files): Likewise.
11780         * modules/getdtablesize-tests (Files): Likewise.
11781         * modules/getgroups-tests (Files): Likewise.
11782         * modules/gethostname-tests (Files): Likewise.
11783         * modules/getline-tests (Files): Likewise.
11784         * modules/getopt-posix-tests (Files): Likewise.
11785         * modules/gettimeofday-tests (Files): Likewise.
11786         * modules/glob-tests (Files): Likewise.
11787         * modules/iconv-tests (Files): Likewise.
11788         * modules/inet_ntop-tests (Files): Likewise.
11789         * modules/inet_pton-tests (Files): Likewise.
11790         * modules/isblank-tests (Files): Likewise.
11791         * modules/lchown-tests (Files): Likewise.
11792         * modules/ldexpl-tests (Files): Likewise.
11793         * modules/link-tests (Files): Likewise.
11794         * modules/linkat-tests (Files): Likewise.
11795         * modules/lseek-tests (Files): Likewise.
11796         * modules/lstat-tests (Files): Likewise.
11797         * modules/mbrtowc-tests (Files): Likewise.
11798         * modules/mbsinit-tests (Files): Likewise.
11799         * modules/mbsnrtowcs-tests (Files): Likewise.
11800         * modules/mbsrtowcs-tests (Files): Likewise.
11801         * modules/memchr-tests (Files): Likewise.
11802         * modules/memcmp-tests (Files): Likewise.
11803         * modules/memmem-tests (Files): Likewise.
11804         * modules/memrchr-tests (Files): Likewise.
11805         * modules/mkdir-tests (Files): Likewise.
11806         * modules/mkfifo-tests (Files): Likewise.
11807         * modules/mkfifoat-tests (Files): Likewise.
11808         * modules/mknod-tests (Files): Likewise.
11809         * modules/nanosleep-tests (Files): Likewise.
11810         * modules/nl_langinfo-tests (Files): Likewise.
11811         * modules/obstack-printf-tests (Files): Likewise.
11812         * modules/open-tests (Files): Likewise.
11813         * modules/openat-tests (Files): Likewise.
11814         * modules/perror-tests (Files): Likewise.
11815         * modules/pipe2-tests (Files): Likewise.
11816         * modules/poll-tests (Files): Likewise.
11817         * modules/popen-tests (Files): Likewise.
11818         * modules/posix_spawn-tests (Files): Likewise.
11819         * modules/posix_spawnp-tests (Files): Likewise.
11820         * modules/pread-tests (Files): Likewise.
11821         * modules/printf-posix-tests (Files): Likewise.
11822         * modules/pty-tests (Files): Likewise.
11823         * modules/random_r-tests (Files): Likewise.
11824         * modules/rawmemchr-tests (Files): Likewise.
11825         * modules/readlink-tests (Files): Likewise.
11826         * modules/remove-tests (Files): Likewise.
11827         * modules/rename-tests (Files): Likewise.
11828         * modules/renameat-tests (Files): Likewise.
11829         * modules/rmdir-tests (Files): Likewise.
11830         * modules/round-tests (Files): Likewise.
11831         * modules/roundf-tests (Files): Likewise.
11832         * modules/roundl-tests (Files): Likewise.
11833         * modules/select-tests (Files): Likewise.
11834         * modules/setenv-tests (Files): Likewise.
11835         * modules/sigaction-tests (Files): Likewise.
11836         * modules/sleep-tests (Files): Likewise.
11837         * modules/snprintf-posix-tests (Files): Likewise.
11838         * modules/snprintf-tests (Files): Likewise.
11839         * modules/sprintf-posix-tests (Files): Likewise.
11840         * modules/stat-tests (Files): Likewise.
11841         * modules/strcasestr-tests (Files): Likewise.
11842         * modules/strchrnul-tests (Files): Likewise.
11843         * modules/strerror-tests (Files): Likewise.
11844         * modules/strsignal-tests (Files): Likewise.
11845         * modules/strstr-tests (Files): Likewise.
11846         * modules/strtod-tests (Files): Likewise.
11847         * modules/strverscmp-tests (Files): Likewise.
11848         * modules/symlink-tests (Files): Likewise.
11849         * modules/symlinkat-tests (Files): Likewise.
11850         * modules/times-tests (Files): Likewise.
11851         * modules/trunc-tests (Files): Likewise.
11852         * modules/truncf-tests (Files): Likewise.
11853         * modules/truncl-tests (Files): Likewise.
11854         * modules/tsearch-tests (Files): Likewise.
11855         * modules/uname-tests (Files): Likewise.
11856         * modules/unlink-tests (Files): Likewise.
11857         * modules/unsetenv-tests (Files): Likewise.
11858         * modules/usleep-tests (Files): Likewise.
11859         * modules/utimensat-tests (Files): Likewise.
11860         * modules/vasprintf-tests (Files): Likewise.
11861         * modules/vdprintf-posix-tests (Files): Likewise.
11862         * modules/vfprintf-posix-tests (Files): Likewise.
11863         * modules/vprintf-posix-tests (Files): Likewise.
11864         * modules/vsnprintf-posix-tests (Files): Likewise.
11865         * modules/vsnprintf-tests (Files): Likewise.
11866         * modules/vsprintf-posix-tests (Files): Likewise.
11867         * modules/wcrtomb-tests (Files): Likewise.
11868         * modules/wcsnrtombs-tests (Files): Likewise.
11869         * modules/wcsrtombs-tests (Files): Likewise.
11870         * modules/wcwidth-tests (Files): Likewise.
11871         * tests/test-isfinite.c (isfinite): Ensure macro declaration.
11872         * tests/test-isinf.c (isinf): Likewise.
11873         * tests/test-isnan.c (isnan): Likewise.
11874         * tests/test-signbit.c (signbit): Likewise.
11875         * tests/test-select.c (FD_CLR, FD_ISSET, FD_SET, FD_ZERO): Ensure
11876         declaration, either as macro or with correct signature.
11877         (select): Ensure function under test is declared with correct
11878         signature in correct header.
11879         * tests/test-atexit.c (atexit): Likewise.
11880         * tests/test-btowc.c (btowc): Likewise.
11881         * tests/test-canonicalize-lgpl.c (realpath)
11882         (canonicalize_file_name): Likewise.
11883         * tests/test-ceilf1.c (ceilf): Likewise.
11884         * tests/test-ceill.c (ceill): Likewise.
11885         * tests/test-chown.c (chown): Likewise.
11886         * tests/test-dprintf-posix.c (dprintf): Likewise.
11887         * tests/test-dup2.c (dup2): Likewise.
11888         * tests/test-dup3.c (dup3): Likewise.
11889         * tests/test-duplocale.c (duplocale): Likewise.
11890         * tests/test-fchdir.c (fchdir): Likewise.
11891         * tests/test-fchownat.c (fchownat): Likewise.
11892         * tests/test-fcntl.c (fcntl): Likewise.
11893         * tests/test-fdopendir.c (fdopendir): Likewise.
11894         * tests/test-fflush.c (fflush): Likewise.
11895         * tests/test-flock.c (flock): Likewise.
11896         * tests/test-floorf1.c (floorf): Likewise.
11897         * tests/test-floorl.c (floorl): Likewise.
11898         * tests/test-fnmatch.c (fnmatch): Likewise.
11899         * tests/test-fopen.c (fopen): Likewise.
11900         * tests/test-fprintf-posix.c (fprintf): Likewise.
11901         * tests/test-freopen.c (freopen): Likewise.
11902         * tests/test-frexp.c (frexp): Likewise.
11903         * tests/test-frexpl.c (frexpl): Likewise.
11904         * tests/test-fseek.c (fseek): Likewise.
11905         * tests/test-fseeko.c (fseeko): Likewise.
11906         * tests/test-fstatat.c (fstatat): Likewise.
11907         * tests/test-fsync.c (fsync): Likewise.
11908         * tests/test-ftell.c (ftell): Likewise.
11909         * tests/test-ftello.c (ftello): Likewise.
11910         * tests/test-futimens.c (futimens): Likewise.
11911         * tests/test-getaddrinfo.c (getaddrinfo, freeaddrinfo)
11912         (gai_strerror): Likewise.
11913         * tests/test-getcwd.c (getcwd): Likewise.
11914         * tests/test-getdelim.c (getdelim): Likewise.
11915         * tests/test-getdtablesize.c (getdtablesize): Likewise.
11916         * tests/test-getgroups.c (getgroups): Likewise.
11917         * tests/test-gethostname.c (gethostname): Likewise.
11918         * tests/test-getline.c (getline): Likewise.
11919         * tests/test-getopt.c (getopt, getopt_long, getopt_long_only):
11920         Likewise.
11921         * tests/test-gettimeofday.c (gettimeofday): Likewise.
11922         * tests/test-glob.c (glob, globfree): Likewise.
11923         * tests/test-iconv.c (iconv, iconv_open, iconv_close): Likewise.
11924         * tests/test-inet_ntop.c (inet_ntop): Likewise.
11925         * tests/test-inet_pton.c (inet_pton): Likewise.
11926         * tests/test-isblank.c (isblank): Likewise.
11927         * tests/test-lchown.c (lchown): Likewise.
11928         * tests/test-ldexpl.c (ldexpl): Likewise.
11929         * tests/test-link.c (link): Likewise.
11930         * tests/test-linkat.c (linkat): Likewise.
11931         * tests/test-lseek.c (lseek): Likewise.
11932         * tests/test-lstat.c (lstat): Likewise.
11933         * tests/test-mbrtowc.c (mbrtowc): Likewise.
11934         * tests/test-mbsinit.c (mbsinit): Likewise.
11935         * tests/test-mbsnrtowcs.c (mbsnrtowcs): Likewise.
11936         * tests/test-mbsrtowcs.c (mbsrtowcs): Likewise.
11937         * tests/test-memchr.c (memchr): Likewise.
11938         * tests/test-memcmp.c (memcmp): Likewise.
11939         * tests/test-memmem.c (memmem): Likewise.
11940         * tests/test-memrchr.c (memrchr): Likewise.
11941         * tests/test-mkdir.c (mkdir): Likewise.
11942         * tests/test-mkdirat.c (mkdirat): Likewise.
11943         * tests/test-mkfifo.c (mkfifo): Likewise.
11944         * tests/test-mkfifoat.c (mkfifoat, mknodat): Likewise.
11945         * tests/test-mknod.c (mknod): Likewise.
11946         * tests/test-nanosleep.c (nanosleep): Likewise.
11947         * tests/test-nl_langinfo.c (nl_langinfo): Likewise.
11948         * tests/test-obstack-printf.c (obstack_printf, obstack_vprintf):
11949         Likewise.
11950         * tests/test-open.c (open): Likewise.
11951         * tests/test-openat.c (openat): Likewise.
11952         * tests/test-perror.c (perror): Likewise.
11953         * tests/test-pipe2.c (pipe2): Likewise.
11954         * tests/test-poll.c (poll): Likewise.
11955         * tests/test-popen.c (popen, pclose): Likewise.
11956         * tests/test-posix_spawn1.c (posix_spawnp, posix_spawnattr_init)
11957         (posix_spawnattr_destroy, posix_spawnattr_setsigmask)
11958         (posix_spawnattr_setflags, posix_spawn_file_actions_init)
11959         (posix_spawn_file_actions_destroy)
11960         (posix_spawn_file_actions_addclose)
11961         (posix_spawn_file_actions_addopen)
11962         (posix_spawn_file_actions_adddup2): Likewise.
11963         * tests/test-posix_spawn3.c (posix_spawn): Likewise.
11964         * tests/test-pread.c (pread): Likewise.
11965         * tests/test-printf-posix.c (printf): Likewise.
11966         * tests/test-pty.c (openpty, forkpty): Likewise.
11967         * tests/test-random_r.c (srandom_r, initstate_r, setstate_r)
11968         (random_r): Likewise.
11969         * tests/test-rawmemchr.c (rawmemchr): Likewise.
11970         * tests/test-readlink.c (readlink): Likewise.
11971         * tests/test-remove.c (remove): Likewise.
11972         * tests/test-rename.c (rename): Likewise.
11973         * tests/test-renameat.c (renameat): Likewise.
11974         * tests/test-rmdir.c (rmdir): Likewise.
11975         * tests/test-round1.c (round): Likewise.
11976         * tests/test-roundf1.c (roundf): Likewise.
11977         * tests/test-roundl.c (roundl): Likewise.
11978         * tests/test-setenv.c (setenv): Likewise.
11979         * tests/test-sigaction.c (sigaction): Likewise.
11980         * tests/test-sleep.c (sleep): Likewise.
11981         * tests/test-snprintf.c (snprintf): Likewise.
11982         * tests/test-sprintf-posix.c (sprintf): Likewise.
11983         * tests/test-stat.c (stat): Likewise.
11984         * tests/test-stpncpy.c (stpncpy): Likewise.
11985         * tests/test-strcasestr.c (strcasestr): Likewise.
11986         * tests/test-strchrnul.c (strchrnul): Likewise.
11987         * tests/test-strerror.c (strerror): Likewise.
11988         * tests/test-strsignal.c (strsignal): Likewise.
11989         * tests/test-strstr.c (strstr): Likewise.
11990         * tests/test-strtod.c (strtod): Likewise.
11991         * tests/test-strverscmp.c (strverscmp): Likewise.
11992         * tests/test-symlink.c (symlink): Likewise.
11993         * tests/test-symlinkat.c (symlinkat, readlinkat): Likewise.
11994         * tests/test-times.c (times): Likewise.
11995         * tests/test-trunc1.c (trunc): Likewise.
11996         * tests/test-truncf1.c (truncf): Likewise.
11997         * tests/test-truncl.c (truncl): Likewise.
11998         * tests/test-tsearch.c (tdelete, tfind, tsearch, twalk):
11999         Likewise.
12000         * tests/test-uname.c (uname): Likewise.
12001         * tests/test-unlink.c (unlink): Likewise.
12002         * tests/test-unlinkat.c (unlinkat): Likewise.
12003         * tests/test-unsetenv.c (unsetenv): Likewise.
12004         * tests/test-usleep.c (usleep): Likewise.
12005         * tests/test-utimensat.c (utimensat): Likewise.
12006         * tests/test-vasprintf.c (asprintf, vasprintf): Likewise.
12007         * tests/test-vdprintf-posix.c (vdprintf): Likewise.
12008         * tests/test-vfprintf-posix.c (vfprintf): Likewise.
12009         * tests/test-vprintf-posix.c (vprintf): Likewise.
12010         * tests/test-vsnprintf.c (vsnprintf): Likewise.
12011         * tests/test-vsprintf-posix.c (vsprintf): Likewise.
12012         * tests/test-wcrtomb.c (wcrtomb): Likewise.
12013         * tests/test-wcsnrtombs.c (wcsnrtombs): Likewise.
12014         * tests/test-wcsrtombs.c (wcsrtombs): Likewise.
12015         * tests/test-wcwidth.c (wcwidth): Likewise.
12016
12017         build: pull in conditional headers during GNULIB_POSIXCHECK
12018         * lib/stdio.in.h (includes): Using GNULIB_POSIXCHECK also requires
12019         definitions from any conditionally-included headers.
12020         * lib/stdlib.in.h (includes): Likewise.
12021         * lib/unistd.in.h (includes): Likewise.
12022
12023 2009-12-24  Bruno Haible  <bruno@clisp.org>
12024
12025         * tests/test-argv-iter.c: Include header file being tested immediately
12026         after config.h.
12027         * tests/test-base64.c: Likewise.
12028         * tests/test-flock.c: Likewise.
12029         * tests/test-fsync.c: Likewise.
12030         * tests/test-getdate.c: Likewise.
12031         * tests/test-getndelim2.c: Likewise.
12032         * tests/test-isfinite.c: Likewise.
12033         * tests/test-isinf.c: Likewise.
12034         * tests/test-strerror.c: Likewise.
12035         * tests/test-strsignal.c: Likewise.
12036
12037 2009-12-23  Eric Blake  <ebb9@byu.net>
12038
12039         unistd: work around cygwin bug
12040         * lib/unistd.in.h (includes): Pick up headers needed for cygwin.
12041         * doc/posix-functions/unlinkat.texi (unlinkat): Document the bug.
12042         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
12043
12044 2009-12-23  Bruno Haible  <bruno@clisp.org>
12045
12046         localename: More tests.
12047         * tests/test-localename.c (SIZEOF): New macro.
12048         (categories): New variable.
12049         (test_locale_name, test_locale_name_posix, test_locale_name_environ,
12050         test_locale_name_default): Add test w.r.t. thread locale.
12051         (test_locale_name_thread): New function.
12052         (main): Invoke it.
12053
12054         localename: Make aware of thread locale.
12055         * lib/localename.h (gl_locale_name_thread): New declaration.
12056         (gl_locale_name, gl_locale_name_posix, gl_locale_name_default): Clarify
12057         behaviour with respect to thread locale.
12058         * lib/localename.c: Include <limits.h>, <stddef.h>, <xlocale.h>,
12059         <langinfo.h>, glthread/lock.h.
12060         (SIZE_BITS): New macro.
12061         (string_hash): New function.
12062         (struct hash_node): New type.
12063         (HASH_TABLE_SIZE): New macro.
12064         (struniq_hash_table, struniq_lock): New variables.
12065         (struniq): New function.
12066         (gl_locale_name_thread): New function.
12067         (gl_locale_name): Invoke it.
12068         * m4/localename.m4 (gl_LOCALENAME): Test for uselocale function.
12069         * modules/localename (Depends-on): Add lock.
12070         Reported by Mike Gran <spk121@yahoo.com>.
12071
12072 2009-12-23  Eric Blake  <ebb9@byu.net>
12073
12074         va-args: new module
12075         * modules/va-args: New file.
12076         * m4/va-args.m4 (gl_VA_ARGS): Likewise.
12077         * MODULES.html.sh (Core language properties): Mention it.
12078
12079         gnulib-common: prefer _GL_UNUSED over _UNUSED_PARAMETER_
12080         * m4/gnulib-common.m4 (gl_COMMON): Create a more-appropriately
12081         named alias for __attribute__((__unused__)).
12082         * lib/chown.c: Update client.
12083         * lib/fchmodat.c: Likewise.
12084         * lib/fts.c: Likewise.
12085         * lib/getdate.y: Likewise.
12086         * lib/getgroups.c: Likewise.
12087         * lib/getopt.c: Likewise.
12088         * lib/getugroups.c: Likewise.
12089         * lib/mkdir.c: Likewise.
12090         * lib/mkfifo.c: Likewise.
12091         * lib/mkfifoat.c: Likewise.
12092         * lib/mknod.c: Likewise.
12093         * lib/mknodat.c: Likewise.
12094         * lib/readlink.c: Likewise.
12095         * lib/se-context.in.h: Likewise.
12096         * lib/se-selinux.in.h: Likewise.
12097         * lib/sockets.c: Likewise.
12098         * lib/symlink.c: Likewise.
12099         * lib/symlinkat.c: Likewise.
12100         * lib/unicodeio.c: Likewise.
12101         * lib/unistr.h: Likewise.
12102         * tests/test-areadlink.c: Likewise.
12103         * tests/test-areadlinkat.c: Likewise.
12104         * tests/test-filenamecat.c: Likewise.
12105         * tests/test-fseeko.c: Likewise.
12106         * tests/test-ftello.c: Likewise.
12107         * tests/test-getdate.c: Likewise.
12108         * tests/test-getgroups.c: Likewise.
12109         * tests/test-gethostname.c: Likewise.
12110         * tests/test-quotearg.c: Likewise.
12111         * tests/test-version-etc.c: Likewise.
12112         * tests/test-xalloc-die.c: Likewise.
12113         * tests/test-xfprintf-posix.c: Likewise.
12114         * tests/test-xprintf-posix.c: Likewise.
12115         * tests/test-xvasprintf.c: Likewise.
12116
12117         tests: avoid compiler warnings
12118         * tests/test-fcntl.c (main): Delete unused parameters.
12119         * tests/test-freopen-safer.c (main): Likewise.
12120         * tests/test-xalloc-die.c (main): Mark unused parameters.
12121         * tests/test-fseeko.c (main): Likewise.
12122         * tests/test-ftello.c (main): Likewise.
12123         * tests/test-nanosleep.c (main): Avoid declaration warning.
12124         * tests/test-sleep.c (main): Likewise.
12125         * tests/test-unsetenv.c (main): Silence warning about string
12126         literal.
12127         * m4/setenv.m4 (gl_FUNC_UNSETENV): Likewise.
12128
12129 2009-12-23  Bruno Haible  <bruno@clisp.org>
12130
12131         * tests/test-localename.c (test_locale_name): New function, extracted
12132         from main. Also test mixed situations.
12133         (test_locale_name_posix, test_locale_name_environ,
12134         test_locale_name_default): New functions.
12135         (main): Invoke them all.
12136         * modules/localename-tests (configure.ac): Test for newlocale.
12137
12138 2009-12-23  Bruno Haible  <bruno@clisp.org>
12139
12140         unistd: Ensure getcwd gets declared before being overridden.
12141         * lib/unistd.in.h: Conditionally include <io.h>.
12142
12143 2009-12-22  Bruno Haible  <bruno@clisp.org>
12144
12145         wchar: Diagnose broken combination of glibc and gcc versions and flags.
12146         * m4/wchar.m4 (gl_WCHAR_H_INLINE_OK): New macro.
12147         (gl_WCHAR_H): Invoke it.
12148         * m4/btowc.m4 (gl_FUNC_BTOWC): Require it.
12149         * doc/posix-headers/wchar.texi: Mention the interoperability problem.
12150         Reported by Karl Berry <karl@freefriends.org>.
12151
12152 2009-12-22  Eric Blake  <ebb9@byu.net>
12153
12154         math, unistd: avoid redundant includes
12155         * lib/math.in.h (isnan): No need to re-include <math.h>.
12156         * lib/unistd.in.h (getcwd): Likewise, for <stdlib.h>.
12157
12158         getsubopt: work around cygwin bug
12159         * lib/stdlib.in.h (includes): Move unistd inclusion sooner, to
12160         avoid conflicting with system getsubopt.
12161         * doc/posix-functions/getsubopt.texi (getsubopt): Document the
12162         bug.
12163
12164         getopt: synchronize from glibc
12165         * lib/getopt.c (_getopt_initialize, _getopt_internal_r): Swap
12166         parameter order.  Adjust all callers.
12167         (_getopt_internal_r, main): Adjust quoting in error messages.
12168         Drop considerations for outdated POSIX 1003.2 error message.
12169         * lib/getopt1.c (_getopt_long_r, _getopt_long_only_r): Adjust
12170         callers.
12171         * lib/getopt_int.h (_getopt_internal_r): Adjust prototype.
12172
12173         test-getopt: test stderr behavior
12174         * modules/getopt-posix-tests (Depends-on): Add dup2.
12175         * tests/test-getopt.c (ASSERT): Avoid stderr.
12176         (main): Move stderr to a temporary file.
12177         * tests/test-getopt.h (getopt_loop): No longer manipulate opterr.
12178         Instead, add parameter to inform caller if output occurred.
12179         (test_getopt): Adjust all existing tests to expect silence, and
12180         add new tests of leading ":".
12181         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
12182         glibc shortcomings with leading "-:" or "+:" in optstring.
12183         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
12184         Likewise.
12185         * doc/posix-functions/getopt.texi (getopt): Likewise.
12186
12187         test-getopt: enhance test
12188         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require that getopt_long
12189         supports optind=0.
12190         * tests/test-getopt.c (OPTIND_MIN): Move...
12191         * tests/test-getopt.h (OPTIND_MIN): ...here.
12192         * tests/test-getopt_long.h (test_getopt_long): Add more coverage.
12193         Require that optind=0 works, since modern BSD supports it in
12194         addition to optreset, and since coreutils expects it.
12195         (test_getopt_long_only): New test.
12196         * doc/glibc-functions/getopt_long.texi (getopt_long): Document
12197         glibc shortcomings with 'W;', and enforcement of optind=0.
12198         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
12199         Likewise.
12200
12201 2009-12-21  Bruno Haible  <bruno@clisp.org>
12202
12203         localename: Improvements for MacOS X and Cygwin.
12204         * lib/localename.h (gl_locale_name_environ): New declaration.
12205         * lib/localename.c (gl_locale_name_environ): New function, extracted from
12206         gl_locale_name_posix. Ignore dummy LANG values on MacOS X and Cygwin.
12207         (gl_locale_name_posix): Invoke it.
12208         (gl_locale_name_default): Add comments. Use Windows native API also on
12209         Cygwin.
12210
12211 2009-12-21  Bruno Haible  <bruno@clisp.org>
12212
12213         Update list of Win32 locale ids.
12214         * lib/localename.c (LANG_ROMANSH): Renamed from LANG_RHAETO_ROMANCE.
12215         (LANG_SAMI): Renamed from LANG_SAAMI.
12216         (LANG_BASHKIR, LANG_LUXEMBOURGISH, LANG_GREENLANDIC,
12217         LANG_MAPUDUNGUN, LANG_MOHAWK, LANG_BRETON, LANG_OCCITAN, LANG_CORSICAN,
12218         LANG_ALSATIAN, LANG_YAKUT, LANG_KICHE, LANG_KINYARWANDA, LANG_WOLOF,
12219         LANG_DARI, LANG_SCOTTISH_GAELIC): New macros.
12220         (SUBLANG_AFRIKAANS_SOUTH_AFRICA, SUBLANG_ALBANIAN_ALBANIA,
12221         SUBLANG_ALSATIAN_FRANCE, SUBLANG_AMHARIC_ETHIOPIA,
12222         SUBLANG_ARMENIAN_ARMENIA, SUBLANG_ASSAMESE_INDIA,
12223         SUBLANG_BASHKIR_RUSSIA, SUBLANG_BASQUE_BASQUE,
12224         SUBLANG_BELARUSIAN_BELARUS, SUBLANG_BRETON_FRANCE,
12225         SUBLANG_BULGARIAN_BULGARIA, SUBLANG_CAMBODIAN_CAMBODIA,
12226         SUBLANG_CATALAN_SPAIN, SUBLANG_CORSICAN_FRANCE,
12227         SUBLANG_CZECH_CZECH_REPUBLIC, SUBLANG_DANISH_DENMARK,
12228         SUBLANG_DARI_AFGHANISTAN, SUBLANG_DIVEHI_MALDIVES,
12229         SUBLANG_DUTCH_SURINAM, SUBLANG_ESTONIAN_ESTONIA,
12230         SUBLANG_FAEROESE_FAROE_ISLANDS, SUBLANG_FARSI_IRAN,
12231         SUBLANG_FINNISH_FINLAND, SUBLANG_FRISIAN_NETHERLANDS,
12232         SUBLANG_GALICIAN_SPAIN, SUBLANG_GEORGIAN_GEORGIA,
12233         SUBLANG_GREEK_GREECE, SUBLANG_GREENLANDIC_GREENLAND,
12234         SUBLANG_GUJARATI_INDIA, SUBLANG_HAUSA_NIGERIA_LATIN,
12235         SUBLANG_HEBREW_ISRAEL, SUBLANG_HINDI_INDIA, SUBLANG_HUNGARIAN_HUNGARY,
12236         SUBLANG_ICELANDIC_ICELAND, SUBLANG_IGBO_NIGERIA,
12237         SUBLANG_INDONESIAN_INDONESIA, SUBLANG_INUKTITUT_CANADA,
12238         SUBLANG_INUKTITUT_CANADA_LATIN, SUBLANG_IRISH_IRELAND,
12239         SUBLANG_JAPANESE_JAPAN, SUBLANG_KANNADA_INDIA,
12240         SUBLANG_KAZAK_KAZAKHSTAN, SUBLANG_KICHE_GUATEMALA,
12241         SUBLANG_KINYARWANDA_RWANDA, SUBLANG_KONKANI_INDIA,
12242         SUBLANG_KYRGYZ_KYRGYZSTAN, SUBLANG_LAO_LAOS, SUBLANG_LATVIAN_LATVIA,
12243         SUBLANG_LITHUANIAN_LITHUANIA, SUBLANG_LOWER_SORBIAN_GERMANY,
12244         SUBLANG_LUXEMBOURGISH_LUXEMBOURG, SUBLANG_MACEDONIAN_MACEDONIA,
12245         SUBLANG_MALAYALAM_INDIA, SUBLANG_MALTESE_MALTA,
12246         SUBLANG_MAORI_NEW_ZEALAND, SUBLANG_MAPUDUNGUN_CHILE,
12247         SUBLANG_MARATHI_INDIA, SUBLANG_MOHAWK_CANADA, SUBLANG_NEPALI_NEPAL,
12248         SUBLANG_OCCITAN_FRANCE, SUBLANG_ORIYA_INDIA,
12249         SUBLANG_PASHTO_AFGHANISTAN, SUBLANG_POLISH_POLAND,
12250         SUBLANG_ROMANSH_SWITZERLAND, SUBLANG_SAMI_NORTHERN_NORWAY,
12251         SUBLANG_SAMI_NORTHERN_SWEDEN, SUBLANG_SAMI_NORTHERN_FINLAND,
12252         SUBLANG_SAMI_LULE_NORWAY, SUBLANG_SAMI_LULE_SWEDEN,
12253         SUBLANG_SAMI_SOUTHERN_NORWAY, SUBLANG_SAMI_SOUTHERN_SWEDEN,
12254         SUBLANG_SAMI_SKOLT_FINLAND, SUBLANG_SAMI_INARI_FINLAND,
12255         SUBLANG_SANSKRIT_INDIA, SUBLANG_SINHALESE_SRI_LANKA,
12256         SUBLANG_SLOVAK_SLOVAKIA, SUBLANG_SLOVENIAN_SLOVENIA,
12257         SUBLANG_SOTHO_SOUTH_AFRICA, SUBLANG_SWAHILI_KENYA,
12258         SUBLANG_SWEDISH_SWEDEN, SUBLANG_SYRIAC_SYRIA,
12259         SUBLANG_TAGALOG_PHILIPPINES, SUBLANG_TAJIK_TAJIKISTAN,
12260         SUBLANG_TAMIL_INDIA, SUBLANG_TATAR_RUSSIA, SUBLANG_TELUGU_INDIA,
12261         SUBLANG_THAI_THAILAND, SUBLANG_TSWANA_SOUTH_AFRICA,
12262         SUBLANG_TURKISH_TURKEY, SUBLANG_TURKMEN_TURKMENISTAN,
12263         SUBLANG_UKRAINIAN_UKRAINE, SUBLANG_UPPER_SORBIAN_GERMANY,
12264         SUBLANG_VIETNAMESE_VIETNAM, SUBLANG_WELSH_UNITED_KINGDOM,
12265         SUBLANG_WOLOF_SENEGAL, SUBLANG_XHOSA_SOUTH_AFRICA,
12266         SUBLANG_YAKUT_RUSSIA, SUBLANG_YI_PRC, SUBLANG_YORUBA_NIGERIA,
12267         SUBLANG_ZULU_SOUTH_AFRICA): New macros.
12268         (gl_locale_name_from_win32_LANGID): Handle also the territory neutral
12269         locale ids. Add support for Alsatian, Bashkir, Breton, Corsican, Dari,
12270         Greenlandic, K'iche', Kinyarwanda, Luxembourgish, Mapudungun, Mohawk,
12271         Occitan, Scottish Gaelic, Wolof, Yakut. Change language code for Yi.
12272         Add more languages and countries for Sami, Sorbian. Add more countries
12273         for Serbian, Dutch. Add more scripts for Inuktitut. Be more precise
12274         for Pashto. Change country for Syriac, Tswana.
12275
12276 2009-12-21  Eric Blake  <ebb9@byu.net>
12277
12278         test-utimens: avoid spurious failure
12279         * tests/test-chown.h (nap): Factor...
12280         * tests/nap.h: ...into new file.
12281         * tests/test-lchown.h (nap): Avoid duplication.
12282         * tests/test-utimens-common.h (nap): Use shared implementation,
12283         necessary on file systems with 1-second resolution.
12284         * modules/chown-tests (Files): Include new file.
12285         * modules/fdutimensat-tests (Files): Likewise.
12286         * modules/futimens-tests (Files): Likewise.
12287         * modules/lchown-tests (Files): Likewise.
12288         * modules/openat-tests (Files): Likewise.
12289         * modules/utimens-tests (Files): Likewise.
12290         * modules/utimensat-tests (Files): Likewise.
12291
12292 2009-12-19  Eric Blake  <ebb9@byu.net>
12293
12294         futimens, utimensat: work around Linux bug
12295         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Detect ctime bug.
12296         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
12297         * lib/utimensat.c (rpl_utimensat): Work around it.
12298         * lib/futimens.c (rpl_futimens): Adjust comment.
12299
12300         utimens: work around Linux ctime bug
12301         * lib/utimens.c (detect_ctime_bug): New helper function.
12302         (update_timespec): Differentiate between workaround needed for
12303         this bug vs. what is needed for systems that lack utimensat.
12304         (fdutimens, lutimens): Work around bug.
12305
12306         utimens: check for ctime update
12307         * tests/test-utimens-common.h (check_ctime): Define.
12308         * tests/test-utimens.h (test_utimens): Expose the Linux bug.
12309         * tests/test-futimens.h (test_futimens): Likewise.
12310         * tests/test-lutimens.h (test_lutimens): Likewise.
12311         * doc/posix-functions/futimens.texi (futimens): Document the bug.
12312         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
12313
12314 2009-12-19  Bruno Haible  <bruno@clisp.org>
12315
12316         dprintf-posix: Check against memory leak fixed on 2009-12-15.
12317         * tests/test-dprintf-posix2.sh: New file.
12318         * tests/test-dprintf-posix2.c: New file.
12319         * modules/dprintf-posix-tests (Files): Add them.
12320         (configure.ac): Check for getrlimit and setrlimit.
12321         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
12322
12323 2009-12-19  Bruno Haible  <bruno@clisp.org>
12324
12325         fprintf-posix: Check against memory leak fixed on 2009-12-15.
12326         * tests/test-fprintf-posix3.sh: New file.
12327         * tests/test-fprintf-posix3.c: New file.
12328         * modules/fprintf-posix-tests (Files): Add them.
12329         (Makefile.am): Augment TESTS and CHECK_PROGRAMS.
12330
12331 2009-12-19  Eric Blake  <ebb9@byu.net>
12332
12333         dirfd: fix prototype
12334         * lib/dirent.in.h (dirfd): Argument is not const, per POSIX.
12335         * lib/dirfd.c (dirfd): Likewise.
12336
12337         canonicalize: reduce memory usage
12338         * lib/canonicalize.c (canonicalize_filename_mode): Trim the
12339         allocation to size.
12340         Reported by Solar Designer <solar@openwall.com>.
12341
12342 2009-12-19  Bruno Haible  <bruno@clisp.org>
12343
12344         New module attribute 'Applicability'.
12345         * modules/TEMPLATE-EXTENDED: New field 'Applicability'.
12346         * gnulib-tool: New option --extract-applicability.
12347         (func_usage): Document it.
12348         (sed_extract_prog): Recognize it.
12349         (func_get_applicability): New function.
12350         (func_import): Generalize handling of 'link-warning' module.
12351         * modules/link-warning (Applicability): New section.
12352         * modules/arg-nonnull (Applicability): New section.
12353         Repoted by Simon Josefsson <simon@josefsson.org>.
12354
12355 2009-12-19  Bruno Haible  <bruno@clisp.org>
12356
12357         fflush: tweak
12358         * lib/fflush.c (update_fpos_cache): Don't use fpos_t on Cygwin.
12359         * lib/fseeko.c (rpl_fseeko): Likewise.
12360
12361 2009-12-16  José E. Marchesi  <jemarch@gnu.org>  (tiny change)
12362
12363         * lib/gl_list.h: Fix typo in comment.
12364
12365 2009-12-16  Eric Blake  <ebb9@byu.net>
12366
12367         fcntl: use to simplify other modules
12368         * modules/cloexec (Depends-on): Add fcntl.
12369         * modules/fchdir (Depends-on): Likewise.
12370         * modules/fd-safer-flag (Depends-on): Likewise.
12371         * modules/unistd-safer (Depends-on): Likewise.
12372         * modules/dup3 (configure.ac): Set module indicator.
12373         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Replace fcntl if fchdir is
12374         missing.
12375         * lib/fchdir.c (_gl_register_dup): Fix comment.
12376         * lib/cloexec.c (dup_cloexec): Simplify, by relying on fcntl.
12377         * lib/dup-safer.c (dup_safer): Likewise.
12378         * lib/dup-safer-flag.c (dup_safer_flag): Likewise.
12379         * lib/dup3.c (dup3): Likewise.
12380         * tests/test-fchdir.c (main): Enhance test.
12381         Fixes a dup_cloexec bug reported by OndÅ™ej Vašík.
12382
12383         fcntl: port portions of fcntl to mingw
12384         * m4/fcntl.m4 (gl_FUNC_FCNTL): Also build fcntl.c on mingw.
12385         * lib/fcntl.c (fcntl) <F_DUPFD, F_DUPFD_CLOEXEC, F_GETFD>: Provide
12386         replacement for mingw.
12387         * modules/fcntl (Description): Update.
12388         (Depends-on): Add dup2.
12389         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness.
12390         * modules/fcntl-h (Makefile.am): Substitute it.
12391         * lib/fcntl.in.h (fcntl): Update declaration.
12392         (F_DUPFD, F_GETFD): New macros, when needed.
12393         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
12394         * doc/posix-functions/fcntl.texi (fcntl): Likewise.
12395         * tests/test-fcntl.c (check_flags, main): Enhance test for items
12396         we now guarantee.
12397
12398         fcntl: work around cygwin bug in F_DUPFD
12399         * m4/fcntl.m4 (gl_REPLACE_FCNTL): New macro.
12400         (gl_FUNC_FCNTL): Use it.  Test for F_DUPFD bug.
12401         * lib/fcntl.c (rpl_fcntl) <F_DUPFD>: Work around it.
12402         <F_DUPFD_CLOEXEC>: Reduce calls to _gl_register_dup.
12403         * doc/posix-functions/fcntl.texi (fcntl): Document it.
12404
12405         fcntl: support F_DUPFD_CLOEXEC on systems with fcntl
12406         * modules/fcntl (Files): List new files.
12407         (configure.ac): Run a test.
12408         * m4/fcntl.m4 (gl_FUNC_FCNTL): New file.
12409         * lib/fcntl.c (rpl_fcntl): Likewise.
12410         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Add witness defaults.
12411         (gl_FCNTL_H): Always replace fcntl.h.
12412         * modules/fcntl-h (Makefile.am): Substitute witnesses.
12413         * lib/fcntl.in.h (fcntl): Declare replacement.
12414         (F_DUPFD_CLOEXEC, GNULIB_defined_F_DUPFD_CLOEXEC): New macro when
12415         needed, plus a witness.
12416         * doc/posix-functions/fcntl.texi (fcntl): Document this.
12417         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
12418         * tests/test-fcntl.c: New file.
12419         * modules/fcntl-tests: Likewise.
12420
12421         binary-io: avoid potential compilation warning
12422         * lib/binary-io.h [__DJGPP__]: Avoid null preprocessor
12423         directives.
12424
12425         fflush: avoid compilation error on NetBSD
12426         * lib/fflush.c (update_fpos_cache): Use a union to safely convert
12427         between off_t and fpos_t, since the latter is sometimes a struct.
12428         * lib/fseeko.c (rpl_fseeko): Likewise.
12429         Reported by Alexander Nasonov <alnsn@yandex.ru>.
12430
12431 2009-12-15  Eric Blake  <ebb9@byu.net>
12432
12433         fcntl-h, stdio, sys_ioctl: fix declarations
12434         * lib/stdio.in.h (dprintf): Use of link warning on a variadic
12435         function must not take arguments.
12436         * lib/sys_ioctl.in.h (ioctl): Likewise.
12437         * lib/fcntl.in.h (openat): Likewise.  Declare extern.
12438         (open): Add a link warning.
12439
12440 2009-12-15  Jim Meyering  <meyering@redhat.com>
12441
12442         areadlink, areadlink-with-size: relax license to LGPLv2+
12443         * modules/areadlink (License): Relax to LGPLv2+.
12444         * modules/areadlink-with-size (License): Likewise.
12445
12446 2009-12-15  Joel E. Denny  <jdenny@clemson.edu>
12447             Bruno Haible  <bruno@clisp.org>
12448
12449         *printf: Fix memory leak.
12450         * lib/fprintf.c (fprintf): Free memory allocated by vasnprintf.
12451         * lib/vfprintf.c (vfprintf): Likewise.
12452         * lib/dprintf.c (dprintf): Likewise.
12453         * lib/vdprintf.c (vdprintf): Likewise.
12454
12455 2009-12-14  Eric Blake  <ebb9@byu.net>
12456
12457         accept4: adjust module dependencies
12458         * modules/accept4 (Depends-on): Use fcntl-h, not fcntl.
12459
12460         utimens: one more try at avoiding compiler warning
12461         * lib/utimens.c (lutimens): Lower scope of result.
12462
12463 2009-12-13  Bruno Haible  <bruno@clisp.org>
12464
12465         Move the malloc checking from module 'list' to new module 'xlist'.
12466         * modules/xlist: New file.
12467         * lib/gl_xlist.h: New file.
12468         * lib/gl_xlist.c: New file.
12469         * lib/gl_list.h (gl_list_create_empty, gl_list_create,
12470         gl_list_node_set_value, gl_list_set_at, gl_list_add_first,
12471         gl_list_add_last, gl_list_add_before, gl_list_add_after,
12472         gl_list_nx_add_at, gl_sortedlist_add): Disable declarations.
12473         (gl_list_nx_create_empty, gl_list_nx_create, gl_list_node_nx_set_value,
12474         gl_list_nx_set_at, gl_list_nx_add_first, gl_list_nx_add_last,
12475         gl_list_nx_add_before, gl_list_nx_add_after, gl_list_nx_add_at,
12476         gl_sortedlist_nx_add): New declarations.
12477         (struct gl_list_implementation): Rename and change methods accordingly.
12478         (gl_list_nx_create_empty): Renamed from gl_list_create_empty.
12479         (gl_list_nx_create): Renamed from gl_list_create.
12480         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
12481         (gl_list_nx_set_at): Renamed from gl_list_set_at.
12482         (gl_list_nx_add_first): Renamed from gl_list_add_first.
12483         (gl_list_nx_add_last): Renamed from gl_list_add_last.
12484         (gl_list_nx_add_before): Renamed from gl_list_add_before.
12485         (gl_list_nx_add_after): Renamed from gl_list_add_after.
12486         (gl_list_nx_add_at): Renamed from gl_list_add_at.
12487         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
12488         * lib/gl_list.c (gl_list_nx_create_empty): Renamed from
12489         gl_list_create_empty.
12490         (gl_list_nx_create): Renamed from gl_list_create.
12491         (gl_list_node_nx_set_value): Renamed from gl_list_node_set_value.
12492         (gl_list_nx_set_at): Renamed from gl_list_set_at.
12493         (gl_list_nx_add_first): Renamed from gl_list_add_first.
12494         (gl_list_nx_add_last): Renamed from gl_list_add_last.
12495         (gl_list_nx_add_before): Renamed from gl_list_add_before.
12496         (gl_list_nx_add_after): Renamed from gl_list_add_after.
12497         (gl_list_nx_add_at): Renamed from gl_list_add_at.
12498         (gl_sortedlist_nx_add): Renamed from gl_sortedlist_add.
12499         * lib/gl_array_list.c: Don't include xalloc.h.
12500         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Return
12501         NULL upon out-of-memory.
12502         (gl_array_nx_create): Renamed from gl_array_create. Return NULL upon
12503         out-of-memory.
12504         (gl_array_node_nx_set_value): Renamed from gl_array_node_set_value.
12505         Change return type to 'int'.
12506         (gl_array_nx_set_at): Renamed from gl_array_set_at.
12507         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
12508         (gl_array_nx_add_first): Renamed from gl_array_add_first. Return NULL
12509         upon out-of-memory.
12510         (gl_array_nx_add_last): Renamed from gl_array_add_last. Return NULL
12511         upon out-of-memory.
12512         (gl_array_nx_add_before): Renamed from gl_array_add_before. Return NULL
12513         upon out-of-memory.
12514         (gl_array_nx_add_after): Renamed from gl_array_add_after. Return NULL
12515         upon out-of-memory.
12516         (gl_array_nx_add_at): Renamed from gl_array_add_at. Return NULL upon
12517         out-of-memory.
12518         (gl_array_sortedlist_nx_add): Renamed from gl_array_sortedlist_add.
12519         Update.
12520         (gl_array_list_implementation): Update.
12521         * lib/gl_carray_list.c: Don't include xalloc.h.
12522         (gl_carray_nx_create_empty): Renamed from gl_carray_create_empty.
12523         Return NULL upon out-of-memory.
12524         (gl_carray_nx_create): Renamed from gl_carray_create. Return NULL upon
12525         out-of-memory.
12526         (gl_carray_node_nx_set_value): Renamed from gl_carray_node_set_value.
12527         Change return type to 'int'.
12528         (gl_carray_nx_set_at): Renamed from gl_carray_set_at.
12529         (grow): Change return type to 'int'. Return -1 upon out-of-memory.
12530         (gl_carray_nx_add_first): Renamed from gl_carray_add_first. Return NULL
12531         upon out-of-memory.
12532         (gl_carray_nx_add_last): Renamed from gl_carray_add_last. Return NULL
12533         upon out-of-memory.
12534         (gl_carray_nx_add_at): Renamed from gl_carray_add_at. Return NULL upon
12535         out-of-memory.
12536         (gl_carray_nx_add_before): Renamed from gl_carray_add_before. Update.
12537         (gl_carray_nx_add_after): Renamed from gl_carray_add_after. Update.
12538         (gl_carray_sortedlist_nx_add): Renamed from gl_carray_sortedlist_add.
12539         Update.
12540         (gl_carray_list_implementation): Update.
12541         * lib/gl_anyhash_list2.h (hash_resize): Do nothing upon out-of-memory.
12542         * lib/gl_anylinked_list2.h (gl_linked_nx_create_empty): Renamed from
12543         gl_linked_create_empty. Return NULL upon out-of-memory.
12544         (gl_linked_nx_create): Renamed from gl_linked_create. Return NULL upon
12545         out-of-memory.
12546         (gl_linked_node_nx_set_value): Renamed from gl_linked_node_set_value.
12547         Change return type to 'int'. Return -1 upon out-of-memory.
12548         (gl_linked_nx_set_at): Renamed from gl_linked_set_at. Return NULL upon
12549         out-of-memory.
12550         (gl_linked_nx_add_first): Renamed from gl_linked_add_first. Return NULL
12551         upon out-of-memory.
12552         (gl_linked_nx_add_last): Renamed from gl_linked_add_last. Return NULL
12553         upon out-of-memory.
12554         (gl_linked_nx_add_before): Renamed from gl_linked_add_before. Return
12555         NULL upon out-of-memory.
12556         (gl_linked_nx_add_after): Renamed from gl_linked_add_after. Return NULL
12557         upon out-of-memory.
12558         (gl_linked_nx_add_at): Renamed from gl_linked_add_at. Return NULL upon
12559         out-of-memory.
12560         (gl_linked_sortedlist_nx_add): Renamed from gl_linked_sortedlist_add.
12561         Update.
12562         * lib/gl_linked_list.c: Don't include xalloc.h.
12563         (gl_linked_list_implementation): Update.
12564         * lib/gl_linkedhash_list.c: Don't include xalloc.h.
12565         (add_to_bucket): Change return type to 'int'.
12566         (gl_linkedhash_list_implementation): Update.
12567         * lib/gl_anytree_list1.h (free_subtree): New function.
12568         * lib/gl_anytree_list2.h (gl_tree_nx_create_empty): Renamed from
12569         gl_tree_create_empty. Return NULL upon out-of-memory.
12570         (gl_tree_node_nx_set_value): Renamed from gl_tree_node_set_value.
12571         Change return type to 'int'. Return -1 upon out-of-memory.
12572         (gl_tree_nx_set_at): Renamed from gl_tree_set_at. Return NULL upon
12573         out-of-memory.
12574         (gl_tree_nx_add_at): Renamed from gl_tree_add_at. Update.
12575         (gl_tree_remove_node): New function, moved here from
12576         lib/gl_anyavltree_list2.h and lib/gl_anyrbtree_list2.h.
12577         (gl_tree_sortedlist_nx_add): Renamed from gl_tree_sortedlist_add.
12578         Update.
12579         * lib/gl_anyavltree_list2.h (create_subtree_with_contents): Use
12580         malloc, not xmalloc. Return NULL upon out-of-memory.
12581         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
12582         out-of-memory.
12583         (gl_tree_remove_node_from_tree): New function, extracted from
12584         gl_tree_remove_node.
12585         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
12586         upon out-of-memory.
12587         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
12588         out-of-memory.
12589         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
12590         upon out-of-memory.
12591         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
12592         upon out-of-memory.
12593         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
12594         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents): Use malloc,
12595         not xmalloc. Return NULL upon out-of-memory.
12596         (gl_tree_nx_create): Renamed from gl_tree_create. Return NULL upon
12597         out-of-memory.
12598         (gl_tree_remove_node_from_tree): New function, extracted from
12599         gl_tree_remove_node.
12600         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Return NULL
12601         upon out-of-memory.
12602         (gl_tree_nx_add_last): Renamed from gl_tree_add_last. Return NULL upon
12603         out-of-memory.
12604         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Return NULL
12605         upon out-of-memory.
12606         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Return NULL
12607         upon out-of-memory.
12608         (gl_tree_remove_node): Remove function. Moved to gl_anytree_list2.h.
12609         * lib/gl_avltree_list.c: Don't include xalloc.h. Include
12610         gl_anytree_list1.h before gl_anyavltree_list2.h.
12611         (gl_avltree_list_implementation): Update.
12612         * lib/gl_rbtree_list.c: Don't include xalloc.h. Include
12613         gl_anytree_list1.h before gl_anyavltree_list2.h.
12614         (gl_rbtree_list_implementation): Update.
12615         * lib/gl_anytreehash_list1.h (add_to_bucket, add_nodes_to_buckets):
12616         Change return type to 'int'. Return -1 upon out-of-memory. Use
12617         __builtin_expect.
12618         * lib/gl_avltreehash_list.c: Don't include xalloc.h.
12619         (gl_avltreehash_list_implementation): Update.
12620         * lib/gl_rbtreehash_list.c: Don't include xalloc.h.
12621         (gl_rbtreehash_list_implementation): Update.
12622         * modules/array-list (Depends-on): Remove xalloc.
12623         * modules/carray-list (Depends-on): Likewise.
12624         * modules/linked-list (Depends-on): Likewise.
12625         * modules/linkedhash-list (Depends-on): Likewise.
12626         * modules/avltree-list (Depends-on): Likewise.
12627         * modules/rbtree-list (Depends-on): Likewise.
12628         * modules/avltreehash-list (Depends-on): Likewise.
12629         * modules/rbtreehash-list (Depends-on): Likewise.
12630
12631         * modules/xsublist: New file.
12632         * lib/gl_xsublist.h: New file.
12633         * lib/gl_xsublist.c: New file.
12634         * lib/gl_sublist.h (gl_sublist_create): Disable declaration.
12635         (gl_sublist_nx_create): New declaration.
12636         * lib/gl_sublist.c: Don't include xalloc.h.
12637         (gl_sublist_nx_create_empty): Renamed from gl_sublist_create_empty.
12638         (gl_sublist_nx_create_fill): Renamed from gl_sublist_create_fill.
12639         (gl_sublist_node_nx_set_value): Renamed from gl_sublist_node_set_value.
12640         Change return type to 'int'. Return -1 upon out-of-memory.
12641         (gl_sublist_nx_set_at): Renamed from gl_sublist_set_at. Return NULL
12642         upon out-of-memory.
12643         (gl_sublist_nx_add_first): Renamed from gl_sublist_add_first. Return
12644         NULL upon out-of-memory.
12645         (gl_sublist_nx_add_last): Renamed from gl_sublist_add_last. Return NULL
12646         upon out-of-memory.
12647         (gl_sublist_nx_add_before): Renamed from gl_sublist_add_before. Return
12648         NULL upon out-of-memory.
12649         (gl_sublist_nx_add_after): Renamed from gl_sublist_add_after. Return
12650         NULL upon out-of-memory.
12651         (gl_sublist_nx_add_at): Renamed from gl_sublist_add_at. Return NULL
12652         upon out-of-memory.
12653         (gl_sublist_sortedlist_nx_add): Renamed from gl_sublist_sortedlist_add.
12654         (gl_sublist_list_implementation): Update.
12655         (gl_sublist_nx_create): Renamed from gl_sublist_create. Return NULL
12656         upon out-of-memory.
12657         * modules/sublist (Depends-on): Remove xalloc.
12658
12659         * tests/test-array_list.c: Use gl_list_nx_* functions where possible.
12660         * tests/test-carray_list.c: Likewise.
12661         * tests/test-linked_list.c: Likewise.
12662         * tests/test-linkedhash_list.c: Likewise.
12663         * tests/test-avltree_list.c: Likewise.
12664         * tests/test-rbtree_list.c: Likewise.
12665         * tests/test-avltreehash_list.c: Likewise.
12666         * tests/test-rbtreehash_list.c: Likewise.
12667         * modules/array-list-tests (Makefile.am): Don't link with @LIBINTL@.
12668         * modules/carray-list-tests (Makefile.am): Likewise.
12669         * modules/linked-list-tests (Makefile.am): Likewise.
12670         * modules/linkedhash-list-tests (Makefile.am): Likewise.
12671         * modules/avltree-list-tests (Makefile.am): Likewise.
12672         * modules/rbtree-list-tests (Makefile.am): Likewise.
12673         * modules/avltreehash-list-tests (Makefile.am): Likewise.
12674         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
12675
12676         * NEWS: Mention the changes.
12677
12678         * lib/clean-temp.c: Include gl_xlist.h.
12679         * modules/clean-temp (Depends-on): Add xlist.
12680
12681         * lib/git-merge-changelog.c: Include gl_xlist.h instead of gl_list.h.
12682         * modules/git-merge-changelog (Depends-on): Add xlist. Remove list.
12683
12684         * tests/test-array_oset.c: Include gl_xlist.h.
12685         * modules/array-oset-tests (Depends-on): Add xlist.
12686
12687         Reported by José E. Marchesi <jemarch@gnu.org>.
12688
12689 2009-12-13  Bruno Haible  <bruno@clisp.org>
12690
12691         Move the malloc checking from module 'oset' to new module 'xoset'.
12692         * modules/xoset: New file.
12693         * lib/gl_xoset.h: New file.
12694         * lib/gl_xoset.c: New file.
12695         * lib/gl_oset.h (gl_oset_create_empty, gl_oset_add): Disable
12696         declarations.
12697         (gl_oset_nx_create_empty, gl_oset_nx_add): New declarations.
12698         (struct gl_oset_implementation): Rename and change methods accordingly.
12699         (gl_oset_nx_create_empty): Renamed from gl_oset_create_empty.
12700         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
12701         'int'. Mark as __warn_unused_result__.
12702         * lib/gl_oset.c (gl_oset_nx_create_empty): Renamed from
12703         gl_oset_create_empty.
12704         (gl_oset_nx_add): Renamed from gl_oset_add. Change return type to
12705         'int'.
12706         * lib/gl_array_oset.c: Don't include xalloc.h.
12707         (gl_array_nx_create_empty): Renamed from gl_array_create_empty. Use
12708         malloc, not xmalloc.
12709         (grow): Change return type to 'int'. Don't call xalloc_die.
12710         (gl_array_nx_add_at): Renamed from gl_array_add_at. Change return type
12711         to 'int'.
12712         (gl_array_nx_add): Renamed from gl_array_add. Change return type to
12713         'int'.
12714         (gl_array_oset_implementation): Update.
12715         * lib/gl_anytree_oset.h (gl_tree_nx_create_empty): Renamed from
12716         gl_tree_create_empty.
12717         (gl_tree_nx_add): Renamed from gl_tree_add. Change return type to
12718         'int'.
12719         * lib/gl_avltree_oset.c: Don't include xalloc.h.
12720         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
12721         xmalloc.
12722         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
12723         not xmalloc.
12724         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
12725         xmalloc.
12726         (gl_avltree_oset_implementation): Update.
12727         * lib/gl_rbtree_oset.c: Don't include xalloc.h.
12728         (gl_tree_nx_add_first): Renamed from gl_tree_add_first. Use malloc, not
12729         xmalloc.
12730         (gl_tree_nx_add_before): Renamed from gl_tree_add_before. Use malloc,
12731         not xmalloc.
12732         (gl_tree_nx_add_after): Renamed from gl_tree_add_after. Use malloc, not
12733         xmalloc.
12734         (gl_rbtree_oset_implementation): Update.
12735         * modules/array-oset (Depends-on): Remove xalloc.
12736         * modules/avltree-oset (Depends-on): Likewise.
12737         * modules/rbtree-oset (Depends-on): Likewise.
12738         * tests/test-array_oset.c: Use gl_oset_nx_* functions where possible.
12739         * tests/test-avltree_oset.c: Likewise.
12740         * tests/test-rbtree_oset.c: Likewise.
12741         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
12742         * modules/avltree-oset-tests (Makefile.am): Don't link with @LIBINTL@.
12743         * modules/rbtree-oset-tests (Makefile.am): Likewise.
12744         * NEWS: Mention the change.
12745
12746 2009-12-05  Alfred M. Szmidt  <ams@gnu.org>
12747
12748         maint.mk: allow a project to override release-prep commands
12749         * top/maint.mk (alpha, beta, stable): Move release-preparatory
12750         commands into a new rule.
12751         (release-prep): New rule.
12752         (release-prep-hook): New overridable variable.
12753
12754 2009-12-13  Bruno Haible  <bruno@clisp.org>
12755
12756         * lib/localcharset.c (locale_charset): Fix comment about use of GetACP.
12757
12758 2009-12-13  Jim Meyering  <meyering@redhat.com>
12759
12760         maint.mk (null_AM_MAKEFLAGS, built_programs): remove unused definitions
12761         * top/maint.mk (null_AM_MAKEFLAGS, built_programs): Remove definitions.
12762
12763 2009-12-12  Bruno Haible  <bruno@clisp.org>
12764
12765         duplocale: Tweak.
12766         * lib/duplocale.c (rpl_duplocale): Mark categories array as 'const'.
12767
12768 2009-12-12  Karl Berry  <karl@gnu.org>
12769
12770         * config/srclist.txt (strtoll.c): tab changes, no more sync.
12771
12772 2009-12-12  Bruno Haible  <bruno@clisp.org>
12773
12774         * m4/po.m4: Undo incorrect untabification.
12775
12776 2009-12-12  Bruno Haible  <bruno@clisp.org>
12777
12778         c-strtod, c-strtold: Use multithread-safe implementation on MacOS X.
12779         * modules/c-strtod (Depends-on): Add locale.
12780         * modules/c-strtold (Depends-on): Likewise.
12781
12782 2009-12-12  Bruno Haible  <bruno@clisp.org>
12783
12784         * lib/localcharset.c (locale_charset): Add comment about use of GetACP.
12785
12786 2009-12-11  Eric Blake  <ebb9@byu.net>
12787
12788         setenv: relax requirement in light of POSIX ruling
12789         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): Test handling of "" but
12790         not NULL.
12791         * tests/test-setenv.c (main): Relax test.
12792         * tests/test-unsetenv.c (main): Likewise.
12793         * doc/posix-functions/setenv.texi (setenv): Document this.
12794         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
12795
12796 2009-12-11  Bruno Haible  <bruno@clisp.org>
12797
12798         New module 'fd-safer-flag'.
12799         * lib/dup-safer-flag.c: New file, extracted from lib/dup-safer.c.
12800         * lib/dup-safer.c (dup_safer_flag): Remove function.
12801         * lib/fd-safer-flag.c: New file, extracted from lib/fd-safer.c.
12802         * lib/fd-safer.c (fd_safer_flag): Remove function.
12803         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): Update condition.
12804         * modules/cloexec (configure.ac): Drop indicator macro.
12805         * modules/fd-safer-flag: New file.
12806         * modules/pipe2-safer (Depends-on): Add fd-safer-flag. Remove cloexec.
12807         * modules/stdlib-safer (Depends-on): Add fd-safer-flag.
12808         * modules/unistd-safer-tests (Depends-on): Add fd-safer-flag.
12809
12810 2009-12-11  Bruno Haible  <bruno@clisp.org>
12811
12812         Tests for module 'nl_langinfo'.
12813         * modules/nl_langinfo-tests: New file.
12814         * tests/test-nl_langinfo.sh: New file.
12815         * tests/test-nl_langinfo.c: New file.
12816
12817         New module 'nl_langinfo'.
12818         * lib/nl_langinfo.c: New file.
12819         * m4/nl_langinfo.m4: New file.
12820         * modules/nl_langinfo: New file.
12821         * doc/posix-functions/nl_langinfo.texi: Mention the new module.
12822
12823 2009-12-11  Bruno Haible  <bruno@clisp.org>
12824
12825         Tests for module 'langinfo'.
12826         * modules/langinfo-tests: New file.
12827         * tests/test-langinfo.c: New file.
12828
12829         New module 'langinfo'.
12830         * lib/langinfo.in.h: New file.
12831         * m4/langinfo_h.m4: New file.
12832         * modules/langinfo: New file.
12833         * doc/posix-headers/langinfo.texi: Mention the new module.
12834
12835 2009-12-11  Bruno Haible  <bruno@clisp.org>
12836
12837         * lib/config.charset: Untabify.
12838
12839 2009-12-11  Bruno Haible  <bruno@clisp.org>
12840
12841         * modules/unistd-safer (configure.ac): Drop indicator macro.
12842
12843 2009-12-11  Bruno Haible  <bruno@clisp.org>
12844
12845         Move pipe2-safer code to its own file.
12846         * lib/pipe2-safer.c: New file, extracted from lib/pipe-safer.c.
12847         * lib/pipe-safer.c (pipe2_safer): Remove function.
12848         * modules/pipe2-safer (Files): Add lib/pipe2-safer.c.
12849         (Makefile.am): Add it to lib_SOURCES.
12850
12851 2009-12-10  Bruno Haible  <bruno@clisp.org>
12852
12853         * lib/recvfrom.c (rpl_recvfrom): Allow the from argument to be NULL.
12854
12855 2009-12-10  Bruno Haible  <bruno@clisp.org>
12856
12857         Declare which arguments expect non-NULL values, for GCC and clang.
12858         * build-aux/arg-nonnull.h: New file.
12859         * modules/arg-nonnull: New file.
12860         * lib/arpa_inet.in.h (_GL_ARG_NONNULL): New placeholder.
12861         (inet_ntop, inet_pton): Use it.
12862         * lib/dirent.in.h (_GL_ARG_NONNULL): New placeholder.
12863         (closedir, dirfd, opendir, scandir, alphasort): Use it.
12864         * lib/fcntl.in.h (_GL_ARG_NONNULL): New placeholder.
12865         (open, openat): Use it.
12866         * lib/fnmatch.in.h (_GL_ARG_NONNULL): New placeholder.
12867         (fnmatch): Use it.
12868         * lib/getopt.in.h (_GL_ARG_NONNULL): New placeholder.
12869         (getopt, getopt_long, getopt_long_only): Use it.
12870         * lib/glob.in.h (_GL_ARG_NONNULL): New placeholder.
12871         * lib/glob-libc.h (glob, globfree, glob64, globfree64, glob_pattern_p):
12872         Use it.
12873         * lib/iconv.in.h (_GL_ARG_NONNULL): New placeholder.
12874         (iconv_open): Use it.
12875         * lib/inttypes.in.h (_GL_ARG_NONNULL): New placeholder.
12876         (strtoimax, strtoumax): Use it.
12877         * lib/locale.in.h (_GL_ARG_NONNULL): New placeholder.
12878         (duplocale): Use it.
12879         * lib/math.in.h (_GL_ARG_NONNULL): New placeholder.
12880         (frexp, frexpl): Use it.
12881         * lib/netdb.in.h (_GL_ARG_NONNULL): New placeholder.
12882         (getaddrinfo, freeaddrinfo, getnameinfo): Use it.
12883         * lib/search.in.h (_GL_ARG_NONNULL): New placeholder.
12884         (tsearch, tfind, tdelete, twalk): Use it.
12885         * lib/signal.in.h (_GL_ARG_NONNULL): New placeholder.
12886         (sigismember, sigemptyset, sigaddset, sigdelset, sigfillset,
12887         sigpending): Use it.
12888         * lib/spawn.in.h (_GL_ARG_NONNULL): New placeholder.
12889         (posix_spawn, posix_spawnp, posix_spawnattr_init,
12890         posix_spawnattr_destroy, posix_spawnattr_getsigdefault,
12891         posix_spawnattr_setsigdefault, posix_spawnattr_getsigmask,
12892         posix_spawnattr_setsigmask, posix_spawnattr_getflags,
12893         posix_spawnattr_setflags, posix_spawnattr_getpgroup,
12894         posix_spawnattr_setpgroup, posix_spawnattr_getschedpolicy,
12895         posix_spawnattr_setschedpolicy, posix_spawnattr_getschedparam,
12896         posix_spawnattr_setschedparam, posix_spawn_file_actions_init,
12897         posix_spawn_file_actions_destroy, posix_spawn_file_actions_addopen,
12898         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2):
12899         Use it.
12900         * lib/stdio.in.h (_GL_ARG_NONNULL): New placeholder.
12901         (dprintf, fclose, fopen, fprintf, fpurge, fputc, fputs, freopen,
12902         rpl_fseek, fseeko, rpl_ftell, ftello, fwrite, getdelim, getline,
12903         obstack_printf, obstack_vprintf, popen, printf, putc, puts, remove,
12904         rename, renameat, snprintf, sprintf, asprintf, vasprintf, vdprintf,
12905         vfprintf, vprintf, vsnprintf, vsprintf): Use it.
12906         * lib/stdlib.in.h (_GL_ARG_NONNULL): New placeholder.
12907         (atoll, canonicalize_file_name, getloadavg, getsubopt, mkdtemp,
12908         mkostemp, mkostemps, mkstemp, mkstemps, putenv, srandom_r, initstate_r,
12909         setstate_r, random_r, realpath, rpmatch, setenv, strtod, strtoll,
12910         strtoull, unsetenv): Use it.
12911         * lib/string.in.h (_GL_ARG_NONNULL): New placeholder.
12912         (memchr, memmem, mempcpy, memrchr, rawmemchr, stpcpy, stpncpy,
12913         strchrnul, strdup, strndup, strnlen, strpbrk, strsep, strstr,
12914         strcasestr, strtok_r, mbslen, mbsnlen, mbschr, mbsrchr, mbsstr,
12915         mbscasecmp, mbsncasecmp, mbspcasecmp, mbscasestr, mbscspn, mbspbrk,
12916         mbsspn, mbssep, mbstok_r, strverscmp): Use it.
12917         * lib/strings.in.h (_GL_ARG_NONNULL): New placeholder.
12918         (strcasecmp, strncasecmp): Use it.
12919         * lib/sys_socket.in.h (_GL_ARG_NONNULL): New placeholder.
12920         (rpl_connect, rpl_bind, rpl_getpeername, rpl_getsockname,
12921         rpl_getsockopt, rpl_recv, rpl_send, rpl_recvfrom, rpl_sendto,
12922         rpl_setsockopt): Use it.
12923         * lib/sys_stat.in.h (_GL_ARG_NONNULL): New placeholder.
12924         (fchmodat, fstat, fstatat, lchmod, rpl_lstat, mkdir, mkdirat, mkfifo,
12925         mkfifoat, mknod, mknodat, stat, utimensat): Use it.
12926         * lib/sys_time.in.h (_GL_ARG_NONNULL): New placeholder.
12927         (gettimeofday): Use it.
12928         * lib/sys_times.in.h (_GL_ARG_NONNULL): New placeholder.
12929         (times): Use it.
12930         * lib/sys_utsname.in.h (_GL_ARG_NONNULL): New placeholder.
12931         (uname): Use it.
12932         * lib/time.in.h (_GL_ARG_NONNULL): New placeholder.
12933         (nanosleep, mktime, localtime_r, gmtime_r, strptime, timegm): Use it.
12934         * lib/unistd.in.h (_GL_ARG_NONNULL): New placeholder.
12935         (chown, euidaccess, faccessat, _gl_register_fd, fchownat,
12936         getdomainname, gethostname, getlogin_r, lchown, link, linkat, pipe2,
12937         pread, readlink, readlinkat, rmdir, symlink, symlinkat, unlink,
12938         unlinkat, write): Use it.
12939         * lib/wchar.in.h (_GL_ARG_NONNULL): New placeholder.
12940         (mbsrtowcs, mbsnrtowcs, wcsrtombs, wcsnrtombs): Use it.
12941         * lib/argv-iter.h: Include arg-nonnull.h.
12942         (_ATTRIBUTE_NONNULL_): Remove macro.
12943         (argv_iter_init_argv, argv_iter_init_stream, argv_iter,
12944         argv_iter_n_args, argv_iter_free): Use _GL_ARG_NONNULL.
12945         * lib/canonicalize-lgpl.c (_GL_ARG_NONNULL): Define, to defeat gcc
12946         optimization.
12947         * lib/getaddrinfo.c (_GL_ARG_NONNULL): Likewise.
12948         * lib/getdelim.c (_GL_ARG_NONNULL): Likewise.
12949         * lib/glob.c (_GL_ARG_NONNULL): Likewise.
12950         * lib/random_r.c (_GL_ARG_NONNULL): Likewise.
12951         * lib/setenv.c (_GL_ARG_NONNULL): Likewise.
12952         * lib/strtod.c (_GL_ARG_NONNULL): Likewise.
12953         * lib/tsearch.c (_GL_ARG_NONNULL): Likewise.
12954         * lib/unsetenv.c (_GL_ARG_NONNULL): Likewise.
12955         * modules/arpa_inet (Depends-on): Add arg-nonnull.
12956         (Makefile.am): Insert arg-nonnull.h into arpa/inet.h.
12957         * modules/dirent (Depends-on): Add arg-nonnull.
12958         (Makefile.am): Insert arg-nonnull.h into dirent.h.
12959         * modules/fcntl-h (Depends-on): Add arg-nonnull.
12960         (Makefile.am): Insert arg-nonnull.h into fcntl.h.
12961         * modules/fnmatch (Depends-on): Add arg-nonnull.
12962         (Makefile.am): Insert arg-nonnull.h into fnmatch.h.
12963         * modules/getopt-posix (Depends-on): Add arg-nonnull.
12964         (Makefile.am): Insert arg-nonnull.h into getopt.h.
12965         * modules/glob (Depends-on): Add arg-nonnull.
12966         (Makefile.am): Insert arg-nonnull.h into glob.h.
12967         * modules/iconv_open (Depends-on): Add arg-nonnull.
12968         (Makefile.am): Insert arg-nonnull.h into iconv.h.
12969         * modules/inttypes (Depends-on): Add arg-nonnull.
12970         (Makefile.am): Insert arg-nonnull.h into inttypes.h.
12971         * modules/locale (Depends-on): Add arg-nonnull.
12972         (Makefile.am): Insert arg-nonnull.h into locale.h.
12973         * modules/math (Depends-on): Add arg-nonnull.
12974         (Makefile.am): Insert arg-nonnull.h into math.h.
12975         * modules/netdb (Depends-on): Add arg-nonnull.
12976         (Makefile.am): Insert arg-nonnull.h into netdb.h.
12977         * modules/search (Depends-on): Add arg-nonnull.
12978         (Makefile.am): Insert arg-nonnull.h into search.h.
12979         * modules/signal (Depends-on): Add arg-nonnull.
12980         (Makefile.am): Insert arg-nonnull.h into signal.h.
12981         * modules/spawn (Depends-on): Add arg-nonnull.
12982         (Makefile.am): Insert arg-nonnull.h into spawn.h.
12983         * modules/stdio (Depends-on): Add arg-nonnull.
12984         (Makefile.am): Insert arg-nonnull.h into stdio.h.
12985         * modules/stdlib (Depends-on): Add arg-nonnull.
12986         (Makefile.am): Insert arg-nonnull.h into stdlib.h.
12987         * modules/string (Depends-on): Add arg-nonnull.
12988         (Makefile.am): Insert arg-nonnull.h into string.h.
12989         * modules/strings (Depends-on): Add arg-nonnull.
12990         (Makefile.am): Insert arg-nonnull.h into strings.h.
12991         * modules/sys_socket (Depends-on): Add arg-nonnull.
12992         (Makefile.am): Insert arg-nonnull.h into sys/socket.h.
12993         * modules/sys_stat (Depends-on): Add arg-nonnull.
12994         (Makefile.am): Insert arg-nonnull.h into sys/stat.h.
12995         * modules/sys_time (Depends-on): Add arg-nonnull.
12996         (Makefile.am): Insert arg-nonnull.h into sys/time.h.
12997         * modules/sys_times (Depends-on): Add arg-nonnull.
12998         (Makefile.am): Insert arg-nonnull.h into sys/times.h.
12999         * modules/sys_utsname (Depends-on): Add arg-nonnull.
13000         (Makefile.am): Insert arg-nonnull.h into sys/utsname.h.
13001         * modules/time (Depends-on): Add arg-nonnull.
13002         (Makefile.am): Insert arg-nonnull.h into time.h.
13003         * modules/unistd (Depends-on): Add arg-nonnull.
13004         (Makefile.am): Insert arg-nonnull.h into unistd.h.
13005         * modules/wchar (Depends-on): Add arg-nonnull.
13006         (Makefile.am): Insert arg-nonnull.h into wchar.h.
13007         * modules/argv-iter (Depends-on): Add arg-nonnull.
13008         * tests/test-canonicalize.c (null_ptr): New function.
13009         (main): Use it.
13010         * tests/test-canonicalize-lgpl.c (null_ptr): New function.
13011         (main): Use it.
13012         * tests/test-memmem.c (null_ptr): New function.
13013         (main): Use it.
13014         Reported by Jim Meyering.
13015
13016 2009-12-10  Bruno Haible  <bruno@clisp.org>
13017
13018         Use spaces for indentation, not tabs.
13019         * lib/**/*.[hcy] except lib/reg*.[hc]: Untabify.
13020         * m4/*.m4: Untabify.
13021         * build-aux/*.h: Untabify.
13022         * tests/**/*.[hc]: Untabify.
13023         * README: New section "Indent with spaces, not TABs", based on
13024         coreutils/HACKING and comments by Pádraig Brady and Paolo Bonzini.
13025         * NEWS: Mention the change.
13026
13027 2009-12-10  Bruno Haible  <bruno@clisp.org>
13028
13029         pty test: Fix link error.
13030         * modules/pty-tests (Makefile.am): Add the default LDADD value to
13031         test_pty_LDADD.
13032
13033 2009-12-07  Simon Josefsson  <simon@josefsson.org>
13034
13035         * modules/pty: New file.
13036         * modules/pty-tests: New file.
13037         * m4/pty.m4: New file.
13038         * tests/test-pty.c: New file.
13039         * doc/glibc-headers/pty.texi: Modified.
13040         * doc/glibc-functions/forkpty.texi: Modified.
13041         * doc/glibc-functions/openpty.texi: Modified.
13042
13043 2009-12-10  Bruno Haible  <bruno@clisp.org>
13044
13045         Avoid syntax error in C++ mode.
13046         * lib/stdio.in.h (rename): Don't use parameter name 'new'.
13047
13048 2009-12-10  Bruno Haible  <bruno@clisp.org>
13049
13050         Use sed with option -e.
13051         * gnulib-tool (func_version, func_emit_copyright_notice,
13052         func_emit_initmacro_end, func_import, func_create_testdir): Pass
13053         option -e to sed.
13054         * modules/link-warning (Makefile.am): Likewise.
13055
13056 2009-12-10  Jim Meyering  <meyering@redhat.com>
13057
13058         mgetgroups: do not write bytes beyond end of malloc'd buffer
13059         * lib/mgetgroups.c: Fix an off-by-one error.  When we have no
13060         username, we call getgroups with a one-element-shorter buffer,
13061         but still told it the length was original, max_n_groups.
13062
13063 2009-12-09  Eric Blake  <ebb9@byu.net>
13064
13065         cloexec: relax license
13066         * modules/cloexec (Maintainer): Add myself.
13067         (License): Use LGPL, not GPL.
13068
13069         link-warning: optimize generation
13070         * modules/link-warning (Makefile.am): Reduce process usage.
13071
13072 2009-12-09  Bruno Haible  <bruno@clisp.org>
13073
13074         * doc/posix-functions/unsetenv.texi: Mention Solaris 10 bug for which a
13075         workaround was added on 2009-11-17.
13076
13077 2009-12-09  Jim Meyering  <meyering@redhat.com>
13078             Bruno Haible  <bruno@clisp.org>
13079
13080         link-warning: Allow extra lines at the top of build-aux/link-warning.h.
13081         * modules/link-warning (Makefile.am): Make the comment-removing sed
13082         command more robust in the face of bootstrap-prepended comment lines.
13083
13084 2009-12-09  Bruno Haible  <bruno@clisp.org>
13085
13086         * lib/mgetgroups.c (mgetgroups): Don't remove duplicates if there is at
13087         most one group.
13088
13089 2009-12-09  Simon Josefsson <simon@josefsson.org>
13090             Bruno Haible  <bruno@clisp.org>
13091
13092         * build-aux/link-warning.h: Add copyright notice.
13093         * modules/link-warning (Makefile.am): Generate link-warning.h from
13094         build-aux/link-warning.h. Update LINK_WARNING_H accordingly.
13095         * NEWS: Mention change in link-warning module.
13096         * modules/arpa_inet (Makefile.am): Add dependency to arpa/inet.h.
13097         * modules/dirent (Makefile.am): Add dependency to dirent.h.
13098         * modules/fcntl-h (Makefile.am): Add dependency to fcntl.h.
13099         * modules/getopt-posix (Makefile.am): Add dependency to getopt.h.
13100         * modules/inttypes (Makefile.am): Add dependency to inttypes.h.
13101         * modules/math (Makefile.am): Add dependency to math.h.
13102         * modules/search (Makefile.am): Add dependency to search.h.
13103         * modules/signal (Makefile.am): Add dependency to signal.h.
13104         * modules/spawn (Makefile.am): Add dependency to spawn.h.
13105         * modules/stdio (Makefile.am): Add dependency to stdio.h.
13106         * modules/stdlib (Makefile.am): Add dependency to stdlib.h.
13107         * modules/string (Makefile.am): Add dependency to string.h.
13108         * modules/strings (Makefile.am): Add dependency to strings.h.
13109         * modules/sys_ioctl (Makefile.am): Add dependency to sys/ioctl.h.
13110         * modules/sys_select (Makefile.am): Add dependency to sys/select.h.
13111         * modules/sys_socket (Makefile.am): Add dependency to sys/socket.h.
13112         * modules/sys_stat (Makefile.am): Add dependency to sys/stat.h.
13113         * modules/sys_times (Makefile.am): Add dependency to sys/times.h.
13114         * modules/sys_utsname (Makefile.am): Add dependency to sys/utsname.h.
13115         * modules/sys_wait (Makefile.am): Add dependency to sys/wait.h.
13116         * modules/unistd (Makefile.am): Add dependency to unistd.h.
13117         * modules/wchar (Makefile.am): Add dependency to wchar.h.
13118
13119 2009-12-09  Bruno Haible  <bruno@clisp.org>
13120
13121         fchdir: Optimize away rpl_fstat when possible.
13122         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set REPLACE_FSTAT only together with
13123         REPLACE_OPEN_DIRECTORY.
13124         * lib/fchdir.c (rpl_fstat): Define only when REPLACE_OPEN_DIRECTORY.
13125
13126 2009-12-09  Bruno Haible  <bruno@clisp.org>
13127
13128         * lib/fchdir.c: Update comment.
13129
13130 2009-12-09  Bruno Haible  <bruno@clisp.org>
13131
13132         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
13133
13134 2009-12-08  Eric Blake  <ebb9@byu.net>
13135
13136         fchdir: avoid memory leak on re-registration.
13137         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
13138
13139 2009-12-08  Jim Meyering  <meyering@redhat.com>
13140
13141         init.sh: avoid Solaris 10 /bin/sh portability problem
13142         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
13143         sourced script:
13144           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
13145           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
13146           bar
13147         tests/init.sh relied on that, accepting a --set-path=DIR argument,
13148         and two tests used that idiom.
13149         * tests/init.sh: Update suggested usage comments.
13150         (path_prepend_): New function, to be used in place
13151         of the --src-path=DIR option.
13152         (setup_): Move PATH-prepending code into path_prepend_.
13153         * tests/test-pread.sh: Adapt to new usage.
13154         * tests/test-xalloc-die.sh: Likewise.
13155
13156 2009-12-08  Simon Josefsson  <simon@josefsson.org>
13157
13158         * doc/gnulib.texi (Glibc pty.h): Add.
13159         * doc/glibc-functions/forkpty.texi: Add.
13160         * doc/glibc-functions/openpty.texi: Add.
13161         Suggested by Bruno Haible.
13162
13163 2009-12-08  Eric Blake  <ebb9@byu.net>
13164
13165         fchdir: fix logic bugs
13166         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
13167         * tests/test-fchdir.c (main): Enhance test.
13168         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
13169         is in use.
13170
13171         dup2: fix logic bugs
13172         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
13173         REPLACE_DUP2 to decide when rpl_dup2 is needed.
13174         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
13175         exists.
13176         (gl_FUNC_DUP2): Drop unneeded AC_DEFINE.
13177
13178 2009-12-07  Eric Blake  <ebb9@byu.net>
13179
13180         unlink: fix m4 detection
13181         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
13182
13183         unistd-safer: add unit test
13184         * modules/unistd-safer-tests: New file.
13185         * tests/test-dup-safer.c: Likewise.
13186         * tests/test-cloexec.c (setmode): Avoid compiler warning.
13187         * tests/test-dup2.c (setmode): Likewise.
13188         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
13189
13190         cloexec: preserve text vs. binary across dup_cloexec
13191         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
13192         mode.
13193         * modules/dup2-tests (Depends-on): Add binary-io.
13194         * modules/cloexec-tests (Depends-on): Likewise.
13195         * tests/test-dup2.c (setmode, is_mode): New helpers.
13196         (main): Add tests that translation mode is preserved.
13197         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
13198         Reported by Bruno Haible.
13199
13200         mgetgroups: reduce duplicate listings
13201         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
13202         resulting array.
13203         * tests/test-chown.h (test_chown): Simplify client.
13204         * tests/test-lchown.h (test_lchown): Likewise.
13205
13206 2009-12-06  Bruno Haible  <bruno@clisp.org>
13207
13208         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
13209         value.
13210
13211 2009-12-06  Bruno Haible  <bruno@clisp.org>
13212
13213         * lib/progname.c: Include stdio.h, stdlib.h.
13214         (set_program_name): Reject a NULL argument.
13215
13216 2009-12-05  Eric Blake  <ebb9@byu.net>
13217
13218         pipe2-safer: new module
13219         * modules/pipe2-safer: New file.
13220         * lib/unistd-safer.h (pipe2_safer): New prototype.
13221         * lib/unistd--.h (pipe2): New wrapper.
13222         * lib/pipe-safer.c (pipe2_safer): New function.
13223         * modules/pipe (Depends-on): Add pipe2-safer.
13224         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
13225
13226         stdlib-safer: preserve cloexec flag for mkostemp[s]
13227         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
13228         fd_safer_flag.
13229
13230         unistd-safer: allow preservation of cloexec status via flag
13231         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
13232         prototypes.
13233         * lib/dup-safer.c (dup_safer_flag): New function.
13234         * lib/fd-safer.c (fd_safer_flag): Likewise.
13235         * modules/cloexec (configure.ac): Set witness.
13236
13237         test-dup2: enhance test
13238         * modules/dup2-tests (Depends-on): Add cloexec.
13239         * tests/test-dup2.c (main): Enhance test.
13240
13241         cloexec: add dup_cloexec
13242         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
13243         header and comments.
13244         * lib/cloexec.c (set_cloexec_flag): Add comments.
13245         (dup_cloexec): New function, with mingw implementation borrowed
13246         from...
13247         * lib/w32spawn.h (dup_noinherit): ...here.
13248         * modules/execute (Depends-on): Add cloexec.
13249         * modules/pipe (Depends-on): Likewise.
13250         * modules/cloexec (Depends-on): Add dup2.
13251         * modules/cloexec-tests (Files): New file.
13252         * tests/test-cloexec.c: Likewise.
13253
13254         test-xalloc-die: fix test for mingw
13255         * modules/xalloc-die-tests (Files): Add tests/init.sh.
13256         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
13257         directory and .exe suffix off argv[0] output.
13258
13259         test-fseeko: fix test for mingw
13260         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
13261         than undefining fseek, so test will pass on mingw.
13262
13263 2009-12-05  Bruno Haible  <bruno@clisp.org>
13264
13265         * lib/progname.h (set_program_name): Clarify specification.
13266         * lib/progname.c (set_program_name): Likewise.
13267         Reported by Jim Meyering.
13268
13269 2009-12-05  Jim Meyering  <meyering@redhat.com>
13270
13271         maint.mk: backslash-escape parens in default regexp
13272         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
13273         backslash-escape the literal parentheses.
13274
13275         maint.mk: news-date-check: use grep -E
13276         * top/maint.mk (today): Define a Make variable, not a...
13277         (news-date-check): ...shell variable.
13278         (news-date-regexp): Use the Make variable.
13279         Use grep's -E option.  Change the failing diagnostic to mention
13280         the variable, $(news-date-regexp).
13281
13282 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
13283
13284         maintainer-makefile: allow customization of NEWS entry format
13285         * top/maint.mk (news-date-regexp): New overridable variable.
13286         (news-date-check): Use it.
13287
13288 2009-12-04  Eric Blake  <ebb9@byu.net>
13289
13290         mgetgroups: add xgetgroups, and avoid ENOSYS failures
13291         * lib/mgetgroups.h (xgetgroups): New prototype.
13292         * lib/mgetgroups.c (xgetgroups): New wrapper.
13293         (mgetgroups): Handle ENOSYS.
13294         * modules/mgetgroups (Depends-on): Add realloc.
13295         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
13296
13297         mgetgroups: avoid argument promotion issues with -1
13298         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
13299         for invalid gid_t.
13300         * tests/test-chown.h (getegid, test_chown): Likewise.
13301         * tests/test-lchown.h (getegid, test_lchown): Likewise.
13302
13303 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
13304
13305         exclude: Fix header file problems.
13306         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
13307
13308 2009-12-01  Jim Meyering  <meyering@redhat.com>
13309
13310         fts: fts_open: do not let an empty string cause immediate failure
13311         This is required in support of GNU rm, for which the command
13312         "rm A '' B" must process and remove both A and B, in spite of
13313         the empty string argument.
13314         * lib/fts.c (fts_open): Do not let the presence of an empty string
13315         cause fts_open to fail immediately.  Most fts-using tools must be
13316         able to process all arguments, in order, and can be expected to
13317         diagnose such arguments themselves.
13318
13319 2009-11-30  Eric Blake  <ebb9@byu.net>
13320
13321         utimens: fix compilation error
13322         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
13323         Declare variable at right scope.
13324
13325 2009-11-29  Jim Meyering  <meyering@redhat.com>
13326
13327         bootstrap: handle perl-5.11's changed --version output
13328         * build-aux/bootstrap (get_version): Handle perl separately,
13329         since perl-5.11's --version output is different.
13330
13331 2009-11-28  Jim Meyering  <meyering@redhat.com>
13332
13333         userspec: depend on the inttostr module, too
13334         * modules/userspec (Depends-on): Add inttostr.
13335
13336         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
13337         * lib/userspec.c (parse_with_separator): Do not accept a user ID
13338         number of MAXUID when it evaluates to (uid_t) -1.
13339         Likewise for group ID.  Reported by Matt McCutchen in
13340         <http://savannah.gnu.org/bugs/?28113>
13341
13342         userspec: reformat to use spaces, not TABs
13343         * lib/userspec.c: Expand TABs to spaces.
13344         Add Emacs' "indent-tabs-mode: nil" hint.
13345
13346 2009-11-27  Eric Blake  <ebb9@byu.net>
13347
13348         getopt-gnu: flush out another BSD bug
13349         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
13350         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
13351         flush out BSD bug.
13352         * tests/test-getopt.h (test_getopt): End lists with NULL.
13353         * tests/test-getopt_long.h (test_getopt_long): Likewise.
13354         (test_getopt_long_posix): Enhance test.
13355         * modules/getopt-posix-tests (Depends-on): Add stdbool.
13356         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
13357         getopt-gnu.
13358         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
13359         Likewise.
13360
13361 2009-11-27  Simon Josefsson  <simon@josefsson.org>
13362
13363         * modules/idpriv-droptemp-tests (Notice): Fix text.
13364
13365 2009-11-27  Jim Meyering  <meyering@redhat.com>
13366
13367         test-xalloc-die: avoid spurious failure due to libtool argv difference
13368         In a libtool-enabled project, this test would fail due to a difference
13369         in the emitted program name, e.g.,
13370         -test-xalloc-die: memory exhausted
13371         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
13372         Use program to avoid that.
13373         * modules/xalloc-die-tests (Depends-on): Add progname.
13374         * tests/test-xalloc-die.c: Include progname.h".
13375         (program_name): Remove decl.
13376         (main): Call set_program_name.
13377         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
13378
13379 2009-11-26  Richard Jones  <rjones@redhat.com>
13380
13381         w32sock: leave win32 error in place.
13382         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
13383
13384 2009-11-26  Eric Blake  <ebb9@byu.net>
13385
13386         init.sh: suggest to use skip_ and fail_ functions in comments
13387         * tests/init.sh: Add a sentence.
13388
13389 2009-11-25  Bruno Haible  <bruno@clisp.org>
13390
13391         init.sh: add documentation in comments
13392         * tests/init.sh: Add some developer and user documentation.
13393
13394 2009-11-26  Jim Meyering  <meyering@redhat.com>
13395
13396         init.sh: accommodate even those who specify bogus srcdir manually
13397         * tests/init.sh: Normally, srcdir is guaranteed by automake and
13398         configure-time tests to be sanitized, so that there is no need to
13399         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
13400         (with no double quotes) suffices.  However, since tests may be
13401         invoked manually, and since you may explicitly set srcdir to the
13402         name of a directory containing spaces, do quote its uses here.
13403         * tests/test-pread.sh: Likewise.
13404         Suggested by Bruno Haible.
13405
13406         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
13407         * tests/test-pread.sh: Write no data into the pipe, because
13408         test-pread actually reads none.  This avoids a diagnostic,
13409         "bash: echo: write error: Broken pipe", that arises in the unusual
13410         event something is ignoring SIGPIPE, and might be interpreted
13411         as some sort of failure.  Reported by Bruno Haible.
13412
13413 2009-11-25  Jim Meyering  <meyering@redhat.com>
13414
13415         test-pread: cover failure with ESPIPE and EINVAL
13416         * tests/test-pread.c (main): Test for failure, too.
13417         * tests/test-pread.sh: Invoke with stdin on a pipe.
13418         Suggested by Eric Blake.
13419
13420         pread: improvement and fix
13421         * modules/pread (Depends-on): Depend on lseek, for portability to
13422         e.g., mingw.  Suggested by Eric Blake.
13423         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
13424
13425         unistd.in.h: correct declaration of pread
13426         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
13427         Reported by Richard W.M. Jones.
13428
13429         test-pread.sh: distribute the test script
13430         * modules/pread-tests (Files): Include test-pread.sh.
13431
13432         test-pread.sh: clean up
13433         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
13434         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
13435         That is unnecessary, since it's always ".".
13436         Suggestion from Eric Blake.
13437
13438         test-pread.sh: make executable
13439         * tests/test-pread.sh: Set executable bit.
13440         Reported by Eric Blake.
13441
13442         correct typo in test-pread.sh
13443         * tests/test-pread.sh: Add #! line.
13444
13445         test pread
13446         * tests/test-pread.c: New file.
13447         * tests/test-pread.sh: Likewise.
13448         * modules/pread-tests: Likewise.
13449
13450         pread: new module
13451         * modules/pread: New file.
13452         * lib/unistd.in.h (pread): Define/declare.
13453         * lib/pread.c (pread): New file.
13454         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
13455         * modules/unistd (Makefile.am): Substitute witnesses.
13456         * doc/posix-functions/pread.texi (pread): Update.
13457         * MODULES.html.sh: Add pread.
13458
13459 2009-11-25  Jim Meyering  <meyering@redhat.com>
13460
13461         tests/init.sh: new file to be used via most *.sh tests
13462         * tests/init.sh: New file.
13463
13464 2009-11-25  Eric Blake  <ebb9@byu.net>
13465
13466         utimens: work around older Linux failure with symlinks
13467         * lib/utimens.c (lutimensat_works_really): New variable.
13468         (fdutimens, lutimens): Use it to manage kernels that support
13469         nanosecond times on files, but not on symlinks.
13470         Reported by OndÅ™ej Vašík.
13471
13472         utimes: fix configure grammar
13473         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
13474
13475 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
13476
13477         regex: Fix fastmap for multibyte character ranges.
13478         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
13479         characters when a multibyte character range is included.
13480
13481 2009-11-22  Andy Wingo  <wingo@pobox.com>
13482
13483         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
13484         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
13485
13486 2009-11-24  Bruno Haible  <bruno@clisp.org>
13487
13488         doc: Most *_l functions exist in MacOS X 10.5.
13489         * doc/posix-functions/duplocale.texi: Update platforms list.
13490         * doc/posix-functions/freelocale.texi: Likewise.
13491         * doc/posix-functions/newlocale.texi: Likewise.
13492         * doc/posix-functions/uselocale.texi: Likewise.
13493         * doc/posix-functions/isalnum_l.texi: Likewise.
13494         * doc/posix-functions/isalpha_l.texi: Likewise.
13495         * doc/posix-functions/isblank_l.texi: Likewise.
13496         * doc/posix-functions/iscntrl_l.texi: Likewise.
13497         * doc/posix-functions/isdigit_l.texi: Likewise.
13498         * doc/posix-functions/isgraph_l.texi: Likewise.
13499         * doc/posix-functions/islower_l.texi: Likewise.
13500         * doc/posix-functions/isprint_l.texi: Likewise.
13501         * doc/posix-functions/ispunct_l.texi: Likewise.
13502         * doc/posix-functions/isspace_l.texi: Likewise.
13503         * doc/posix-functions/isupper_l.texi: Likewise.
13504         * doc/posix-functions/iswalnum_l.texi: Likewise.
13505         * doc/posix-functions/iswalpha_l.texi: Likewise.
13506         * doc/posix-functions/iswblank_l.texi: Likewise.
13507         * doc/posix-functions/iswcntrl_l.texi: Likewise.
13508         * doc/posix-functions/iswctype_l.texi: Likewise.
13509         * doc/posix-functions/iswdigit_l.texi: Likewise.
13510         * doc/posix-functions/iswgraph_l.texi: Likewise.
13511         * doc/posix-functions/iswlower_l.texi: Likewise.
13512         * doc/posix-functions/iswprint_l.texi: Likewise.
13513         * doc/posix-functions/iswpunct_l.texi: Likewise.
13514         * doc/posix-functions/iswspace_l.texi: Likewise.
13515         * doc/posix-functions/iswupper_l.texi: Likewise.
13516         * doc/posix-functions/iswxdigit_l.texi: Likewise.
13517         * doc/posix-functions/isxdigit_l.texi: Likewise.
13518         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
13519         * doc/posix-functions/strcasecmp_l.texi: Likewise.
13520         * doc/posix-functions/strcoll_l.texi: Likewise.
13521         * doc/posix-functions/strfmon_l.texi: Likewise.
13522         * doc/posix-functions/strftime_l.texi: Likewise.
13523         * doc/posix-functions/strncasecmp_l.texi: Likewise.
13524         * doc/posix-functions/strxfrm_l.texi: Likewise.
13525         * doc/posix-functions/tolower_l.texi: Likewise.
13526         * doc/posix-functions/toupper_l.texi: Likewise.
13527         * doc/posix-functions/towctrans_l.texi: Likewise.
13528         * doc/posix-functions/towlower_l.texi: Likewise.
13529         * doc/posix-functions/towupper_l.texi: Likewise.
13530         * doc/posix-functions/wcscoll_l.texi: Likewise.
13531         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
13532         * doc/posix-functions/wctrans_l.texi: Likewise.
13533         * doc/posix-functions/wctype_l.texi: Likewise.
13534         * doc/glibc-functions/strptime_l.texi: Likewise.
13535         * doc/glibc-functions/strtod_l.texi: Likewise.
13536         * doc/glibc-functions/strtof_l.texi: Likewise.
13537         * doc/glibc-functions/strtol_l.texi: Likewise.
13538         * doc/glibc-functions/strtold_l.texi: Likewise.
13539         * doc/glibc-functions/strtoll_l.texi: Likewise.
13540         * doc/glibc-functions/strtoul_l.texi: Likewise.
13541         * doc/glibc-functions/strtoull_l.texi: Likewise.
13542         * doc/glibc-functions/wcsftime_l.texi: Likewise.
13543         * doc/glibc-functions/wcstod_l.texi: Likewise.
13544         * doc/glibc-functions/wcstof_l.texi: Likewise.
13545         * doc/glibc-functions/wcstol_l.texi: Likewise.
13546         * doc/glibc-functions/wcstold_l.texi: Likewise.
13547         * doc/glibc-functions/wcstoll_l.texi: Likewise.
13548         * doc/glibc-functions/wcstoul_l.texi: Likewise.
13549         * doc/glibc-functions/wcstoull_l.texi: Likewise.
13550
13551 2009-11-24  Bruno Haible  <bruno@clisp.org>
13552
13553         duplocale: Fix logic bug.
13554         * lib/duplocale.c: Don't include <langinfo.h>.
13555         (_NL_LOCALE_NAME): Remove macro.
13556         (rpl_duplocale): Use setlocale instead of nl_langinfo.
13557         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
13558
13559 2009-11-23  Jim Meyering  <meyering@redhat.com>
13560
13561         test-update-copyright: don't hard-code /usr/bin/perl
13562         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
13563         perl to print the current year.  Gilles Espinasse reported that
13564         the replaced use of perl was hard-coded as /usr/bin/perl.
13565
13566 2009-11-23  Bruno Haible  <bruno@clisp.org>
13567
13568         duplocale: Add support for glibc 2.3.x.
13569         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
13570
13571 2009-11-22  Bruno Haible  <bruno@clisp.org>
13572
13573         vasnprintf: Tiny optimization.
13574         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
13575         MacOS X.
13576
13577 2009-11-22  Bruno Haible  <bruno@clisp.org>
13578
13579         Tests for module 'duplocale'.
13580         * modules/duplocale-tests: New file.
13581         * tests/test-duplocale.c: New file.
13582
13583         New module 'duplocale'.
13584         * m4/duplocale.m4: New file.
13585         * lib/locale.in.h (duplocale): New declaration.
13586         * lib/duplocale.c: New file.
13587         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
13588         gl_LOCALE_H_DEFAULTS): New macros.
13589         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
13590         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
13591         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
13592         REPLACE_DUPLOCALE.
13593         * modules/duplocale: New file.
13594         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
13595
13596 2009-11-22  Bruno Haible  <bruno@clisp.org>
13597
13598         * modules/locale-tests (configure.ac): Test for newlocale function.
13599         * tests/test-locale.c: When the system has extended locale functions,
13600         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
13601
13602         locale: Make locale_t available when possible.
13603         * lib/locale.in.h: Include <xlocale.h> when it exists.
13604         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
13605         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
13606         * modules/locale (Depends-on): Add extensions.
13607         (Makefile.am): Also substitute HAVE_XLOCALE_H.
13608         * doc/posix-headers/locale.texi: Document the problem with locale_t.
13609
13610 2009-11-22  Bruno Haible  <bruno@clisp.org>
13611
13612         Add comments.
13613         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
13614         invocation.
13615         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
13616         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
13617         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
13618
13619 2009-11-22  Bruno Haible  <bruno@clisp.org>
13620
13621         error: account for the possibility of freopen (stdout).
13622         * lib/error.c: Include <unistd.h>.
13623         (flush_stdout): New function, extracted from error and error_at_line.
13624         Determine stdout's fd dynamically.
13625         (error, error_at_line): Invoke flush_stdout.
13626         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
13627         * modules/error (Depends-on): Add unistd.
13628
13629 2009-11-22  Bruno Haible  <bruno@clisp.org>
13630
13631         diffseq: Add comment.
13632         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
13633
13634 2009-11-22  Jim Meyering  <meyering@redhat.com>
13635
13636         c-stack: avoid defining an unused static function
13637         * lib/c-stack.c (find_stack_direction): Do not define this function
13638         when it will not be used.
13639
13640         diffseq: avoid spurious gcc warnings
13641         * lib/diffseq.h (IF_LINT2): Define.
13642         (compareseq): Use it to initialize two members of "part".
13643         This avoids two used-uninitialized warnings.
13644
13645 2009-11-21  Jim Meyering  <meyering@redhat.com>
13646
13647         c-stack: avoid "ignoring return value of `write'" warning
13648         * lib/c-stack.c: Include "ignore-value.h".
13649         (die): Explicitly ignore each write return value.
13650         * modules/c-stack (Depends-on): Add ignore-value.
13651
13652 2009-11-21  Bruno Haible  <bruno@clisp.org>
13653
13654         diffseq: reduce scope of variable 'best'.
13655         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
13656         variable, earlier used for two different purposes.
13657
13658 2009-11-21  Jim Meyering  <meyering@redhat.com>
13659
13660         diffseq: remove useless assignment to "best"
13661         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
13662         assignment.  At that point "best" is already guaranteed to be zero.
13663
13664 2009-11-20  Eric Blake  <ebb9@byu.net>
13665
13666         build: mention ftp redirector in release announcements
13667         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
13668         values that used to come from cfg.mk; mention FTP redirect URL.
13669         * build-aux/announce-gen: Mention the mirror list.
13670         Suggested by Karl Berry.
13671
13672         nanosleep: improve port to mingw
13673         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
13674         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
13675         LIB_NANOSLEEP, but only when needed.
13676         * modules/select (Link): Document LIBSOCKET.
13677         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
13678         enough.
13679
13680         nanosleep: work around cygwin bug
13681         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
13682         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
13683         bug.
13684         (getnow): Delete, not needed.
13685         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
13686         LIB_CLOCK_GETTIME.
13687         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
13688         clock-time, gettime.
13689         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
13690         bug.
13691         * modules/nanosleep-tests: New test.
13692         * tests/test-nanosleep.c: New file.
13693
13694         sleep: work around cygwin bug
13695         * lib/sleep.c (rpl_sleep): Work around the bug.
13696         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
13697         (gl_PREREQ_SLEEP): Delete unused macro.
13698         * modules/sleep (Depends-on): Add verify.
13699         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
13700         * modules/unistd (Makefile.am): Substitute witness.
13701         * lib/unistd.in.h (sleep): Update prototype.
13702         * doc/posix-functions/sleep.texi (sleep): Document the bug.
13703         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
13704         * modules/sleep-tests (Depends-on): Check for alarm.
13705
13706 2009-11-20  Jim Meyering  <meyering@redhat.com>
13707
13708         maint.mk: improve sc_prohibit_magic_number_exit
13709         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
13710         so it does not match uses like System.exit(1).
13711         Add comments showing how to correct all offenders.
13712
13713 2009-11-19  Eric Blake  <ebb9@byu.net>
13714
13715         xalloc-die-tests: add missing library
13716         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
13717
13718         test-xvasprintf: silence compiler warnings
13719         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
13720         empty string from gcc.
13721
13722 2009-11-19  Jim Meyering  <meyering@redhat.com>
13723
13724         xfreopen: new module, from coreutils
13725         * modules/xfreopen: New module.
13726         * lib/xfreopen.c: New file.
13727         * lib/xfreopen.h: New file.
13728         * MODULES.html.sh (File stream based Input/Output"): Add it.
13729
13730 2009-11-19  Eric Blake  <ebb9@byu.net>
13731
13732         manywarnings: depend on warnings
13733         * modules/manywarnings (Depends-on): Add warnings.
13734
13735         build: avoid compiler warnings
13736         * lib/select.c (rpl_select): Delete unused variable.
13737         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
13738
13739 2009-11-18  Eric Blake  <ebb9@byu.net>
13740
13741         tests: avoid false negative with --with-packager
13742         * tests/test-version-etc.sh: Discard packager information.
13743         * tests/test-argp-version-etc-1.sh: Likewise.
13744         Reported by Mike Frysinger.
13745
13746         utimens: fix regression on Solaris
13747         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
13748         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
13749         can only change fd timestamps via futimesat.  Instead, use an
13750         additional witness macro to avoid BSD bug.
13751         Reported by Jim Meyering.
13752
13753 2009-11-17  Eric Blake  <ebb9@byu.net>
13754
13755         usleep: use it to simplify tests
13756         * modules/stat-time-tests (Depends-on): Add usleep.
13757         (configure.ac): Drop usleep check.
13758         * modules/chown-tests (Depends-on, configure.ac): Likewise.
13759         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
13760         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
13761         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
13762         * modules/openat-tests (Depends-on, configure.ac): Likewise.
13763         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
13764         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
13765         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
13766         Likewise.
13767         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
13768         * tests/test-lchown.h (nap): Likewise.
13769         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
13770         * tests/test-stat-time.c (nap): Likewise.
13771         * tests/test-utimens-common.h (nap): Update comments.
13772
13773         usleep: new module
13774         * modules/usleep: New file.
13775         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
13776         * lib/usleep.c (usleep): Likewise.
13777         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
13778         * modules/unistd (Makefile.am): Substitute witnesses.
13779         * lib/unistd.in.h (usleep): Add declaration.
13780         * doc/pastposix-functions/usleep.texi (usleep): Document this.
13781         * MODULES.html.sh (Date and time): Likewise.
13782         * modules/usleep-tests (Depends-on): New test.
13783         * tests/test-usleep.c: New file.
13784
13785         chown: work around OpenBSD bug
13786         * lib/chown.c (rpl_chown): Work around the bug.
13787         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
13788         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
13789         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
13790         * modules/chown (Depends-on): Add stdbool.
13791         * modules/lchown (Depends-on): Likewise.
13792         * doc/posix-functions/chown.texi (chown): Document the bug.
13793         * doc/posix-functions/lchown.texi (lchown): Likewise.
13794         * tests/test-lchown.h (test_chown): Relax test.
13795
13796         mkstemp: avoid conflict with C++ keyword template
13797         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
13798         * lib/mkostemp.c (mkostemp): Likewise.
13799         * lib/mkostemps.c (mkostemps): Likewise.
13800         * lib/mkstemp.c (mkstemp): Likewise.
13801         * lib/mkstemps.c (mkstemps): Likewise.
13802
13803         xalloc-die-tests: optimize
13804         * tests/test-xalloc-die.sh: Reduce number of processes.
13805
13806 2009-11-17  Simon Josefsson  <simon@josefsson.org>
13807
13808         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
13809         patch from ludo@gnu.org (Ludovic Courtès).
13810
13811 2009-11-17  Jim Meyering  <meyering@redhat.com>
13812
13813         version-etc: use proper license string
13814         * modules/version-etc (License): Use LGPL, not LGPLv3+.
13815         * modules/version-etc-fsf: Likewise.
13816
13817 2009-11-17  Simon Josefsson  <simon@josefsson.org>
13818
13819         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
13820         printed to stdout.  Deal with EOL differences.
13821
13822 2009-11-17  Eric Blake  <ebb9@byu.net>
13823
13824         unsetenv: work around Solaris bug
13825         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
13826         * lib/unsetenv.c (rpl_unsetenv): Work around it.
13827         Reported by Jim Meyering.
13828
13829         vasnprintf: avoid compiler warnings
13830         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
13831         variables.
13832         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
13833
13834 2009-11-17  Simon Josefsson  <simon@josefsson.org>
13835
13836         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
13837         settings since xalloc-die is no longer the self test,
13838         xalloc-die.sh is.
13839
13840 2009-11-17  Jim Meyering  <meyering@redhat.com>
13841
13842         test-xalloc-die.sh: make the code agree with the commit log
13843         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
13844         at the end, just in case you happen to have a test-xalloc-die
13845         program in some other PATH directory.
13846
13847         test-xalloc-die.sh: fix a portability bug
13848         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
13849         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
13850         Otherwise, argv[0] (as often seen in diagnostics) would be too
13851         system-dependent, sometimes with, and sometimes without the leading "./".
13852
13853         version-etc-fsf: relax license to LGPLv3+
13854         * modules/version-etc-fsf (License): Relax license.
13855
13856 2009-11-16  Eric Blake  <ebb9@byu.net>
13857
13858         xalloc-die-tests: avoid printing null pointer
13859         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
13860         shell script.
13861         * tests/test-xalloc-die.c (program_name): Declare.
13862         * tests/test-xalloc-die.sh (tmpfiles): New file.
13863
13864         setenv, unsetenv: work around various bugs
13865         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
13866         (setenv) [HAVE_SETENV]: Work around bugs.
13867         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
13868         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
13869         for bugs.
13870         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
13871         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
13872         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
13873         * modules/stdlib (Makefile.am): Update substitutions.
13874         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
13875         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
13876         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
13877         * modules/setenv-tests: New test.
13878         * modules/unsetenv-tests: Likewise.
13879         * tests/test-setenv.c: New file.
13880         * tests/test-unsetenv.c: Likewise.
13881
13882 2009-11-16  Jim Meyering  <meyering@redhat.com>
13883
13884         version-etc: relax license to LGPLv3+
13885         * modules/version-etc (License): Relax license.
13886
13887         better AC_REQUIRE expanded-before-required-warning avoidance
13888         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
13889         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
13890         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
13891         which is no longer needed.
13892
13893 2009-11-16  Eric Blake  <ebb9@byu.net>
13894
13895         test-freading: clean up temporary file
13896         * tests/test-freading.c (main): Remove file on success, and use
13897         ASSERT more liberally.
13898         Reported by Jim Meyering.
13899
13900 2009-11-16  Jim Meyering  <meyering@redhat.com>
13901
13902         avoid new AC_REQUIRE expanded-before-required warnings
13903         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
13904         merely using it.
13905         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
13906         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
13907
13908 2009-11-15  Simon Josefsson  <simon@josefsson.org>
13909
13910         * tests/test-xalloc-die.c: New file.
13911         * modules/xalloc-die-tests: New file.
13912         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
13913         XFAIL_TESTS so it can be appended by modules.
13914
13915 2009-11-15  Simon Josefsson  <simon@josefsson.org>
13916
13917         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
13918         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
13919
13920 2009-11-14  Eric Blake  <ebb9@byu.net>
13921
13922         fnmatch: avoid compiler warning
13923         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
13924         to silence compiler warning about mismatch signedness in ?:.
13925         Reported by Robert Millan.
13926
13927         intprops: add double-inclusion guard
13928         * lib/intprops.h: Allow idempotent includes.
13929         Suggested by Bruce Korb.
13930
13931         openat: detect Solaris fchownat bug
13932         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
13933         penalizing glibc chownat when only lchownat is broken.
13934         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
13935         trailing slash bugs.
13936         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
13937         * modules/openat-tests (Files): Include more files.
13938         (Depends-on): Add mgetgroups, sleep, stat-time.
13939         (configure.ac): Add additional checks.
13940         (Makefile.am): Build new test.
13941         * tests/test-fchownat.c: New file.
13942
13943         lchown: detect Solaris and FreeBSD bug
13944         * lib/lchown.c (rpl_lchown): Work around bug.
13945         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
13946         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
13947         * modules/unistd (Makefile.am): Populate it.
13948         * lib/unistd.in.h (lchown): Update declaration.
13949         * doc/posix-functions/lchown.texi (lchown): Document the bug.
13950         * modules/lchown-tests: New file.
13951         * tests/test-lchown.h (test_lchown): Likewise.
13952         * tests/test-lchown.c (main): Likewise.
13953
13954         chown: detect Solaris and FreeBSD bug
13955         * lib/chown.c (rpl_chown): Work around bug.
13956         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
13957         (gl_PREREQ_CHOWN): Delete.
13958         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
13959         * modules/unistd (Makefile.am): Populate it.
13960         * lib/unistd.in.h (chown): Update declaration.
13961         * lib/lchown.c (chown): Update client.
13962         * modules/lchown (Depends-on): Add lstat.
13963         * doc/posix-functions/chown.texi (chown): Document the bug.
13964         * doc/posix-functions/getgroups.texi (getgroups): Document
13965         getgroups pitfall.
13966         * modules/chown-tests: New file.
13967         * tests/test-chown.h (test_chown): Likewise.
13968         * tests/test-chown.c (main): Likewise.
13969
13970 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
13971
13972         gnulib-tool: correctly detect absence of m4 directories
13973         * gnulib-tool: Avoid extra newline on data passed to wc -l.
13974
13975 2009-11-14  Jim Meyering  <meyering@redhat.com>
13976
13977         maint.mk: Prohibit inclusion of "xalloc.h" without use.
13978         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
13979
13980 2009-11-14  John W. Eaton  <jwe@gnu.org>
13981
13982         strftime.h: wrap funtion declaration in extern "C" block
13983         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
13984
13985 2009-11-13  Eric Blake  <ebb9@byu.net>
13986
13987         getgroups: avoid compiler warning
13988         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
13989
13990         getgroups: work around FreeBSD bug
13991         * lib/getgroups.c (rpl_getgroups): Work around the bug.
13992         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
13993         * doc/posix-functions/getgroups.texi (getgroups): Document it.
13994         * tests/test-getgroups.c (main): Fix buffer overrun.
13995
13996         getgroups: avoid compilation failure
13997         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
13998         * modules/getgroups (Depends-on): Add stdint.
13999
14000 2009-11-13  Jim Meyering  <meyering@redhat.com>
14001
14002         test-getgroups: avoid compilation failure
14003         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
14004
14005 2009-11-13  Eric Blake  <ebb9@byu.net>
14006
14007         mgetgroups: new module, taken from coreutils
14008         * modules/mgetgroups: New file.
14009         * lib/mgetgroups.h: Likewise.
14010         * lib/mgetgroups.c (mgetgroups): Likewise.
14011         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
14012         * MODULES.html.sh (Users and groups): Mention it.
14013
14014         getgroups: don't expose GETGROUPS_T to user
14015         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
14016         an element at a time if GETGROUPS_T is wrong size.
14017         * lib/getugroups.h (getugroups): Change signature.
14018         * lib/unistd.in.h (getgroups): Likewise.
14019         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
14020         signature needs fixing.
14021         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
14022         AC_TYPE_GETGROUPS.
14023         * modules/group-member (Depends-on): Add getgroups.
14024         * lib/group-member.c (group_info, get_group_info): Use gid_t.
14025         (group_member): Rely on getgroups replacement.
14026         * lib/getugroups.c (getugroups): Use gid_t.
14027         * tests/test-getgroups.c (main): Likewise.
14028         * NEWS: Mention the signature change.
14029         * doc/posix-functions/getgroups.texi (getgroups): Mention the
14030         problem with signature.
14031         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
14032         GETGROUPS_T is still useful for setgroups.
14033
14034         getgroups, getugroups: provide stubs for mingw
14035         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
14036         * lib/getugroups.c (getugroups): Likewise.
14037         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
14038         function.  Modernize replacement scheme.
14039         (gl_PREREQ_GETGROUPS): Delete.
14040         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
14041         * modules/getgroups (configure.ac): Declare witness.
14042         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
14043         * modules/unistd (Depends-on): Substitute witness.
14044         * lib/unistd.in.h (getgroups): Declare replacement.
14045
14046         getgroups: avoid calling exit
14047         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
14048         drop xalloc.
14049         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
14050         dependencies.
14051         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
14052         exiting, in the rare case of malloc failure.
14053
14054         getgroups: fix logic error
14055         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
14056         has more than 20 groups.
14057         * modules/getgroups-tests: New test.
14058         * tests/test-getgroups.c: New file.
14059
14060 2009-11-13  Simon Josefsson  <simon@josefsson.org>
14061
14062         * tests/test-base64.c: Improve.
14063
14064 2009-11-13  Simon Josefsson  <simon@josefsson.org>
14065
14066         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
14067         Blake <ebb9@byu.net>.
14068
14069 2009-11-13  Simon Josefsson  <simon@josefsson.org>
14070
14071         * tests/test-xvasprintf.c: Add %s%s related checks.
14072
14073 2009-11-12  Eric Blake  <ebb9@byu.net>
14074
14075         version-etc: match standards.texi style
14076         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
14077         and use <> only for URLs.
14078
14079 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
14080
14081         fts: do not fail on a submount during traversal
14082         * lib/fts.c (fts_build): Read the stat info again after opening
14083         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
14084         Original report at http://bugzilla.redhat.com/501848.
14085
14086 2009-11-12  Jim Meyering  <meyering@redhat.com>
14087
14088         bootstrap: sync from coreutils
14089         * build-aux/bootstrap (bootstrap_epilogue): New function.
14090         Use git_modules_config in one more place.  This make bootstrap's
14091         --gnulib-srcdir option more useful for testing.
14092
14093         bootstrap: generalize autoheader check
14094         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
14095         AC_CONFIG_HEADERS.
14096
14097 2009-11-11  Eric Blake  <ebb9@byu.net>
14098
14099         mkfifoat: use new modules for Solaris and BSD bugs
14100         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
14101         * lib/mkfifoat.c (mknodat): Split...
14102         * lib/mknodat.c (mknodat): ...into new file.
14103         * modules/mkfifoat (Files): Ship new file.
14104         (Depends-on): Add mkfifo, mknod.
14105         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
14106         (Depends-on): Add symlink.
14107         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
14108         redundant with test_mkfifo.h.
14109         (do_mkfifoat, do_mknodat): New helpers.
14110
14111         mknod: new module
14112         * modules/mknod: New file.
14113         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
14114         * lib/mknod.c (mknod): Likewise.
14115         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
14116         defaults.
14117         * modules/sys_stat (Makefile.am): Substitute them.
14118         * lib/sys_stat.in.h (mknod): Declare replacement.
14119         * MODULES.html.sh (Support for systems lacking POSIX:2008):
14120         Document it.
14121         * doc/posix-functions/mknod.texi (mknod): Likewise.
14122         * modules/mknod-tests: New test.
14123         * tests/test-mknod.c: Likewise.
14124
14125         mkfifo: new module
14126         * modules/mkfifo: New file.
14127         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
14128         * lib/mkfifo.c (mkfifo): Likewise.
14129         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
14130         defaults.
14131         * modules/sys_stat (Makefile.am): Substitute them.
14132         * lib/sys_stat.in.h (mkfifo): Declare replacement.
14133         * MODULES.html.sh (Support for systems lacking POSIX:2008):
14134         Document it.
14135         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
14136         * modules/mkfifo-tests: New test.
14137         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
14138         from test-mkfifoat.c.
14139         * tests/test-mkfifo.c: New file.
14140
14141         readlink: detect FreeBSD bug
14142         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
14143         slash on symlink.
14144         * doc/posix-functions/readlink.texi (readlink): Document the bug.
14145         * tests/test-readlink.h (test_readlink): Enhance test.
14146
14147         symlink: detect FreeBSD bug
14148         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
14149         slash on symlink.
14150         * doc/posix-functions/symlink.texi (symlink): Document the bug.
14151         * tests/test-symlink.h (test_symlink): Enhance test.
14152
14153 2009-11-10  Eric Blake  <ebb9@byu.net>
14154
14155         link: detect FreeBSD bug
14156         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
14157         symlink.
14158         * doc/posix-functions/link.texi (link): Document the bug.
14159         * tests/test-link.h (test_link): Enhance test.
14160         * tests/test-linkat.c (main): Update caller.
14161
14162         unlink, remove: detect FreeBSD bug
14163         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
14164         slash on symlink.
14165         * doc/posix-functions/unlink.texi (unlink): Document the bug.
14166         * doc/posix-functions/remove.texi (remove): Likewise.
14167         * tests/test-unlink.h (test_unlink): Enhance test.
14168         * tests/test-remove.c (main): Likewise.
14169
14170 2009-11-09  Eric Blake  <ebb9@byu.net>
14171
14172         rename: detect FreeBSD bug
14173         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
14174         slash on symlink.
14175         * modules/renameat-tests (Depends-on): Add filenamecat.
14176         * tests/test-rename.h (test_rename): Allow one more errno.
14177         * tests/test-renameat.c (main): Likewise.
14178         * doc/posix-functions/rename.texi (rename): Document the bug.
14179
14180         open: detect FreeBSD bug
14181         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
14182         symlink.
14183         * doc/posix-functions/open.texi (open): Document the bug.
14184         * doc/posix-functions/utimes.texi (utimes): Likewise.
14185         * tests/test-open.h (test_open): Add parameters, and test symlink
14186         handling.
14187         * tests/test-open.c (main): Adjust caller.
14188         * tests/test-fcntl-safer.c (main): Likewise.
14189         * modules/open-tests (Depends-on): Add stdbool, symlink.
14190         * modules/fcntl-safer-tests (Depends-on): Likewise.
14191         * tests/test-openat.c (main): Add test-open tests.
14192
14193         stat: detect FreeBSD bug
14194         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
14195         symlink.
14196         * doc/posix-functions/stat.texi (stat): Document the bug.
14197         * tests/test-stat.h (test_stat_func): Add argument.
14198         * tests/test-stat.c (main): Adjust caller.
14199         * tests/test-fstatat.c (main): Likewise.
14200         * modules/stat-tests (Depends-on): Add stdbool, symlink.
14201         Reported by Jim Meyering.
14202
14203 2009-11-09  James Youngman  <jay@gnu.org>
14204
14205         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
14206         * lib/strftime.c: Correct placement of #include "ignore-value.h".
14207
14208 2009-11-08  Jim Meyering  <meyering@redhat.com>
14209
14210         utimens: remove invalid futimesat call
14211         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
14212         It used the file descriptor of the target file as the DIR_FD
14213         parameter and NULL as the file name.  That caused failure with
14214         errno == EFAULT on FreeBSD-8.0-rc2
14215
14216 2009-11-07  Eric Blake  <ebb9@byu.net>
14217
14218         fflush, freadseek: use fseeko, not fseek
14219         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
14220         (clear_ungetc_buffer): Avoid potential problems on large files.
14221         * lib/freadseek.c (freadseek): Likewise.
14222         * modules/freadseek (Depends-on): Add fseeko.
14223         * modules/fseek (configure.ac): Set a witness.
14224         * tests/test-fflush.c (main): Use fseeko.
14225         * tests/test-fpurge.c (fseek): Disable link warning.
14226         * tests/test-freadable.c (fseek): Likewise.
14227         * tests/test-freading.c (fseek): Likewise.
14228         * tests/test-fseeko.c (fseek): Likewise.
14229         * tests/test-ftell.c (fseek): Likewise.
14230         * tests/test-ftello.c (fseek): Likewise.
14231         * tests/test-fwritable.c (fseek): Likewise.
14232         * tests/test-fwriting.c (fseek): Likewise.
14233
14234 2009-11-06  Simon Josefsson  <simon@josefsson.org>
14235
14236         * modules/memchr (Depends-on): Drop getpagesize dependency.
14237
14238 2009-11-06  Simon Josefsson  <simon@josefsson.org>
14239
14240         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
14241         Reported by Ludovic Courtès.
14242         * build-aux/pmccabe2html: Improve example usage.
14243         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
14244
14245 2009-11-06  Jim Meyering  <meyering@redhat.com>
14246
14247         do-release-commit-and-tag: New module.
14248         Automate the release-commit and tag process.
14249         * build-aux/do-release-commit-and-tag: New script, from coreutils.
14250         * modules/do-release-commit-and-tag: New file.
14251         * MODULES.html.sh (Support for maintaining and releasing): Add it.
14252
14253 2009-11-06  Simon Josefsson  <simon@josefsson.org>
14254
14255         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
14256         because test-select.c uses inet_pton.
14257
14258 2009-11-06  Simon Josefsson  <simon@josefsson.org>
14259
14260         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
14261         GETADDRINFO_LIB.  Bump serial number.
14262         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
14263         Suggested by Eric Blake <ebb9@byu.net>.
14264
14265 2009-11-05  Eric Blake  <ebb9@byu.net>
14266
14267         strtod: detect darwin bug
14268         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
14269         Reported by Leo Davis.
14270
14271         freopen-safer: new module
14272         * modules/freopen-safer: New module.
14273         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
14274         * lib/freopen-safer.c (freopen_safer): New file.
14275         * lib/stdio-safer.h (freopen_safer): New declaration.
14276         * lib/stdio--.h (freopen): New override.
14277         * MODULES.html.sh (File stream based Input/Output): Mention it.
14278         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
14279         freopen-safer module.
14280         * doc/posix-functions/stderr.texi (stderr): Likewise.
14281         * doc/posix-functions/stdin.texi (stdin): Likewise.
14282         * doc/posix-functions/stdout.texi (stdout): Likewise.
14283         * modules/freopen-safer-tests: New test.
14284         * tests/test-reopen-safer.c: New file.
14285
14286 2009-11-05  Jim Meyering  <meyering@redhat.com>
14287
14288         maint.mk: Prohibit inclusion of "close-stream.h" without use.
14289         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
14290
14291 2009-11-05  Simon Josefsson  <simon@josefsson.org>
14292
14293         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
14294
14295 2009-11-05  Simon Josefsson  <simon@josefsson.org>
14296
14297         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
14298
14299 2009-11-05  Simon Josefsson  <simon@josefsson.org>
14300
14301         Fix link error.
14302         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
14303         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14304
14305 2009-11-05  Simon Josefsson  <simon@josefsson.org>
14306
14307         * tests/test-func.c: Also test value of __func__.
14308
14309 2009-11-05  Simon Josefsson  <simon@josefsson.org>
14310
14311         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
14312         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
14313
14314 2009-11-05  Bruno Haible  <bruno@clisp.org>
14315
14316         Fix link error.
14317         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
14318         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14319         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
14320
14321 2009-11-05  Bruno Haible  <bruno@clisp.org>
14322
14323         Tests for module 'inet_pton'.
14324         * modules/inet_pton-tests: New file.
14325         * tests/test-inet_pton.c: New file.
14326
14327 2009-11-05  Bruno Haible  <bruno@clisp.org>
14328
14329         Tests for module 'inet_ntop'.
14330         * modules/inet_ntop-tests: New file.
14331         * tests/test-inet_ntop.c: New file.
14332
14333 2009-11-04  Eric Blake  <ebb9@byu.net>
14334
14335         stdlib-safer: wrap all mkstemp variants
14336         * modules/mkostemp (configure.ac): Set witness.
14337         * modules/mkostemps (configure.ac): Likewise.
14338         * modules/mkstemps (configure.ac): Likewise.
14339         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
14340         (mkstemps_safer): Wrap more functions.
14341         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
14342         wrapping.
14343         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
14344         (mkstemps_safer): Implement the wrappers.
14345
14346         mkstemps, mkostemps: new modules
14347         * modules/mkostemps: New module.
14348         * modules/mkstemps: Likewise.
14349         * lib/mkostemps.c (mkostemps): New file.
14350         * lib/mkstemps.c (mkstemps): Likewise.
14351         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
14352         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
14353         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
14354         * modules/stdlib (Makefile.am): Substitute them.
14355         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
14356         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
14357         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
14358         * doc/gnulib.texi (Glibc stdlib.h): Include them.
14359         * MODULES.html.sh (File system functions): Mention them.
14360
14361         tempname: resync from glibc
14362         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
14363         same values for __GT_FILE as glibc.  Abort even when assertions
14364         are disabled.
14365         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
14366         match its value otherwise.  Allow idempotent inclusion.
14367         * lib/mkdtemp.c (mkdtemp): Adjust caller.
14368         * lib/mkostemp.c (mkostemp): Likewise.
14369         * lib/mkstemp.c (mkstemp): Likewise.
14370         * lib/tmpfile.c (tmpfile): Likewise.
14371         * NEWS: Document this.
14372
14373         utimens: fix use of futimens on older Linux
14374         * lib/utimens.c (fdutimens): Use updated, rather than original,
14375         timespec to avoid bug in older Linux kernel.
14376         Reported by Simon Josefsson.
14377
14378 2009-11-04  Bruno Haible  <bruno@clisp.org>
14379
14380         Make num_processors more flexible and consistent.
14381         * lib/nproc.h (enum nproc_query): New type.
14382         (num_processors): Add a 'query' argument.
14383         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
14384         (num_processors): Add a 'query' argument. Test the value of the
14385         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
14386         mingw, count the number of CPUs available for the current process.
14387         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
14388         Check for sched_getaffinity and sched_getaffinity_np.
14389         * modules/nproc (Depends-on): Add c-ctype, extensions.
14390         * NEWS: Mention the change.
14391
14392 2009-11-03  Bruno Haible  <bruno@clisp.org>
14393
14394         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
14395
14396 2009-11-03  Jim Meyering  <meyering@redhat.com>
14397
14398         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
14399         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
14400         if it is defined.
14401
14402 2009-11-02  Eric Blake  <ebb9@byu.net>
14403
14404         mktime, timegm: share common declaration
14405         * lib/mktime-internal.h: New file.
14406         * lib/mktime.c: Use it rather than open-coding a declaration.
14407         * lib/timegm.c: Likewise.
14408         * modules/mktime (Files): Ship it.
14409         * modules/timegm (Files): Likewise.
14410         Suggested by Bruno Haible.
14411
14412         test-update-copyright: update test to match script changes
14413         * tests/test-update-copyright.sh: Avoid hard-coding perl
14414         location.  Don't update *.bak created by earlier runs.
14415
14416 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
14417             Simon Josefsson  <simon@josefsson.org>
14418             Bruno Haible  <bruno@clisp.org>
14419
14420         Fix link error on Solaris 8.
14421         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
14422         also in libnsl. Define also INET_PTON_LIB.
14423         * modules/inet_pton (Link): New section.
14424
14425 2009-11-02  Simon Josefsson  <simon@josefsson.org>
14426             Bruno Haible  <bruno@clisp.org>
14427
14428         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
14429         * modules/inet_ntop (Link): New section.
14430         Reported by Boyan Kasarov <bkasarov@gmail.com>.
14431
14432 2009-11-02  Eric Blake  <ebb9@byu.net>
14433
14434         maint: avoid compiler warnings in m4 macros
14435         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
14436         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
14437
14438 2009-11-02  Simon Josefsson  <simon@josefsson.org>
14439
14440         * m4/pmccabe2html.m4: Remove file.
14441         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
14442         function.  Change maintainer.
14443         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
14444         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
14445         Courtès).
14446
14447 2009-10-31  Eric Blake  <ebb9@byu.net>
14448
14449         fseeko: fix m4 regression
14450         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
14451         regression from 2009-10-27.
14452         Reported by Ralf Wildenhues.
14453
14454 2009-10-31  Jim Meyering  <meyering@redhat.com>
14455
14456         inttostr: aesthetics and improved (compile-time) safety
14457         Define inttype_is_signed rather than inttype_is_unsigned,
14458         since the sole use is via "#if inttype_is_signed".
14459         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
14460         inttype_is_unsigned.
14461         * lib/offtostr.c (inttype_is_signed): Likewise.
14462         * lib/uinttostr.c (inttype_is_signed): Likewise.
14463         * lib/umaxtostr.c (inttype_is_signed): Likewise.
14464         * lib/inttostr.c (inttostr): Use verify to cross-check the
14465         inttype_is_signed value and the signedness of the actual type.
14466         * modules/inttostr (Depends-on): Add verify.
14467
14468 2009-10-30  Eric Blake  <ebb9@byu.net>
14469
14470         build: avoid compiler warnings
14471         * lib/fchmodat.c (lchmod): Mark unused variables.
14472         * lib/getopt.c (_getopt_initialize): Likewise.
14473         * lib/mktime.c (__mktime_internal): Provide prototype.
14474         * lib/inttostr.c (inttostr): Avoid compiler warning even with
14475         older gcc that do not understand #pragma GCC diagnostic.
14476         * lib/uinttostr.c (inttype_is_unsigned): Define.
14477         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
14478
14479 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
14480
14481         stat: fix compilation on AIX
14482         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
14483         only see struct stat64.
14484
14485 2009-10-30  Eric Blake  <ebb9@byu.net>
14486
14487         exclude: make more robust
14488         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
14489         rather than masking a coding bug.
14490         Suggested by Bruno Haible.
14491
14492 2009-10-30  Jim Meyering  <meyering@redhat.com>
14493
14494         perl scripts: remove #!/usr/bin/perl in favor of more portable...
14495         Rather than putting #!/usr/bin/perl on the first line,
14496         start with a variant of what's recommended by "man perlrun" that
14497         invokes the first "perl" program from your shell's search path.
14498         * build-aux/gitlog-to-changelog: Replace #!... as above.
14499         Add a "Local Variables" perl mode setting.
14500         Prompted by a patch from Ludovic Courtès.
14501         Improved by Eric Blake.
14502         * build-aux/useless-if-before-free: Likewise.
14503         * build-aux/announce-gen: Likewise.
14504         * build-aux/update-copyright: Likewise.
14505
14506 2009-10-29  Eric Blake  <ebb9@byu.net>
14507
14508         filenamecat-lgpl: adjust clients
14509         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
14510         filenamecat.
14511         * modules/renameat (Depends-on): Likewise.
14512
14513         filenamecat: split into filenamecat-lgpl
14514         * modules/filenamecat-lgpl: New module.
14515         * modules/filenamecat (Files): Move library-safe files into
14516         filenamecat-lgpl.
14517         (Depends-on): Add filenamecat-lgpl.
14518         (configure.ac): Declare witness.
14519         * lib/filenamecat.h (file_name_concat): Only declare when using
14520         GPL module.
14521         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
14522         Move...
14523         * lib/filenamecat-lgpl.c: ...into new file.
14524         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
14525         (gl_FILE_NAME_CONCAT): Use it.
14526         * MODULES.html.sh (File system functions): Mention new module.
14527
14528         argp: avoid memory leak
14529         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
14530         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
14531         base_name, since the latter malloc()s and can call exit().
14532         Leak introduced 2006-07-03.
14533
14534         dirname-lgpl: adjust clients that don't need full dirname
14535         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
14536         * modules/filenamecat (Depends-on): Likewise.
14537         * modules/linkat (Depends-on): Likewise.
14538         * modules/mkancesdirs (Depends-on): Likewise.
14539         * modules/mkdir (Depends-on): Likewise.
14540         * modules/openat (Depends-on): Likewise.
14541         * modules/savewd (Depends-on): Likewise.
14542         * modules/rename (Depends-on): Likewise.
14543         (License): Relax license.
14544         * modules/mkdir-tests (Depends-on): Drop progname.
14545         (Makefile.am): Delete unneeded LDADD.
14546         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
14547
14548         dirname: split into dirname-lgpl
14549         * modules/dirname-lgpl: New module.
14550         * modules/dirname (Files): Move library-safe files into
14551         dirname-lgpl.
14552         (Depends-on): Add dirname-lgpl.
14553         (configure.ac): Declare witness.
14554         * modules/double-slash-root (License): Relax license.
14555         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
14556         module.
14557         * lib/dirname.c (dir_len, mdir_name): Move...
14558         * lib/dirname-lgpl.c: ...into new file.
14559         * lib/basename.c (last_component, base_len): Move...
14560         * lib/basename-lgpl.c: ...into new file.
14561         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
14562         (gl_DIRNAME): Use it.
14563         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
14564         Mention new module.
14565         * modules/dirname-tests (Depends-on): Add progname.
14566         * tests/test-dirname.c (program_name): Delete.
14567
14568         mkdir: make safe for libraries
14569         * modules/mkdir (Depends-on): Drop xalloc.
14570         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
14571         exit.
14572
14573         tests: avoid some compiler warnings
14574         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
14575         literals.
14576         * tests/test-memchr.c (main): Avoid type mismatch.
14577         * tests/test-arpa_inet.c (main): Avoid unused parameters.
14578         * tests/test-base64.c (main): Likewise.
14579         * tests/test-getdelim.c (main): Likewise.
14580         * tests/test-gethostname.c (main): Likewise.
14581         * tests/test-getline.c (main): Likewise.
14582         * tests/test-netinet_in.c (main): Likewise.
14583         * tests/test-select.c (open_server_socket, main): Likewise.
14584         * tests/test-select-stdin.c (main): Likewise.
14585         * tests/test-sockets.c (main): Likewise.
14586         * tests/test-strsignal.c (main): Likewise.
14587         * tests/test-sys_select.c (main): Likewise.
14588         * tests/test-sys_socket.c (main): Likewise.
14589         * tests/test-u64.c (main): Likewise.
14590         * tests/test-xfprintf-posix.c (main): Likewise.
14591         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
14592
14593         sockets: avoid compiler warning
14594         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
14595
14596         maint: detect usage(1) and other suspicious exits
14597         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
14598
14599 2009-10-29  Jim Meyering  <meyering@redhat.com>
14600
14601         timespec: long-to-int truncation could make timespec_cmp malfunction
14602         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
14603         a multiple of 2^32 nanoseconds as no difference.
14604
14605 2009-10-28  Jim Meyering  <meyering@redhat.com>
14606
14607         fprintftime: wrap macro code argument in "do {...} while(0)"
14608         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
14609         cpy macro must be a statement that can be followed by a semicolon.
14610         Now that the else clause contains a comment and is hence longer
14611         than one line, I require curly braces.  That in turn requires
14612         that we wrap this code block in the standard do...while(0).
14613
14614         fprintftime: remove stray semicolon from previous change
14615         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
14616
14617         fprintftime: avoid a warning about ignored fwrite return value
14618         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
14619         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
14620         that is unsafe.
14621         * modules/fprintftime (Depends-on): Add ignore-value.
14622
14623         exclude: avoid an unwarranted warning
14624         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
14625
14626 2009-10-27  Eric Blake  <ebb9@byu.net>
14627
14628         fseek: avoid compilation failure when fflush is replaced
14629         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
14630         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
14631         module is in use.
14632         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
14633         module is not in use; since REPLACE_FSEEK worked otherwise.
14634         (GNULIB_FTELLO): Likewise for ftell.
14635         Reported by Ian Beckwith and others.
14636
14637 2009-10-27  Bruno Haible  <bruno@clisp.org>
14638
14639         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
14640         Reported by Jim Meyering.
14641
14642 2009-10-27  Jim Meyering  <jim@meyering.net>
14643             Bruno Haible  <bruno@clisp.org>
14644
14645         Avoid warning despite dropping the return value of fwrite.
14646         * lib/unicodeio.c: Include ignore-value.h.
14647         (fwrite_success_callback): Explicitly ignore fwrite's return value.
14648         * modules/unicodeio (Depends-on): Add ignore-value.
14649
14650 2009-10-26  Eric Blake  <ebb9@byu.net>
14651
14652         areadlinkat: fix fallback path
14653         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
14654         pointer and zero.
14655
14656 2009-10-22  Pádraig Brady  <P@draigBrady.com>
14657
14658         Use a better IO block size for modern systems
14659         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
14660         * lib/md2.c: Likewise.
14661         * lib/md4.c: Likewise.
14662         * lib/md5.c: Likewise.
14663         * lib/sha1.c: Likewise.
14664         * lib/sha256.c: Likewise.
14665         * lib/sha512.c: Likewise.
14666
14667 2009-10-22  Eric Blake  <ebb9@byu.net>
14668
14669         tests: avoid several compiler warnings
14670         * tests/test-getcwd.c (main): Avoid buffer underflow.
14671         * tests/test-getdate.c (main): String literals are not safe with
14672         putenv, so use setenv.  Declare unused argument.
14673         * modules/getdate-tests (Depends-on): Add setenv.
14674         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
14675         problems with string literals in char *.
14676         * tests/test-hash.c (main): Avoid shadowing declaration.
14677         (insert_new): Treat string literals as char const *.
14678         * tests/test-getopt.h (test_getopt): Likewise.
14679         (getopt_loop): Alter types to minimize casting elsewhere.
14680         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
14681         (test_getopt_long_posix): Likewise.
14682         (do_getopt_long): Add wrapper to minimize casting.
14683         * tests/test-atexit.c (clear_temp_file): Use void.
14684         * tests/test-areadlink-with-size.c (main): Declare unused
14685         arguments.
14686         * tests/test-areadlink.c (main): Likewise.
14687         * tests/test-areadlinkat-with-size.c (main): Likewise.
14688         * tests/test-areadlinkat.c (main): Likewise.
14689         * tests/test-canonicalize-lgpl.c (main): Likewise.
14690         * tests/test-canonicalize.c (main): Likewise.
14691         * tests/test-dirent-safer.c (main): Likewise.
14692         * tests/test-dirname.c (main): Likewise.
14693         * tests/test-dup2.c (main): Likewise.
14694         * tests/test-fchdir.c (main): Likewise.
14695         * tests/test-fcntl-h.c (main): Likewise.
14696         * tests/test-fcntl-safer.c (main): Likewise.
14697         * tests/test-fdopendir.c (main): Likewise.
14698         * tests/test-fdutimensat.c (main): Likewise.
14699         * tests/test-fflush.c (main): Likewise.
14700         * tests/test-filenamecat.c (main): Likewise.
14701         * tests/test-filevercmp.c (main): Likewise.
14702         * tests/test-fopen-safer.c (main): Likewise.
14703         * tests/test-fopen.c (main): Likewise.
14704         * tests/test-fpending.c (main): Likewise.
14705         * tests/test-fpurge.c (main): Likewise.
14706         * tests/test-freading.c (main): Likewise.
14707         * tests/test-fstatat.c (main): Likewise.
14708         * tests/test-fsync.c (main): Likewise.
14709         * tests/test-futimens.c (main): Likewise.
14710         * tests/test-getndelim2.c (main): Likewise.
14711         * tests/test-gettimeofday.c (main): Likewise.
14712         * tests/test-getopt.c (main): Likewise.
14713         * tests/test-i-ring.c (main): Likewise.
14714         * tests/test-inttypes.c (main): Likewise.
14715         * tests/test-link.c (main): Likewise.
14716         * tests/test-lstat.c (main): Likewise.
14717         * tests/test-math.c (main): Likewise.
14718         * tests/test-md5.c (main): Likewise.
14719         * tests/test-memchr2.c (main): Likewise.
14720         * tests/test-memrchr.c (main): Likewise.
14721         * tests/test-mkdir.c (main): Likewise.
14722         * tests/test-mkdirat.c (main): Likewise.
14723         * tests/test-mkfifoat.c (main): Likewise.
14724         * tests/test-open.c (main): Likewise.
14725         * tests/test-openat-safer.c (main): Likewise.
14726         * tests/test-openat.c (main): Likewise.
14727         * tests/test-quotearg.c (main): Likewise.
14728         * tests/test-rawmemchr.c (main): Likewise.
14729         * tests/test-readlink.c (main): Likewise.
14730         * tests/test-remove.c (main): Likewise.
14731         * tests/test-rename.c (main): Likewise.
14732         * tests/test-renameat.c (main): Likewise.
14733         * tests/test-rmdir.c (main): Likewise.
14734         * tests/test-sha1.c (main): Likewise.
14735         * tests/test-signal.c (main): Likewise.
14736         * tests/test-sigaction.c (main): Likewise.
14737         * tests/test-stat.c (main): Likewise.
14738         * tests/test-stat-time.c (main): Likewise.
14739         * tests/test-stddef.c (main): Likewise.
14740         * tests/test-stdint.c (main): Likewise.
14741         * tests/test-stdio.c (main): Likewise.
14742         * tests/test-stdlib.c (main): Likewise.
14743         * tests/test-strchrnul.c (main): Likewise.
14744         * tests/test-strerror.c (main): Likewise.
14745         * tests/test-string.c (main): Likewise.
14746         * tests/test-strtod.c (main): Likewise.
14747         * tests/test-strverscmp.c (main): Likewise.
14748         * tests/test-symlink.c (main): Likewise.
14749         * tests/test-symlinkat.c (main): Likewise.
14750         * tests/test-sys_stat.c (main): Likewise.
14751         * tests/test-sys_time.c (main): Likewise.
14752         * tests/test-time.c (main): Likewise.
14753         * tests/test-unistd.c (main): Likewise.
14754         * tests/test-unlink.c (main): Likewise.
14755         * tests/test-unlinkat.c (main): Likewise.
14756         * tests/test-utimens.c (main): Likewise.
14757         * tests/test-utimensat.c (main): Likewise.
14758         * tests/test-version-etc.c (main): Likewise.
14759         * tests/test-wchar.c (main): Likewise.
14760         * tests/test-wctype.c (main): Likewise.
14761         * tests/test-xprintf-posix.c (main): Likewise.
14762         * tests/test-posixtm.c (main): Likewise.
14763         (STREQ): Delete unused macro.
14764         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
14765         shadowed variables.
14766         * tests/test-memchr.c (main): Likewise.
14767
14768 2009-10-21  Eric Blake  <ebb9@byu.net>
14769
14770         areadlinkat: avoid failure on older glibc
14771         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
14772         rather than mis-comparing 0 against FUNC_RESULT of char*.
14773
14774 2009-10-21  Bruno Haible  <bruno@clisp.org>
14775
14776         * modules/stpncpy (License): Relicense under LGPLv2+.
14777         Reported by David Lutterkort <lutter@redhat.com>.
14778
14779 2009-10-20  Eric Blake  <ebb9@byu.net>
14780
14781         utimensat: work around Solaris 9 bug
14782         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
14783         has trailing slash bugs.
14784         * tests/test-lutimens.h (test_lutimens): Enhance test.
14785         * tests/test-utimens.h (test_utimens): Likewise.
14786         * doc/posix-functions/utime.texi (utime): Enhance documentation.
14787         * doc/posix-functions/utimes.texi (utimes): Likewise.
14788         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
14789         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
14790         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
14791         * doc/posix-functions/futimens.texi (futimens): Likewise.
14792
14793         fdutimensat: new module
14794         * modules/fdutimensat: New file.
14795         * lib/fdutimensat.c (fdutimensat): Likewise.
14796         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
14797         * MODULES.html.sh (File system functions): Mention module.
14798         * modules/fdutimensat-tests: New test.
14799         * tests/test-fdutimensat.c: Likewise.
14800
14801         doc: regenerate INSTALL
14802         * doc/INSTALL: Reflect recent autoconf update.
14803         * doc/INSTALL.ISO: Likewise.
14804         * doc/INSTALL.UTF-8: Likewise.
14805
14806 2009-10-20  Pádraig Brady  <P@draigBrady.com>
14807
14808         acl: warn if ACL support is not detected
14809         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
14810
14811 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
14812
14813         * lib/nproc.h: Add extern "C" block for C++.
14814
14815 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
14816             Bruno Haible  <bruno@clisp.org>
14817
14818         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
14819         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
14820         * doc/posix-functions/isalpha.texi: Likewise.
14821         * doc/posix-functions/isblank.texi: Likewise.
14822         * doc/posix-functions/iscntrl.texi: Likewise.
14823         * doc/posix-functions/isdigit.texi: Likewise.
14824         * doc/posix-functions/isgraph.texi: Likewise.
14825         * doc/posix-functions/islower.texi: Likewise.
14826         * doc/posix-functions/isprint.texi: Likewise.
14827         * doc/posix-functions/ispunct.texi: Likewise.
14828         * doc/posix-functions/isspace.texi: Likewise.
14829         * doc/posix-functions/isupper.texi: Likewise.
14830         * doc/posix-functions/isxdigit.texi: Likewise.
14831
14832 2009-10-18  Bruno Haible  <bruno@clisp.org>
14833
14834         Tests for module 'isblank'.
14835         * modules/isblank-tests: New file.
14836         * tests/test-isblank.c: New file.
14837
14838         New module 'isblank'.
14839         * lib/isblank.c: New file.
14840         * m4/isblank.m4: New file.
14841         * modules/isblank: New file.
14842         * doc/posix-functions/isblank.texi: Mention the new module.
14843
14844 2009-10-18  Bruno Haible  <bruno@clisp.org>
14845
14846         New module 'ctype'.
14847         * lib/ctype.in.h: New file.
14848         * m4/ctype.m4: New file.
14849         * modules/ctype: New file.
14850         * doc/posix-headers/ctype.texi: Mention the new module.
14851
14852 2009-10-18  Jim Meyering  <meyering@redhat.com>
14853
14854         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
14855         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
14856         right after its initialization, rather than farther down.
14857         Keeping these in close proximity makes it easier to ensure
14858         that each such variable is initialized.  E.g.,
14859
14860             LIB_CLOCK_GETTIME=
14861             AC_SUBST([LIB_CLOCK_GETTIME])
14862
14863         This change also increments these serial numbers.
14864         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
14865         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
14866         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
14867
14868 2009-10-18  Bruno Haible  <bruno@clisp.org>
14869
14870         Don't let environment variables perturb build.
14871         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
14872         (gl_PREREQ_GETHRXTIME): ... not here.
14873
14874 2009-10-18  Bruno Haible  <bruno@clisp.org>
14875
14876         Avoid symlink attack in localcharset module.
14877         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
14878         (O_NOFOLLOW): Define fallback.
14879         (get_charset_aliases): Don't open the file if it is a symbolic link.
14880         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
14881         gl_FCNTL_H.
14882         (gl_FCNTL_H): Require it.
14883         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
14884         * modules/localcharset (Files): Add m4/fcntl_h.m4.
14885         Reported by Fergal Glynn <fglynn@veracode.com>.
14886
14887 2009-10-18  Bruno Haible  <bruno@clisp.org>
14888
14889         Implement nproc for mingw.
14890         * lib/nproc.c: Include <windows.h>
14891         (num_processors): On native Windows platforms, try GetSystemInfo.
14892
14893 2009-10-18  Bruno Haible  <bruno@clisp.org>
14894
14895         Implement nproc for IRIX.
14896         * lib/nproc.c: Include <sys/sysmp.h>.
14897         (num_processors): On IRIX systems, try sysmp.
14898         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
14899
14900 2009-10-18  Bruno Haible  <bruno@clisp.org>
14901
14902         Implement nproc for HP-UX.
14903         * lib/nproc.c: Include <sys/pstat.h>
14904         (num_processors): On HP-UX systems, try pstat_getdynamic.
14905         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
14906         pstat_getdynamic.
14907
14908 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
14909             Bruno Haible  <bruno@clisp.org>
14910
14911         Implement nproc for NetBSD, OpenBSD.
14912         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
14913         (ARRAY_SIZE): New macro.
14914         (num_processors): On BSD systems, try sysctl of HW_NCPU.
14915         * m4/nproc.m4: New file.
14916         * modules/nproc (Files): Add m4/nproc.m4.
14917         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
14918         (Makefile.am): Instead, augment lib_SOURCES.
14919
14920 2009-10-18  Bruno Haible  <bruno@clisp.org>
14921
14922         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
14923         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
14924         sys/param.h.
14925
14926 2009-10-16  Eric Blake  <ebb9@byu.net>
14927
14928         utimensat: new module
14929         * modules/utimensat: New file.
14930         * lib/utimensat.c (utimensat): Likewise.
14931         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
14932         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
14933         so we can work around Linux bugs.
14934         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
14935         * modules/sys_stat (Makefile.am): Substitute them.
14936         * lib/sys_stat.in.h (utimensat): Declare it.
14937         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
14938         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
14939         * modules/utimensat-tests: New test.
14940         * tests/test-utimensat.c: Likewise.
14941
14942         utimens: let lutimens work on non-symlinks
14943         * lib/utimens.c (lutimens): Fall back to utimens rather than
14944         failing with ENOSYS, when file is not a symlink.
14945         (utimens): Reduce redirection.
14946         * tests/test-lutimens.h (test_lutimens): Update test to cover
14947         non-symlinks.
14948         * tests/test-utimens.h (test_utimens): Update test to cover
14949         symlinks.
14950         * tests/test-utimens.c (main): Update caller.
14951
14952         utimens: cache whether utimensat syscall works
14953         * lib/utimens.c (utimensat_works_really): New cache variable.
14954         (fdutimens, lutimens): Use it to avoid failing syscall.
14955
14956         test-stat-time, test-utimens: improve portability
14957         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
14958         ext4 on alpha, and for cygwin.
14959         * tests/test-utimens-common.h: New file.
14960         (nap): Factor delays into single function.
14961         * tests/test-lutimens.h (test_lutimens): Use new header.
14962         * tests/test-futimens.h (test_futimens): Likewise.
14963         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
14964         timestamps to occur from same machine, as was done previously for
14965         test_utimens.
14966         * modules/utimens-tests (Files): Ship new file.
14967         * modules/futimens-tests (Files): Likewise.
14968         Reported in part by Jim Meyering.
14969
14970         sys_stat: sort replacement declarations
14971         * lib/sys_stat.in.h: Sort declarations.
14972         * lib/futimens.c (futimens): Fix typo.
14973
14974 2009-10-15  Jim Meyering  <meyering@redhat.com>
14975
14976         don't let environment settings perturb build
14977         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
14978         could cause a configure-time and/or build-time malfunction.
14979         Typically, a configure-time function-in-library test is performed
14980         via code like this:
14981
14982           LIB_VAR=
14983           AC_SUBST([LIB_VAR])
14984           prefix_saved_LIBS=$LIBS
14985             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
14986                        [test "$ac_cv_search_FUNC" = "none required" ||
14987                         LIB_VAR=$ac_cv_search_FUNC])
14988           LIBS=$prefix_saved_LIBS
14989
14990         However, in each of the files affected by this change, the LIB_VAR=
14991         initialization was omitted.  Thus, when set in the environment, its
14992         value would propagate into generated Makefiles when FUNC is not found
14993         in LIB_NAME.
14994         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
14995         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
14996         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
14997
14998 2009-10-14  Eric Blake  <ebb9@byu.net>
14999
15000         fchdir: avoid infinite recursion in mingw
15001         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
15002         recursing.
15003
15004         test-stat-time: port to mingw
15005         * tests/test-stat-time.c (force_unlink): Return a value.
15006         (test_ctime) [W32]: Fix compilation error.
15007         (nap): Don't call usleep with too large an argument.  Use
15008         force_unlink.
15009         * doc/pastposix-functions/usleep.texi (usleep): Document the
15010         portability issue.
15011
15012 2009-10-13  Jim Meyering  <meyering@redhat.com>
15013
15014         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
15015         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
15016         * modules/pipe-filter-ii: Likewise.
15017         * modules/sys_socket-tests: Likewise.
15018         * modules/tsearch-tests: Likewise.
15019         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
15020         (check): Depend on it.
15021
15022 2009-10-12  Eric Blake  <ebb9@byu.net>
15023
15024         utimens-tests: port to NFS file systems
15025         * tests/test-utimens.h (test_utimens): Refactor utimecmp
15026         comparisons to avoid spurious failures from timestamp drift
15027         between NFS machines.
15028
15029 2009-10-12  Eric Blake  <ebb9@byu.net>
15030
15031         stat-time-tests: minor cleanups
15032         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
15033         * tests/test-stat-time.c (nap): Separate assignment from call.
15034         Suggested by Paolo Bonzini and Bruno Haible.
15035
15036         sys_stat: guarantee struct timespec
15037         * lib/sys_stat.in.h (includes): Always include <time.h>
15038         * modules/sys_stat (Depends-on): Add time.
15039         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
15040         mode_t permission values.
15041         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
15042         get at subsecond timestamps.
15043
15044 2009-10-10  Eric Blake  <ebb9@byu.net>
15045
15046         futimens: new module
15047         * modules/futimens: New file.
15048         * lib/futimens.c (futimens): Likewise.
15049         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
15050         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
15051         we can work around Linux bugs.
15052         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
15053         * modules/sys_stat (Makefile.am): Substitute them.
15054         * lib/sys_stat.in.h (futimens): Declare it.
15055         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
15056         * doc/posix-functions/futimens.texi (futimens): Likewise.
15057         * modules/futimens-tests: New test.
15058         * tests/test-futimens.c: Likewise.
15059
15060         utimens: introduce fdutimens
15061         * lib/utimens.h (fdutimens): New prototype.
15062         * lib/utimens.c (gl_futimens): Move guts...
15063         (fdutimens): ...to new interface.
15064         * tests/test-utimens.c (do_fdutimens): Use it.
15065
15066         utimens: add UTIME_NOW and UTIME_OMIT support
15067         * lib/utimens.c (validate_timespec, update_timespec): New helper
15068         functions.
15069         (gl_futimens, lutimens): Use them.
15070         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
15071         stdbool, sys_stat.
15072         (Link): Mention resulting library dependency.
15073         * modules/utimecmp (Link): Likewise.
15074         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
15075         (Makefile.am): Pick up library dependency.
15076         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
15077         definition.
15078         * tests/test-sys_stat.c: Test the definitions.
15079         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
15080         * NEWS: Document library dependency.
15081
15082         utimecmp: support symlink timestamps
15083         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
15084         hashing when possible.  Use pathconf when available.
15085         (SYSCALL_RESOLUTION): Recognize tighter resolution.
15086         * modules/utimecmp (Depends-on): Add lstat.
15087
15088         utimens: add lutimens interface
15089         * lib/utimens.c (lutimens): New function.
15090         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
15091         * lib/utimens.h (lutimens): Declare new interface.
15092         * tests/test-utimens.c (main): Enhance test.
15093         * tests/test-lutimens.h (test_lutimens): New file.
15094         * modules/utimens-tests (Files): Distribute it.
15095         (Depends-on): Add symlink.
15096         (configure.ac): Check for usleep.
15097
15098         utimens: validate futimens usage
15099         * lib/utimens.c (gl_futimens): Require valid fd up front, using
15100         fewer syscalls on failure later on.  Avoid compiler warning on
15101         mingw.
15102         * modules/utimens (Depends-on): Add dup2.
15103
15104         utimens: add test
15105         * modules/utimens-tests: New test.
15106         * tests/test-utimens.h: New file.
15107         * tests/test-futimens.h: Likewise.
15108         * tests/test-utimens.c: Likewise.
15109
15110         doc: mention timestamp portability issues
15111         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
15112         instead.
15113         * doc/posix-functions/utime.texi (utime): Likewise.
15114         * doc/posix-functions/utimes.texi (utimes): Likewise.
15115         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
15116         instead.
15117         * doc/posix-functions/futimens.texi (futimens): Mention utimens
15118         module.
15119         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
15120         Mention weakness with symlink timestamps.
15121         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
15122         to utimensat/futimens instead.
15123         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
15124
15125         test-dup2: enhance test
15126         * tests/test-dup2.c (main): Also check AT_FDCWD.
15127
15128         test-stat-time: avoid more spurious failures
15129         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
15130         xfs; and avoid race if the two timestamps cross quantization edge.
15131
15132         relocatable: prefer 'file system' over 'filesystem'
15133         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
15134         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
15135         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
15136         * doc/relocatable.texi (Enabling Relocatability): Likewise.
15137         * lib/relocatable.c (compute_curr_prefix): Likewise.
15138
15139 2009-10-10  Jim Meyering  <meyering@redhat.com>
15140
15141         stat-time-tests: check for the usleep function
15142         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
15143
15144 2009-10-10  Bruno Haible  <bruno@clisp.org>
15145
15146         * modules/xnanosleep: Put the Link section after the Include section.
15147
15148 2009-10-09  Eric Blake  <ebb9@byu.net>
15149
15150         dup2: work around FreeBSD 6.1 bug
15151         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
15152         * doc/posix-functions/dup2.texi (dup2): Document it.
15153         Reported by Nelson H. F. Beebe and Jim Meyering.
15154
15155         test-stat-time: port to buggy NFS clients
15156         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
15157         (test_ctime): Also skip test if mtime and ctime are skewed.
15158
15159         maint: prefer 'file system' over 'filesystem'
15160         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
15161         * doc/posix-functions/lstat.texi (lstat): Likewise.
15162         * lib/file-has-acl.c (file_has_acl): Likewise.
15163         * lib/fwriteerror.c [TEST]: Likewise.
15164         * tests/test-areadlink.h (test_areadlink): Likewise.
15165         * tests/test-areadlinkat-with-size.c (main): Likewise.
15166         * tests/test-areadlinkat.c (main): Likewise.
15167         * tests/test-canonicalize-lgpl.c (main): Likewise.
15168         * tests/test-canonicalize.c (main): Likewise.
15169         * tests/test-fstatat.c (main): Likewise.
15170         * tests/test-linkat.c (main): Likewise.
15171         * tests/test-lstat.h (test_lstat_func): Likewise.
15172         * tests/test-mkdir.h (test_mkdir): Likewise.
15173         * tests/test-readlink.h (test_readlink): Likewise.
15174         * tests/test-remove.c (main): Likewise.
15175         * tests/test-rename.h (test_rename): Likewise.
15176         * tests/test-renameat.c (main): Likewise.
15177         * tests/test-rmdir.h (test_rmdir_func): Likewise.
15178         * tests/test-symlink.h (test_symlink): Likewise.
15179         * tests/test-symlinkat.c (main): Likewise.
15180         * tests/test-unlink.h (test_unlink_func): Likewise.
15181         * tests/test-unlinkat.c (main): Likewise.
15182
15183         maint: make realtime library usage explicit
15184         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
15185         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
15186         * modules/settime (Link): Likewise.
15187         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
15188
15189         test-stat-time: speed up execution
15190         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
15191         warning on mingw.
15192         (nap): New helper function.
15193         (prepare_test): Use it to reduce sleep time.
15194         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
15195         execution.
15196         * modules/stat-time-tests (configure.ac): Check for usleep.
15197
15198 2009-10-09  Jim Meyering  <meyering@redhat.com>
15199
15200         selinux-h: always use getfilecon wrappers
15201         * lib/getfilecon.c: New file.
15202         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
15203         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
15204         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
15205         (fgetfilecon): Provide a stub.
15206         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
15207         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
15208         file unconditionally.
15209         When <selinux/selinux.h> is found, arrange to use wrappers.
15210         * modules/selinux-h (Files): Add getfilecon.c.
15211         (Makefile.am): Substitute include-next-related bits
15212         into the now-always-generated selinux/selinux.h file.
15213         * doc/glibc-functions/lgetfilecon.texi: New file.
15214         * doc/glibc-functions/fgetfilecon.texi: New file.
15215         * doc/glibc-functions/getfilecon.texi: New file.
15216         * doc/glibc-functions/getfilecon-desc.texi: New file.
15217         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
15218         which to pull in the new files.
15219         * MODULES.html.sh (Misc): Add selinux-h.
15220
15221 2009-10-08  Jim Meyering  <meyering@redhat.com>
15222
15223         unistd: fix comment typo
15224         * lib/unistd.in.h (euidaccess): Fix a comment typo.
15225
15226 2009-10-08  Eric Blake  <ebb9@byu.net>
15227
15228         areadlink: use SIZE_MAX consistently
15229         * modules/areadlink (Depends-on): Add stdint.
15230         * modules/areadlink-with-size (Depends-on): Likewise.
15231         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
15232         gives NULL; drop sys/types, since unistd gives size_t; and add
15233         stdint for SIZE_MAX.
15234         (SIZE_MAX): Rely on headers.
15235         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
15236         and add stdint.
15237         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
15238         (SIZE_MAX): Likewise.
15239         (INITIAL_BUF_SIZE): Turn into enum.
15240         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
15241
15242 2009-10-08  Jim Meyering  <meyering@redhat.com>
15243
15244         areadlinkat: avoid compilation failure
15245         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
15246         Fix typo in comment.
15247
15248 2009-10-07  Eric Blake  <ebb9@byu.net>
15249
15250         areadlinkat-with-size: new module
15251         * modules/areadlinkat-with-size: New module.
15252         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
15253         * lib/areadlink.h (areadlinkat): Declare it.
15254         * MODULES.html.sh (File system functions): Mention it.
15255         * modules/areadlinkat-with-size-tests: New test.
15256         * tests/test-areadlinkat-with-size.c: New file.
15257
15258         xreadlinkat: new module
15259         * modules/xreadlinkat: New module.
15260         * lib/xreadlinkat.c (xreadlinkat): New file.
15261         * lib/xreadlink.h (xreadlinkat): Declare it.
15262         * MODULES.html.sh (File system functions): Mention it.
15263
15264         areadlinkat: new module
15265         * lib/at-func.c (FUNC_FAIL): New define.
15266         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
15267         * modules/areadlinkat: New module.
15268         * lib/linkat.c (areadlinkat): Move...
15269         * lib/areadlinkat.c (areadlinkat): ...to new file.
15270         * lib/areadlink.h (areadlinkat): Declare it.
15271         * modules/linkat (Depends-on): Add areadlinkat.
15272         * MODULES.html.sh (File system functions): Mention it.
15273         * modules/areadlinkat-tests: New test.
15274         * tests/test-areadlinkat.c: New file.
15275
15276         areadlink, areadlink-with-size: add tests
15277         * modules/areadlink-tests: New test.
15278         * modules/areadlink-with-size-tests: Likewise.
15279         * tests/test-areadlink.h: New file.
15280         * tests/test-areadlink.c: Likewise.
15281         * tests/test-areadlink-with-size.c: Likewise.
15282
15283         maint: minor cleanups
15284         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
15285         _UNUSED_PARAMETER_ instead.
15286         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
15287         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
15288         * modules/linkat-tests (Files): Distribute test-link.h.
15289
15290         openat, utimens: whitespace cleanup
15291         * lib/openat.c: Prefer space throughout, rather than mix of 8
15292         spaces vs. tabs.
15293         * lib/at-func.c: Likewise.
15294         * lib/utimens.c: Likewise.
15295
15296         openat: avoid using wrong fd
15297         * lib/openat.c (openat_permissive): Reject user's fd if saving the
15298         working directory chooses same fd.
15299         * lib/at-func.c (AT_FUNC_NAME): Likewise.
15300
15301         mkdir, mkdirat: fix cygwin 1.5.x bug
15302         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
15303         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
15304         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
15305         bug.
15306         (gl_PREREQ_MKDIR): Delete unused macro.
15307         * modules/mkdir (Files): Track file rename.
15308         (configure.ac): Update macro name.
15309         * modules/openat (Depends-on): Add mkdir.
15310         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
15311
15312         mkdir, mkdirat: add tests
15313         * modules/mkdir-tests: New test.
15314         * tests/test-mkdir.h: New file.
15315         * tests/test-mkdir.c: Likewise.
15316         * tests/test-mkdirat.c: Likewise.
15317         * modules/openat-tests (Files): Add new files.
15318         (Makefile.am): Run new test.
15319
15320 2009-10-06  Eric Blake  <ebb9@byu.net>
15321
15322         doc: tweak *at function documentation
15323         * doc/posix-functions/faccessat.texi (faccessat): Mention
15324         known issue with replacement.
15325         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
15326         * doc/posix-functions/linkat.texi (linkat): Likewise.
15327         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
15328         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
15329         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
15330         * doc/posix-functions/renameat.texi (renameat): Likewise.
15331         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
15332
15333         openat: fix GNU/Hurd bug in unlinkat
15334         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
15335         broken.
15336         * doc/posix-functions/unlink.texi (unlink): Document this.
15337         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
15338
15339         fdopendir: fix GNU/Hurd bug
15340         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
15341         allowing non-directory fds.
15342         * lib/fdopendir.c (rpl_fdopendir): Work around it.
15343         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
15344         * modules/dirent (Makefile.am): Substitute it.
15345         * lib/dirent.in.h (fdopendir): Declare replacement.
15346         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
15347         * tests/test-fdopendir.c (main): Test something other than
15348         /dev/null, since on Hurd that behaves like a directory.
15349
15350         test-symlink: port to GNU/Hurd
15351         * tests/test-symlink.h (test_symlink): Relax expected errno.
15352
15353         doc: tweak more cygwin information
15354         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
15355         now compatible with glibc.
15356         * doc/posix-functions/getopt.texi (getopt): Likewise.
15357
15358         getopt-gnu: add another test
15359         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
15360         guarantee behavior relied on by m4.
15361         * tests/test-getopt.c (main): Use it.
15362         * modules/getopt-posix-tests (Depends-on): Add setenv.
15363         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
15364
15365         getopt: fix compilation on darwin
15366         * lib/getopt.in.h (includes): Leave breadcrumbs during system
15367         include.
15368         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
15369         Reported by Ludovic Courtès.
15370
15371 2009-10-06  Bruno Haible  <bruno@clisp.org>
15372
15373         * modules/size_max (Description): Discourage its use.
15374         Reported by Simon Josefsson.
15375
15376 2009-10-06  Jim Meyering  <meyering@redhat.com>
15377
15378         linkat: avoid compilation failure
15379         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
15380
15381 2009-10-05  Eric Blake  <ebb9@byu.net>
15382
15383         linkat: support Linux 2.6.17
15384         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
15385         linkat on Linux, but allow cache variable override.
15386         * lib/linkat.c (rpl_linkat): Define override.
15387         * modules/linkat (Depends-on): Add symlinkat.
15388         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
15389         * modules/unistd (Makefile.am): Substitute it.
15390         * lib/unistd.in.h (linkat): Declare replacement.
15391         Reported by Pádraig Brady.
15392
15393         quotearg: port test to systems with C.UTF-8 locale
15394         * tests/test-quotearg.c (struct result_strings): Add another
15395         member, differentiating between C.ASCII and C.UTF-8 handling.
15396         (compare_strings): Add parameter.
15397         (main): Adjust all callers.
15398
15399         getopt: avoid clash with FreeBSD _getopt_internal
15400         * lib/getopt.in.h (_getopt_internal): Override the name.
15401         * lib/getopt_int.h (includes): Pick up any overrides.
15402         Reported by Reuben Thomas.
15403
15404         hash: allow C89 compilation
15405         * lib/hash.c (check_tuning): Move declaration before statement.
15406         Reported by Reuben Thomas.
15407
15408 2009-10-05  Karl Berry  <karl@gnu.org>
15409
15410         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
15411
15412 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
15413             Bruno Haible  <bruno@clisp.org>
15414
15415         * lib/uname.c (uname): Use a table-driven algorithm to compute
15416         Windows NT versions.
15417
15418 2009-10-04  Bruno Haible  <bruno@clisp.org>
15419
15420         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
15421         program_invocation_short_name.
15422         * modules/progname (configure.ac): Test for presence of
15423         program_invocation_short_name.
15424         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
15425
15426 2009-10-04  Bruno Haible  <bruno@clisp.org>
15427
15428         * lib/progname.c (set_program_name): Fix comment.
15429         Reported by Jim Meyering.
15430
15431 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
15432             Bruno Haible  <bruno@clisp.org>
15433
15434         * lib/uname.c: Include <string.h>.
15435         (uname): Do only one call to GetVersionEx in the common case.
15436
15437 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
15438             Bruno Haible  <bruno@clisp.org>
15439
15440         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
15441         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
15442         (uname): Add support for Windows CE and various non-x86 CPU types.
15443
15444 2009-10-03  Bruno Haible  <bruno@clisp.org>
15445
15446         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
15447         invocation to tests/configure.ac.
15448         Reported by Ian Beckwith <ianb@erislabs.net>.
15449
15450 2009-10-02  Eric Blake  <ebb9@byu.net>
15451
15452         fchdir: avoid compiler warning
15453         * lib/fchdir.c (canonicalize_file_name)
15454         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
15455
15456         test-open: support mingw errno values
15457         * tests/test-open.h (test_open): Relax test.
15458         * tests/test-fopen.h (test_fopen): Likewise.
15459         * tests/test-openat-safer.c (main): Likewise.
15460
15461         open: fix opening directory on mingw
15462         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
15463
15464         test-open: on GNU/Hurd, /dev/null is a directory
15465         * tests/test-fopen.h (main): Rename...
15466         (test_fopen): ...to this.  Use a guaranteed non-directory when
15467         confirming open behavior on trailing slash.
15468         * tests/test-openat-safer.c (main): Likewise.
15469         * tests/test-open.h (main): Likewise....
15470         (test_open): ...to this.
15471         * tests/test-fopen.c (main): Adjust caller.
15472         * tests/test-fopen-safer.c (main): Likewise.
15473         * tests/test-open.c (main): Likewise.
15474         * tests/test-fcntl-safer.c (main): Likewise.
15475         Reported by Samuel Thibault.
15476
15477         rename, fchdir: don't ignore chdir failure
15478         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
15479         * lib/rename.c (rpl_rename) [W32]: Likewise.
15480         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
15481         an empty destination directory if source cannot be renamed,
15482         although there is still possibility for failure.
15483         * doc/posix-functions/rename.texi (rename): Document the race.
15484         Reported by Jim Meyering.
15485
15486         maint: cleanup whitespace in recent commits
15487         * lib/rename.c (rpl_rename): Remove tabs.
15488         * tests/test-link.h (test_link): Likewise.
15489         * lib/fchdir.c (get_name): Likewise.
15490         Reported by Jim Meyering.
15491
15492 2009-10-02  Ben Pfaff  <blp@gnu.org>
15493
15494         relocatable-prog-wrapper: Add missing dependency on
15495         double-slash-root.
15496         * modules/relocatable-prog-wrapper: Add dependency.
15497         Reported by Ian Beckwith <ianb@erislabs.net>.
15498
15499 2009-10-02  Eric Blake  <ebb9@byu.net>
15500
15501         renameat: fix Solaris bugs
15502         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
15503         needed fixing.
15504         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
15505         * modules/stdio (Makefile.am): Substitute it.
15506         * lib/stdio.in.h (renameat): Declare replacement.
15507         * lib/renameat.c (rpl_renameat): Implement fix.
15508
15509         renameat: new module
15510         * modules/renameat: New file.
15511         * lib/renameat.c (renameat): Likewise.
15512         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
15513         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
15514         * modules/stdio (Makefile.am): Substitute them.
15515         * lib/stdio.in.h (renameat): Declare it.
15516         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
15517         * doc/posix-functions/renameat.texi (renameat): Likewise.
15518         * modules/renameat-tests: New test.
15519         * tests/test-renameat.c: Likewise.
15520
15521         rename: fix mingw bugs
15522         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
15523         directory overwrite bugs.
15524
15525         rename: fix another cygwin 1.5 bug
15526         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
15527         checks.
15528         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
15529         unnecessary cygwin workarounds.  Also work around bug with moving
15530         full directory onto an empty one.
15531         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
15532
15533         rename-dest-slash: merge into rename module
15534         * modules/rename-dest-slash (Status): Mark obsolete.
15535         (Depends-on): Add rename.
15536         (Files): Let rename do it all.
15537         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
15538         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
15539         * m4/rename-dest-slash.m4: ...so this file can be deleted.
15540         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
15541         * lib/rename.c (rpl_rename): Update comments.
15542
15543         rename: fix cygwin 1.5.x bugs
15544         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
15545         * lib/rename.c (rpl_rename): Work around them.
15546         * modules/rename (Depends-on): Add same-inode.
15547
15548         rename: fix Solaris 10 bug
15549         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
15550         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
15551         was the only bug.
15552
15553         rename: fix Solaris 9 bug
15554         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
15555         on non-directory.  Avoid calling exit.
15556         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
15557         strdup.
15558         * modules/rename-tests (Depends-on): Drop lstat.
15559         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
15560         (gl_PREREQ_RENAME): Delete unused macro.
15561
15562         rename-dest-slash: fix NetBSD bug
15563         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
15564         links.
15565         * modules/rename-dest-slash (Depends-on): Add same-inode.
15566
15567         rename-tests: new test, exposes several platform bugs
15568         * modules/rename-tests: New file.
15569         * tests/test-rename.h: Likewise.
15570         * tests/test-rename.c: Likewise.
15571         * doc/posix-functions/rename.texi (rename): Improve documentation,
15572         including bugs that will eventually be fixed in gnulib.
15573
15574 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
15575
15576         * lib/uname.c: Include <stdlib.h>
15577         (uname): Assume version info is available.
15578
15579 2009-10-02  Jim Meyering  <meyering@redhat.com>
15580
15581         gnu-web-doc-update: correct --help output
15582         * build-aux/gnu-web-doc-update: Make --help output relevant.
15583
15584         gnu-web-doc-update: add standard options
15585         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
15586
15587         gnu-web-doc-update: New module.
15588         Use this script to automatically update the on-line web documentation
15589         for your GNU project at http://www.gnu.org/software/$pkg/manual/
15590         * modules/gnu-web-doc-update: New file, from coreutils.
15591         * build-aux/gnu-web-doc-update: New script.
15592
15593 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
15594
15595         link: LoadLibrary is not needed.
15596         * lib/link.c: Use GetModuleHandle.
15597
15598 2009-10-01  Eric Blake  <ebb9@byu.net>
15599
15600         getopt: bump serial number
15601         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
15602         change.
15603
15604         tests: tighten link, rmdir, and remove tests
15605         * tests/test-link.h (includes): No need to use <config.h> here.
15606         Clean up if directory hard link was created, otherwise test for
15607         trailing '.'.
15608         * tests/test-linkat.c (main): Simplify.
15609         * tests/test-remove.c (main): Enhance test for trailing '.'.
15610         * tests/test-rmdir.h (test_rmdir_func): Likewise.
15611
15612 2009-10-01  Jim Meyering  <meyering@redhat.com>
15613
15614         maint.mk: requiring "make major" was annoying, for a "minor" release.
15615         What is intended is "stable", to contrast with alpha and beta,
15616         so require "make stable", not "make major".
15617         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
15618         (get_tool_versions): Likewise.
15619         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
15620
15621 2009-09-30  Ben Pfaff  <blp@gnu.org>
15622
15623         Fix broken build of replacement for Windows tmpfile().
15624         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
15625         flags argument added along with the 'mkostemp' module.
15626
15627 2009-09-28  Bruno Haible  <bruno@clisp.org>
15628
15629         Avoid identifier clash with POSIX function 'remove' defined as a macro.
15630         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
15631         to 'remove_elt'.
15632         (gl_list_remove): Update.
15633         * lib/gl_list.c (gl_list_remove): Update.
15634         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
15635         to 'remove_elt'.
15636         (gl_oset_remove): Update.
15637         * lib/gl_list.c (gl_oset_remove): Update.
15638         Reported by Eric Blake.
15639
15640 2009-09-28  Eric Blake  <ebb9@byu.net>
15641
15642         doc: mention yet more cygwin 1.7 status
15643         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
15644         cygwin.
15645         * doc/glibc-functions/execvpe.texi (execvpe): New file.
15646         * doc/gnulib.texi (Glibc unistd.h): Mention it.
15647
15648         argp: fix test failure
15649         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
15650         that are not upper-case.  Pass correct range to tolower.
15651
15652 2009-09-27  Jim Meyering  <meyering@redhat.com>
15653
15654         test-yesno: work around sparc-dash here-document infelicity
15655         Without this change, the literal \177 byte in a here document
15656         would make dash 0.5.5.1-3 access uninitialized memory.
15657         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
15658         Instead, use a marker, "@", and filter through tr to create the desired
15659         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
15660
15661 2009-09-27  Bruno Haible  <bruno@clisp.org>
15662
15663         Disable untested support for new flavours of ACLs on AIX.
15664         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
15665         progress.
15666         * lib/set-mode-acl.c (qset_acl): Likewise.
15667
15668 2008-12-07  Bruno Haible  <bruno@clisp.org>
15669
15670         Add support for new flavours of ACLs on AIX. (Untested.)
15671         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
15672         (file_has_acl): Add support for newer AIX.
15673         * lib/set-mode-acl.c (qset_acl): Likewise.
15674         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
15675         Rainer Tammer <tammer@tammer.net>.
15676
15677 2009-09-26  Eric Blake  <ebb9@byu.net>
15678
15679         argp: fix compilation of getopt
15680         * lib/getopt.in.h (includes): Use different guard than glibc.
15681         Reported by Sergey Poznyakoff.
15682
15683         doc: mention more cygwin 1.7 status
15684         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
15685         bug.
15686         * doc/posix-functions/execl.texi (execl): Likewise.
15687         * doc/posix-functions/execle.texi (execle): Likewise.
15688         * doc/posix-functions/execlp.texi (execlp): Likewise.
15689         * doc/posix-functions/execv.texi (execv): Likewise.
15690         * doc/posix-functions/execve.texi (execve): Likewise.
15691         * doc/posix-functions/execvp.texi (execvp): Likewise.
15692         * doc/glibc-functions/canonicalize_file_name.texi
15693         (canonicalize_file_name): Cygwin 1.7 now provides this.
15694         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
15695         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
15696         on AT_SYMLINK_NOFOLLOW.
15697
15698 2009-09-24  Eric Blake  <ebb9@byu.net>
15699
15700         test-linkat: make test more robust
15701         * tests/test-linkat.c (main): Avoid collision with EEXIST.
15702
15703         getopt: fix inclusion guards for cygwin
15704         * modules/getopt-posix (Depends-on): Add include-next.
15705         (Makefile.am): Substitute more items in replacement header.
15706         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
15707         <getopt.h>.
15708         * lib/getopt.in.h (includes): Use split inclusion guard, and
15709         prefer <getopt.h> over include <unistd.h> when one is present.
15710         (option): Also override name of 'struct option'.
15711
15712         same-inode: revert prior change; it is not yet ready
15713         * NEWS: Undo mention of this change.
15714         * lib/same-inode.h (same-inode.h): Undo tri-state change.
15715         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
15716         * lib/cycle-check.c (cycle_check): Likewise.
15717         * lib/same.c (same_name): Likewise.
15718         * lib/at-func2.c (at_func2): Likewise.
15719
15720 2009-09-23  Eric Blake  <ebb9@byu.net>
15721
15722         linkat: new module
15723         * modules/linkat: New file.
15724         * lib/at-func2.c (at_func2): Likewise.
15725         * lib/linkat.c (linkat): Likewise.
15726         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
15727         * lib/openat-priv.h (at_func2): Add declaration.
15728         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
15729         * modules/unistd (Makefile.am): Substitute them.
15730         * lib/unistd.in.h (linkat): Declare it.
15731         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
15732         * doc/posix-functions/linkat.texi (linkat): Likewise.
15733         * doc/posix-functions/link.texi (link): Tweak wording.
15734         * tests/test-link.c (main): Move guts...
15735         * tests/test-link.h (test_link): ...into new file.
15736         * modules/linkat-tests: New test.
15737         * tests/test-linkat.c: Likewise.
15738         * modules/link-tests (Files): Ship new file.
15739         (Depends-on): Add stdbool.
15740
15741         dirname: add library-safe mdir_name
15742         * lib/dirname.h (mdir_name): New prototype.
15743         * lib/dirname.c (dir_name): Move guts...
15744         (mdir_name): ...to new function that avoids xalloc_die.
15745
15746         fchdir: another mingw fix
15747         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
15748         * lib/fchdir.c (get_name): New helper method; skips canonicalize
15749         on mingw (where it has not yet been ported), and make it optional
15750         elsewhere.
15751         (_gl_register_fd): Use it.
15752
15753         same-inode: make SAME_INODE tri-state, to port to mingw
15754         * NEWS: Mention this change.
15755         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
15756         st_ino always being 0.
15757         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
15758         * lib/cycle-check.c (cycle_check): Likewise.
15759         * lib/same.c (same_name): Likewise.
15760
15761         lstat: avoid mingw compilation error
15762         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
15763         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
15764         lstat ourselves.
15765         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
15766         was adequate.
15767         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
15768         the checks for lstat.
15769         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
15770
15771         link: fix test failure on Solaris 9
15772         * lib/link.c (rpl_link): Don't assume link will catch bogus
15773         trailing slash on source.
15774
15775         test-symlinkat: enhance test
15776         * tests/test-readlink.c (main): Move guts...
15777         * tests/test-readlink.h (test_readlink): ...into new file.
15778         * tests/test-symlink.c (main): Move guts...
15779         * tests/test-symlink.h (test_symlink): ...into new file.
15780         * tests/test-symlinkat.c (main): Use new files for further
15781         coverage.
15782         (do_symlink, do_readlink): New helper functions.
15783         * modules/symlink-tests (Files): Ship new file.
15784         (Depends-on): Add stdbool.
15785         * modules/readlink-tests (Files): Ship new file.
15786         (Depends-on): Add stdbool.
15787         * modules/symlinkat-tests (Files): Use new files.
15788
15789 2009-09-23  Eric Blake  <ebb9@byu.net>
15790
15791         readlink: document portability issue with symlink length
15792         * doc/posix-functions/lstat.texi (lstat): Mention that some file
15793         systems have bogus st_size on symlinks, and mention the
15794         areadlink-with-size module.
15795         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
15796         * doc/posix-functions/readlink.texi (readlink): Mention the
15797         areadlink module, and ERANGE failure.
15798         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
15799         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
15800
15801         readlink: fix Solaris 9 bug with trailing slash
15802         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
15803         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
15804         * doc/posix-functions/readlink.texi (readlink): Document this.
15805         * modules/readlink-tests: New test.
15806         * tests/test-readlink.c: Likewise.
15807
15808         readlink: fix cygwin 1.5.x bug with return type
15809         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
15810         * lib/unistd.in.h (readlink): Use ssize_t.
15811         * lib/readlink.c (readlink): Likewise.
15812         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
15813         * modules/unistd (Makefile.am): Substitute it.
15814         * lib/unistd.in.h (readlink): Declare replacement.
15815         * doc/posix-functions/readlink.texi (readlink): Document this.
15816
15817         symlink: use throughout gnulib
15818         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
15819         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
15820         symlink is not used.
15821         * modules/symlinkat (Depends-on): Add symlink.
15822         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
15823         * modules/canonicalize-tests (Depends-on): Likewise.
15824         * modules/lstat-tests (Depends-on): Likewise.
15825         * modules/openat-tests (Depends-on): Likewise.
15826         * modules/remove-tests (Depends-on): Likewise.
15827         * modules/rmdir-tests (Depends-on): Likewise.
15828         * modules/unlink-tests (Depends-on): Likewise.
15829         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
15830         * tests/test-canonicalize.c (symlink): Likewise.
15831         * tests/test-fstatat.c (symlink): Likewise.
15832         * tests/test-lstat.c (symlink): Likewise.
15833         * tests/test-remove.c (symlink): Likewise.
15834         * tests/test-rmdir.c (symlink): Likewise.
15835         * tests/test-unlink.c (symlink): Likewise.
15836         * tests/test-unlinkat.c (symlink): Likewise.
15837
15838         symlink: new module, for Solaris 9 bug
15839         * modules/symlink: New file.
15840         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
15841         * lib/symlink.c: Likewise.
15842         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
15843         * modules/unistd (Makefile.am): Substitute them.
15844         * lib/unistd.in.h (symlink): Declare replacement.
15845         * MODULES.html.sh (File system functions): Mention it.
15846         * doc/posix-functions/symlink.texi (symlink): Likewise.
15847         * modules/symlink-tests: New test.
15848         * tests/test-symlink.c: Likewise.
15849
15850 2009-09-23  Bruno Haible  <bruno@clisp.org>
15851
15852         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
15853         when needed.
15854         Test case: gnulib-tool --import --with-tests atexit inttypes.
15855         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
15856
15857 2009-09-23  Bruno Haible  <bruno@clisp.org>
15858
15859         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
15860         subcommand, not in a subshell.
15861
15862 2009-09-22  Eric Blake  <ebb9@byu.net>
15863
15864         unistd: sort replacement declarations
15865         * lib/unistd.in.h: Sort declarations.
15866
15867         open, openat: minor optimization
15868         * lib/open.c (open): If open succeeded, len is non-zero.
15869         * lib/openat.c (rpl_openat): Likewise.
15870
15871         link-follow: ensure correct result
15872         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
15873         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
15874         distinguish between possible failures.
15875
15876 2009-09-21  Eric Blake  <ebb9@byu.net>
15877
15878         fts: avoid compiler warning
15879         * lib/fts.c (dirent_inode_sort_may_be_useful)
15880         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
15881
15882 2009-09-19  Bruno Haible  <bruno@clisp.org>
15883
15884         * lib/progreloc.c (canonicalize_file_name): New declaration.
15885
15886 2009-09-19  Eric Blake  <ebb9@byu.net>
15887
15888         link: fix quoting
15889         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
15890
15891         openat: fix openat bugs on Solaris 9
15892         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
15893         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
15894         * modules/openat (Depends-on): Add open.
15895         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
15896         * modules/fcntl-h (Makefile.am): Substitute it.
15897         * lib/fcntl.in.h (openat): Declare replacement.
15898         * doc/posix-functions/openat.texi (openat): Document this.
15899
15900         openat: move fstatat and unlinkat into correct files
15901         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
15902         compiled.
15903         * lib/openat.c (fstatat, unlinkat): Move...
15904         * lib/fstatat.c (fstatat): ...into correct files.
15905         * lib/unlinkat.c (unlinkat): Likewise.
15906
15907         openat: fix unlinkat bugs on Solaris 9
15908         * lib/unlinkat.c (unlinkat): New file.
15909         * modules/openat (Depends-on): Add unlink.
15910         (Files): Distribute it.
15911         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
15912         trailing slash behavior is broken.
15913         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
15914         * modules/unistd (Makefile.am): Substitute it.
15915         * lib/unistd.in.h (unlinkat): Declare replacement.
15916         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
15917
15918         openat: fix fstatat bugs on Solaris 9
15919         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
15920         stat.
15921         * doc/posix-functions/fstatat.texi (fstatat): Document this.
15922
15923         test-unlinkat: enhance test, to expose Solaris 9 bug
15924         * tests/test-unlink.c (main): Factor guts...
15925         * tests/test-unlink.h (test_rmdir_func): ...into new file.
15926         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
15927         * tests/test-rmdir.c (main): Adjust caller.
15928         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
15929         (unlinker): New helper function.
15930         (rmdirat): Enhance check.
15931         * modules/rmdir-tests (Depends-on): Add stdbool.
15932         * modules/unlink-tests (Depends-on): Likewise.
15933         (Files): Add test-unlink.h.
15934         * modules/openat-tests (Files): Likewise.
15935         (Depends-on): Add unlinkdir.
15936
15937         test-fstatat: new test, to expose Solaris 9 bugs
15938         * tests/test-stat.c (main): Factor guts...
15939         * tests/test-stat.h (test_stat_func): ...into new file.
15940         * tests/test-lstat.c (main): Factor guts...
15941         * tests/test-lstat.h (test_lstat_func): ...into new file.
15942         * tests/test-fstatat.c: New file.
15943         * modules/stat-tests (Files): Add test-stat.h.
15944         * modules/lstat-tests (Files): Add test-lstat.h.
15945         (Depends-on): Add stdbool.
15946         * modules/openat-tests (Depends-on): Add pathmax.
15947         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
15948         (Makefile.am): Run new test.
15949
15950         remove: new module, for mingw and Solaris 9 bugs
15951         * modules/remove: New file.
15952         * lib/remove.c: Likewise.
15953         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
15954         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
15955         * modules/stdio (Makefile.am): Use them.
15956         * lib/stdio.in.h (remove): Declare replacement.
15957         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
15958         * doc/posix-functions/remove.texi (remove): Likewise.
15959         * modules/remove-tests: New test.
15960         * tests/test-remove.c: Likewise.
15961
15962         unlink: new module, for Solaris 9 bug
15963         * modules/unlink: New file.
15964         * lib/unlink.c: Likewise.
15965         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
15966         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
15967         * modules/unistd (Makefile.am): Use them.
15968         * lib/unistd.in.h (stat): Declare replacement.
15969         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
15970         * doc/posix-functions/unlink.texi (unlink): Likewise.
15971         * modules/unlink-tests: New test.
15972         * tests/test-unlink.c: Likewise.
15973
15974         lstat: fix Solaris 9 bug
15975         * lib/lstat.c (lstat): Also check for trailing slash on
15976         non-symlink, non-directories.  Use stat module to simplify logic.
15977         * doc/posix-functions/lstat.texi (lstat): Document it.
15978         * modules/lstat-tests (Depends-on): Add errno, same-inode.
15979         (configure.ac): Check for symlink.
15980         * tests/test-lstat.c (main): Add more tests.
15981
15982         stat: add as dependency to other modules
15983         * modules/chown (Depends-on): Add stat.
15984         * modules/euidaccess (Depends-on): Likewise.
15985         * modules/fchdir (Depends-on): Likewise.
15986         * modules/isdir (Depends-on): Likewise.
15987         * modules/link (Depends-on): Likewise.
15988         * modules/lstat (Depends-on): Likewise.
15989         * modules/mkdir-p (Depends-on): Likewise.
15990         * modules/modechange (Depends-on): Likewise.
15991         * modules/open (Depends-on): Likewise.
15992         * modules/readlink (Depends-on): Likewise.
15993         * modules/same (Depends-on): Likewise.
15994
15995         stat: fix Solaris 9 bug
15996         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
15997         slash.
15998         * lib/stat.c (rpl_stat): Work around it.
15999         * doc/posix-functions/stat.texi (stat): Update documentation.
16000
16001         stat: new module, for mingw bug
16002         * modules/stat: New file.
16003         * lib/stat.c: Likewise.
16004         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
16005         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
16006         * modules/sys_stat (Makefile.am): Use them.
16007         * lib/sys_stat.in.h (stat): Declare replacement.
16008         * lib/openat.c (fstatat): Deal with lstat and stat being function
16009         macros.
16010         * modules/openat (Depends-on): Add inline.
16011         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
16012         * doc/posix-functions/stat.texi (stat): Likewise.
16013         * modules/stat-tests: New test.
16014         * tests/test-stat.c: Likewise.
16015
16016 2009-09-19  Jim Meyering  <meyering@redhat.com>
16017
16018         syntax-check: detect unnecessary inclusion of canonicalize.h
16019         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
16020
16021 2009-09-19  Eric Blake  <ebb9@byu.net>
16022
16023         canonicalize-lgpl: adjust clients to use correct header
16024         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
16025         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
16026         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
16027         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
16028         * lib/progreloc.c (includes): Likewise.
16029
16030 2009-09-19  Jim Meyering  <meyering@redhat.com>
16031
16032         test-posixtm.c: correct a comment
16033         * tests/test-posixtm.c: Correct first-line comment.
16034         Spotted by Eric Blake.
16035
16036 2009-09-16  Jim Meyering  <meyering@redhat.com>
16037
16038         posixtm-tests: make T const-correct; add a test case
16039         * tests/test-posixtm.c (T): Declare const.
16040         Add a test for -(2^31+1).
16041         Remove useless can-succeed-only-in-2002 test.
16042
16043         posixtm-tests: adjust the sole failing test
16044         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
16045         expected output matches what mktime now produces.  Cross-checked via
16046         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
16047
16048         posixtm: move #ifdef'd tests into a new module
16049         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
16050         * tests/test-posixtm.c: ... this new file.
16051         * modules/posixtm-tests: New module.
16052
16053 2009-09-19  Eric Blake  <ebb9@byu.net>
16054
16055         openat: simplify use of at-func.c
16056         * lib/at-func.c (includes): Include prerequisites here, to
16057         simplify requirements on client files.
16058         * lib/openat-priv.h: Add double-inclusion guard.
16059         * lib/faccessat.c (includes): Simplify.
16060         * lib/fchmodat.c (includes): Likewise.
16061         * lib/fchownat.c (includes): Likewise.
16062         * lib/mkdirat.c (includes): Likewise.
16063         * lib/mkfifoat.c (includes): Likewise.
16064         * lib/symlinkat.c (includes): Likewise.
16065
16066         openat: allow return of fd 0
16067         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
16068         * modules/save-cwd (Depends-on): Replace fcntl-safer with
16069         unistd-safer.
16070         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
16071         <fcntl.h>; this module does not leak fds.
16072         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
16073         must be allowed to return 0, leaving openat_safer to add the
16074         safety.
16075         (openat_permissive): Avoid writing to just-opened fd 2 if
16076         restoring the current directory fails.
16077         * lib/openat-die.c (openat_restore_fail): Add comment.
16078         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
16079         (save_cwd): Guarantee safe fd, but without use of open_safer.
16080         * tests/test-openat.c: New test.
16081         * modules/openat-tests (Files, Makefile.am): Distribute and build
16082         new file.
16083
16084         relocatable-prog-wrapper: fix build
16085         * modules/relocatable-prog-wrapper (Files): Update name of
16086         canonicalize m4 file, broken on 2009-09-17.
16087         Reported by emad hajjar <aleppos@hotmail.com>.
16088
16089 2009-09-19  Bruno Haible  <bruno@clisp.org>
16090
16091         * lib/safe-alloc.h: Use the standard header with GPL copyright.
16092         * lib/safe-alloc.c: Likewise.
16093         Reported by Ian Beckwith <ianb@erislabs.net>.
16094
16095 2009-09-18  Bruno Haible  <bruno@clisp.org>
16096
16097         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
16098         Reported by <erobles@sensacd.com.mx>.
16099
16100 2009-09-17  Eric Blake  <ebb9@byu.net>
16101
16102         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
16103         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
16104         slashes when checking if last component is missing.
16105         * tests/test-canonicalize.c (main): Test this.
16106
16107         canonicalize, canonicalize-lgpl: honor // if distinct from /
16108         * modules/canonicalize (Files): Add double-slash-root.m4.
16109         * modules/canonicalize-lgpl (Files): Likewise.
16110         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
16111         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
16112         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
16113         fallback definition.
16114         (canonicalize_filename_mode): Use it to protect //.
16115         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
16116         (__realpath): Likewise.
16117         * tests/test-canonicalize.c (main): Test this.
16118         * tests/test-canonicalize-lgpl.c (main): Likewise.
16119         * modules/canonicalize-tests (Depends-on): Add same-inode.
16120         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
16121
16122         canonicalize-lgpl: fix glibc bug with trailing slash
16123         * m4/canonicalize-lgpl.m4: Move contents...
16124         * m4/canonicalize.m4: ...here.
16125         (gl_CANONICALIZE_LGPL): Factor realpath check...
16126         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
16127         glibc 2.3.5 bug, fixed 2005-04-27.
16128         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
16129         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
16130         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
16131         * modules/canonicalize-lgpl (Files): Manage file rename.
16132         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
16133         * modules/stdlib (Makefile.am): Substitute witness.
16134         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
16135         is needed.
16136         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
16137         replacement is required.
16138         * lib/canonicalize.c (canonicalize_file_name): Likewise.
16139         * doc/glibc-functions/canonicalize_file_name.texi
16140         (canonicalize_file_name): Document this.
16141         * doc/posix-functions/realpath.texi (realpath): Likewise.
16142
16143         canonicalize-lgpl: reject non-directory with trailing slash
16144         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
16145         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
16146         catches failures in glibc 2.3.5.
16147         * tests/test-canonicalize.c (main): Likewise.
16148
16149         canonicalize-lgpl: use native realpath if it works
16150         * lib/canonicalize-lgpl.c (realpath): Guard with
16151         FUNC_REALPATH_WORKS.
16152         * lib/stdlib.in.h (realpath): Make declaration optional based on
16153         HAVE_REALPATH.
16154         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
16155         native realpath works.
16156         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
16157         * modules/stdlib (Makefile.am): Substitute witness.
16158
16159         canonicalize, canonicalize-lgpl: use <stdlib.h>
16160         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
16161         (Include): Mention <stdlib.h>.
16162         (configure.ac): Mention functions we provide.
16163         * modules/canonicalize (configure.ac): Likewise.
16164         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
16165         realpath if canonicalize_file_name is missing.
16166         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
16167         * modules/stdlib (Makefile.am): Substitute witnesses.
16168         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
16169         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
16170         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
16171         * NEWS: Document this.
16172         * doc/glibc-functions/canonicalize_file_name.texi
16173         (canonicalize_file_name): Likewise.
16174         * doc/posix-functions/realpath.texi (realpath): Likewise.
16175         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
16176
16177         test-canonicalize: consolidate into single C program
16178         * tests/test-canonicalize.sh: Delete; move setup into...
16179         * tests/test-canonicalize.c (main): ...the program, making it
16180         easier to run in debugger.  Add some tests.
16181         * modules/canonicalize-tests (Files): Remove unused file.
16182         (Depends-on): Add progname.
16183         (configure.ac, Makefile.am): Simplify.
16184
16185         test-canonicalize-lgpl: consolidate into single C program
16186         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
16187         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
16188         easier to run in debugger.  Add some tests.
16189         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
16190         (configure.ac, Makefile.am): Simplify.
16191
16192         canonicalize: avoid resolvepath
16193         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
16194         unnecessary checks.
16195         * lib/canonicalize.c (includes): Simplify.
16196         (canonicalize_file_name): Drop resolvepath implementation.
16197         * modules/canonicalize (Depends-on): Drop filenamecat.
16198
16199         canonicalize: don't lose errno
16200         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
16201         over calls to free.
16202
16203         canonicalize: simplify errno handling
16204         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
16205         assignment.
16206
16207         canonicalize, canonicalize-lgpl: update module dependencies
16208         * modules/canonicalize (Depends-on): Add extensions, lstat,
16209         pathmax, stdlib.
16210         (Files): Drop pathmax.h.
16211         (configure.ac): Adjust macro name.
16212         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
16213         lstat, stdlib, sys_stat.
16214         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
16215         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
16216         extensions.
16217         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
16218         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
16219         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
16220         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
16221         declaration, if available.
16222         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
16223         we can rely on the readlink module.
16224         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
16225         (includes): Use <unistd.h> unconditionally.
16226
16227 2009-09-17  Eric Blake  <ebb9@byu.net>
16228
16229         maint: make Include sections of modules consistent
16230         * modules/alloca: Use only header name; no need to list #include.
16231         * modules/alloca-opt: Likewise.
16232         * modules/arpa_inet: Likewise.
16233         * modules/canon-host: Likewise.
16234         * modules/configmake: Likewise.
16235         * modules/dirent: Likewise.
16236         * modules/eealloc: Likewise.
16237         * modules/environ: Likewise.
16238         * modules/fchdir: Likewise.
16239         * modules/fcntl: Likewise.
16240         * modules/fcntl-h: Likewise.
16241         * modules/gethrxtime: Likewise.
16242         * modules/gettime: Likewise.
16243         * modules/ignore-value: Likewise.
16244         * modules/inet_ntop: Likewise.
16245         * modules/inet_pton: Likewise.
16246         * modules/inttypes: Likewise.
16247         * modules/isnand-nolibm: Likewise.
16248         * modules/isnanf-nolibm: Likewise.
16249         * modules/mbchar: Likewise.
16250         * modules/mbfile: Likewise.
16251         * modules/mbiter: Likewise.
16252         * modules/mbuiter: Likewise.
16253         * modules/netdb: Likewise.
16254         * modules/netinet_in: Likewise.
16255         * modules/nproc: Likewise.
16256         * modules/pagealign_alloc: Likewise.
16257         * modules/poll: Likewise.
16258         * modules/printf-frexp: Likewise.
16259         * modules/pthread: Likewise.
16260         * modules/putenv: Likewise.
16261         * modules/random_r: Likewise.
16262         * modules/relocatable-prog: Likewise.
16263         * modules/search: Likewise.
16264         * modules/select: Likewise.
16265         * modules/selinux-h: Likewise.
16266         * modules/settime: Likewise.
16267         * modules/signal: Likewise.
16268         * modules/size_max: Likewise.
16269         * modules/socklen: Likewise.
16270         * modules/ssize_t: Likewise.
16271         * modules/stdarg: Likewise.
16272         * modules/stdbool: Likewise.
16273         * modules/stddef: Likewise.
16274         * modules/stdint: Likewise.
16275         * modules/stdio: Likewise.
16276         * modules/stdlib: Likewise.
16277         * modules/string: Likewise.
16278         * modules/strings: Likewise.
16279         * modules/sys_file: Likewise.
16280         * modules/sys_ioctl: Likewise.
16281         * modules/sys_select: Likewise.
16282         * modules/sys_socket: Likewise.
16283         * modules/sys_stat: Likewise.
16284         * modules/sys_time: Likewise.
16285         * modules/sys_times: Likewise.
16286         * modules/sys_utsname: Likewise.
16287         * modules/sys_wait: Likewise.
16288         * modules/sysexits: Likewise.
16289         * modules/time: Likewise.
16290         * modules/times: Likewise.
16291         * modules/tmpfile: Likewise.
16292         * modules/trim: Likewise.
16293         * modules/unistd: Likewise.
16294         * modules/wchar: Likewise.
16295         * modules/wctype: Likewise.
16296
16297 2009-09-17  Bruno Haible  <bruno@clisp.org>
16298
16299         Make getdate.y compile on QNX and NetBSD 5 / i386.
16300         * m4/getdate.m4 (gl_GETDATE): Conditionally define
16301         TIME_T_FITS_IN_LONG_INT.
16302         * lib/getdate.y (long_time_t): New type.
16303         (relative_time): Change type of 'seconds' field to long_time_t.
16304         (get_date): Update types of local variables. Check against overflow
16305         during conversion from long_time_t to time_t.
16306         Reported by Matt Kraai <kraai@ftbfs.org>
16307         and Hasso Tepper <hasso@netbsd.org>.
16308
16309 2009-09-17  Bruno Haible  <bruno@clisp.org>
16310
16311         * modules/COPYING: Update copyright years.
16312         * modules/README: Likeiwse.
16313         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
16314         Reported by Ian Beckwith <ianb@erislabs.net>.
16315
16316 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
16317
16318         * users.txt: Update references for gnuit package.
16319
16320 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
16321
16322         * m4/getdelim.m4: Fix typo in copyright line.
16323
16324 2009-09-17  Bruno Haible  <bruno@clisp.org>
16325
16326         * lib/atoll.c: Use the standard header with GPL copyright.
16327         * lib/argz.in.h: Likewise.
16328         * lib/glob.c: Likewise.
16329         * lib/glob-libc.h: Likewise.
16330         * lib/random_r.c: Likewise.
16331         * lib/siglist.h: Likewise.
16332         * lib/strsignal.c: Likewise.
16333         Reported by Ian Beckwith <ianb@erislabs.net>.
16334
16335 2009-09-17  Eric Blake  <ebb9@byu.net>
16336
16337         rmdir: ensure correct dependency order
16338         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
16339
16340 2009-09-17  Bruno Haible  <bruno@clisp.org>
16341
16342         Disable assertion that fails on NetBSD 5 / i386.
16343         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
16344         Reported by Sam Steingold <sds@gnu.org>
16345         and Hasso Tepper <hasso@netbsd.org>.
16346
16347 2009-09-16  Eric Blake  <ebb9@byu.net>
16348
16349         unlinkdir: port to mingw
16350         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
16351         on which no one can unlink a directory.
16352
16353         stdlib: sort witness names
16354         * modules/stdlib (Makefile.am): Sort replacements.
16355         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
16356         * lib/stdlib.in.h: Likewise.
16357
16358         parse-duration-tests: avoid link failure
16359         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
16360         LIBINTL.
16361         Reported by Tom G. Christensen.
16362
16363         openat-tests: ensure unlinkat behaves like rmdir
16364         * tests/test-rmdir.c (main): Factor guts...
16365         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
16366         * modules/rmdir-tests (Files): Ship new file.
16367         * modules/openat-tests: New test.
16368         * tests/test-unlinkat.c: Likewise.
16369
16370         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
16371         * modules/rmdir-errno (Status, Notice): Now obsolete.
16372
16373         rmdir: work around cygwin 1.5.x and mingw bugs
16374         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
16375         * lib/rmdir.c (rmdir): Work around it.
16376         * modules/rmdir (Status, Notice): No longer obsolete.
16377         (Files): Add dos.m4.
16378         (Depends-on): Add unistd.
16379         (configure.ac): Set witnesses.
16380         (License): Relax to LGPLv2+.
16381         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
16382         * modules/unistd (Makefile.am): Substitute witnesses.
16383         * lib/unistd.in.h (rmdir): Declare replacement.
16384         * doc/posix-functions/rmdir.texi (rmdir): Document this.
16385         * modules/rmdir-tests: New tests.
16386         * tests/test-rmdir.c: Likewise.
16387
16388 2009-09-15  Eric Blake  <ebb9@byu.net>
16389
16390         fchdir: improve use of replacement functions
16391         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
16392         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
16393         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
16394         REPLACE_CLOSEDIR.
16395         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
16396         * modules/sys_stat (Makefile.am): Substitute correct witness.
16397         * modules/dirent (Makefile.am): Likewise.
16398         * modules/unistd (Makefile.am): Likewise.
16399         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
16400         * lib/unistd.in.h (dup): Likewise.
16401         * lib/sys_stat.in.h (fstat): Likewise.
16402
16403         maint: ignore gnulib-tool temp files
16404         * .gitignore: Ignore files created during gnulib-tool --test.
16405
16406 2009-09-13  Jim Meyering  <meyering@redhat.com>
16407
16408         posixtm: don't reject a time that specify "60" as the number of seconds
16409         * lib/posixtm.c (posixtime): The code to reject invalid dates
16410         would also reject a time specified with the .60 suffix.
16411         But POSIX allows that, in order to accommodate leap seconds.
16412         So don't reject it.
16413         (main): Adjust tests accordingly.
16414         * modules/posixtm (Depends-on): Add stpcpy.
16415
16416 2009-09-11  Jim Meyering  <meyering@redhat.com>
16417
16418         announce-gen: include [$release_type] in emitted Subject:
16419         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
16420         e.g., [stable] in the emitted Subject: line.
16421
16422 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16423
16424         Remove obsolete macros from several modules.
16425         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
16426         obsolete Autoconf macros with their modern counterparts.
16427         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
16428         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
16429         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
16430         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
16431         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
16432         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
16433         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
16434         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
16435         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
16436         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
16437         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
16438         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
16439         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
16440         * m4/sockets.m4 (gl_SOCKETS): Likewise.
16441         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
16442         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
16443         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
16444         * m4/time_r.m4 (gl_TIME_R): Likewise.
16445         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
16446         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
16447         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
16448
16449         Fix copyright header in build-aux scripts.
16450         * build-aux/git-version-gen: Fix copyright header to match GPLv3
16451         recommendation.
16452         * build-aux/ncftpput-ftp: Likewise.
16453         * build-aux/update-copyright: Likewise.
16454
16455 2009-09-09  Eric Blake  <ebb9@byu.net>
16456
16457         test-link: allow Linux choice of errno
16458         * tests/test-link.c (main): Relax test for alternate error.
16459
16460         strndup: fix improper m4 caching
16461         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
16462         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
16463         (gl_PREREQ_STRNDUP): Delete.
16464         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
16465         * modules/string (Makefile.am): Substitute it.
16466         * lib/string.in.h (strndup): Modernize prototype.
16467
16468         getcwd: port to mingw
16469         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
16470         different from the POSIX assumptions made throughout the getcwd
16471         module; fortunately, the mingw getcwd does not need replacement.
16472         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
16473         * modules/getcwd-tests: New test.
16474         * tests/test-getcwd.c: Likewise.
16475
16476         link: fix platform bugs
16477         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
16478         * lib/link.c (link): Work around them.  Fix related mingw bug.
16479         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
16480         * modules/unistd (Makefile.am): Substitute it.
16481         * lib/unistd.in.h (link): Declare replacement.
16482         * doc/posix-functions/link.texi (link): Document this.
16483         * modules/link (Depends-on): Add strdup-posix, sys_stat.
16484
16485         test-link: consolidate into single C program, test more cases
16486         * tests/test-link.sh: Delete.
16487         * tests/test-link.c: Test more error conditions.  Exposes bugs on
16488         at least Cygwin and Solaris.
16489         * modules/link-tests (Files): Remove unused file.
16490         (Depends-on): Add errno, sys_stat.
16491         (Makefile.am): Simplify.
16492
16493 2009-09-08  Bruno Haible  <bruno@clisp.org>
16494
16495         Work around towlower, towupper bug on mingw.
16496         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
16497         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
16498         * doc/posix-functions/towlower.texi: Mention the mingw bug.
16499         * doc/posix-functions/towupper.texi: Likewise.
16500         Reported by Eric Blake.
16501
16502 2009-09-08  Jim Meyering  <meyering@redhat.com>
16503
16504         build: don't try to run autoheader if we don't use it
16505         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
16506         is not used in configure.ac.
16507
16508 2009-09-08  Eric Blake  <ebb9@byu.net>
16509
16510         euidaccess: fix compilation error
16511         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
16512
16513         rawmemchr: relax license
16514         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
16515         okay.
16516         Reported by Jim Meyering.
16517
16518         mkfifoat: new module
16519         * modules/mkfifoat: New file.
16520         * lib/mkfifoat.c: Likewise.
16521         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
16522         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
16523         * modules/sys_stat (Makefile.am): Use them.
16524         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
16525         * MODULES.html.sh (File system functions): Mention module.
16526         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
16527         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
16528         * modules/mkfifoat-tests: New test.
16529         * tests/test-mkfifoat.c: Likewise.
16530
16531         strchrnul: relax license
16532         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
16533         okay.
16534         Reported by Jim Meyering.
16535
16536 2009-09-08  Eric Blake  <ebb9@byu.net>
16537
16538         fstatat: fix compilation on Solaris
16539         * lib/fstatat.c (includes): Add fcntl.h.
16540         Reported by Pádraig Brady.
16541
16542 2009-09-07  Eric Blake  <ebb9@byu.net>
16543
16544         rename: modernize replacement
16545         * modules/rename (Depends-on): Add stdio.
16546         (configure.ac): Declare witness.
16547         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
16548         stdio take care of replacement.
16549         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
16550         * modules/stdio (Makefile.am): Substitute them.
16551         * lib/stdio.in.h (rename): Declare replacement.
16552         * lib/rename.c (includes): Allow cross-compilation to non-windows
16553         machines.
16554         * doc/posix-functions/rename.texi (rename): Improve
16555         documentation.
16556
16557         stdio: sort witness names
16558         * modules/stdio (Makefile.am): Sort replacements.
16559         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
16560         * lib/stdio.in.h: Likewise.
16561
16562         getcwd: minor cleanups
16563         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
16564         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
16565
16566         openat: provide more convenience names
16567         * modules/faccessat (configure.ac): Add C witness.
16568         * lib/unistd.in.h (readlinkat): Fix typo.
16569         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
16570         convenience wrappers.
16571         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
16572         wrappers in syntax checks.
16573
16574 2009-09-06  Eric Blake  <ebb9@byu.net>
16575
16576         doc: fix comments in recent patches
16577         * lib/faccessat.c: Mention correct function.
16578         * lib/fchmodat.c: Likewise.
16579         * lib/fchownat.c: Likewise.
16580         * lib/symlinkat.c: Likewise.
16581         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
16582         constants.
16583
16584         faccessat, symlinkat: continue cleanup of previous patch
16585         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
16586         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
16587         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
16588         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
16589         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
16590         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
16591         set.
16592
16593 2009-09-06  Bruno Haible  <bruno@clisp.org>
16594
16595         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
16596         (fstatat): Declare if GNULIB_FSTATAT is set.
16597         (mkdirat): Declare if GNULIB_MKDIRAT is set.
16598         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
16599         (unlinkat): Declare if GNULIB_UNLINKAT is set.
16600         * modules/fcntl-h (Files): Remove m4/openat.m4.
16601         * modules/sys_stat (Files): Remove m4/openat.m4.
16602         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
16603         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
16604         * modules/unistd (Files): Remove m4/openat.m4.
16605         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
16606         GNULIB_OPENAT.
16607         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
16608         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
16609         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
16610         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
16611         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
16612         gl_OPENAT_DEFAULTS.
16613         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
16614         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
16615         Don't require gl_OPENAT_DEFAULTS.
16616         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
16617         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
16618         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
16619         (gl_OPENAT_DEFAULTS): Remove macro.
16620
16621 2009-09-06  Bruno Haible  <bruno@clisp.org>
16622
16623         * modules/openat (configure.ac): Remove unneeded witness.
16624
16625 2009-09-06  Bruno Haible  <bruno@clisp.org>
16626
16627         Set errno to ENOSYS when a function is entirely unsupported.
16628         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
16629         EOPNOTSUPP.
16630         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
16631         * modules/chown (Depends-on): Remove errno.
16632
16633 2009-09-06  Bruno Haible  <bruno@clisp.org>
16634
16635         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
16636
16637 2009-09-06  Bruno Haible  <bruno@clisp.org>
16638
16639         * lib/sys_stat.in.h: Fix preprocessor command indentation.
16640
16641 2009-09-06  Ben Pfaff  <blp@gnu.org>
16642             Bruno Haible  <bruno@clisp.org>
16643
16644         Work around a glibc bug in strtok_r.
16645         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
16646         Undefine if UNDEFINE_STRTOK_R is set.
16647         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
16648         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
16649         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
16650         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
16651         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
16652         UNDEFINE_STRTOK_R.
16653         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
16654
16655 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
16656
16657         exclude: minor fix
16658         * lib/exclude.c: Include wctype.h
16659
16660 2009-09-06  Akim Demaille  <demaille@gostai.com>
16661
16662         bootstrap: improve error message
16663         * build-aux/bootstrap (find_tool): Upon failure, report the list
16664         of candidates.
16665         Honor the initial value of the envvar.
16666
16667 2009-09-05  Eric Blake  <ebb9@byu.net>
16668
16669         symlinkat: new module
16670         * modules/symlinkat: New file.
16671         * lib/symlinkat.c: Likewise.
16672         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
16673         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
16674         * modules/unistd (Makefile.am): Use them.
16675         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
16676         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
16677         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
16678         * MODULES.html.sh (File system functions): Mention module.
16679         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
16680         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
16681         * modules/symlinkat-tests: New test.
16682         * tests/test-symlinkat.c: Likewise.
16683
16684         test-openat-safer: add more checks
16685         * tests/test-openat-safer.c (main): Check more code paths.
16686
16687 2009-09-05  Jim Meyering  <meyering@redhat.com>
16688
16689         syntax-check: detect unnecessary inclusion of openat.h
16690         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
16691
16692 2009-09-05  Bruno Haible  <bruno@clisp.org>
16693
16694         Support towlower, towupper.
16695         * doc/posix-functions/towlower.texi: Mention module wctype.
16696         * doc/posix-functions/towupper.texi: Likewise.
16697         * lib/wctype.in.h (towlower, towupper): New functions.
16698         * tests/test-wctype.c: Include stdio.h, stdlib.h.
16699         (ASSERT): New macro.
16700         (e): New variable.
16701         (main): Test also towlower, towupper. Test WEOF argument.
16702         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
16703
16704 2009-09-05  Bruno Haible  <bruno@clisp.org>
16705
16706         Fix conversion behaviour when the input is invalid.
16707         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
16708         mark occurring in first pass of indirect conversion.
16709         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
16710         input.
16711         Found by clang's static analyzer.
16712
16713 2009-09-05  Bruno Haible  <bruno@clisp.org>
16714
16715         * tests/test-striconveh.c (main): Test indirect conversion on platforms
16716         where direct conversion is possible.
16717
16718 2009-09-04  Eric Blake  <ebb9@byu.net>
16719
16720         openat: fail with ENOENT on empty name
16721         * lib/openat-proc.c (openat_proc_name): Special-case the empty
16722         buffer.
16723
16724         link-follow: fix logic bug in prior patch
16725         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
16726         reversed sense of yes and no in prior patch.  Avoid confusing
16727         compilation failure with desired semantics.
16728
16729         link-follow: accomodate mingw and cross-compilation
16730         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
16731         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
16732         cross-compilation results to -1, to make linkat easier to
16733         implement when cross-compiling.  Trivially support mingw.
16734         * modules/link-follow (configure.ac): Call new name.
16735         * NEWS: Mention this.
16736
16737 2009-09-03  Eric Blake  <ebb9@byu.net>
16738
16739         faccessat: compile replacement
16740         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
16741         needed.
16742
16743         fts: fix compilation error
16744         * lib/fts.c (includes): Re-add "openat.h", for
16745         openat_needs_fchdir.
16746
16747         faccessat: new module
16748         * modules/faccessat: New file.
16749         * lib/faccessat.c: Likewise.
16750         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
16751         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
16752         * modules/unistd (Makefile.am): Use it.
16753         * lib/unistd.in.h (faccessat): Declare it.
16754         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
16755         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
16756         * MODULES.html.sh (File system functions): Mention it.
16757         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
16758         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
16759
16760         euidaccess: prefer POSIX over non-standard implementation
16761         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
16762         * lib/euidaccess.c (euidaccess): Use it if available.
16763
16764         openat: make template easier to use
16765         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
16766         AT_FUNC_F2 to be undefined.
16767         (VALIDATE_FLAG): New macro; use it to reject bad flags.
16768         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
16769         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
16770         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
16771         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
16772         Likewise.
16773         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
16774         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
16775         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
16776         Likewise.
16777
16778         openat: declare in POSIX headers
16779         * NEWS: Mention this.
16780         * modules/openat (configure.ac): Declare witnesses.
16781         (Depends-on): Add fcntl-h, sys_stat, unistd.
16782         (Include): Mention correct headers.
16783         * modules/fcntl-h (Depends-on): Add link-warning.
16784         (Files): Add openat.m4.
16785         (Makefile.am): Substitute witnesses.
16786         * modules/sys_stat (Files, Makefile.am): Likewise.
16787         * modules/unistd (Files, Makefile.am): Likewise.
16788         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
16789         (gl_OPENAT_DEFAULTS): New macro.
16790         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
16791         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
16792         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
16793         (SYS_STAT_H): Remove unused variable.
16794         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
16795         * lib/fcntl--.h (includes): Remove unneeded header.
16796         * lib/openat-safer.c (includes): Likewise.
16797         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
16798         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
16799         appropriate headers.
16800         (__OPENAT_PREFIX): Delete.
16801         * lib/fcntl.in.h (openat): Provide declaration.
16802         (AT_FDCWD): Fix Solaris bug.
16803         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
16804         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
16805         * lib/fchmodat.c (includes):  Adjust to find declaration.
16806         * lib/fchownat.c (includes): Likewise.
16807         * lib/mkdirat.c (includes): Likewise.
16808         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
16809         still visible.
16810
16811 2009-09-02  Eric Blake  <ebb9@byu.net>
16812
16813         errno: use consistently
16814         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
16815         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
16816         * lib/canonicalize.c (ELOOP): Likewise.
16817         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
16818         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
16819         * lib/lchown.c (EOPNOTSUPP): Likewise.
16820         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
16821         * lib/savewd.c (ESTALE): Likewise.
16822         * lib/settime.c (ENOSYS): Likewise.
16823         * lib/utimens.c (ENOSYS): Likewise.
16824         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
16825         * lib/chdir-safer.c (ELOOP): Likewise.
16826         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
16827         * modules/c-stack (Depends-on): Add errno.
16828         * modules/canonicalize (Depends-on): Likewise.
16829         * modules/chdir-safer (Depends-on): Likewise.
16830         * modules/fdopendir (Depends-on): Likewise.
16831         * modules/inet_ntop (Depends-on): Likewise.
16832         * modules/inet_pton (Depends-on): Likewise.
16833         * modules/lchown (Depends-on): Likewise.
16834         * modules/openat (Depends-on): Likewise.
16835         * modules/savewd (Depends-on): Likewise.
16836         * modules/settime (Depends-on): Likewise.
16837         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
16838
16839         fts: avoid leaking fds
16840         * modules/fts (Depends-on): Add cloexec.
16841         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
16842         flag.
16843
16844         fts: make directory fds more robust
16845         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
16846         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
16847
16848         backupfile, chdir-long, fts, savedir: make safer
16849         * lib/backupfile.c (includes): Use "dirent--.h", since
16850         numbered_backup can write to stderr during readdir.
16851         * lib/savedir.c (includes): Likewise.
16852         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
16853         emulation can write to stderr on failure.
16854         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
16855         * lib/getcwd.c: Document why opendir_safer is unused.
16856         * lib/glob.c: Likewise.
16857         * lib/scandir.c: Likewise.
16858         * lib/openat-proc.c: Likewise, for open_safer.
16859         * modules/backupfile (Depends-on): Add dirent-safer.
16860         * modules/savedir (Depends-on): Likewise.
16861         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
16862         * modules/chdir-long (Depends-on): Add openat-safer.
16863
16864         openat-safer: new module
16865         * modules/openat-safer: New file.
16866         * lib/openat-safer.c: Likewise.
16867         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
16868         * lib/fcntl-safer.h (openat_safer): Declare.
16869         * lib/fcntl--.h (openat): Override.
16870         * MODULES.html.sh (File descriptor based I/O): Mention it.
16871         * lib/openat.h: Add double-inclusion guards.
16872         * lib/openat.c (includes): Only include "fcntl-safer.h", not
16873         "fcntl--.h", so we can implement openat.
16874         * modules/openat-safer-tests: New test.
16875         * tests/test-openat-safer.c: New file.
16876
16877         dirent-safer: new module
16878         * modules/dirent-safer: New file.
16879         * lib/dirent--.h: Likewise.
16880         * lib/dirent-safer.h: Likewise.
16881         * lib/opendir-safer.c: Likewise.
16882         * m4/dirent-safer.m4: Likewise.
16883         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
16884         * modules/dirent-safer-tests: New test.
16885         * tests/test-dirent-safer.c: New file.
16886         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
16887
16888         fdopendir: optimize on mingw
16889         * lib/unistd.in.h (_gl_directory_name): New prototype.
16890         * lib/fchdir.c (_gl_directory_name): Implement it.
16891         (fchdir): Use it to simplify implementation.
16892         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
16893         fchdir, when available, to avoid calling [f]chdir().
16894
16895         fdopendir: split into its own module
16896         * lib/openat.c (fdopendir): Move...
16897         * lib/fdopendir.c: ...into new file.
16898         * modules/fdopendir: New module.
16899         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
16900         * modules/openat (Depends-on): Add fdopendir.
16901         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
16902         fdopendir here.
16903         * modules/savedir (Depends-on): Only need fdopendir, not full
16904         openat.
16905         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
16906         * lib/openat.h (fdopendir): Drop prototype.
16907         * lib/dirent.in.h (fdopendir): Provide prototype.
16908         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
16909         * modules/dirent (Makefile.am): Substitute them.
16910         * MODULES.html.sh (File system functions): Mention it.
16911         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
16912         * modules/fdopendir-tests: New file.
16913         * tests/test-fdopendir.c: Likewise.
16914
16915         fchdir: use more consistent macro convention
16916         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
16917         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
16918         REPLACE_FCHDIR, rather than relying on config.h macros.
16919         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
16920         inside a single make-time REPLACE_FCHDIR block, rather than using
16921         the config.h FCHDIR_REPLACEMENT.
16922         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
16923         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
16924         Manage fstat replacement.
16925         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
16926         REPLACE_FCHDIR.
16927         * modules/sys_stat (Files): Add m4/unistd_h.m4.
16928         (Makefile.am): Substitute REPLACE_FCHDIR.
16929         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
16930         FCHDIR_REPLACEMENT.
16931         * lib/dup-safer.c (dup_safer): Likewise.
16932         * lib/dup2.c (rpl_dup2): Likewise.
16933         * lib/dup3.c (rpl_dup3): Likewise.
16934         * lib/open.c (rpl_open): Likewise.
16935
16936         fchdir: simplify error handling, and support dup3
16937         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
16938         stdbool, malloc-posix, realloc-posix.
16939         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
16940         (ensure_dirs_slot): Return false on allocation failure.
16941         (rpl_dup2): Delete.
16942         (_gl_register_dup): New function.
16943         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
16944         (_gl_register_fd): Close fd on allocation failure.
16945         * lib/fcntl.in.h (_gl_register_fd): Update signature.
16946         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
16947         prototype.
16948         (rpl_dup2_fchdir): Delete prototype.
16949         * lib/open.c (open): Update caller.
16950         * lib/dup2.c (dup2): Track fchdir metadata.
16951         * lib/dup3.c (dup3): Likewise.
16952         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
16953         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
16954
16955 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16956
16957         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
16958         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
16959         don't pass arguments to AC_OUTPUT.
16960
16961 2009-09-02  Bruno Haible  <bruno@clisp.org>
16962
16963         * modules/mkdtemp (License): Relicense under LGPLv2+.
16964         Reported by Paolo Bonzini.
16965
16966 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16967
16968         Replace uses of obsolete autoconf macros in Jim's modules.
16969         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
16970         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
16971         can evoke a warning from autoconf when run with -Wobsolete
16972         enabled.  They were declared obsolete for good reasons (see
16973         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
16974         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
16975         should not continue using the deprecated macros.
16976         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
16977         obsolete Autoconf macros with modern counterparts.
16978         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
16979         * m4/dos.m4 (gl_AC_DOS): Likewise.
16980         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
16981         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
16982         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
16983         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
16984         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
16985         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
16986         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
16987         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
16988         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
16989         Likewise.
16990         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
16991         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
16992         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
16993         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
16994         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
16995         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
16996
16997 2009-09-01  Eric Blake  <ebb9@byu.net>
16998
16999         fchdir: fix off-by-one bug in previous patch
17000         * lib/fchdir.c (rpl_fstat): Use correct bounds.
17001         (_gl_unregister_fd): Delete useless if.
17002
17003 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
17004
17005         maint.mk: sort the list of syntax-check rules
17006         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
17007         easier to get a sense of progress when the rules are run sequentially
17008         and take a long time.
17009
17010 2009-09-01  Simon Josefsson  <simon@josefsson.org>
17011
17012         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
17013         * modules/netinet_in: Likewise.
17014         * modules/sys_file: Likewise.
17015         * modules/sys_ioctl: Likewise.
17016         * modules/sys_select: Likewise.
17017         * modules/sys_socket: Likewise.
17018         * modules/sys_stat: Likewise.
17019         * modules/sys_time: Likewise.
17020         * modules/sys_times: Likewise.
17021         * modules/sys_utsname: Likewise.
17022         * modules/sys_wait: Likewise.
17023
17024 2009-09-01  Jim Meyering  <meyering@redhat.com>
17025
17026         fts: help ensure that return values are not ignored
17027         * lib/fts_.h (__GNUC_PREREQ): Define.
17028         (__attribute_warn_unused_result__): Define.
17029         (fts_children, fts_close, fts_open, fts_read): Declare with
17030         __attribute_warn_unused_result__.
17031
17032         fts: fts_close now fails also when closing a dir file descriptor fails
17033         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
17034         and propagate to caller, along with errno.
17035
17036         announce-gen: correct formatting in --help output
17037         * build-aux/announce-gen (usage): Move the one-line description in
17038         --help output "up", to where it belongs, just after Usage:.
17039
17040 2009-08-31  Eric Blake  <ebb9@byu.net>
17041
17042         fchdir: port to mingw
17043         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
17044         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
17045         opened, then use a substitute.
17046         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
17047         replacement.
17048         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
17049         (_gl_register_fd): No need to check stat if open already filters
17050         all directories.
17051         (fchdir): Fix error condition to match POSIX.
17052         * modules/fchdir (Depends-on): Add sys_stat.
17053         * doc/posix-functions/open.texi (open): Document the limitation.
17054         * modules/fchdir-tests: New file.
17055         * tests/test-fchdir.c: Likewise.
17056
17057         canonicalize: allow cross-testing from cygwin to mingw
17058         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
17059         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
17060         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
17061         Likewise.
17062         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
17063         target does not support symlinks.
17064         * tests/test-canonicalize-lgpl.sh: Likewise.
17065
17066         chown: avoid compilation warning on mingw
17067         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
17068         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
17069         mingw.
17070         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
17071         * modules/chown (Depends-on): Add errno.
17072
17073 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
17074
17075         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
17076         command.
17077
17078 2009-08-31  Jim Meyering  <meyering@redhat.com>
17079
17080         canonicalize: remove useless initialization
17081         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
17082         initialization of local, "end".
17083
17084 2009-08-30  Bruno Haible  <bruno@clisp.org>
17085
17086         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
17087         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
17088         ENOSYS.
17089
17090 2009-08-30  Bruno Haible  <bruno@clisp.org>
17091
17092         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
17093         /usr/xpg4/bin/tr when it exists.
17094         * tests/test-pipe-filter-gi1.sh: Likewise.
17095
17096 2009-08-30  Bruno Haible  <bruno@clisp.org>
17097
17098         Work around deficient /usr/bin/id program on Solaris.
17099         * tests/test-file-has-acl.sh (ID): New variable.
17100         * tests/test-set-mode-acl.sh (ID): Likewise.
17101         * tests/test-copy-acl.sh (ID): Likewise.
17102         * tests/test-copy-file.sh (ID): Likewise.
17103
17104 2009-08-30  Bruno Haible  <bruno@clisp.org>
17105
17106         New module 'xstriconveh'.
17107         * lib/xstriconveh.h: New file.
17108         * lib/xstriconveh.c: New file.
17109         * modules/xstriconveh: New file.
17110
17111 2009-08-30  Bruno Haible  <bruno@clisp.org>
17112
17113         Make it easier to use mem_cd_iconveh.
17114         * lib/striconveh.h (iconveh_t): New type.
17115         (iconveh_open, iconveh_close): New declarations.
17116         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
17117         with a single 'const iconveh_t *' argument.
17118         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
17119         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
17120         with a single 'const iconveh_t *' argument.
17121         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
17122         * tests/test-striconveh.c (main): Update.
17123         * NEWS: Mention the change.
17124
17125 2009-08-30  Bruno Haible  <bruno@clisp.org>
17126
17127         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
17128         problem.
17129
17130 2009-08-30  Bruno Haible  <bruno@clisp.org>
17131
17132         Work around iconv_open problem on Solaris.
17133         * lib/iconv_open-solaris.gperf: New file.
17134         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
17135         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
17136         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
17137         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
17138         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
17139         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
17140
17141 2009-08-29  Jim Meyering  <meyering@redhat.com>
17142
17143         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
17144         * top/maint.mk (cvs-check): Remove target; it was just an alias
17145         to the better-named vc-diff-check.
17146         (maintainer-distcheck): Remove rule.  It was used only from
17147         the (alpha/beta/major) target, and all of its commands but one
17148         were coreutils-specific.
17149         (vc-dist): Remove rule.
17150         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
17151         Run vc-diff-check, not vc-dist.
17152         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
17153
17154 2009-08-27  Bruno Haible  <bruno@clisp.org>
17155
17156         * tests/test-bitrotate.c (main): Remove test that uses a shift count
17157         of 0.
17158
17159 2009-08-27  Bruno Haible  <bruno@clisp.org>
17160
17161         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
17162         compilers.
17163         * doc/func.texi: Document the SunPRO C bug.
17164
17165 2009-08-27  Bruno Haible  <bruno@clisp.org>
17166
17167         Fix link error on Solaris.
17168         * tests/test-parse-duration.c (xstrdup): Remove function.
17169
17170 2009-08-26  Pádraig Brady  <P@draigbrady.com>
17171
17172         ignore-value: handle pointer types, too
17173         * lib/ignore-value.h (__attribute__): Remove definition.
17174         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
17175         of a more concise and more-often effective "(void) i" statement.
17176         (ignore_ptr): New function to suppress warnings from functions that
17177         return pointers, and to make it explicit that one function doesn't
17178         handle all cases.
17179
17180 2009-08-25  Bruno Haible  <bruno@clisp.org>
17181
17182         dup2: work around a Linux bug.
17183         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
17184         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
17185         * doc/posix-functions/dup2.texi: Mention the Linux bug.
17186         Reported by Simon Josefsson.
17187
17188 2009-08-25  Jim Meyering  <meyering@redhat.com>
17189
17190         libguestfs uses gnulib
17191         * users.txt: Add libguestfs.
17192
17193 2009-08-24  Eric Blake  <ebb9@byu.net>
17194
17195         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
17196         * lib/pipe2.c (includes): Add binary-io.h.
17197         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
17198
17199 2009-08-24  Bruno Haible  <bruno@clisp.org>
17200
17201         Tolerate declared but missing accept4 syscall.
17202         * lib/accept4.c (accept4): Invoke original accept4 function first, if
17203         available.
17204         * lib/sys_socket.in.h (accept4): If the function is already present,
17205         override it.
17206         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
17207         * modules/accept4 (Makefile.am): Compile accept4.c always.
17208         Reported by Paolo Bonzini and Eric Blake.
17209
17210 2009-08-23  Bruno Haible  <bruno@clisp.org>
17211
17212         New module 'accept4'.
17213         * lib/sys_socket.in.h (accept4): New declaration.
17214         * lib/accept4.c: New file.
17215         * m4/accept4.m4: New file.
17216         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
17217         GNULIB_ACCEPT4, HAVE_ACCEPT4.
17218         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
17219         HAVE_ACCEPT4.
17220         * modules/accept4: New file.
17221         * doc/glibc-functions/accept4.texi: Mention the new module.
17222
17223 2009-08-24  Jim Meyering  <meyering@redhat.com>
17224
17225         progname: also set global program_invocation_name, when possible
17226         Before this change, a libtool-enabled program that calls glibc's
17227         error function would report the program name as
17228         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
17229         * modules/progname (configure.ac): Check for a declaration of
17230         program_invocation_name.
17231         * lib/progname.c:  Include <errno.h>.
17232         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
17233         Set program_invocation_name.
17234
17235 2009-08-23  Bruno Haible  <bruno@clisp.org>
17236
17237         * lib/dup3.c: Include <string.h>.
17238
17239 2009-08-23  Bruno Haible  <bruno@clisp.org>
17240
17241         * lib/dup3.c (dup3): Test only once whether the system actually exists.
17242         * lib/pipe2.c (pipe2): Likewise.
17243         Suggested by Eric Blake.
17244
17245 2009-08-23  Bruno Haible  <bruno@clisp.org>
17246
17247         Tolerate declared but missing dup3 syscall.
17248         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
17249         * lib/unistd.in.h (dup3): If the function is already present,
17250         override it.
17251         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
17252         * modules/dup3 (Makefile.am): Compile dup3.c always.
17253         Reported by Paolo Bonzini.
17254
17255 2009-08-23  Bruno Haible  <bruno@clisp.org>
17256
17257         Tolerate declared but missing pipe2 syscall.
17258         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
17259         available.
17260         * lib/unistd.in.h (pipe2): If the function is already present,
17261         override it.
17262         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
17263         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
17264         Reported by Paolo Bonzini.
17265
17266 2009-08-23  Bruno Haible  <bruno@clisp.org>
17267
17268         * lib/pipe2.c (pipe2): Move #ifs inside function.
17269
17270 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
17271
17272         quotearg: document limitations of quote_these_too
17273         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
17274         those limitations are created.
17275         * lib/quotearg.h (set_char_quoting): Document that digits and
17276         letters that are special after backslash are not permitted.
17277         (quotearg_char): Cross-reference set_char_quoting documentation.
17278
17279 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
17280
17281         quotearg: implement custom_quoting_style
17282         * lib/quotearg.c: (struct quoting_options): Add left_quote and
17283         right_quote fields.
17284         (set_custom_quoting): New public function.
17285         (quotearg_buffer_restyled): Add left_quote and right_quote
17286         arguments, handle them very much like locale quoting, and update
17287         all uses.
17288         (quotearg_n_custom): New public function.
17289         (quotearg_n_custom_mem): New public function.
17290         (quotearg_custom): New public function.
17291         (quotearg_custom_mem): New public function.
17292         * lib/quotearg.h: Prototype and document new public functions.
17293         (enum quoting_style): For escape_quoting_style and
17294         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
17295         ignored even though they're otherwise like c_quoting_style.
17296         Add custom_quoting_style member and document with comparison to
17297         clocale_quoting_style.
17298         * tests/test-quotearg.c (custom_quotes): New array.
17299         (custom_results): New array.
17300         (main): Extend to test custom quoting.
17301
17302 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
17303
17304         quotearg: fix right quote escaping when it's in quote_these_too
17305         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
17306         quote, be sure to prepend only one backslash.
17307         * tests/test-quotearg.c (use_quote_double_quotes): New function.
17308         (main): Test it.
17309
17310 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
17311
17312         quotearg-tests: test escaping of embedded locale quotes
17313         * tests/test-quotearg.c (struct result_strings): Add member for
17314         new input.
17315         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
17316         (inputs): Add new input.
17317         (results_g): Add expected results.
17318         (flag_results): Likewise.
17319         (locale_results): Likewise.
17320         (compare_strings): Check those.
17321
17322 2009-08-23  Bruno Haible  <bruno@clisp.org>
17323
17324         Tests for module 'dup3'.
17325         * modules/dup3-tests: New file.
17326         * tests/test-dup3.c: New file.
17327
17328         New module 'dup3'.
17329         * lib/unistd.in.h (dup3): New declaration.
17330         * lib/dup3.c: New file.
17331         * m4/dup3.m4: New file.
17332         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
17333         HAVE_DUP3.
17334         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
17335         * modules/dup3: New file.
17336         * doc/glibc-functions/dup3.texi: Mention the new module.
17337
17338 2009-08-23  Bruno Haible  <bruno@clisp.org>
17339
17340         Tweak the dup2 test.
17341         * tests/test-dup2.c (main): Create the test file empty. Verify that an
17342         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
17343         the test file is still empty. Fix argument order of lseek.
17344
17345 2009-08-23  Bruno Haible  <bruno@clisp.org>
17346
17347         Avoid test link errors when the modules getopt-gnu, gettext are used.
17348         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
17349         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
17350
17351 2009-08-23  Bruno Haible  <bruno@clisp.org>
17352
17353         Fix getdtablesize() on mingw.
17354         * lib/getdtablesize.c (getdtablesize): Implement differently.
17355         * lib/unistd.in.h (getdtablesize): Improve comment.
17356
17357 2009-08-23  Bruno Haible  <bruno@clisp.org>
17358
17359         New module 'mkostemp'.
17360         Based on Ulrich Drepper's 2007-08-10 change in glibc.
17361         * lib/stdlib.in.h (mksotemp): New declaration.
17362         * lib/mkostemp.c: New file, from glibc with modifications.
17363         * lib/tempname.h (GT_FILE): Remove outdated comment.
17364         (gen_tempname): Add flags argument.
17365         * lib/tempname.c (__GT_BIGFILE): Remove macro.
17366         (__GT_FILE): Map to 1.
17367         (small_open, large_open): Remove macros.
17368         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
17369         * lib/mkstemp.c (mkstemp): Update.
17370         * lib/mkdtemp.c (mkdtemp): Likewise.
17371         * m4/mkostemp.m4: New file.
17372         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
17373         HAVE_MKOSTEMP.
17374         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
17375         HAVE_MKOSTEMP.
17376         * modules/mkostemp: New file, based on modules/mkstemp.
17377         * doc/glibc-functions/mkostemp.texi: Mention the new module.
17378         * NEWS: Mention the change.
17379
17380 2009-08-23  Bruno Haible  <bruno@clisp.org>
17381
17382         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
17383         Reported by Eric Blake.
17384
17385 2009-08-23  Bruno Haible  <bruno@clisp.org>
17386
17387         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
17388         Reported by Eric Blake.
17389
17390 2009-08-23  Bruno Haible  <bruno@clisp.org>
17391
17392         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
17393         * modules/pipe2 (Depends-on): Likewise.
17394
17395 2009-08-23  Eric Blake  <ebb9@byu.net>
17396
17397         fcntl-h: add O_TTY_INIT support
17398         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
17399         * tests/test-fcntl-h.c (o): Test it.
17400         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
17401
17402         fcntl-h: rename from fcntl, in preparation for fcntl(2)
17403         * modules/fcntl: Move <fcntl.h> header replacement...
17404         * modules/fcntl-h: ...to new name, so as not to collide with
17405         like-named function.
17406         * tests/test-fcntl.c: Rename...
17407         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
17408         * modules/fcntl-tests: Rename...
17409         * modules/fcntl-h-tests: ...to this.  Update test file name.
17410         * modules/chdir-long (Depends-on): Update clients.
17411         * modules/chdir-safer (Depends-on): Likewise.
17412         * modules/fcntl-safer (Depends-on): Likewise.
17413         * modules/fts (Depends-on): Likewise.
17414         * modules/mkancesdirs (Depends-on): Likewise.
17415         * modules/mkdir-p (Depends-on): Likewise.
17416         * modules/open (Depends-on): Likewise.
17417         * modules/savewd (Depends-on): Likewise.
17418         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
17419         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
17420
17421 2009-08-22  Bruno Haible  <bruno@clisp.org>
17422
17423         * modules/binary-io (License): Relicense under LGPL.
17424         * modules/pipe2 (License): Likewise.
17425
17426 2009-08-22  Bruno Haible  <bruno@clisp.org>
17427
17428         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
17429         return value.
17430         * lib/pipe-filter-gi.c (filter_init): Likewise.
17431         Reported by Eric Blake.
17432
17433 2009-08-22  Bruno Haible  <bruno@clisp.org>
17434
17435         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
17436         * modules/pipe (Depends-on): Add pipe2.
17437
17438 2009-08-22  Bruno Haible  <bruno@clisp.org>
17439
17440         Tests for module 'pipe2'.
17441         * modules/pipe2-tests: New file.
17442         * tests/test-pipe2.c: New file.
17443
17444         New module 'pipe2'.
17445         * lib/unistd.in.h (pipe2): New declaration.
17446         * lib/pipe2.c: New file.
17447         * m4/pipe2.m4: New file.
17448         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
17449         HAVE_PIPE2.
17450         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
17451         * modules/pipe2: New file.
17452         * doc/glibc-functions/pipe2.texi: Mention the new module.
17453
17454 2009-08-22  Bruno Haible  <bruno@clisp.org>
17455
17456         Reference some new glibc functions.
17457         * doc/glibc-functions/accept4.texi: New file.
17458         * doc/glibc-functions/dup3.texi: New file.
17459         * doc/glibc-functions/mkostemp.texi: New file.
17460         * doc/glibc-functions/pipe2.texi: New file.
17461         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
17462         (Glibc sys/socket.h): Refer to accept4.
17463         (Glibc unistd.h): Refer to dup3, pipe2.
17464         Reported by Eric Blake.
17465
17466 2009-08-22  Jim Meyering  <meyering@redhat.com>
17467             Bruno Haible  <bruno@clisp.org>
17468
17469         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
17470         This makes it so packages using automake-1.11's silent-rules option
17471         can print e.g., a single "GEN    configmake.h" line, rather than
17472         the 30+ statements that perform the job.  If you want to see the
17473         actual commands, you can still run "make V=1".
17474         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
17475         so that make output is abbreviated when those variables are defined
17476         appropriately.
17477         * modules/argz: Likewise.
17478         * modules/arpa_inet: Likewise.
17479         * modules/byteswap: Likewise.
17480         * modules/configmake: Likewise.
17481         * modules/dirent: Likewise.
17482         * modules/errno: Likewise.
17483         * modules/fcntl: Likewise.
17484         * modules/float: Likewise.
17485         * modules/fnmatch: Likewise.
17486         * modules/getopt-posix: Likewise.
17487         * modules/glob: Likewise.
17488         * modules/iconv_open: Likewise.
17489         * modules/inttypes: Likewise.
17490         * modules/localcharset: Likewise.
17491         * modules/locale: Likewise.
17492         * modules/math: Likewise.
17493         * modules/netdb: Likewise.
17494         * modules/netinet_in: Likewise.
17495         * modules/poll: Likewise.
17496         * modules/posix_spawnp-tests: Likewise.
17497         * modules/sched: Likewise.
17498         * modules/search: Likewise.
17499         * modules/selinux-h: Likewise.
17500         * modules/signal: Likewise.
17501         * modules/spawn: Likewise.
17502         * modules/stdarg: Likewise.
17503         * modules/stdbool: Likewise.
17504         * modules/stddef: Likewise.
17505         * modules/stdint: Likewise.
17506         * modules/stdio: Likewise.
17507         * modules/stdlib: Likewise.
17508         * modules/string: Likewise.
17509         * modules/strings: Likewise.
17510         * modules/sys_file: Likewise.
17511         * modules/sys_ioctl: Likewise.
17512         * modules/sys_select: Likewise.
17513         * modules/sys_socket: Likewise.
17514         * modules/sys_stat: Likewise.
17515         * modules/sys_time: Likewise.
17516         * modules/sys_times: Likewise.
17517         * modules/sys_utsname: Likewise.
17518         * modules/sys_wait: Likewise.
17519         * modules/sysexits: Likewise.
17520         * modules/time: Likewise.
17521         * modules/unistd: Likewise.
17522         * modules/wchar: Likewise.
17523         * modules/wctype: Likewise.
17524
17525 2009-08-22  Jim Meyering  <meyering@redhat.com>
17526
17527         announce-gen: detect write failure
17528         * build-aux/announce-gen: Add Coda at end.
17529         Remove equivalent-but-more-verbose block at top.
17530
17531 2009-08-19  Akim Demaille  <demaille@gostai.com>
17532
17533         bootstrap: --help to stdout.
17534         * bootstrap (usage): Don't send --help to stderr.
17535         Use a here doc instead of a long string.
17536
17537 2009-08-21  Eric Blake  <ebb9@byu.net>
17538
17539         test-popen-safer: split from test-popen
17540         * tests/test-popen.c (main): Move...
17541         * tests/test-popen.h: ...into new file.
17542         * tests/test-popen-safer2.c: New file.
17543         * modules/popen-tests (Files): Add test-popen.h.
17544         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
17545         Suggested by Bruno Haible.
17546
17547         test-fcntl-safer: split from test-open
17548         * tests/test-open.c (main): Move...
17549         * tests/test-open.h: ...into new file.
17550         * tests/test-fcntl-safer.c: New file.
17551         * modules/open-tests (Files): Add test-open.h.
17552         * modules/fcntl-safer-tests: New file.
17553         Suggested by Bruno Haible.
17554
17555         test-fopen-safer: split from test-fopen
17556         * tests/test-fopen.c (main): Move...
17557         * tests/test-fopen.h: ...into new file.
17558         * tests/test-fopen-safer.c: New file.
17559         * modules/fopen-tests (Files): Add test-fopen.h.
17560         * modules/fopen-safer-tests: New file.
17561         Suggested by Bruno Haible.
17562
17563 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
17564
17565         popen-safer: test O_CLOEXEC at run-time.
17566         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
17567
17568 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
17569
17570         fcntl: move more flags to the header
17571         * lib/cloexec.c: Do not define FD_CLOEXEC here.
17572         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
17573         * lib/fcntl.in.h: Do both things here.
17574
17575 2009-08-21  Jim Meyering  <meyering@redhat.com>
17576
17577         consistently remove $@-t before redirecting to it
17578         * modules/argz: Remove $@-t and $@ before redirecting to the former.
17579         * modules/alloca-opt: Likewise.
17580         * modules/byteswap: Likewise.
17581         * modules/fnmatch: Likewise.
17582         * modules/getopt-posix: Likewise.
17583         * modules/glob: Likewise.
17584         * modules/poll: Likewise.
17585         * modules/posix_spawnp-tests: Likewise.
17586         * modules/sys_socket: Likewise.
17587         * modules/sysexits: Likewise.
17588
17589 2009-08-21  Eric Blake  <ebb9@byu.net>
17590
17591         popen: simplify access to original popen
17592         * lib/popen.c (rpl_popen): No need to worry about popen being a
17593         macro.
17594         Reported by Bruno Haible.
17595
17596 2009-08-20  Eric Blake  <ebb9@byu.net>
17597
17598         build: avoid some compiler warnings
17599         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
17600         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
17601         type.
17602         (new_exclude_segment, excluded_file_pattern_p)
17603         (excluded_file_name_p): Reduce scope.
17604         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
17605         old-style declaration.
17606
17607 2009-08-20  Simon Josefsson  <simon@josefsson.org>
17608
17609         * tests/test-exclude1.sh: Handle Windows EOL.
17610         * tests/test-exclude2.sh: Likewise.
17611         * tests/test-exclude3.sh: Likewise.
17612         * tests/test-exclude4.sh: Likewise.
17613         * tests/test-exclude5.sh: Likewise.
17614         * tests/test-exclude6.sh: Likewise.
17615         * tests/test-exclude7.sh: Likewise.
17616
17617 2009-08-19  Akim Demaille  <demaille@gostai.com>
17618
17619         bootstrap: find sha1sum when named gsha1sum.
17620         * bootstrap (find_tool): New.
17621         ($SHA1SUM): New.
17622         Use it.
17623
17624 2009-08-20  Jim Meyering  <meyering@redhat.com>
17625
17626         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
17627         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
17628         expression that converts "." in a file name to "\." in the resulting
17629         regexp.  Start with a dummy statement, so that prior shell variable
17630         definitions are expanded portably.  Reported by Simon Josefsson.
17631
17632 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
17633
17634         Fix polling for writeability of a screen buffer.
17635         * lib/poll.c: Distinguish input and screen buffers for the
17636         Win32 implementation.
17637         * lib/select.c: Likewise.
17638
17639 2009-08-19  Eric Blake  <ebb9@byu.net>
17640
17641         popen-safer: prevent popen from clobbering std descriptors
17642         * modules/popen-safer: New file.
17643         * lib/popen-safer.c: Likewise.
17644         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
17645         * lib/stdio--.h (popen): Provide override.
17646         * lib/stdio-safer.h (popen_safer): Provide declaration.
17647         * tests/test-popen.c (includes): Partially test this.
17648         * modules/popen-safer-tests: New file, for more tests.
17649         * tests/test-popen-safer.c: Likewise.
17650         * MODULES.html.sh (file stream based Input/Output): Mention it.
17651
17652         tests: test some of the *-safer modules
17653         * modules/fopen-safer (Depends-on): Add fopen.
17654         * modules/fcntl-safer (Depends-on): Add fcntl.
17655         * modules/stdlib-safer (Depends-on): Add stdlib.
17656         (configure.ac): Set indicator.
17657         * modules/unistd-safer (configure.ac): Likewise.
17658         * modules/tmpfile-safer (configure.ac): Likewise.
17659         (Depends-on): Add tmpfile.
17660         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
17661         active.
17662         * tests/test-fopen.c (includes): Test safer versions when they are
17663         in use.
17664         * tests/test-open.c (includes): Likewise.
17665
17666         popen: fix cygwin 1.5 bug when stdin closed
17667         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
17668         * modules/popen: New file.
17669         * modules/popen-tests: Likewise.
17670         * tests/test-popen.c: Likewise.
17671         * m4/popen.m4: Likewise.
17672         * lib/popen.c: Likewise.
17673         * lib/stdio.in.h (popen): New declaration.
17674         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
17675         * modules/stdio (Makefile.am): Likewise.
17676         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
17677
17678 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
17679
17680         maint.mk: give full control over update-copyright exclusions
17681         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
17682         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
17683         (update-copyright): Don't force inclusion of top-level
17684         ChangeLog.  Don't force exclusion of all COPYING files, but make
17685         them the default exclusion instead.
17686
17687 2009-08-16  Bruno Haible  <bruno@clisp.org>
17688
17689         Fix test failures on Solaris 10.
17690         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
17691         tests when Solaris iconv() is used.
17692         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
17693         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
17694         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
17695         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
17696         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
17697
17698 2009-08-16  Bruno Haible  <bruno@clisp.org>
17699
17700         Fix test failures on Solaris 10.
17701         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
17702         'tr' program and pass it as first argument.
17703         * tests/test-pipe-filter-gi1.sh: Likewise.
17704         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
17705         program as first argument.
17706         * tests/test-pipe-filter-gi1.c (main): Likewise.
17707
17708 2009-08-16  Eric Blake  <ebb9@byu.net>
17709
17710         fpurge: fix previous commits
17711         * modules/fpurge (Makefile.am): Make replacement conditional,
17712         partially reverting 2007-04-29 change; missed in previous
17713         attempt.
17714         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
17715         is missing.
17716
17717 2009-08-16  Bruno Haible  <bruno@clisp.org>
17718
17719         Clarify fpurge's effect on the file position.
17720         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
17721         * tests/test-fpurge.c (main): Make a second pass for checking the file
17722         position.
17723
17724 2009-08-16  Bruno Haible  <bruno@clisp.org>
17725
17726         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
17727         declaration of fpurge is missing.
17728         * tests/test-fpurge.c (main): Check that the file has not more contents
17729         than expected. Close the file before removing it.
17730
17731 2009-08-15  Eric Blake  <ebb9@byu.net>
17732
17733         fpurge: don't wrap working cygwin implementation
17734         * lib/fpurge.c (fpurge): Fix comment typo.
17735         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
17736         1.7 to avoid replacement.
17737         * tests/test-fpurge.c (main): Enhance test.
17738
17739 2009-08-15  Eric Blake  <ebb9@byu.net>
17740         and Jim Meyering  <meyering@redhat.com>
17741
17742         test-update-copyright: skip if perl is insufficient
17743         * tests/test-update-copyright.sh: Failure to run maintainer tool
17744         should not cause testsuite failure on cygwin 1.5.
17745
17746 2009-08-14  Eric Blake  <ebb9@byu.net>
17747
17748         doc: mention more functions added in cygwin 1.7.0
17749         * doc/posix-headers/limits.texi (limits.h): Update for recent
17750         cygwin additions.
17751         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
17752         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
17753         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
17754         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
17755         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
17756
17757 2009-08-14  Eric Blake  <ebb9@byu.net>
17758
17759         maint.mk: simplify update-copyright rule
17760         * top/maint.mk (update-copyright-local): Delete, and document how
17761         to do it in cfg.mk instead.
17762         (update-copyright-exclude-regexp): Delete, and document how to do
17763         it in .x-update-copyright instead.
17764         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
17765         exclude ChangeLog.
17766
17767 2009-08-14  Bruno Haible  <bruno@clisp.org>
17768
17769         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
17770
17771 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
17772
17773         maint.mk: support update-copyright-env
17774         * top/maint.mk (update-copyright-env): Define place-holder.
17775         (update-copyright): Expand $(update-copyright-env) before
17776         invoking update-copyright.
17777
17778 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
17779
17780         update-copyright: implement forced reformatting
17781         * build-aux/update-copyright: Implement and document
17782         UPDATE_COPYRIGHT_FORCE.
17783         * tests/test-update-copyright.sh: Test it.
17784
17785 2009-08-14  Eric Blake  <ebb9@byu.net>
17786         and Bruno Haible  <bruno@clisp.org>
17787
17788         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
17789         * tests/test-locale.c: Revert previous patch related to NULL.
17790         * tests/test-stdio.c: Likewise.
17791         * tests/test-stdlib.c: Likewise.
17792         * tests/test-string.c: Likewise.
17793         * tests/test-unistd.c: Likewise.
17794         * modules/time-tests (Depends-on): Add verify.
17795         * modules/wchar-tests (Depends-on): Likewise.
17796         * tests/test-time.c: Test for NULL compliance.
17797         * tests/test-wchar.c: Likewise.
17798         * modules/locale (Depends-on): Add stddef.
17799         * modules/stdio (Depends-on): Likewise.
17800         * modules/stdlib (Depends-on): Likewise.
17801         * modules/string (Depends-on): Likewise.
17802         * modules/time (Depends-on): Likewise.
17803         * modules/unistd (Depends-on): Likewise.
17804         * modules/wchar (Depends-on): Likewise.
17805         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
17806         * lib/stdlib.in.h (includes): Likewise.
17807         * lib/string.in.h (includes): Likewise.
17808         * lib/time.in.h (includes): Likewise.
17809         * lib/unistd.in.h (includes): Likewise.
17810         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
17811         replaced.
17812         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
17813         * m4/stddef_h.m4: New file.
17814         * modules/stddef: Likewise.
17815         * lib/stddef.in.h: Likewise.
17816         * modules/stddef-tests: Likewise.
17817         * tests/test-stddef.c: Likewise.
17818         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
17819         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
17820         * doc/posix-headers/locale.texi (locale.h): Likewise.
17821         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
17822         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
17823         * doc/posix-headers/string.texi (string.h): Likewise.
17824         * doc/posix-headers/time.texi (time.h): Likewise.
17825         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
17826         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
17827
17828 2009-08-14  Eric Blake  <ebb9@byu.net>
17829
17830         doc: improve git diff of texinfo files
17831         * .gitattributes: Add rule for *.texi files, with hint on how to
17832         use it.
17833         Copied from m4, and based on a report by Bruno Haible.
17834
17835 2009-08-14  Bruno Haible  <bruno@clisp.org>
17836
17837         Disable multithread support by default on Cygwin 1.5.x for real.
17838         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
17839
17840 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
17841
17842         update-copyright: much ado about intervals
17843         * build-aux/update-copyright: Implement and document
17844         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
17845         of copyright year intervals.
17846         Also, document UPDATE_COPYRIGHT_YEAR.
17847         * tests/test-update-copyright.sh: Test it.
17848
17849         update-copyright: convert 2-digit to 4-digit years
17850         * build-aux/update-copyright: Implement and document.
17851         * tests/test-update-copyright.sh: Update.
17852
17853 2009-08-14  Jim Meyering  <meyering@redhat.com>
17854
17855         test-exclude: avoid coreutils "make check" failure
17856         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
17857         just as in test-argmatch.c.
17858
17859 2009-08-13  Eric Blake  <ebb9@byu.net>
17860
17861         test-dup2: fix bad assumption
17862         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
17863         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
17864
17865         test-version-etc: fix CRLF portability issue
17866         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
17867         recognize \r.
17868         * tests/test-argp-version-etc-1.sh: Likewise.
17869
17870         getopt: update client modules
17871         * modules/argp (Depends-on): Use getopt-gnu.
17872         * modules/git-merge-changelog (Depends-on): Likewise.
17873         * modules/long-options (Depends-on): Likewise.
17874         * modules/xstrtol (Depends-on): Likewise.
17875
17876 2009-08-13  Simon Josefsson  <simon@josefsson.org>
17877
17878         * tests/test-version-etc.sh: Don't fail on different
17879         project/version.  Don't fail on CRLF differences.  Rewrite to use
17880         multiple -e instead of multiple sed forks, suggested by Eric Blake
17881         <ebb9@byu.net>.
17882         * tests/test-argp-version-etc-1.sh: Likewise.
17883
17884 2009-08-13  Simon Josefsson  <simon@josefsson.org>
17885
17886         * tests/test-version-etc.sh: Don't fail on different
17887         project/version.
17888
17889 2009-08-12  Bruno Haible  <bruno@clisp.org>
17890
17891         Tests for modules 'getopt-posix', 'getopt-gnu'.
17892         * modules/getopt-posix-tests: New file.
17893         * tests/test-getopt.c: New file.
17894         * tests/test-getopt.h: New file.
17895         * tests/test-getopt_long.h: New file.
17896
17897         New modules 'getopt-posix', 'getopt-gnu'.
17898         * modules/getopt-gnu: New file, renamed from modules/getopt.
17899         * modules/getopt-posix: New file.
17900         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
17901         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
17902         (gl_GETOPT): Remove macro.
17903         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
17904         Disable the test against BSD systems that declare optreset. Test
17905         against mingw bug. Test against lack of support of optional arguments
17906         on many platforms.
17907         * doc/glibc-headers/getopt.texi: Update module name and list of
17908         relevant platforms.
17909         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
17910         'getopt-gnu' and more portability problems.
17911         * NEWS: Mention the changes.
17912
17913 2009-08-12  Bruno Haible  <bruno@clisp.org>
17914
17915         Ensure that optarg etc. get declared by <unistd.h>.
17916         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
17917         AC_USE_SYSTEM_EXTENSIONS.
17918         * modules/getopt (Depends-on): Add 'extensions'.
17919
17920 2009-08-12  Bruno Haible  <bruno@clisp.org>
17921
17922         Avoid test link errors.
17923         * modules/pipe-filter-ii-tests (Makefile.am): Define
17924         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
17925         * modules/pipe-filter-gi-tests (Makefile.am): Define
17926         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
17927         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
17928
17929 2009-08-12  Bruno Haible  <bruno@clisp.org>
17930
17931         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
17932         gl_GETOPT_SUBSTITUTE before.
17933         (gl_GETOPT): Use it.
17934         * m4/argp.m4 (gl_ARGP): Update.
17935         Reported by Sergey Poznyakoff.
17936
17937         * m4/getopt.m4: Reorder macros.
17938         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
17939         (gl_GETOPT_SUBSTITUTE): Remove macro.
17940
17941 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
17942
17943         Minor improvement in gitlog-to-changelog
17944
17945         * build-aux/gitlog-to-changelog: New option `--format' makes
17946         output format string configurable.
17947
17948 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
17949
17950         Optimize exclude: use hash tables for non-wildcard patterns.
17951
17952         * lib/exclude.c: Include hash.h and mbuiter.h
17953         (struct exclude_pattern, exclude_segment): New data types.
17954         (struct exclude): Rewrite.
17955         (fnmatch_pattern_has_wildcards): New function.
17956         (new_exclude_segment, free_exclude_segment): New functions.
17957         (excluded_file_pattern_p, excluded_file_name_p): New functions.
17958         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
17959         * lib/exclude.h (is_fnmatch_pattern): New prototype.
17960         * modules/exclude: Depend on hash and mbuiter.
17961
17962         * modules/exclude-tests: New file.
17963         * tests/test-exclude.c: New file.
17964         * tests/test-exclude1.sh: New file.
17965         * tests/test-exclude2.sh: New file.
17966         * tests/test-exclude3.sh: New file.
17967         * tests/test-exclude4.sh: New file.
17968         * tests/test-exclude5.sh: New file.
17969         * tests/test-exclude6.sh: New file.
17970         * tests/test-exclude7.sh: New file.
17971
17972 2009-08-12  Bruno Haible  <bruno@clisp.org>
17973
17974         Ensure that getopt() gets declared by <unistd.h>.
17975         * lib/unistd.in.h: Conditionally include getopt.h.
17976         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
17977         Set GNULIB_UNISTD_H_GETOPT.
17978         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
17979         GNULIB_UNISTD_H_GETOPT.
17980         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
17981
17982 2009-08-12  Bruno Haible  <bruno@clisp.org>
17983
17984         Clarify logic.
17985         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
17986         gl_replace_getopt instead of GETOPT_H.
17987
17988 2009-08-12  Bruno Haible  <bruno@clisp.org>
17989
17990         * m4/getopt.m4: Add comments.
17991
17992 2009-08-12  Bruno Haible  <bruno@clisp.org>
17993
17994         Disable multithread support by default on Cygwin 1.5.x.
17995         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
17996         set gl_use_threads=no if not specified otherwise.
17997
17998 2009-08-11  Bruno Haible  <bruno@clisp.org>
17999
18000         Avoid compilation error on NetBSD 5.0.
18001         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
18002         * tests/test-stdio.c: Likewise.
18003         * tests/test-stdlib.c: Likewise.
18004         * tests/test-string.c: Likewise.
18005         * tests/test-unistd.c: Likewise.
18006         Reported by Greg Troxel <gdt@ir.bbn.com>
18007         at <https://savannah.gnu.org/support/?106973>.
18008
18009 2009-08-11  Bruno Haible  <bruno@clisp.org>
18010
18011         * modules/dup2-tests (Depends-on): Remove close.
18012
18013         Undo 2009-07-19 commit.
18014         * modules/acl-tests (Depends-on): Remove close.
18015         * modules/binary-io-tests (Depends-on): Likewise.
18016         * modules/closein-tests (Depends-on): Likewise.
18017         * modules/flock-tests (Depends-on): Likewise.
18018         * modules/fsync-tests (Depends-on): Likewise.
18019         * modules/lseek-tests (Depends-on): Likewise.
18020         * modules/pipe-tests (Depends-on): Likewise.
18021         * modules/posix_spawn-tests (Depends-on): Likewise.
18022         * modules/posix_spawnp-tests (Depends-on): Likewise.
18023         * modules/stat-time-tests (Depends-on): Likewise.
18024         * modules/yesno-tests (Depends-on): Likewise.
18025
18026 2009-08-10  Bruno Haible  <bruno@clisp.org>
18027
18028         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
18029
18030 2009-08-10  Bruno Haible  <bruno@clisp.org>
18031
18032         Fix a gcc warning.
18033         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
18034
18035 2009-08-10  Bruno Haible  <bruno@clisp.org>
18036
18037         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
18038         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
18039         not only the first time.
18040         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
18041         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
18042         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
18043         is 1, not only the the first time.
18044
18045 2009-08-10  Bruno Haible  <bruno@clisp.org>
18046
18047         Make it possible to use module 'gethostname' without module 'close'.
18048         * lib/unistd.in.h (close): Evoke a link error only if
18049         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
18050         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
18051         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
18052         * modules/unistd (Makefile.am): Substitute
18053         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
18054         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
18055         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
18056         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
18057         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
18058         * modules/sys_ioctl (Makefile.am): Substitute
18059         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
18060         * modules/socket (configure.ac): On native Windows, set
18061         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
18062         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
18063         Reported by Sam Steingold <sds@gnu.org>.
18064
18065 2009-08-10  Bruno Haible  <bruno@clisp.org>
18066
18067         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
18068         * modules/ioctl (configure.ac): Likewise.
18069
18070 2009-08-10  Bruno Haible  <bruno@clisp.org>
18071
18072         Avoid collision between gnulib wrapper and libintl wrapper.
18073         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
18074         already defined in intl/printf.c.
18075         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
18076         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
18077
18078 2009-08-09  Bruno Haible  <bruno@clisp.org>
18079
18080         Make <sys/select.h> really self-contained, also on Solaris 10.
18081         * lib/sys_select.in.h: Include <string.h>.
18082         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
18083         Solaris 10 problem.
18084         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
18085         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
18086         Reported by Jim Meyering.
18087
18088 2009-08-09  Bruno Haible  <bruno@clisp.org>
18089
18090         Avoid warnings from 'aclocal' that are due to a use of macro name
18091         AM_XGETTEXT_OPTION that is not defined in automake.
18092         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
18093         automake.
18094         * modules/error (configure.ac): Likewise.
18095         * modules/propername (configure.ac): Likewise.
18096         * modules/vasprintf (configure.ac): Likewise.
18097         * modules/verror (configure.ac): Likewise.
18098         * modules/xprintf (configure.ac): Likewise.
18099         * modules/xvasprintf (configure.ac): Likewise.
18100
18101 2009-08-08  Bruno Haible  <bruno@clisp.org>
18102
18103         Avoid compilation error in C++ mode.
18104         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
18105         Reported by Sam Steingold <sds@gnu.org>.
18106
18107 2009-08-08  Bruno Haible  <bruno@clisp.org>
18108
18109         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
18110         for the various Unix platforms.
18111         * doc/posix-headers/limits.texi: Update platforms list regarding
18112         HOST_NAME_MAX.
18113         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
18114
18115 2009-08-07  Jim Meyering  <meyering@redhat.com>
18116
18117         selinux-at: fix typo in a comment
18118         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
18119         Spotted by Paolo Bonzini.
18120
18121         selinux-at: remove redundant m4 code, add documentation
18122         * modules/selinux-at (configure.ac): Remove redundant code.
18123         LIB_SELINUX is already set via the dependent module, selinux-h.
18124         (Include): Add quotes around selinux-at.h.
18125         * lib/selinux-at.h: Add documentation.
18126         Reported by Bruno Haible in
18127         http://marc.info/?l=gnulib-bug&m=124958988300749
18128
18129 2009-08-07  Bruno Haible  <bruno@clisp.org>
18130
18131         Avoid link error on MacOS X 10.3 and 10.4.
18132         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
18133         on non-ELF systems.
18134         * lib/argp-pv.c (argp_program_version): Likewise.
18135         Reported by Simon Josefsson.
18136
18137 2009-08-07  Simon Josefsson  <simon@josefsson.org>
18138
18139         * tests/test-version-etc.sh: Use $EXEEXT.
18140
18141 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
18142
18143         update-copyright: update documentation to point to maint.mk
18144         * build-aux/update-copyright: Here.
18145
18146 2009-08-06  Jim Meyering  <meyering@redhat.com>
18147
18148         maint.mk: support update-copyright-local
18149         * top/maint.mk (update-copyright-local): Define place-holder.
18150         (update-copyright): Depend on $(update-copyright-local).
18151
18152 2009-08-06  Jim Meyering  <meyering@redhat.com>
18153
18154         selinux-at: new module
18155         Initially written for coreutils, this module will soon be
18156         used by findutils, too.
18157         * MODULES.html.sh [Misc]: Add selinux-at.
18158         * lib/selinux-at.h: New file, from coreutils.
18159         * lib/selinux-at.c: Likewise.
18160         * modules/selinux-at: Likewise.
18161         (License): Change from LGPL to GPL, since it depends
18162         on the GPL'd openat module.
18163
18164         doc: update README
18165         * README: Remove references to cogito.
18166         Remove cvs-repo-updating instructions from 2007.
18167         Don't imply that CVS is better if you have limited disk space.
18168
18169 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
18170
18171         update-copyright: support C-style comments
18172         * build-aux/update-copyright: Implement and document.
18173         * tests/test-update-copyright.sh: Test.
18174
18175 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
18176
18177         update-copyright: support omitted "(C)"
18178         * build-aux/update-copyright: Implement and document.  Also,
18179         allow variable whitespace before "(C)".
18180         * tests/test-update-copyright.sh: Test.
18181
18182 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
18183
18184         update-copyright: don't trip on non-FSF copyright statements
18185         * build-aux/update-copyright: Fix so that the first correctly
18186         formatted FSF copyright statement is recognized no matter what
18187         appears before it.  Update documentation.
18188         * tests/test-update-copyright.sh: Test that.
18189
18190 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
18191
18192         update-copyright: clean up code a little
18193         * build-aux/update-copyright: Append "_re" to the name of any
18194         variable holding a regular expression.
18195         Replace "old" and "new" with "stmt" in variable names.
18196         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
18197         handled correctly.
18198         Format code more consistently.
18199
18200 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
18201
18202         update-copyright-tests: improve portability
18203         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
18204         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
18205
18206 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
18207
18208         update-copyright: support @copyright{} and &copy;
18209         * build-aux/update-copyright: Implement and document.
18210         * tests/test-update-copyright.sh: Test.
18211
18212 2009-08-04  Jim Meyering  <meyering@redhat.com>
18213
18214         update-copyright-tests: correctly test EOL=\r\n handling
18215         * tests/test-update-copyright.sh: Put \r at the end of some lines
18216         for the dos-eol tests.  Based on a patch by Joel E. Denny.
18217
18218         maint.mk: make update-copyright exclusion list more configurable
18219         * top/maint.mk (update-copyright): Default to excluding COPYING,
18220         but allow an override, in case someone does want to update that file.
18221
18222         maint.mk: don't update copyright date in COPYING
18223         * top/maint.mk (update-copyright): Exclude COPYING.
18224
18225         maint.mk: add a copyright-updating rule
18226         * top/maint.mk (update-copyright): New rule.
18227         Derived from coreutils/Makefile.am.
18228
18229         update-copyright: rename some variables
18230         * build-aux/update-copyright: Rename a few variables for clarity.
18231         Tweak syntax.  List Joel E. Denny as coauthor.
18232
18233 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
18234
18235         update-copyright: fix bug for 2-digit last year and add tests
18236         * build-aux/update-copyright: Fix bug.
18237         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
18238         specified.
18239         * modules/update-copyright-tests: New
18240         * tests/test-update-copyright.sh: New.
18241
18242 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
18243
18244         update-copyright: handle leading tabs in line prefix
18245         * build-aux/update-copyright: Count leading tabs as 8 spaces
18246         when computing margin.  This helps with the formatting of
18247         ChangeLogs, for example.
18248         Fix documentation a little.
18249
18250 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
18251
18252         update-copyright: support EOL=\r\n
18253         * build-aux/update-copyright: Implement that.
18254
18255 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
18256
18257         update-copyright: automatically format copyright statements
18258         * build-aux/update-copyright: Implement that.
18259         Also, be a little more predictable and safer by always failing
18260         when the full copyright format is not perfectly recognized as an
18261         unbroken whole.  Discussed at
18262         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
18263         Rewrite documentation.
18264
18265 2009-08-03  Bruno Haible  <bruno@clisp.org>
18266
18267         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
18268
18269 2009-08-02  Bruno Haible  <bruno@clisp.org>
18270
18271         Tests for module 'uname'.
18272         * modules/uname-tests: New file.
18273         * tests/test-uname.c: New file.
18274
18275         New module 'uname'.
18276         * lib/uname.c: New file.
18277         * m4/uname.m4: New file.
18278         * modules/uname: New file.
18279         * doc/posix-functions/uname.texi: Mention the new module.
18280
18281 2009-08-02  Bruno Haible  <bruno@clisp.org>
18282
18283         Tests for module 'sys_utsname'.
18284         * modules/sys_utsname-tests: New file.
18285         * tests/test-sys_utsname.c: New file.
18286
18287         New module 'sys_utsname'.
18288         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
18289         * m4/sys_utsname_h.m4: New file.
18290         * modules/sys_utsname: New file.
18291         * doc/posix-headers/sys_utsname.texi: Mention the new module.
18292
18293 2009-08-02  Bruno Haible  <bruno@clisp.org>
18294
18295         Implicitly initialize the sockets library.
18296         * lib/gethostname.c: Include sockets.h.
18297         (rpl_gethostname): Invoke gl_sockets_startup.
18298         * lib/socket.c: Include sockets.h.
18299         (rpl_socket): Invoke gl_sockets_startup.
18300         * modules/gethostname (Depends-on): Add sockets.
18301         * modules/socket (Depends-on): Likewise.
18302         * tests/test-poll.c: Don't include sockets.h.
18303         (main): Don't invoke gl_sockets_startup.
18304         * tests/test-select.c: Don't include sockets.h.
18305         (main): Don't invoke gl_sockets_startup.
18306
18307 2009-08-02  Bruno Haible  <bruno@clisp.org>
18308
18309         Allow multiple calls to gl_sockets_startup.
18310         * lib/sockets.c (initialized_sockets_version): New variable.
18311         (gl_sockets_startup): Do nothing if already called for this or a higher
18312         version.
18313         (gl_sockets_cleanup): Reset initialized_sockets_version.
18314
18315 2009-08-03  Simon Josefsson  <simon@josefsson.org>
18316
18317         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
18318         different project/version.
18319
18320 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
18321             Bruno Haible  <bruno@clisp.org>
18322
18323         Tests for module 'pipe-filter-gi'.
18324         * modules/pipe-filter-gi-tests: New file.
18325         * tests/test-pipe-filter-gi1.sh: New file.
18326         * tests/test-pipe-filter-gi1.c: New file.
18327         * tests/test-pipe-filter-gi2.sh: New file.
18328         * tests/test-pipe-filter-gi2-main.c: New file.
18329         * tests/test-pipe-filter-gi2-child.c: New file.
18330
18331         New module 'pipe-filter-gi'.
18332         * lib/pipe-filter-gi.c: New file.
18333         * modules/pipe-filter-gi: New file.
18334
18335 2009-08-02  Bruno Haible  <bruno@clisp.org>
18336             Paolo Bonzini  <bonzini@gnu.org>
18337
18338         Tests for module 'pipe-filter-ii'.
18339         * modules/pipe-filter-ii-tests: New file.
18340         * tests/test-pipe-filter-ii1.sh: New file.
18341         * tests/test-pipe-filter-ii1.c: New file.
18342         * tests/test-pipe-filter-ii2.sh: New file.
18343         * tests/test-pipe-filter-ii2-main.c: New file.
18344         * tests/test-pipe-filter-ii2-child.c: New file.
18345
18346         New module 'pipe-filter-ii'.
18347         * lib/pipe-filter.h: New file.
18348         * lib/pipe-filter-ii.c: New file.
18349         * lib/pipe-filter-aux.h: New file.
18350         * modules/pipe-filter-ii: New file.
18351
18352 2009-08-02  Simon Josefsson  <simon@josefsson.org>
18353
18354         * lib/gc-libgcrypt.c: Change copyright to FSF.
18355         * lib/gc-gnulib.c: Likewise.
18356
18357 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
18358
18359         * lib/gethostname.c: Include limits.h.
18360
18361 2009-08-02  Simon Josefsson  <simon@josefsson.org>
18362             Bruno Haible  <bruno@clisp.org>
18363
18364         Ensure HOST_NAME_MAX as part of the gethostname module.
18365         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
18366         define also HOST_NAME_MAX.
18367         * tests/test-gethostname.c: Include <limits.h>.
18368         (main): Check also HOST_NAME_MAX.
18369         * doc/posix-headers/limits.texi: Document the mingw problem.
18370
18371 2009-08-02  Bruno Haible  <bruno@clisp.org>
18372
18373         * lib/gethostname.c (gethostname): Fix handling of large len argument.
18374         Add comments.
18375
18376 2009-03-31  Simon Josefsson  <simon@josefsson.org>
18377
18378         * lib/gethostname.c: Add Windows wrapper.
18379         * m4/gethostname.m4: Look for gethostname in -lws2_32.
18380         * modules/gethostname: Depend on sys_socket & errno, for also
18381         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
18382         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
18383
18384 2009-07-31  Jim Meyering  <meyering@redhat.com>
18385
18386         getloadavg: fix symbol name in comment
18387         * lib/getloadavg.c: Correct a typo I introduced when adding
18388         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
18389         Matt Kraai spotted the problem.
18390
18391 2009-07-29  Matt Kraai  <mkraai@beckman.com>
18392
18393         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
18394         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
18395         code also if ! defined N_NAME_POINTER.
18396         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
18397         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
18398         but the n_name member is a 12-byte array.
18399
18400 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
18401
18402         update-copyright: generalize comment handling
18403         * build-aux/update-copyright: Handle copyright statements
18404         within more comment styles.
18405         Document usage.
18406         Report any file with an external copyright holder or parse failure.
18407
18408 2009-07-29  Jim Meyering  <meyering@redhat.com>
18409
18410         mktime: correct setting of REPLACE_MKTIME
18411         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
18412
18413         update-copyright: new module
18414         * modules/update-copyright: New file.
18415         * build-aux/update-copyright: New file.
18416         * MODULES.html.sh (maint+release support): Add update-copyright.
18417
18418 2009-07-27  Bruno Haible  <bruno@clisp.org>
18419
18420         Fix compilation error when <ctime> is used and mktime is replaced.
18421         * lib/time.in.h (mktime): New declaration.
18422         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
18423         REPLACE_MKTIME instead of defining mktime in config.h.
18424         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
18425         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
18426         Reported by Ross McFarland <rwmcfa1@neces.com>.
18427
18428 2009-07-27  Bruno Haible  <bruno@clisp.org>
18429
18430         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
18431         Reported by Matt Kraai <mkraai@beckman.com>.
18432
18433 2009-07-25  Jim Meyering  <meyering@redhat.com>
18434
18435         maint.mk: avoid warnings about missing files
18436         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
18437         diagnostic when .prev-version does not exist.
18438         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
18439         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
18440         nonexistent cfg.mk.
18441         Suggestions from Simon Josefsson.
18442
18443 2009-07-25  Bruno Haible  <bruno@clisp.org>
18444
18445         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
18446         defined as macros. Needed on QNX 6.4.1.
18447         Reported by Matt Kraai <mkraai@beckman.com>.
18448
18449 2009-07-23  Jim Meyering  <meyering@redhat.com>
18450
18451         maint.mk: invoke "make dist" with a working value of XZ_OPT
18452         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
18453
18454 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
18455
18456         Make fseeko.c compile on QNX.
18457         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
18458
18459 2009-07-22  Peter Simons  <simons@cryp.to>
18460
18461         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
18462         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
18463         * lib/md4.h: Likewise.
18464         * lib/md5.h: Likewise.
18465         * lib/sha1.h: Likewise.
18466         * lib/sha256.h: Likewise.
18467         * lib/sha512.h: Likewise.
18468
18469         tests-sha1: don't assign literal string to 'char *' variable
18470         * tests/test-sha1.c (main): Declare locals with "const" to match
18471         attributes of the right hand side.
18472
18473 2009-07-21  Eric Blake  <ebb9@byu.net>
18474
18475         dup2: fix more mingw problems
18476         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
18477         fd to itself.
18478         * doc/posix-functions/dup2.texi (dup2): Document the bug.
18479         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
18480         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
18481         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
18482         care of mingw bugs.
18483
18484 2009-07-21  Jim Meyering  <meyering@redhat.com>
18485
18486         vc-list-files: avoid failure when /bin/sh is dash
18487         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
18488         On some Debian based systems, /bin/sh is a symlink to dash, and running
18489         this command would omit the "/" following each 'tests' prefix:
18490           dash -x build-aux/vc-list-files -C . tests
18491         That is because bash and dash work differently:
18492           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
18493           bash ok
18494           dash odd
18495
18496 2009-07-21  Eric Blake  <ebb9@byu.net>
18497
18498         dup2-tests: test previous patch
18499         * modules/dup2-tests: New file.
18500         * tests/test-dup2.c: Likewise.
18501         * tests/test-open.c (main): Avoid unspecified behavior.
18502         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
18503         test.
18504
18505         dup2: work around mingw and cygwin 1.5 bug
18506         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
18507         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
18508         * modules/unistd (Makefile.am): Substitute it.
18509         * lib/unistd.in.h (dup2): Declare the replacement.
18510         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
18511         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
18512         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
18513         * modules/execute (Depends-on): Add dup2.
18514         * modules/fseterr (Depends-on): Likewise.
18515         * modules/pipe (Depends-on): Likewise.
18516         * modules/posix_spawn-internal (Depends-on): Likewise.
18517
18518 2009-07-21  Bruno Haible  <bruno@clisp.org>
18519
18520         * modules/.gitattributes: New file.
18521
18522 2009-07-20  Bruno Haible  <bruno@clisp.org>
18523
18524         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
18525         (main): Use it.
18526
18527 2009-07-20  Eric Blake  <ebb9@byu.net>
18528
18529         test-pipe: make a bit more robust.
18530         * tests/test-pipe.c (myerr): Allow error messages regardless of
18531         what we do to stderr.
18532         (test_pipe): Rearrange to avoid deadlock.
18533         (child_main): Try a larger read, to ensure we avoided deadlock.
18534         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
18535         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
18536         if misused.
18537
18538 2009-07-19  Jim Meyering  <meyering@redhat.com>
18539
18540         fts: avoid false-positive cycle-detection
18541         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
18542         for each new command line argument.
18543
18544 2009-07-19  Bruno Haible  <bruno@clisp.org>
18545
18546         Fix build error on mingw with the modules sys_select and unistd.
18547         * modules/acl-tests (Depends-on): Add close.
18548         * modules/binary-io-tests (Depends-on): Likewise.
18549         * modules/closein-tests (Depends-on): Likewise.
18550         * modules/flock-tests (Depends-on): Likewise.
18551         * modules/fsync-tests (Depends-on): Likewise.
18552         * modules/lseek-tests (Depends-on): Likewise.
18553         * modules/pipe-tests (Depends-on): Likewise.
18554         * modules/posix_spawn-tests (Depends-on): Likewise.
18555         * modules/posix_spawnp-tests (Depends-on): Likewise.
18556         * modules/stat-time-tests (Depends-on): Likewise.
18557         * modules/yesno-tests (Depends-on): Likewise.
18558
18559 2009-07-19  Bruno Haible  <bruno@clisp.org>
18560
18561         Unify conditionals.
18562         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
18563         macros, not at the compiler macros.
18564         * lib/pipe.c: Likewise.
18565         * lib/execute.c: Likewise.
18566         * lib/spawni.c: Likewise.
18567
18568 2009-07-19  Bruno Haible  <bruno@clisp.org>
18569
18570         Fix handling of closed stdin/stdout/stderr on mingw.
18571         * lib/w32spawn.h: Include unistd.h.
18572         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
18573         file descriptor with O_NOINHERIT flag.
18574         (fd_safer_noinherit): New function, based on fd-safer.c.
18575         (dup_safer_noinherit): New function, based on dup-safer.c.
18576         (undup_safer_noinherit): New function.
18577         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
18578         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
18579         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
18580         instead of fd_safer.
18581         * tests/test-pipe.c: Include <windows.h>.
18582         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
18583
18584         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
18585         from main.
18586         (test_pipe): Pass an extra argument for disambiguation.
18587         (main): Invoke parent_main or child_main.
18588
18589         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
18590         consistently.
18591
18592 2009-07-18  Eric Blake  <ebb9@byu.net>
18593
18594         test-pipe: fix mingw build
18595         * tests/test-pipe.c (main): Avoid fcntl on mingw.
18596
18597 2009-07-18  Bruno Haible  <bruno@clisp.org>
18598
18599         * modules/pipe-tests (Makefile.am): Fix typo.
18600
18601 2009-07-18  Eric Blake  <ebb9@byu.net>
18602
18603         error: fix mingw build
18604         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
18605         Reported by Bruno Haible.
18606
18607         error: avoid undefined use of stdout
18608         * lib/error.c (error, error_at_line): Check that fd 1 is open
18609         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
18610         is handling faults and the close_stdout module wants to report the
18611         detection of closed stdout as an error.
18612
18613 2009-07-17  Eric Blake  <ebb9@byu.net>
18614
18615         pipe: be robust in face of closed fds
18616         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
18617         should cause child to misbehave.
18618         * modules/pipe-tests: New module.
18619         * tests/test-pipe.c: New file.
18620         * tests/test-pipe.sh: New file.
18621         Reported by Akim Demaille.
18622
18623 2009-07-14  Bruno Haible  <bruno@clisp.org>
18624
18625         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
18626         Reported by anonymous kc.
18627
18628 2009-07-07  Jim Meyering  <meyering@redhat.com>
18629
18630         maint.mk: don't look for translatable strings in *.m4 or *.mk
18631         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
18632         when searching for translatable strings.
18633
18634 2009-07-05  Jim Meyering  <meyering@redhat.com>
18635
18636         remove superfluous parentheses in STREQ definition
18637         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
18638         * lib/getugroups.c (STREQ): Likewise.
18639         * lib/fnmatch.c (STREQ): Likewise.
18640         Spotted by Bruno Haible.
18641
18642 2009-07-04  Jim Meyering  <meyering@redhat.com>
18643
18644         argv-iter: new module
18645         * MODULES.html.sh: Add argv-iter.
18646         * lib/argv-iter.c, lib/argv-iter.h: New files.
18647         * modules/argv-iter: New file.
18648         * modules/argv-iter-tests: New file.
18649         * tests/test-argv-iter.c: Test it.
18650
18651 2009-07-04  Bruno Haible  <bruno@clisp.org>
18652
18653         Fix assertion.
18654         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
18655         contains more exact copies of a given entry than file2, leave the extra
18656         copies unpaired rather than aborting.
18657         Reported by Eric Blake.
18658
18659 2009-07-02  Bruno Haible  <bruno@clisp.org>
18660
18661         Speedup git-merge-changelog for git cherry-pick.
18662         * lib/git-merge-changelog.c (struct entries_mapping): New type.
18663         (entries_mapping_get): New function, extracted from compute_mapping.
18664         (entries_mapping_reverse_get): New function.
18665         (compute_mapping): Add a 'full' argument. Return the result in a
18666         'struct entries_mapping'.
18667         (main): Update. Access the mappings through entries_mapping_get.
18668         Reported by Eric Blake.
18669
18670 2009-07-02  Bruno Haible  <bruno@clisp.org>
18671
18672         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
18673         best_i.
18674
18675 2009-07-02  Bruno Haible  <bruno@clisp.org>
18676
18677         Speed up approximate search for matching ChangeLog entries.
18678         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
18679         argument. Call fstrcmp_bounded instead of fstrcmp.
18680         (compute_mapping, try_split_merged_entry, main): Update callers.
18681
18682 2009-07-02  Bruno Haible  <bruno@clisp.org>
18683
18684         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
18685
18686 2009-06-30  Bruno Haible  <bruno@clisp.org>
18687
18688         Reduce the number of uc_is_cased calls.
18689         * lib/unicase.h (casing_suffix_context_t): Add
18690         'first_char_except_ignorable' field.
18691         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
18692         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
18693         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
18694         Update initializer.
18695         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
18696         case-ignorable characters.
18697         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
18698         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
18699         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
18700         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
18701         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
18702
18703 2009-06-30  Bruno Haible  <bruno@clisp.org>
18704
18705         Tests for module 'unicase/ignorable'.
18706         * modules/unicase/ignorable-tests: New file.
18707         * tests/unicase/test-ignorable.c: New file, generated by
18708         gen-uni-tables.
18709
18710         Tests for module 'unicase/cased'.
18711         * modules/unicase/cased-tests: New file.
18712         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
18713         * tests/unicase/test-predicate-part1.h: New file, derived from
18714         tests/unictype/test-predicate-part1.h.
18715         * tests/unicase/test-predicate-part2.h: New file, same as
18716         tests/unictype/test-predicate-part2.h.
18717
18718         Fix evaluation of "Before C" condition of FINAL_SIGMA.
18719         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
18720         (output_casing_properties): New function.
18721         (main): Call it.
18722         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
18723         * lib/unicase/cased.c: Include unictype/bitmap.h.
18724         (uc_is_cased): Define through a bitmap lookup.
18725         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
18726         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
18727         (uc_is_case_ignorable): Define through a bitmap lookup.
18728         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
18729         lib/unictype/bitmap.h.
18730         (Depends-on): Add inline. Clean up.
18731         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
18732         lib/unictype/bitmap.h.
18733         (Depends-on): Add inline. Clean up.
18734         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
18735         recognition.
18736         * tests/unicase/test-u16-tolower.c (main): Likewise.
18737         * tests/unicase/test-u32-tolower.c (main): Likewise.
18738
18739 2009-06-30  Bruno Haible  <bruno@clisp.org>
18740
18741         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
18742         * lib/unicase/u16-casemap.c: Likewise.
18743         * lib/unicase/u32-casemap.c: Likewise.
18744
18745 2009-06-29  Bruno Haible  <bruno@clisp.org>
18746
18747         Define u32_casefold as a wrapper around u32_ct_casefold.
18748         * lib/unicase/u32-casefold.c: Update.
18749         * modules/unicase/u32-casefold (Depends-on): Add
18750         unicase/u32-ct-casefold, unicase/empty-prefix-context,
18751         unicase/empty-suffix-context. Clean up.
18752
18753         Define u16_casefold as a wrapper around u16_ct_casefold.
18754         * lib/unicase/u16-casefold.c: Update.
18755         * modules/unicase/u16-casefold (Depends-on): Add
18756         unicase/u16-ct-casefold, unicase/empty-prefix-context,
18757         unicase/empty-suffix-context. Clean up.
18758
18759         Define u8_casefold as a wrapper around u8_ct_casefold.
18760         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
18761         * lib/unicase/u8-casefold.c: Update.
18762         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
18763         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
18764
18765         Define u32_totitle as a wrapper around u32_ct_totitle.
18766         * lib/unicase/u32-totitle.c: Update.
18767         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
18768         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
18769
18770         Define u16_totitle as a wrapper around u16_ct_totitle.
18771         * lib/unicase/u16-totitle.c: Update.
18772         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
18773         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
18774
18775         Define u8_totitle as a wrapper around u8_ct_totitle.
18776         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
18777         functions.
18778         (FUNC): Delegate to U_CT_TOTITLE.
18779         * lib/unicase/u8-totitle.c: Update.
18780         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
18781         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
18782
18783         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
18784         invocation.
18785         * modules/unicase/u32-tolower (Depends-on): Add
18786         unicase/empty-prefix-context, unicase/empty-suffix-context.
18787
18788         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
18789         invocation.
18790         * modules/unicase/u16-tolower (Depends-on): Add
18791         unicase/empty-prefix-context, unicase/empty-suffix-context.
18792
18793         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
18794         * modules/unicase/u8-tolower (Depends-on): Add
18795         unicase/empty-prefix-context, unicase/empty-suffix-context.
18796
18797         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
18798         invocation.
18799         * modules/unicase/u32-toupper (Depends-on): Add
18800         unicase/empty-prefix-context, unicase/empty-suffix-context.
18801
18802         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
18803         invocation.
18804         * modules/unicase/u16-toupper (Depends-on): Add
18805         unicase/empty-prefix-context, unicase/empty-suffix-context.
18806
18807         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
18808         * modules/unicase/u8-toupper (Depends-on): Add
18809         unicase/empty-prefix-context, unicase/empty-suffix-context.
18810
18811         New module 'unicase/u32-ct-casefold'.
18812         * lib/unicase/u32-ct-casefold.c: New file.
18813         * modules/unicase/u32-ct-casefold: New file.
18814
18815         New module 'unicase/u16-ct-casefold'.
18816         * lib/unicase/u16-ct-casefold.c: New file.
18817         * modules/unicase/u16-ct-casefold: New file.
18818
18819         New module 'unicase/u8-ct-casefold'.
18820         * lib/unicase/u8-ct-casefold.c: New file.
18821         * lib/unicase/u-ct-casefold.h: New file, derived from
18822         lib/unicase/u-casefold.h.
18823         * modules/unicase/u8-ct-casefold: New file.
18824
18825         New module 'unicase/u32-ct-totitle'.
18826         * lib/unicase/u32-ct-totitle.c: New file.
18827         * modules/unicase/u32-ct-totitle: New file.
18828
18829         New module 'unicase/u16-ct-totitle'.
18830         * lib/unicase/u16-ct-totitle.c: New file.
18831         * modules/unicase/u16-ct-totitle: New file.
18832
18833         New module 'unicase/u8-ct-totitle'.
18834         * lib/unicase/u8-ct-totitle.c: New file.
18835         * lib/unicase/u-ct-totitle.h: New file, derived from
18836         lib/unicase/u-totitle.h.
18837         * modules/unicase/u8-ct-totitle: New file.
18838
18839         New module 'unicase/u32-ct-tolower'.
18840         * lib/unicase/u32-ct-tolower.c: New file.
18841         * modules/unicase/u32-ct-tolower: New file.
18842
18843         New module 'unicase/u16-ct-tolower'.
18844         * lib/unicase/u16-ct-tolower.c: New file.
18845         * modules/unicase/u16-ct-tolower: New file.
18846
18847         New module 'unicase/u8-ct-tolower'.
18848         * lib/unicase/u8-ct-tolower.c: New file.
18849         * modules/unicase/u8-ct-tolower: New file.
18850
18851         New module 'unicase/u32-ct-toupper'.
18852         * lib/unicase/u32-ct-toupper.c: New file.
18853         * modules/unicase/u32-ct-toupper: New file.
18854
18855         New module 'unicase/u16-ct-toupper'.
18856         * lib/unicase/u16-ct-toupper.c: New file.
18857         * modules/unicase/u16-ct-toupper: New file.
18858
18859         New module 'unicase/u8-ct-toupper'.
18860         * lib/unicase/u8-ct-toupper.c: New file.
18861         * modules/unicase/u8-ct-toupper: New file.
18862
18863         Add context arguments to u*_casemap functions.
18864         * lib/unicase/unicasemap.h: Include unicase.h.
18865         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
18866         suffix_context arguments.
18867         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
18868         functions.
18869         (FUNC): Add prefix_context and suffix_context arguments. Use
18870         uc_is_cased and uc_is_case_ignorable.
18871         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
18872         * lib/unicase/u16-casemap.c: Likewise.
18873         * lib/unicase/u32-casemap.c: Likewise.
18874         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
18875         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
18876         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
18877         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
18878         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
18879         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
18880
18881         New module 'unicase/u32-suffix-context'.
18882         * lib/unicase/u32-suffix-context.c: New file.
18883         * modules/unicase/u32-suffix-context: New file.
18884
18885         New module 'unicase/u16-suffix-context'.
18886         * lib/unicase/u16-suffix-context.c: New file.
18887         * modules/unicase/u16-suffix-context: New file.
18888
18889         New module 'unicase/u8-suffix-context'.
18890         * lib/unicase/u8-suffix-context.c: New file.
18891         * lib/unicase/u-suffix-context.h: New file.
18892         * modules/unicase/u8-suffix-context: New file.
18893
18894         New module 'unicase/empty-suffix-context'.
18895         * lib/unicase/empty-suffix-context.c: New file.
18896         * modules/unicase/empty-suffix-context: New file.
18897
18898         New module 'unicase/u32-prefix-context'.
18899         * lib/unicase/u32-prefix-context.c: New file.
18900         * modules/unicase/u32-prefix-context: New file.
18901
18902         New module 'unicase/u16-prefix-context'.
18903         * lib/unicase/u16-prefix-context.c: New file.
18904         * modules/unicase/u16-prefix-context: New file.
18905
18906         New module 'unicase/u8-prefix-context'.
18907         * lib/unicase/u8-prefix-context.c: New file.
18908         * lib/unicase/u-prefix-context.h: New file.
18909         * lib/unicase/context.h: New file.
18910         * modules/unicase/u8-prefix-context: New file.
18911
18912         New module 'unicase/empty-prefix-context'.
18913         * lib/unicase/empty-prefix-context.c: New file.
18914         * modules/unicase/empty-prefix-context: New file.
18915
18916         New module 'unicase/ignorable'.
18917         * lib/unicase/ignorable.c: New file.
18918         * modules/unicase/ignorable: New file.
18919
18920         New module 'unicase/cased'.
18921         * lib/unicase/caseprop.h: New file.
18922         * lib/unicase/cased.c: New file.
18923         * modules/unicase/cased: New file.
18924
18925         New functions for case mapping of substrings.
18926         * lib/unicase.h (casing_prefix_context_t): New type.
18927         (unicase_empty_prefix_context): New variable.
18928         (u8_casing_prefix_context, u16_casing_prefix_context,
18929         u32_casing_prefix_context, u8_casing_prefixes_context,
18930         u16_casing_prefixes_context, u32_casing_prefixes_context): New
18931         declarations.
18932         (casing_suffix_context_t): New type.
18933         (unicase_empty_suffix_context): New variable.
18934         (u8_casing_suffix_context, u16_casing_suffix_context,
18935         u32_casing_suffix_context, u8_casing_suffixes_context,
18936         u16_casing_suffixes_context, u32_casing_suffixes_context,
18937         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
18938         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
18939         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
18940         declarations.
18941
18942 2009-06-28  Jim Meyering  <meyering@redhat.com>
18943
18944         boostrap: indent only with spaces
18945         * build-aux/bootstrap: Indent only with spaces, never TABs.
18946
18947         bootstrap: split long lines
18948         * build-aux/bootstrap: Keep line length < 80.
18949
18950         bootstrap: sync from coreutils
18951         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
18952         just as autoreconf does.  Verify a list of prerequisite
18953         package-name,version-number pairs if defined in bootstrap.conf.
18954         Refer to README-prereq, if prerequisites are not satisfied.
18955
18956 2009-06-27  Eric Blake  <ebb9@byu.net>
18957
18958         tests: add test for bogus NULL definition
18959         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
18960         * tests/test-stdlib.c: Likewise.
18961         * tests/test-string.c: Likewise.
18962         * tests/test-locale.c: Likewise.
18963         * tests/test-unistd.c: Likewise.
18964         * modules/stdio-tests (Depends-on): Add verify.
18965         * modules/stdlib-tests (Depends-on): Likewise.
18966         * modules/string-tests (Depends-on): Likewise.
18967         * modules/locale-tests (Depends-on): Likewise.
18968         * modules/unistd-tests (Depends-on): Likewise.
18969
18970 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
18971
18972         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
18973         self-explaining comment.
18974         * m4/selinux-selinux-h: Update serial.
18975         (gl_LIBSELINUX): New macro, adding a warning for missing development
18976         packages to code extracted from...
18977         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
18978         Add warning for missing development packages here, too.
18979
18980 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
18981
18982         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
18983
18984 2009-06-25  Eric Blake  <ebb9@byu.net>
18985
18986         version-etc: fix regression
18987         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
18988         gcc.
18989         (version_etc): Use it, to catch bugs with trailing NULL.
18990         * lib/version-etc.c (version_etc_arn): Delete unused argument.
18991         (version_etc_va): Fix logic bug.
18992         * modules/version-etc-tests: Add test.
18993         * tests/test-version-etc.c: New file.
18994         * tests/test-version-etc.sh: Likewise.
18995
18996 2009-06-25  Sam Steingold  <sds@gnu.org>
18997
18998         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
18999         mbtowc declaration.
19000
19001 2009-06-25  Eric Blake  <ebb9@byu.net>
19002
19003         fpurge: migrate into <stdio.h>
19004         * lib/fpurge.h: Delete...
19005         * lib/stdio.in.h (fpurge): ...and declare here, instead.
19006         * lib/fpurge.c (fpurge): Change declaring header.
19007         * modules/fpurge (Files): Drop deleted file.
19008         (Depends-on): Add stdio.
19009         (configure.ac): Set witness.
19010         * modules/stdio (Makefile.am): Support fpurge macros.
19011         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
19012         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
19013         * lib/fflush.c: Update client.
19014         * tests/test-fpurge.c: Likewise.
19015         * NEWS: Mention the change.
19016
19017 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
19018
19019         * lib/argp-version-etc.c (program_authors): Add const
19020         qualifier.
19021         * lib/version-etc.c: Fix typos in the comments.
19022         * modules/argp-version-etc: Depends on version-etc.
19023
19024 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
19025
19026         argp-version-etc: new module.
19027
19028         * lib/argp-version-etc.c: New file.
19029         * lib/argp-version-etc.h: New file.
19030         * modules/argp-version-etc: New file.
19031         * modules/argp-version-etc-tests: New file.
19032         * tests/test-argp-version-etc.c: New test.
19033         * tests/test-argp-version-etc-1.sh: New test.
19034
19035 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
19036
19037         Provide additional interfaces and documentation for version-etc
19038         module.
19039
19040         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
19041         interfaces.
19042         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
19043         prototypes.
19044
19045 2009-06-24  Bruno Haible  <bruno@clisp.org>
19046
19047         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
19048         HAVE_LIB${NAME} macro.
19049         Reported by Sam Steingold <sds@gnu.org>.
19050
19051 2009-06-23  Simon Josefsson  <simon@josefsson.org>
19052
19053         * modules/hash-tests (test_hash_LDADD): Link to libintl when
19054         needed.
19055
19056 2009-06-21  Bruno Haible  <bruno@clisp.org>
19057
19058         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
19059         work.
19060         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
19061         together with LIB${NAME}, LTLIB${NAME}.
19062         Reported by Sam Steingold <sds@gnu.org>.
19063
19064 2009-06-20  Jim Meyering  <meyering@redhat.com>
19065
19066         tests: make sc_require_test_exit_idiom more generic
19067         * top/maint.mk (Exit_witness_file): New overridable variable.
19068         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
19069         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
19070
19071 2009-06-19  Jim Meyering  <meyering@redhat.com>
19072
19073         hash: reverse order of src/dst parameters in an internal interface
19074         * lib/hash.c (transfer_entries): Reverse order of parameters to
19075         put DST before SRC.  Adjust callers.
19076
19077         tests: test-hash: avoid wholesale duplication
19078         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
19079         Instead, use a loop and add a single conditional.
19080
19081         tests: test-hash: allow seed selection via a command line argument
19082         * tests/test-hash.c (get_seed): New function.
19083         (main): Use it.
19084
19085 2009-06-19  Eric Blake  <ebb9@byu.net>
19086
19087         hash: avoid memory leak on allocation failure
19088         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
19089         failure.  Factor repeated algorithm...
19090         (transfer_entries): ...into new helper routine.
19091         (hash_delete): React to hash_rehash return value.
19092
19093         hash: reduce memory pressure in hash_rehash no-op case
19094         * lib/hash.c (next_prime): Avoid overflow.
19095         (hash_initialize): Factor bucket size computation...
19096         (compute_bucket_size): ...into new helper function.
19097         (hash_rehash): Use new function and open coding to reduce memory
19098         pressure, and avoid a memory leak in USE_OBSTACK code.
19099         Reported by Jim Meyering.
19100
19101 2009-06-18  Eric Blake  <ebb9@byu.net>
19102
19103         hash: make rotation more obvious
19104         * modules/hash (Depends-on): Add bitrotate and stdint.
19105         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
19106         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
19107         (SIZE_MAX): Rely on headers for definition.
19108         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
19109         (raw_hasher): Use rotr_sz.
19110         Suggested by Jim Meyering.
19111
19112         hash: fix memory leak in last patch
19113         * lib/hash.c (hash_rehash): Avoid memory leak.
19114
19115         hash: avoid no-op rehashing
19116         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
19117
19118         hash: provide default callback functions
19119         * lib/hash.c (raw_hasher, raw_comparator): New functions.
19120         (hash_initialize): Use them as defaults.
19121         * tests/test-hash.c (main): Test this.
19122
19123         hash: minor optimization
19124         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
19125         when possible.
19126         (hash_initialize): Document this promise.
19127         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
19128         * tests/test-hash.c (hash_compare_strings): Test this.
19129
19130 2009-06-18  Bruno Haible  <bruno@clisp.org>
19131
19132         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
19133         going to be replaced anyway.
19134
19135 2009-06-18  Bruno Haible  <bruno@clisp.org>
19136
19137         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
19138         in one place.
19139         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
19140         be replaced anyway.
19141
19142 2009-06-18  Eric Blake  <ebb9@byu.net>
19143
19144         hash: check for resize before insertion
19145         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
19146         threshold before insertion, so that a pathological hash_rehash
19147         that fills every bucket can still trigger another rehash.
19148
19149 2009-06-18  Jim Meyering  <meyering@redhat.com>
19150
19151         hash-tests: add a loop around the small tests
19152         * tests/test-hash.c (main): Repeat small tests with selected
19153         small initial table sizes.
19154
19155 2009-06-17  Eric Blake  <ebb9@byu.net>
19156
19157         hash: minor cleanups
19158         * lib/hash.h (hash_entry): Make opaque, by moving...
19159         * lib/hash.c (hash_entry): ...here.
19160         (hash_insert): Clarify restrictions on what can be inserted.
19161         (hash_get_next): Clarify when it is safe to remove an element
19162         during traversal.
19163         (check_tuning): Skip verification when tuning is known safe.
19164         (hash_initialize): Clarify restrictions on tuning.
19165
19166 2009-06-17  Jim Meyering  <jim@meyering.net>
19167         and Eric Blake  <ebb9@byu.net>
19168
19169         hash-tests: new module
19170         * modules/hash-tests: New file.
19171         * tests/test-hash.c: New file.
19172
19173 2009-06-17  Eric Blake  <ebb9@byu.net>
19174
19175         strstr-simple: document new module
19176         * MODULES.html.sh: Document new module.
19177
19178         strstr, strcasestr: replace on platforms with broken memchr
19179         * modules/strstr: Split into...
19180         * modules/strstr-simple: ...new module that does not care about
19181         performance, but does care about glibc bug.
19182         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
19183         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
19184         if platform memchr is broken, per Debian bug 521737.
19185         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
19186         memchr.
19187         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
19188         * doc/posix-functions/strstr.texi (strstr): Document the fix.
19189         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
19190         * modules/mountlist (Depends-on): Add strstr-simple.
19191         * modules/gen-uni-tables (Depends-on): Likewise.
19192         * modules/argz (Depends-on): Add strstr.
19193
19194 2009-06-17  Bruno Haible  <bruno@clisp.org>
19195
19196         * modules/posix_spawn-internal (Depends-on): Add errno.
19197
19198 2009-06-17  Bruno Haible  <bruno@clisp.org>
19199
19200         Define missing ESTALE on Interix 3.5.
19201         * lib/errno.in.h (ESTALE): Assign a value if missing.
19202         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
19203         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
19204         missing.
19205         * doc/posix-headers/errno.texi: Mention the Interix bug.
19206         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
19207
19208 2009-06-15  Eric Blake  <ebb9@byu.net>
19209
19210         memchr, memchr2: add valgrind exception
19211         * lib/memchr.valgrind: New file.
19212         * lib/memchr2.valgrind: New file.
19213         * modules/memchr (Files): Distribute valgrind file.
19214         * modules/memchr2 (Files): Likewise.
19215
19216         docs: memchr is no longer obsolete
19217         * MODULES.html.sh: Move memchr from obsolete to string.h section.
19218         * lib/string.in.h (memchr): Simplify logic.
19219
19220 2009-06-14  Jim Meyering  <meyering@redhat.com>
19221
19222         link-follow: fix the "checking..." message to not mention trailing slash
19223         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
19224         never considered trailing slashes.
19225
19226 2009-06-14  Bruno Haible  <bruno@clisp.org>
19227
19228         * m4/memchr.m4: Mention also the bug on IA-64.
19229         * doc/posix-functions/memchr.texi: Likewise.
19230
19231 2009-06-12  Eric Blake  <ebb9@byu.net>
19232
19233         memchr: detect broken x86_64 and alpha implementations
19234         * modules/memchr-tests (Depends-on): Move mmap detection...
19235         * modules/memchr (Depends-on): ...here.
19236         (configure.ac): Set indicator.
19237         * lib/string.in.h (memchr): Declare replacement.
19238         * modules/string (Makefile.am): Trigger replacement.
19239         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
19240         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
19241         bugs.
19242         * doc/posix-functions/memchr.texi (memchr): Document the bug.
19243         * modules/getpagesize (License): Relax license.
19244
19245 2009-06-11  Bruno Haible  <bruno@clisp.org>
19246
19247         * lib/idpriv.h: Add more references.
19248
19249 2009-06-08  Bruno Haible  <bruno@clisp.org>
19250
19251         Tests for module 'idpriv-droptemp'.
19252         * modules/idpriv-droptemp-tests: New file.
19253         * tests/test-idpriv-droptemp.sh: New file.
19254         * tests/test-idpriv-droptemp.su.sh: New file.
19255         * tests/test-idpriv-droptemp.c: New file.
19256
19257         New module 'idpriv-droptemp'.
19258         * lib/idpriv-droptemp.c: New file.
19259         * modules/idpriv-droptemp: New file.
19260
19261 2009-06-08  Bruno Haible  <bruno@clisp.org>
19262
19263         Tests for module 'idpriv-drop'.
19264         * modules/idpriv-drop-tests: New file.
19265         * tests/test-idpriv-drop.sh: New file.
19266         * tests/test-idpriv-drop.su.sh: New file.
19267         * tests/test-idpriv-drop.c: New file.
19268
19269         New module 'idpriv-drop'.
19270         * lib/idpriv.h: New file.
19271         * lib-idpriv-drop.c: New file.
19272         * m4/idpriv.m4: New file.
19273         * modules/idpriv-drop: New file.
19274
19275 2009-06-08  Bruno Haible  <bruno@clisp.org>
19276
19277         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
19278         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
19279         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
19280         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
19281         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
19282         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
19283         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
19284
19285 2009-06-08  Eric Blake  <ebb9@byu.net>
19286
19287         test-strstr: use memory fence, when possible
19288         * tests/test-strstr.c (main): Use memory fence, in order to be
19289         more likely to trigger Debian bug 521737.
19290         * modules/strstr-tests (Files): Pull in additional files.
19291
19292         memchr: no longer obsolete, for wider field testing
19293         * modules/memchr (Status, Notice): Delete, this module is no
19294         longer obsolete.
19295         * modules/vasnprintf (Depends-on): Add memchr.
19296
19297 2009-06-07  Jim Meyering  <meyering@redhat.com>
19298
19299         hash: declare some functions with the warn_unused_result attribute
19300         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
19301
19302 2009-06-07  Bruno Haible  <bruno@clisp.org>
19303
19304         * tests/test-alignof.c: Don't test int64_t if it does not exist.
19305         Reported by Eric Blake.
19306
19307 2009-06-06  Eric Blake  <ebb9@byu.net>
19308
19309         test-alignof: fix typo with long double
19310         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
19311         compiler error.
19312
19313 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
19314
19315         Escape non-texinfo { and }s.
19316         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
19317         markup error.
19318
19319 2009-06-04  Jim Meyering  <meyering@redhat.com>
19320
19321         gitlog-to-changelog: don't infloop on an empty commit log
19322         * build-aux/gitlog-to-changelog: Warn about an empty log message.
19323         Reported by Boris Petersen <transacid@centerim.org>.
19324
19325 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
19326
19327         version-etc: extend for packagers
19328         Add three new configure options, intended for packagers:
19329           --with-packager="packager name"
19330           --with-packager-version="packager-specific version"
19331           --with-packager-bug-reports="packager bug reporting"
19332         An example with coreutils:
19333           $ ./configure \
19334             --with-packager=Gentoo \
19335             --with-packager-bug-report=http://bugs.gentoo.org/ \
19336             --with-packager-version="patchset 1.6"
19337           $ ./src/ls --version | head -n2
19338           ls (GNU coreutils) 7.1-dirty
19339           Packaged by Gentoo (patchset 1.6)
19340         Note that the bug reporting info via --help doesn't show up because
19341         coreutils uses its own custom emit_bug_reporting_address() implementation
19342         in src/system.h.  If it didn't, it'd look like:
19343           $ ./src/ls --help | tail -n4
19344           Report bugs to <bug-coreutils@gnu.org>.
19345           Report Gentoo bugs to <http://bugs.gentoo.org/>.
19346           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
19347           General help using GNU software: <http://www.gnu.org/gethelp/>.
19348         * lib/version-etc.c: Print new information, if provided.
19349         * m4/version-etc.m4: New file.
19350         * modules/version-etc (Files): Add m4/version-etc.m4.
19351         (configure.ac): Add gl_VERSION_ETC.
19352
19353 2009-05-31  Bruno Haible  <bruno@clisp.org>
19354
19355         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
19356         and 'int64_t'.
19357         * modules/alignof-tests (Dependencies): Add stdint.
19358         Reported by Eric Blake.
19359
19360 2009-05-31  Bruno Haible  <bruno@clisp.org>
19361
19362         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
19363         restriction due to compiler bugs.
19364         Reported by Eric Blake.
19365
19366 2009-05-31  Simon Josefsson  <simon@josefsson.org>
19367             Bruno Haible  <bruno@clisp.org>
19368
19369         Fix test-alignof failure.
19370         * lib/alignof.h (alignof_slot): New macro.
19371         (alignof_type): New macro, with the same semantics as the previous
19372         'alignof'.
19373         (alignof): Alias to alignof_slot.
19374         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
19375         check that the results are usable as constant expressions.
19376
19377 2009-05-31  Bruno Haible  <bruno@clisp.org>
19378
19379         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
19380         * tests/test-memchr.c (main): Check that memchr does not read past the
19381         first occurrence of the byte.
19382         * tests/test-strstr.c (main): Update comment.
19383         Suggested by Eric Blake.
19384
19385 2009-05-30  Bruno Haible  <bruno@clisp.org>
19386
19387         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
19388         detail how to use dumpbin.
19389         Reported by David Byron <dbyron@dbyron.com>.
19390
19391 2009-06-02  Simon Josefsson  <simon@josefsson.org>
19392
19393         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
19394
19395 2009-06-02  Simon Josefsson  <simon@josefsson.org>
19396
19397         * m4/manywarnings.m4: Add GCC 4.4 warnings.
19398
19399 2009-05-28  Bruno Haible  <bruno@clisp.org>
19400
19401         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
19402         build-aux/ files.
19403
19404 2009-05-28  Simon Josefsson  <simon@josefsson.org>
19405
19406         * gnulib-tool (func_import): Transform license on build-aux/ files too.
19407
19408 2009-05-27  Simon Josefsson  <simon@josefsson.org>
19409
19410         * gnulib-tool (sed_transform_main_lib_file)
19411         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
19412         regexps.
19413
19414 2009-05-26  Simon Josefsson  <simon@josefsson.org>
19415
19416         * tests/test-strstr.c: Add another self-test.
19417         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
19418         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
19419
19420 2009-05-23  Bruno Haible  <bruno@clisp.org>
19421
19422         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
19423         change.
19424
19425 2009-05-21  Bruno Haible  <bruno@clisp.org>
19426
19427         Simplify use of mode_t varargs.
19428         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
19429         uses 'mode_t' or 'int'.
19430         * lib/openat.c (openat): Likewise.
19431         * lib/open-safer.c (open_safer): Likewise.
19432         * m4/mode_t.m4: New file.
19433         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
19434         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
19435         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
19436         * modules/open (Files): Add m4/mode_t.m4.
19437         * modules/openat (Files): Likewise.
19438         * modules/fcntl-safer (Files): Likewise.
19439         Suggested by Eric Blake.
19440
19441 2009-05-21  Pádraig Brady  <P@draigbrady.com>
19442
19443         * doc/glibc-functions/fallocate.texi: New file.
19444         * doc/gnulib.texi: Include it.
19445
19446 2009-05-21  Eric Blake  <ebb9@byu.net>
19447             Bruno Haible  <bruno@clisp.org>
19448
19449         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
19450         invocations.
19451         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19452
19453 2009-05-21  Eric Blake  <ebb9@byu.net>
19454             Bruno Haible  <bruno@clisp.org>
19455
19456         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
19457         include_next. Fix of 2008-11-20 commit.
19458         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
19459         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
19460         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
19461         NEXT_MATH_H.
19462         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
19463         instead of NEXT_MATH_H.
19464
19465 2009-05-21  Bruno Haible  <bruno@clisp.org>
19466
19467         Avoid redefinition warnings for SIZE_MAX.
19468         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
19469         Reported by Simon Josefsson.
19470
19471 2009-05-21  Bruno Haible  <bruno@clisp.org>
19472
19473         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
19474         AC_CACHE_VAL.
19475
19476 2009-05-20  Bruno Haible  <bruno@clisp.org>
19477
19478         Make zeroptr.h work on mingw.
19479         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
19480         mprotect.
19481         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
19482         * modules/memchr2-tests (configure.ac): Likewise.
19483         * modules/memcmp-tests (configure.ac): Likewise.
19484         * modules/memmem-tests (configure.ac): Likewise.
19485         * modules/memrchr-tests (configure.ac): Likewise.
19486         Reported by Simon Josefsson.
19487
19488 2009-05-20  Simon Josefsson  <simon@josefsson.org>
19489
19490         * tests/test-glob.c: Include string.h for strcmp prototype.
19491
19492 2009-05-20  Simon Josefsson  <simon@josefsson.org>
19493
19494         * modules/getdelim (Depends-on): Add explicit stdint, although it
19495         was implicitly already pulled in via realloc-posix.
19496         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
19497
19498 2009-05-20  Simon Josefsson  <simon@josefsson.org>
19499
19500         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
19501         G. Christensen" <tgc@jupiterrise.com>.
19502         * m4/sys_socket_h.m4: Check for sa_family_t.
19503         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
19504         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
19505         * tests/test-sys_socket.c: Check that sa_family_t works.
19506
19507 2009-05-18  Eric Blake  <ebb9@byu.net>
19508
19509         maint.mk: allow gnulib_dir in VPATH build
19510         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
19511
19512 2009-05-15  Jim Meyering  <meyering@redhat.com>
19513
19514         maint.mk: Give gnulib_dir a default definition.
19515         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
19516         Thus, most packages no longer need to specify this variable in cfg.mk
19517
19518 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
19519
19520         rename.m4: fix typos that would make non-mingw cross-configure fail
19521         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
19522
19523 2009-05-13  Eric Blake  <ebb9@byu.net>
19524
19525         mmap-anon: avoid out-of-order autoconf expansion
19526         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
19527         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
19528         * modules/memchr-tests (Depends-on): Add extensions.
19529         * modules/memchr2-tests (Depends-on): Add extensions.
19530         * modules/memcmp-tests (Depends-on): Add extensions.
19531         * modules/memmem-tests (Depends-on): Add extensions.
19532         * modules/memrchr-tests (Depends-on): Add extensions.
19533
19534 2009-05-13  Bruno Haible  <bruno@clisp.org>
19535
19536         Make some tests ISO C 99 compliant.
19537         * tests/zerosize-ptr.h: New file.
19538         * tests/test-memchr.c: Include zerosize-ptr.h.
19539         (main): Use a zero-size object pointer instead of NULL.
19540         * tests/test-memchr2.c: Include zerosize-ptr.h.
19541         (main): Use a zero-size object pointer instead of NULL.
19542         * tests/test-memcmp.c: Include zerosize-ptr.h.
19543         (main): Use a zero-size object pointer instead of NULL.
19544         * tests/test-memmem.c: Include zerosize-ptr.h.
19545         (main): Use a zero-size object pointer instead of NULL.
19546         * tests/test-memrchr.c: Include zerosize-ptr.h.
19547         (main): Use a zero-size object pointer instead of NULL.
19548         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
19549         m4/mmap-anon.m4.
19550         (Depends-on): Add getpagesize.
19551         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
19552         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
19553         m4/mmap-anon.m4.
19554         (Depends-on): Add getpagesize.
19555         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
19556         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
19557         m4/mmap-anon.m4.
19558         (Depends-on): Add getpagesize.
19559         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
19560         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
19561         m4/mmap-anon.m4.
19562         (Depends-on): Add getpagesize.
19563         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
19564         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
19565         m4/mmap-anon.m4.
19566         (Depends-on): Add getpagesize.
19567         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
19568
19569 2009-05-12  Bruno Haible  <bruno@clisp.org>
19570
19571         Tests for module 'alignof'.
19572         * modules/alignof-tests: New file.
19573         * tests/test-alignof.c: New file.
19574
19575 2009-05-12  Bruno Haible  <bruno@clisp.org>
19576
19577         Fix alignof macro.
19578         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
19579         vendor compilers that are always correct.
19580
19581 2009-05-12  Bruno Haible  <bruno@clisp.org>
19582
19583         Make the MAP_ANONYMOUS detection work on HP-UX 11.
19584         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
19585         not whether its fully works.
19586
19587 2009-05-12  Bruno Haible  <bruno@clisp.org>
19588
19589         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
19590
19591 2009-05-12  Jim Meyering  <meyering@redhat.com>
19592
19593         * top/maint.mk: Adjust backslash alignment.
19594
19595 2009-05-11  Simon Josefsson  <simon@josefsson.org>
19596
19597         * top/maint.mk: Make $(srcdir)/build-aux configurable.
19598
19599 2009-05-11  Eric Blake  <ebb9@byu.net>
19600
19601         argp: avoid undefined behavior
19602         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
19603         macros.
19604
19605 2009-05-08  Simon Josefsson  <simon@josefsson.org>
19606
19607         * tests/test-vc-list-files-git.sh: Do git config of user.email and
19608         user.name to prevent git commit from complaining.
19609
19610 2009-05-10  Bruno Haible  <bruno@clisp.org>
19611
19612         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
19613         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
19614         it rewrites every file name only once.
19615         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
19616
19617 2009-05-08  Bruno Haible  <bruno@clisp.org>
19618
19619         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
19620         instead of 'max'.
19621
19622 2009-05-08  Simon Josefsson  <simon@josefsson.org>
19623
19624         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
19625         sockaddr_storage test.
19626
19627 2009-05-07  Simon Josefsson  <simon@josefsson.org>
19628
19629         * modules/sys_socket (Makefile.am): Substitute
19630         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
19631         * m4/sys_socket_h.m4: Check for sockaddr_storage.
19632         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
19633         * tests/test-sys_socket.c: Check sockaddr_storage.
19634
19635 2009-05-08  Bruno Haible  <bruno@clisp.org>
19636
19637         New module 'alignof'.
19638         * lib/alignof.h: New file.
19639         * modules/alignof: New file.
19640
19641 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
19642             Bruno Haible  <bruno@clisp.org>
19643
19644         Fix test-file-has-acl on FreeBSD.
19645         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
19646         mask is implicitly added.
19647         * tests/test-file-has-acl.c: Include <signal.h>.
19648         (main): Terminate the test after 5 seconds.
19649         * modules/acl-tests (configure.ac): Check for alarm function.
19650
19651 2009-05-04  Bruno Haible  <bruno@clisp.org>
19652
19653         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
19654         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
19655         * modules/errno (configure.ac): Drop AC_REQUIRE.
19656         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
19657         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
19658
19659 2009-05-04  Simon Josefsson  <simon@josefsson.org>
19660
19661         * modules/glob-tests: New module.
19662         * tests/test-glob.c: Add.
19663
19664 2009-05-04  Simon Josefsson  <simon@josefsson.org>
19665
19666         * modules/fnmatch-tests: New module.
19667         * tests/test-fnmatch.c: Add.
19668
19669 2009-05-04  Eric Blake  <ebb9@byu.net>
19670
19671         maint: make the new no-submodule-changes rule VPATH-safe
19672         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
19673
19674 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
19675             Bruno Haible  <bruno@clisp.org>
19676
19677         acl: Fix infinite loop on FreeBSD.
19678         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
19679         of return value from acl_get_entry.
19680         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
19681         Likewise.
19682
19683 2009-05-03  Bruno Haible  <bruno@clisp.org>
19684
19685         * lib/acl-internal.h (acl_entries): Clarify return value.
19686         * lib/acl_entries.c (acl_entries): Likewise.
19687
19688 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
19689
19690         Bug fix in acl module.
19691         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
19692
19693 2009-05-03  Bruno Haible  <bruno@clisp.org>
19694
19695         Create gperf-generated file in the source dir, not in the build dir.
19696         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
19697         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
19698         * modules/unicase/locale-language (unicase/locale-languages.h):
19699         Likewise.
19700         * modules/unicase/special-casing (unicase/special-casing-table.h):
19701         Likewise.
19702         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
19703         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
19704         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
19705         Reported by Ralf Wildenhues.
19706
19707 2009-05-03  Bruno Haible  <bruno@clisp.org>
19708
19709         * modules/fnmatch (Description, configure.ac): Taken from
19710         fnmatch-posix.
19711         * modules/fnmatch-posix: Turn into a symbolic reference to the
19712         'fnmatch' module, and deprecate.
19713         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
19714
19715 2009-05-03  Bruno Haible  <bruno@clisp.org>
19716
19717         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
19718         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
19719         Reported by Ralf Wildenhues.
19720
19721 2009-05-04  Simon Josefsson  <simon@josefsson.org>
19722
19723         * m4/fnmatch.m4: Fix fnmatch re-define.
19724
19725 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
19726
19727         priv-set: new module and tests; adapt write-any-file
19728         * lib/priv-set.c: New file.
19729         * lib/priv-set.h: New file.
19730         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
19731         * lib/write-any-file.c: Simplify by using priv-set module.
19732         * m4/priv-set.m4: New file.
19733         * modules/priv-set: New file.
19734         * modules/unlinkdir: Add dependency on priv-set module.
19735         * modules/write-any-file: Likewise.
19736
19737         Tests for module 'priv-set'.
19738         * modules/priv-set-tests: New file.
19739         * tests/test-priv-set.c: New file.
19740
19741 2009-05-03  Jim Meyering  <meyering@redhat.com>
19742             Bruno Haible  <bruno@clisp.org>
19743
19744         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
19745         use the converted UTF-8 variant of the name instead.
19746
19747 2009-05-03  Jim Meyering  <meyering@redhat.com>
19748
19749         tests: tighten some getdate tests
19750         * tests/test-getdate.c (main): Tighten tests: require equality,
19751         not just greater than.  Set TZ envvar to UTC0.
19752
19753 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
19754
19755         getdate: correctly interpret "next monday" when run on a Monday
19756         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
19757         that e.g., "next tues" (when run on a tuesday) results in a date
19758         that is one week in the future, and not today's date.
19759         I.e., add a week when the wday is the same as the current one.
19760         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
19761         and earlier by Martin Bernreuther and Jan Minář.
19762         * tests/test-getdate.c (main): Check that "next DAY" is always in
19763         the future and that "last DAY" is always in the past.
19764
19765 2009-05-02  Jim Meyering  <meyering@redhat.com>
19766
19767         build: ensure that a release build fails when a submodule is unclean
19768         * top/maint.mk (no-submodule-changes): New rule.
19769         (alpha beta major): Depend on it.
19770
19771 2009-05-02  Bruno Haible  <bruno@clisp.org>
19772
19773         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
19774         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
19775         shell variable gl_fnmatch_required to detect which variant is
19776         requested.
19777         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
19778         gl_FUNC_FNMATCH_POSIX.
19779         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
19780         exclude fnmatch-posix.
19781
19782 2009-05-02  Bruno Haible  <bruno@clisp.org>
19783
19784         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
19785         * modules/mbsrtowcs (License): Change to LGPLv2+.
19786         * modules/strnlen1 (License): Likewise.
19787         Reported by Simon Josefsson.
19788
19789 2009-05-02  Bruno Haible  <bruno@clisp.org>
19790
19791         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
19792         "cross".
19793         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
19794         gnulib-tool was called with option --source-base=lib.
19795
19796 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19797
19798         Use automake *-local hooks without commands, for extensibility.
19799         * modules/localcharset (Makefile.am): Rename install-exec-local
19800         rule to install-exec-localcharset, and make it a prerequisite of
19801         install-exec-local.  Likewise, rename the uninstall-local rule to
19802         uninstall-localcharset, and make it a prerequisite of the former.
19803
19804 2009-05-01  Bruno Haible  <bruno@clisp.org>
19805
19806         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
19807         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
19808         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
19809         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
19810         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
19811         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
19812         m4/locale-zh.m4, m4/codeset.m4.
19813
19814         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
19815         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
19816         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
19817         m4/locale-zh.m4.
19818
19819         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
19820         REPLACE_WCRTOMB if mbstate_t must be replaced.
19821         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
19822         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
19823
19824 2009-05-01  Bruno Haible  <bruno@clisp.org>
19825
19826         Avoid compiler warnings when redefining macros defined by <libintl.h>.
19827         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
19828         dngettext, dcngettext, textdomain, bindtextdomain,
19829         bind_textdomain_codeset): Undefine before redefining.
19830
19831 2009-04-30  Bruno Haible  <bruno@clisp.org>
19832
19833         Fix bug introduced on 2009-04-25.
19834         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
19835         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
19836         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
19837         is defined.
19838         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
19839         is defined.
19840         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
19841         is defined.
19842         Reported by Elbert_Pol <elbert.pol@gmail.com>.
19843
19844 2009-04-28  Bruno Haible  <bruno@clisp.org>
19845
19846         Comment tweaks.
19847         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
19848         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
19849         * lib/unicase.h (u*_casexfrm): Likewise.
19850         Reported by Paolo Bonzini.
19851
19852 2009-04-28  Bruno Haible  <bruno@clisp.org>
19853
19854         Fix a compilation error.
19855         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
19856         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
19857         Reported by Jim Meyering.
19858
19859 2009-04-27  Bruno Haible  <bruno@clisp.org>
19860
19861         New module 'libunistring'.
19862         * modules/libunistring: New file.
19863         * m4/libunistring.m4: New file.
19864         * MODULES.html.sh (Unicode string functions): Add it.
19865
19866 2009-04-27  Eric Blake  <ebb9@byu.net>
19867
19868         maint.mk: allow package-specific header to provide <config.h>
19869         * top/maint.mk (sc_require_config_h): New variable.
19870         (sc_require_config_h, sc_require_config_h_first): Use it.
19871
19872 2009-04-27  Simon Josefsson  <simon@josefsson.org>
19873
19874         * top/maint.mk (sc_avoid_if_before_free): Except
19875         useless-if-before-free script.
19876
19877 2009-04-27  Eric Blake  <ebb9@byu.net>
19878
19879         maintainer-makefile: depend on all required helper scripts
19880         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
19881         useless-if-before-free.
19882         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
19883         version, rather than assuming gnulib checkout is available.
19884         Reported by Simen Josefsson.
19885
19886 2009-04-26  Bruno Haible  <bruno@clisp.org>
19887
19888         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
19889         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
19890         "../" or "..".
19891
19892 2009-04-26  Bruno Haible  <bruno@clisp.org>
19893
19894         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
19895         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
19896         AC_LIB_HAVE_LINKFLAGS.
19897
19898 2009-04-26  Bruno Haible  <bruno@clisp.org>
19899
19900         Simplify calling convention of u*_conv_from_encoding.
19901         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
19902         u32_conv_from_encoding): Expect a resultbuf argument and return the
19903         result directly as a pointer.
19904         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
19905         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
19906         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
19907         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
19908         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
19909         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
19910         Update.
19911         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
19912         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
19913         * lib/vasnprintf.c (VASNPRINTF): Update.
19914         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
19915         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
19916         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
19917         * NEWS: Mention the change.
19918
19919 2009-04-26  Bruno Haible  <bruno@clisp.org>
19920
19921         Simplify calling convention of u*_conv_to_encoding.
19922         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
19923         u32_conv_to_encoding): Expect a resultbuf argument and return the
19924         result directly as a pointer.
19925         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
19926         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
19927         freeing scaled_offsets if mem_iconveha failed.
19928         * lib/unicase/u-casexfrm.h (FUNC): Update.
19929         * lib/uninorm/u-normxfrm.h (FUNC): Update.
19930         * lib/vasnprintf.c (VASNPRINTF): Update.
19931         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
19932         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
19933         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
19934         * NEWS: Mention the change.
19935
19936 2009-04-26  Bruno Haible  <bruno@clisp.org>
19937
19938         Avoid test failures on AIX and OSF/1.
19939         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
19940         malloc(0).
19941         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
19942         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
19943         Likewise.
19944         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
19945         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
19946         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
19947         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
19948         * doc/posix-functions/malloc.texi: Document the portability problem
19949         related to malloc(0).
19950
19951 2009-04-26  Bruno Haible  <bruno@clisp.org>
19952
19953         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
19954         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
19955         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
19956
19957 2009-04-25  Bruno Haible  <bruno@clisp.org>
19958
19959         Avoid link error when creating a namespace clean library.
19960         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
19961         as macro with arguments if already defined as an alias.
19962         * lib/signbitf.c (gl_signbitf): Don't undefine.
19963         * lib/signbitd.c (gl_signbitd): Don't undefine.
19964         * lib/signbitl.c (gl_signbitl): Don't undefine.
19965
19966 2009-04-25  Jim Meyering  <meyering@redhat.com>
19967
19968         vc-list-files: fix another quoting bug
19969         * build-aux/vc-list-files: Avoid sed backslash expansion
19970         of pathological directory names.
19971
19972 2009-04-25  Eric Blake  <ebb9@byu.net>
19973
19974         vc-list-files: fix shell quoting error
19975         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
19976         timestamp.
19977
19978 2009-04-25  Jim Meyering  <meyering@redhat.com>
19979
19980         vc-list-files: restore lost functionality with subdir argument
19981         * build-aux/vc-list-files: When given a non-"." sub-directory
19982         argument, substitute the $dir/ prefix back onto each resulting name.
19983         Otherwise, coreutils' root_tests check would fail.
19984
19985 2009-04-24  Eric Blake  <ebb9@byu.net>
19986
19987         vc-list-files: ignore git symlinks
19988         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
19989         than ls-files, to ignore git symlinks.
19990
19991         maint.mk: import improvements from m4
19992         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
19993         (move_if_change): Delete unused macro.
19994         (news-date-check, vc-diff-check): Support VPATH builds.
19995         (announcement): Likewise.  Split --bootstrap-tools list...
19996         (boostrap-tools): ...into separate list, which can be overridden
19997         in cfg.mk.
19998         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
19999         requiring dependency on useless-if-before-free module.
20000         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
20001         Support VPATH builds.
20002
20003 2009-04-24  Jim Meyering  <meyering@redhat.com>
20004
20005         maint.mk: remove coreutils-specific rules and variables
20006         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
20007         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
20008         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
20009
20010         maint.mk: remove obsolete rule
20011         * top/maint.mk (rel-check): Remove rule.
20012         (WGET, WGETFLAGS): Remove now-unused variables.
20013
20014 2009-04-24  Simon Josefsson  <simon@josefsson.org>
20015
20016         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
20017         consistency.
20018
20019         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
20020         '$(PATH_SEPARATOR)' instead of ':'.
20021
20022 2009-04-24  Simon Josefsson  <simon@josefsson.org>
20023
20024         * lib/getopt1.c (main): Use 'const' for static array.
20025
20026 2009-04-24  Simon Josefsson  <simon@josefsson.org>
20027
20028         * top/maint.mk: Sync with coreutils.
20029         * NEWS: Explain incompatibilities.
20030
20031 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20032             Bruno Haible  <bruno@clisp.org>
20033
20034         Fix cross-compilation results.
20035         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
20036         statement, as third argument of AC_TRY_RUN.
20037         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
20038         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
20039         Likewise.
20040         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
20041         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
20042         Likewise.
20043         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
20044         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
20045         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
20046
20047 2009-04-20  Bruno Haible  <bruno@clisp.org>
20048
20049         Avoid test failure on mingw.
20050         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
20051
20052 2009-04-20  Bruno Haible  <bruno@clisp.org>
20053
20054         Avoid compilation error on mingw.
20055         * modules/localename-tests (Depends-on): Add locale.
20056
20057 2009-04-19  Bruno Haible  <bruno@clisp.org>
20058
20059         Support for building a shared library on Windows platforms.
20060         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
20061         (main): Test the presence of UNINORM_NFC here.
20062         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
20063         (main): Test the presence of UNINORM_NFD here.
20064         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
20065         (main): Test the presence of UNINORM_NFKC here.
20066         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
20067         (main): Test the presence of UNINORM_NFKD here.
20068
20069 2009-04-19  Bruno Haible  <bruno@clisp.org>
20070
20071         Avoid a compiler warning.
20072         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
20073         Change type of variable 'sequence'.
20074
20075 2009-04-19  Bruno Haible  <bruno@clisp.org>
20076
20077         * modules/configmake (Makefile.am): When the contents of configmake.h
20078         does not change, arrange to preserve its modification time.
20079
20080 2009-04-17  Simon Josefsson  <simon@josefsson.org>
20081
20082         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
20083         gettext domain.
20084
20085 2009-04-16  Jim Meyering  <meyering@redhat.com>
20086
20087         useless-if-before-free: improve conversion code
20088         * build-aux/useless-if-before-free: Adjust code-in-comment to match
20089         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
20090
20091 2009-04-14  Bruno Haible  <bruno@clisp.org>
20092
20093         * modules/fcntl (Depends-on): Add extensions.
20094         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
20095
20096 2009-04-12  Ben Pfaff  <blp@gnu.org>
20097
20098         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
20099         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
20100
20101 2009-03-20  Ben Pfaff  <blp@gnu.org>
20102
20103         Make rename replace existing destinations on Windows.
20104         * m4/rename.m4: Add test for Mingw.
20105         * lib/rename.c: Add rename replacement that uses MoveFileEx with
20106         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
20107         * doc/posix-functions/rename.texi: Document.
20108
20109 2009-04-10  Bruno Haible  <bruno@clisp.org>
20110
20111         New include file "iconveh.h".
20112         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
20113         * lib/striconveh.h: Include it.
20114         (enum iconv_ilseq_handler): Remove definition.
20115         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
20116         striconveh.h.
20117         * lib/striconveha.c: Include striconveh.h.
20118         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
20119         * modules/striconveh (Files): Add lib/iconveh.h.
20120         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
20121         lib/striconveh.h.
20122
20123 2009-04-10  Bruno Haible  <bruno@clisp.org>
20124
20125         * lib/uniconv.h: Update comment.
20126
20127 2009-04-10  Bruno Haible  <bruno@clisp.org>
20128
20129         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
20130         always.
20131         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
20132         * lib/unistr/u16-mbtouc-aux.c: Likewise.
20133         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
20134         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
20135         "unistring-notinline.h", so that the function gets defined always.
20136         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
20137         * lib/unistr/u8-uctomb.c: Likewise.
20138         * lib/unistr/u16-mbtouc.c: Likewise.
20139         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
20140         * lib/unistr/u16-uctomb.c: Likewise.
20141         * lib/unistr/u32-mbtouc.c: Likewise.
20142         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
20143         * lib/unistr/u32-uctomb.c: Likewise.
20144
20145 2009-04-10  Bruno Haible  <bruno@clisp.org>
20146
20147         Mark 'utime' obsolete.
20148         * modules/utime (Status, Notice): New sections.
20149         Suggested by Jim Meyering.
20150
20151         Fix cross-compile guess for utime test.
20152         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
20153         autoconf.
20154         * doc/posix-functions/utime.texi: Give more precisions.
20155         Reported by Jan <ipif@ymail.com>.
20156
20157 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
20158
20159         filevercmp: correct today's change
20160         * lib/filevercmp.c: Also handle coreutils' test inputs.
20161         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
20162
20163         Fix regression in 'filevercmp' module. Thanks Sven Joachim
20164         for reporting it.
20165         * lib/filevercmp.c: Special handle for "", "." and "..".
20166         * tests/test-filevercmp.c: Enlarge the set suite.
20167
20168 2009-04-07  Jim Meyering  <meyering@redhat.com>
20169
20170         useless-if-before-free: show how to remove braced useless free, too
20171         * build-aux/useless-if-before-free: still only in a comment, though.
20172
20173 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
20174
20175         maint.mk: import changes to syntax-check macros from coreutils
20176         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
20177         Use them in the relevant macros.
20178
20179 2009-04-06  Bruno Haible  <bruno@clisp.org>
20180
20181         Fix unportable use of bit-fields.
20182         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
20183         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
20184         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
20185
20186 2009-04-06  Bruno Haible  <bruno@clisp.org>
20187
20188         Avoid test failures on AIX and OSF/1.
20189         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
20190         that malloc(0) = NULL.
20191         * tests/unicase/test-u8-tolower.c (check): Likewise.
20192         * tests/unicase/test-u8-totitle.c (check): Likewise.
20193         * tests/unicase/test-u8-toupper.c (check): Likewise.
20194         * tests/unicase/test-u16-casefold.c (check): Likewise.
20195         * tests/unicase/test-u16-tolower.c (check): Likewise.
20196         * tests/unicase/test-u16-totitle.c (check): Likewise.
20197         * tests/unicase/test-u16-toupper.c (check): Likewise.
20198         * tests/unicase/test-u32-casefold.c (check): Likewise.
20199         * tests/unicase/test-u32-tolower.c (check): Likewise.
20200         * tests/unicase/test-u32-totitle.c (check): Likewise.
20201         * tests/unicase/test-u32-toupper.c (check): Likewise.
20202         * tests/uninorm/test-u8-nfc.c (check): Likewise.
20203         * tests/uninorm/test-u8-nfd.c (check): Likewise.
20204         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
20205         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
20206         * tests/uninorm/test-u16-nfc.c (check): Likewise.
20207         * tests/uninorm/test-u16-nfd.c (check): Likewise.
20208         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
20209         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
20210         * tests/uninorm/test-u32-nfc.c (check): Likewise.
20211         * tests/uninorm/test-u32-nfd.c (check): Likewise.
20212         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
20213         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
20214
20215 2009-04-05  Bruno Haible  <bruno@clisp.org>
20216
20217         Work around an autoconf limitation.
20218         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
20219         comment line if it would be longer than 3 KB.
20220
20221 2009-04-05  Bruno Haible  <bruno@clisp.org>
20222
20223         Avoid test failure with libiconv-1.13.
20224         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
20225         of the expected test results.
20226
20227 2009-04-05  Bruno Haible  <bruno@clisp.org>
20228
20229         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
20230         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
20231         that it should be installed.
20232
20233 2009-04-05  Bruno Haible  <bruno@clisp.org>
20234
20235         * gnulib-tool: New option --copy-file.
20236         (func_usage): Document it.
20237         (func_dest_tmpfilename): Moved out of func_import.
20238         (func_add_file, func_update_file): New functions, extracted from
20239         func_import.
20240         (func_import): Update.
20241
20242 2009-04-05  Karl Berry  <karl@gnu.org>
20243
20244         * README: prominently mention gnulib-tool.
20245         Rearrange sections so getting the code is near the top.
20246
20247 2009-04-05  Bruno Haible  <bruno@clisp.org>
20248
20249         * lib/unicase.h: Mention u*_cmp2.
20250         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
20251         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
20252         * lib/unicase/ulc-casecmp.c: Likewise.
20253         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
20254         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
20255         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
20256         unistr/u8-cmp.
20257         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
20258         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
20259         unistr/u16-cmp.
20260         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
20261         unistr/u32-cmp.
20262
20263         * lib/uninorm.h: Mention u*_cmp2.
20264         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
20265         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
20266         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
20267         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
20268         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
20269         unistr/u8-cmp.
20270         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
20271         unistr/u16-cmp.
20272         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
20273         unistr/u32-cmp.
20274
20275         New module 'unistr/u32-cmp2'.
20276         * lib/unistr/u32-cmp2.c: New file.
20277         * modules/unistr/u32-cmp2: New file.
20278
20279         New module 'unistr/u16-cmp2'.
20280         * lib/unistr/u16-cmp2.c: New file.
20281         * modules/unistr/u16-cmp2: New file.
20282
20283         New module 'unistr/u8-cmp2'.
20284         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
20285         * lib/unistr/u8-cmp2.c: New file.
20286         * lib/unistr/u-cmp2.h: New file.
20287         * modules/unistr/u8-cmp2: New file.
20288
20289 2009-04-05  Bruno Haible  <bruno@clisp.org>
20290
20291         * lib/unictype.h (uc_property_is_valid): New macro.
20292         * tests/unictype/test-pr_byname.c (main): Use it.
20293
20294         * lib/unistr.h: Doc fixes.
20295         * lib/uniconv.h: Doc fixes.
20296         * lib/unictype.h: Doc fixes.
20297
20298 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
20299
20300         Port coreutils 7.2 to Solaris 8.
20301
20302         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
20303         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
20304         for Solaris 8.  This is a bit of a hack, as it means it's the
20305         caller's responsibility to add -lnsl if needed, but most likely it
20306         won't be needed since only getaddrinfo uses this and getaddrinfo
20307         isn't needed on Solaris 8.
20308
20309         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
20310         problem to Solaris 8 encountered with coreutils 7.2, which
20311         resulted in a message "fnmatch.c:292: warning: passing argument 4
20312         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
20313         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
20314
20315 2009-04-03  Simon Josefsson  <simon@josefsson.org>
20316
20317         * m4/ld-version-script.m4: Add FIXME comment.
20318
20319 2009-04-02  Simon Josefsson  <simon@josefsson.org>
20320
20321         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
20322         SOVERSION variable.
20323
20324 2009-04-02  Bruno Haible  <bruno@clisp.org>
20325
20326         * Makefile (info, html, dvi, pdf): Combine the rules.
20327         Suggested by Jim Meyering.
20328
20329 2009-04-01  Bruno Haible  <bruno@clisp.org>
20330
20331         * Makefile (info, html, dvi, pdf): New targets.
20332         Reported by Reuben Thomas <rrt@sc3d.org>.
20333
20334 2009-04-01  Bruno Haible  <bruno@clisp.org>
20335
20336         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
20337         can be put into PATH.
20338         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
20339
20340 2009-04-01  Bruno Haible  <bruno@clisp.org>
20341
20342         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
20343
20344 2009-04-01  Bruno Haible  <bruno@clisp.org>
20345
20346         Rename module 'visibility'.
20347         * modules/lib-symbol-visibility: Renamed from modules/visibility.
20348         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
20349         * doc/gnulib.texi: Update.
20350         * MODULES.html.sh (Misc): Update.
20351         * NEWS: Mention the change.
20352
20353 2009-04-01  Simon Josefsson  <simon@josefsson.org>
20354
20355         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
20356         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
20357         Eric Blake <ebb9@byu.net> for review.
20358         * MODULES.html.sh: Add lib-msvc-compat.
20359         * doc/gnulib.texi: Link to new section.
20360         * m4/ld-output-def.m4: New file.
20361         * doc/ld-output-def.texi: New file.
20362
20363 2009-04-01  Simon Josefsson  <simon@josefsson.org>
20364
20365         Rename ld-version-script to lib-symbol-versions.  Suggested by
20366         Bruno Haible <bruno@clisp.org>.
20367         * modules/ld-version-script: Renamed to lib-symbol-versions.
20368         * doc/ld-version-script.texi: Fix module name.
20369         * MODULES.html.sh: Add lib-symbol-versions.
20370
20371 2009-03-31  Simon Josefsson  <simon@josefsson.org>
20372
20373         * modules/u64-tests: New file.
20374         * tests/test-u64.c: New file.
20375
20376 2009-03-04  Simon Josefsson  <simon@josefsson.org>
20377
20378         * MODULES.html.sh: Mention u64.
20379         * modules/u64: New module.
20380         * modules/crypto/sha512: Depend on u64 module instead of providing
20381         u64.h.
20382
20383 2009-03-27  Eric Blake  <ebb9@byu.net>
20384
20385         test-strerror: make debugging EAI_SYSTEM easier
20386         * modules/getaddrinfo-tests (Depends-on): Add strerror.
20387         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
20388         failure was EAI_SYSTEM.
20389
20390 2009-03-25  Bruno Haible  <bruno@clisp.org>
20391
20392         Fix a problem with --enable-relocatable on Solaris 7.
20393         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
20394         since 2008-02-24.
20395
20396 2009-03-25  Eric Blake  <ebb9@byu.net>
20397
20398         test-sockets: avoid gcc warning
20399         * tests/test-sockets.c (main): Silence compiler warning.
20400
20401 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
20402
20403         New modules nproc, pthread, contributed by Glen Lenker.
20404
20405         * MODULES.html.sh: Add pthread, nproc.
20406         * lib/nproc.c: New file.
20407         * lib/nproc.h: New file.
20408         * lib/pthread.in.h: New file.
20409         * m4/pthread.m4: New file.
20410         * modules/nproc: New file.
20411         * modules/pthread: New file.
20412
20413 2009-03-24  Simon Josefsson  <simon@josefsson.org>
20414
20415         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
20416         New variable.
20417
20418 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
20419
20420         filevercmp: handle simple~ and numbered.~3~ backup suffixes
20421         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
20422         * tests/test-filevercmp.c: Add tests for backup suffixes.
20423
20424 2009-03-24  Simon Josefsson  <simon@josefsson.org>
20425
20426         * modules/stdlib (Depends-on): Add stdint, needed when defining
20427         struct random_data on, for example, HP-UX 10.20.  Reported by
20428         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
20429
20430 2009-03-24  Simon Josefsson  <simon@josefsson.org>
20431
20432         * lib/readline.c (readline): Call fflush on stdout after printing
20433         prompt.
20434
20435 2009-03-20  Bruno Haible  <bruno@clisp.org>
20436
20437         Remove dependency from 'close' module to -lws2_32 on native Windows.
20438         * lib/close-hook.h: New file.
20439         * lib/close-hook.c: New file.
20440         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
20441         w32sock.h.
20442         (_gl_close_fd_maybe_socket): Remove function.
20443         (rpl_close): Invoke execute_all_close_hooks instead of
20444         _gl_close_fd_maybe_socket.
20445         * lib/sockets.c: Include close-hook.h, w32sock.h.
20446         (close_fd_maybe_socket): New function, essentially from lib/close.c.
20447         (close_sockets_hook): New variable.
20448         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
20449         (gl_sockets_cleanup): Unregister it.
20450         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
20451         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
20452         * modules/close-hook: New file.
20453         * modules/close (Files): Remove lib/w32sock.h.
20454         (Depends-on): Add close-hook.
20455         (Link): Remove section.
20456         * modules/sockets (Files): Add lib/w32sock.h.
20457         (Depends-on): Add close-hook.
20458         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
20459         invocation.
20460         * NEWS: Mention that LIB_CLOSE is gone.
20461
20462 2009-03-23  Eric Blake  <ebb9@byu.net>
20463
20464         signal-tests: test previous patch
20465         * tests/test-signal.c: New file.
20466         * modules/signal-tests: Likewise.
20467
20468         signal.h: always support 'volatile sig_atomic_t'
20469         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
20470         (gl_SIGNAL_H_DEFAULTS): Add a default.
20471         * modules/signal (Makefile.am): Substitute if needed.
20472         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
20473         users can blindly add volatile.
20474         * doc/posix-headers/signal.texi (signal.h): Document it.
20475         Reported by Matthew Woehlke.
20476
20477 2009-03-23  Jim Meyering  <meyering@redhat.com>
20478
20479         pathmax: PATH_MAX: use pathconf only when available
20480         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
20481         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
20482         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
20483         This avoids a link failure in a PSP cross-compilation environment
20484         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
20485
20486         * lib/vasnprintf.c (divide): Fix typo in comment.
20487
20488 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20489
20490         * gnulib-tool (func_filter_filelist): Fix comment.
20491
20492 2009-03-20  Bruno Haible  <bruno@clisp.org>
20493
20494         Make sockets.h self-contained.
20495         * lib/sockets.c: Include sockets.h first.
20496         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
20497
20498 2009-03-19  Eric Blake  <ebb9@byu.net>
20499
20500         doc: mention more functions added in cygwin 1.7.0
20501         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
20502         addition.
20503         * doc/posix-functions/log2f.texi: Likewise.
20504
20505 2009-03-19  Jim Meyering  <meyering@redhat.com>
20506
20507         fsusage: avoid syntax error due to statement-before-declaration
20508         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
20509         after all declarations.  Reported by Matthew Woehlke in
20510         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
20511
20512 2009-03-18  Eric Blake  <ebb9@byu.net>
20513
20514         build-aux/compile: sync from automake
20515         * build-aux/compile: New file, from automake.
20516         * config/srclist.txt: Mention build-aux/compile.
20517
20518 2009-03-17  Bruno Haible  <bruno@clisp.org>
20519
20520         * lib/git-merge-changelog.c: Fix typo in comment.
20521         Reported by Reuben Thomas <rrt@sc3d.org>.
20522
20523 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
20524
20525         * m4/regex.m4: update and improve help for
20526         --without-included-regex.
20527
20528 2009-03-17  Simon Josefsson  <simon@josefsson.org>
20529
20530         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
20531         failure on missing include files.
20532
20533 2009-03-17  Eric Blake  <ebb9@byu.net>
20534
20535         doc: mention more functions added in cygwin 1.7.0
20536         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
20537         addition.
20538         * doc/posix-functions/fwscanf.texi: Likewise.
20539         * doc/posix-functions/swprintf.texi: Likewise.
20540         * doc/posix-functions/swscanf.texi: Likewise.
20541         * doc/posix-functions/vfwprintf.texi: Likewise.
20542         * doc/posix-functions/vfwscanf.texi: Likewise.
20543         * doc/posix-functions/vswprintf.texi: Likewise.
20544         * doc/posix-functions/vswscanf.texi: Likewise.
20545         * doc/posix-functions/vwprintf.texi: Likewise.
20546         * doc/posix-functions/vwscanf.texi: Likewise.
20547         * doc/posix-functions/wcscasecmp.texi: Likewise.
20548         * doc/posix-functions/wcsdup.texi: Likewise.
20549         * doc/posix-functions/wcsftime.texi: Likewise.
20550         * doc/posix-functions/wcsncasecmp.texi: Likewise.
20551         * doc/posix-functions/wprintf.texi: Likewise.
20552         * doc/posix-functions/wscanf.texi: Likewise.
20553         * doc/glibc-functions/gethostbyname2.texi: Likewise.
20554
20555 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20556
20557         maint.mk: really add $(AM_MAKEFLAGS)
20558         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
20559         was inadvertently omitted in the last commit.
20560         Spotted by Bruno Haible.
20561
20562         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
20563         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
20564         $(AM_MAKEFLAGS)' rather than plain `make'.
20565
20566         gnulib-tool: execute $MAKE not make
20567         * gnulib-tool: Default $MAKE to 'make'.
20568         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
20569         than make.  Initialize $MAKE in the do-autobuild script.
20570
20571         gnulib-tool: use $MAKE not make in generated files
20572         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
20573         make, in generated files.  Initialize $MAKE in the do-autobuild
20574         script.
20575
20576         * top/GNUmakefile (_have-git-version-gen): Fix typo.
20577
20578         GNUmakefile: disable parallelism only for multiple, recursive targets
20579         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
20580         additions in the Makefile.
20581         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
20582         by Automake.
20583         (.NOTPARALLEL): Only disable parallel builds if multiple targets
20584         are listed on the command line and at least one of them is
20585         listed in $(ALL_RECURSIVE_TARGETS).
20586
20587 2009-03-14  Bruno Haible  <bruno@clisp.org>
20588
20589         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
20590         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
20591         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
20592         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
20593         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
20594         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
20595         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
20596         unistr/u8-uctomb.
20597         * modules/unistr/u8-strchr (Depends-on): Likewise.
20598         * modules/unistr/u8-strrchr (Depends-on): Likewise.
20599         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
20600         unistr/u16-uctomb.
20601         * modules/unistr/u16-strchr (Depends-on): Likewise.
20602         * modules/unistr/u16-strrchr (Depends-on): Likewise.
20603
20604 2009-03-12  Bruno Haible  <bruno@clisp.org>
20605
20606         Work around select() bug on Interix 3.5.
20607         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
20608         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
20609         * m4/select.m4: New file.
20610         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
20611         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
20612         * modules/select (Files): Add m4/select.m4.
20613         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
20614         * modules/nanosleep (Depends-on): Add select.
20615         * modules/poll (Depends-on): Likewise.
20616         * doc/posix-functions/select.texi: Mention the Interix bug.
20617         Reported by Markus Duft <mduft@gentoo.org>.
20618
20619         * lib/select.c: Renamed from lib/winsock-select.c.
20620         * modules/select (Files): Add lib/select.c, remove
20621         lib/winsock-select.c.
20622         (configure.ac): Update.
20623
20624 2009-03-12  Jim Meyering  <meyering@redhat.com>
20625
20626         avoid gcc warnings about unused macro definitions
20627         * lib/readtokens.c (STREQ): Remove unused definition.
20628         * lib/xmalloc.c (SIZE_MAX): Likewise.
20629         * lib/openat-die.c (N_): Likewise.
20630         * lib/mountlist.c (SIZE_MAX): Remove definition.
20631         Instead, include <stdint.h>.
20632         * lib/readutmp.c: Likewise.
20633         * modules/readutmp (Depends-on): Add stdint.
20634         * modules/mountlist (Depends-on): Add stdint.
20635         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
20636
20637 2009-03-10  Bruno Haible  <bruno@clisp.org>
20638
20639         Tests for module 'mbmemcasecoll'.
20640         * modules/mbmemcasecoll-tests: New file.
20641         * tests/test-mbmemcasecoll1.sh: New file.
20642         * tests/test-mbmemcasecoll2.sh: New file.
20643         * tests/test-mbmemcasecoll3.sh: New file.
20644         * tests/test-mbmemcasecoll.c: New file.
20645
20646         New module 'mbmemcasecoll'.
20647         * lib/mbmemcasecoll.h: New file.
20648         * lib/mbmemcasecoll.c: New file.
20649         * modules/mbmemcasecoll: New file.
20650
20651         * tests/test-mbmemcasecmp.h: New file, extracted from
20652         tests/test-mbmemcasecmp.c.
20653         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
20654         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
20655         (main): Update.
20656         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
20657
20658 2009-03-09  Bruno Haible  <bruno@clisp.org>
20659
20660         Tests for module 'mbmemcasecmp'.
20661         * modules/mbmemcasecmp-tests: New file.
20662         * tests/test-mbmemcasecmp1.sh: New file.
20663         * tests/test-mbmemcasecmp2.sh: New file.
20664         * tests/test-mbmemcasecmp3.sh: New file.
20665         * tests/test-mbmemcasecmp.c: New file.
20666
20667         New module 'mbmemcasecmp'.
20668         * lib/mbmemcasecmp.h: New file.
20669         * lib/mbmemcasecmp.c: New file.
20670         * modules/mbmemcasecmp: New file.
20671
20672 2009-03-09  Bruno Haible  <bruno@clisp.org>
20673
20674         Tests for module 'unicase/ulc-casecoll'.
20675         * modules/unicase/ulc-casecoll-tests: New file.
20676         * tests/unicase/test-ulc-casecoll1.sh: New file.
20677         * tests/unicase/test-ulc-casecoll2.sh: New file.
20678         * tests/unicase/test-ulc-casecoll.c: New file.
20679
20680         New module 'unicase/ulc-casecoll'.
20681         * lib/unicase.h (ulc_casecoll): New declaration.
20682         * lib/unicase/ulc-casecoll.c: New file.
20683         * modules/unicase/ulc-casecoll: New file.
20684
20685         New module 'unicase/ulc-casexfrm'.
20686         * lib/unicase.h (ulc_casexfrm): New declaration.
20687         * lib/unicase/ulc-casexfrm.c: New file.
20688         * modules/unicase/ulc-casexfrm: New file.
20689
20690 2009-03-09  Bruno Haible  <bruno@clisp.org>
20691
20692         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
20693         invocations.
20694
20695         * m4/mbscasecmp.m4: Remove file.
20696         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
20697         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
20698
20699         * m4/mbscasestr.m4: Remove file.
20700         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
20701         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
20702
20703         * m4/mbschr.m4: Remove file.
20704         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
20705         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
20706
20707         * m4/mbscspn.m4: Remove file.
20708         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
20709         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
20710
20711         * m4/mbslen.m4: Remove file.
20712         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
20713         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
20714
20715         * m4/mbsncasecmp.m4: Remove file.
20716         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
20717         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
20718
20719         * m4/mbsnlen.m4: Remove file.
20720         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
20721         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
20722
20723         * m4/mbspbrk.m4: Remove file.
20724         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
20725         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
20726
20727         * m4/mbspcasecmp.m4: Remove file.
20728         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
20729         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
20730
20731         * m4/mbsrchr.m4: Remove file.
20732         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
20733         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
20734
20735         * m4/mbssep.m4: Remove file.
20736         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
20737         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
20738
20739         * m4/mbsspn.m4: Remove file.
20740         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
20741         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
20742
20743         * m4/mbsstr.m4: Remove file.
20744         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
20745         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
20746
20747         * m4/mbstok_r.m4: Remove file.
20748         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
20749         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
20750
20751         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
20752
20753         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
20754         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
20755
20756         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
20757
20758 2009-03-08  Bruno Haible  <bruno@clisp.org>
20759
20760         Tests for module 'unicase/ulc-casecmp'.
20761         * modules/unicase/ulc-casecmp-tests: New file.
20762         * tests/unicase/test-ulc-casecmp1.sh: New file.
20763         * tests/unicase/test-ulc-casecmp2.sh: New file.
20764         * tests/unicase/test-ulc-casecmp.c: New file.
20765
20766         New module 'unicase/ulc-casecmp'.
20767         * lib/unicase.h (ulc_casecmp): New declaration.
20768         * lib/unicase/ulc-casecmp.c: New file.
20769         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
20770         'const SRC_UNIT *'.
20771         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
20772         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
20773         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
20774         * modules/unicase/ulc-casecmp: New file.
20775
20776         Tests for module 'unicase/u32-is-cased'.
20777         * modules/unicase/u32-is-cased-tests: New file.
20778         * tests/unicase/test-u32-is-cased.c: New file.
20779
20780         Tests for module 'unicase/u16-is-cased'.
20781         * modules/unicase/u16-is-cased-tests: New file.
20782         * tests/unicase/test-u16-is-cased.c: New file.
20783
20784         Tests for module 'unicase/u8-is-cased'.
20785         * modules/unicase/u8-is-cased-tests: New file.
20786         * tests/unicase/test-u8-is-cased.c: New file.
20787         * tests/unicase/test-is-cased.h: New file.
20788
20789         New module 'unicase/u32-is-cased'.
20790         * lib/unicase/u32-is-cased.c: New file.
20791         * modules/unicase/u32-is-cased: New file.
20792
20793         New module 'unicase/u16-is-cased'.
20794         * lib/unicase/u16-is-cased.c: New file.
20795         * modules/unicase/u16-is-cased: New file.
20796
20797         New module 'unicase/u8-is-cased'.
20798         * lib/unicase/u8-is-cased.c: New file.
20799         * lib/unicase/u-is-cased.h: New file.
20800         * modules/unicase/u8-is-cased: New file.
20801
20802         Tests for module 'unicase/u32-is-casefolded'.
20803         * modules/unicase/u32-is-casefolded-tests: New file.
20804         * tests/unicase/test-u32-is-casefolded.c: New file.
20805
20806         Tests for module 'unicase/u16-is-casefolded'.
20807         * modules/unicase/u16-is-casefolded-tests: New file.
20808         * tests/unicase/test-u16-is-casefolded.c: New file.
20809
20810         Tests for module 'unicase/u8-is-casefolded'.
20811         * modules/unicase/u8-is-casefolded-tests: New file.
20812         * tests/unicase/test-u8-is-casefolded.c: New file.
20813         * tests/unicase/test-is-casefolded.h: New file.
20814
20815         New module 'unicase/u32-is-casefolded'.
20816         * lib/unicase/u32-is-casefolded.c: New file.
20817         * modules/unicase/u32-is-casefolded: New file.
20818
20819         New module 'unicase/u16-is-casefolded'.
20820         * lib/unicase/u16-is-casefolded.c: New file.
20821         * modules/unicase/u16-is-casefolded: New file.
20822
20823         New module 'unicase/u8-is-casefolded'.
20824         * lib/unicase/u8-is-casefolded.c: New file.
20825         * modules/unicase/u8-is-casefolded: New file.
20826
20827         Tests for module 'unicase/u32-is-titlecase'.
20828         * modules/unicase/u32-is-titlecase-tests: New file.
20829         * tests/unicase/test-u32-is-titlecase.c: New file.
20830
20831         Tests for module 'unicase/u16-is-titlecase'.
20832         * modules/unicase/u16-is-titlecase-tests: New file.
20833         * tests/unicase/test-u16-is-titlecase.c: New file.
20834
20835         Tests for module 'unicase/u8-is-titlecase'.
20836         * modules/unicase/u8-is-titlecase-tests: New file.
20837         * tests/unicase/test-u8-is-titlecase.c: New file.
20838         * tests/unicase/test-is-titlecase.h: New file.
20839
20840         New module 'unicase/u32-is-titlecase'.
20841         * lib/unicase/u32-is-titlecase.c: New file.
20842         * modules/unicase/u32-is-titlecase: New file.
20843
20844         New module 'unicase/u16-is-titlecase'.
20845         * lib/unicase/u16-is-titlecase.c: New file.
20846         * modules/unicase/u16-is-titlecase: New file.
20847
20848         New module 'unicase/u8-is-titlecase'.
20849         * lib/unicase/u8-is-titlecase.c: New file.
20850         * modules/unicase/u8-is-titlecase: New file.
20851
20852         Tests for module 'unicase/u32-is-lowercase'.
20853         * modules/unicase/u32-is-lowercase-tests: New file.
20854         * tests/unicase/test-u32-is-lowercase.c: New file.
20855
20856         Tests for module 'unicase/u16-is-lowercase'.
20857         * modules/unicase/u16-is-lowercase-tests: New file.
20858         * tests/unicase/test-u16-is-lowercase.c: New file.
20859
20860         Tests for module 'unicase/u8-is-lowercase'.
20861         * modules/unicase/u8-is-lowercase-tests: New file.
20862         * tests/unicase/test-u8-is-lowercase.c: New file.
20863         * tests/unicase/test-is-lowercase.h: New file.
20864
20865         New module 'unicase/u32-is-lowercase'.
20866         * lib/unicase/u32-is-lowercase.c: New file.
20867         * modules/unicase/u32-is-lowercase: New file.
20868
20869         New module 'unicase/u16-is-lowercase'.
20870         * lib/unicase/u16-is-lowercase.c: New file.
20871         * modules/unicase/u16-is-lowercase: New file.
20872
20873         New module 'unicase/u8-is-lowercase'.
20874         * lib/unicase/u8-is-lowercase.c: New file.
20875         * modules/unicase/u8-is-lowercase: New file.
20876
20877         Tests for module 'unicase/u32-is-uppercase'.
20878         * modules/unicase/u32-is-uppercase-tests: New file.
20879         * tests/unicase/test-u32-is-uppercase.c: New file.
20880
20881         Tests for module 'unicase/u16-is-uppercase'.
20882         * modules/unicase/u16-is-uppercase-tests: New file.
20883         * tests/unicase/test-u16-is-uppercase.c: New file.
20884
20885         Tests for module 'unicase/u8-is-uppercase'.
20886         * modules/unicase/u8-is-uppercase-tests: New file.
20887         * tests/unicase/test-u8-is-uppercase.c: New file.
20888         * tests/unicase/test-is-uppercase.h: New file.
20889
20890         New module 'unicase/u32-is-uppercase'.
20891         * lib/unicase/u32-is-uppercase.c: New file.
20892         * modules/unicase/u32-is-uppercase: New file.
20893
20894         New module 'unicase/u16-is-uppercase'.
20895         * lib/unicase/u16-is-uppercase.c: New file.
20896         * modules/unicase/u16-is-uppercase: New file.
20897
20898         New module 'unicase/u8-is-uppercase'.
20899         * lib/unicase/u8-is-uppercase.c: New file.
20900         * modules/unicase/u8-is-uppercase: New file.
20901
20902         New module 'unicase/u32-is-invariant'.
20903         * lib/unicase/u32-is-invariant.c: New file.
20904         * modules/unicase/u32-is-invariant: New file.
20905
20906         New module 'unicase/u16-is-invariant'.
20907         * lib/unicase/u16-is-invariant.c: New file.
20908         * modules/unicase/u16-is-invariant: New file.
20909
20910         New module 'unicase/u8-is-invariant'.
20911         * lib/unicase/u8-is-invariant.c: New file.
20912         * lib/unicase/invariant.h: New file.
20913         * lib/unicase/u-is-invariant.h: New file.
20914         * modules/unicase/u8-is-invariant: New file.
20915
20916         Tests for module 'unicase/u32-casecoll'.
20917         * modules/unicase/u32-casecoll-tests: New file.
20918         * tests/unicase/test-u32-casecoll.c: New file.
20919
20920         Tests for module 'unicase/u16-casecoll'.
20921         * modules/unicase/u16-casecoll-tests: New file.
20922         * tests/unicase/test-u16-casecoll.c: New file.
20923
20924         Tests for module 'unicase/u8-casecoll'.
20925         * modules/unicase/u8-casecoll-tests: New file.
20926         * tests/unicase/test-u8-casecoll.c: New file.
20927
20928         New module 'unicase/u32-casecoll'.
20929         * lib/unicase/u32-casecoll.c: New file.
20930         * modules/unicase/u32-casecoll: New file.
20931
20932         New module 'unicase/u16-casecoll'.
20933         * lib/unicase/u16-casecoll.c: New file.
20934         * modules/unicase/u16-casecoll: New file.
20935
20936         New module 'unicase/u8-casecoll'.
20937         * lib/unicase/u8-casecoll.c: New file.
20938         * lib/unicase/u-casecoll.h: New file.
20939         * modules/unicase/u8-casecoll: New file.
20940
20941         New module 'unicase/u32-casexfrm'.
20942         * lib/unicase/u32-casexfrm.c: New file.
20943         * modules/unicase/u32-casexfrm: New file.
20944
20945         New module 'unicase/u16-casexfrm'.
20946         * lib/unicase/u16-casexfrm.c: New file.
20947         * modules/unicase/u16-casexfrm: New file.
20948
20949         New module 'unicase/u8-casexfrm'.
20950         * lib/unicase/u8-casexfrm.c: New file.
20951         * lib/unicase/u-casexfrm.h: New file.
20952         * modules/unicase/u8-casexfrm: New file.
20953
20954         Tests for module 'unicase/u32-casecmp'.
20955         * modules/unicase/u32-casecmp-tests: New file.
20956         * tests/unicase/test-u32-casecmp.c: New file.
20957
20958         Tests for module 'unicase/u16-casecmp'.
20959         * modules/unicase/u16-casecmp-tests: New file.
20960         * tests/unicase/test-u16-casecmp.c: New file.
20961
20962         Tests for module 'unicase/u8-casecmp'.
20963         * modules/unicase/u8-casecmp-tests: New file.
20964         * tests/unicase/test-u8-casecmp.c: New file.
20965         * tests/unicase/test-casecmp.h: New file.
20966
20967         New module 'unicase/u32-casecmp'.
20968         * lib/unicase/u32-casecmp.c: New file.
20969         * modules/unicase/u32-casecmp: New file.
20970
20971         New module 'unicase/u16-casecmp'.
20972         * lib/unicase/u16-casecmp.c: New file.
20973         * modules/unicase/u16-casecmp: New file.
20974
20975         New module 'unicase/u8-casecmp'.
20976         * lib/unicase/u8-casecmp.c: New file.
20977         * lib/unicase/u-casecmp.h: New file.
20978         * modules/unicase/u8-casecmp: New file.
20979
20980         Tests for module 'unicase/u32-casefold'.
20981         * modules/unicase/u32-casefold-tests: New file.
20982         * tests/unicase/test-u32-casefold.c: New file.
20983
20984         Tests for module 'unicase/u16-casefold'.
20985         * modules/unicase/u16-casefold-tests: New file.
20986         * tests/unicase/test-u16-casefold.c: New file.
20987
20988         Tests for module 'unicase/u8-casefold'.
20989         * modules/unicase/u8-casefold-tests: New file.
20990         * tests/unicase/test-u8-casefold.c: New file.
20991
20992         New module 'unicase/u32-casefold'.
20993         * lib/unicase/u32-casefold.c: New file.
20994         * modules/unicase/u32-casefold: New file.
20995
20996         New module 'unicase/u16-casefold'.
20997         * lib/unicase/u16-casefold.c: New file.
20998         * modules/unicase/u16-casefold: New file.
20999
21000         New module 'unicase/u8-casefold'.
21001         * lib/unicase/u8-casefold.c: New file.
21002         * lib/unicase/u-casefold.h: New file.
21003         * modules/unicase/u8-casefold: New file.
21004
21005         New module 'unicase/tocasefold'.
21006         * lib/unicase/casefold.h: New file.
21007         * lib/unicase/tocasefold.c: New file.
21008         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
21009         * modules/unicase/tocasefold: New file.
21010
21011         Tests for module 'unicase/u32-totitle'.
21012         * modules/unicase/u32-totitle-tests: New file.
21013         * tests/unicase/test-u32-totitle.c: New file.
21014
21015         Tests for module 'unicase/u16-totitle'.
21016         * modules/unicase/u16-totitle-tests: New file.
21017         * tests/unicase/test-u16-totitle.c: New file.
21018
21019         Tests for module 'unicase/u8-totitle'.
21020         * modules/unicase/u8-totitle-tests: New file.
21021         * tests/unicase/test-u8-totitle.c: New file.
21022
21023         New module 'unicase/u32-totitle'.
21024         * lib/unicase/u32-totitle.c: New file.
21025         * modules/unicase/u32-totitle: New file.
21026
21027         New module 'unicase/u16-totitle'.
21028         * lib/unicase/u16-totitle.c: New file.
21029         * modules/unicase/u16-totitle: New file.
21030
21031         New module 'unicase/u8-totitle'.
21032         * lib/unicase/u8-totitle.c: New file.
21033         * lib/unicase/u-totitle.h: New file.
21034         * modules/unicase/u8-totitle: New file.
21035
21036         Tests for module 'unicase/u32-tolower'.
21037         * modules/unicase/u32-tolower-tests: New file.
21038         * tests/unicase/test-u32-tolower.c: New file.
21039
21040         Tests for module 'unicase/u16-tolower'.
21041         * modules/unicase/u16-tolower-tests: New file.
21042         * tests/unicase/test-u16-tolower.c: New file.
21043
21044         Tests for module 'unicase/u8-tolower'.
21045         * modules/unicase/u8-tolower-tests: New file.
21046         * tests/unicase/test-u8-tolower.c: New file.
21047
21048         New module 'unicase/u32-tolower'.
21049         * lib/unicase/u32-tolower.c: New file.
21050         * modules/unicase/u32-tolower: New file.
21051
21052         New module 'unicase/u16-tolower'.
21053         * lib/unicase/u16-tolower.c: New file.
21054         * modules/unicase/u16-tolower: New file.
21055
21056         New module 'unicase/u8-tolower'.
21057         * lib/unicase/u8-tolower.c: New file.
21058         * modules/unicase/u8-tolower: New file.
21059
21060         Tests for module 'unicase/u32-toupper'.
21061         * modules/unicase/u32-toupper-tests: New file.
21062         * tests/unicase/test-u32-toupper.c: New file.
21063
21064         Tests for module 'unicase/u16-toupper'.
21065         * modules/unicase/u16-toupper-tests: New file.
21066         * tests/unicase/test-u16-toupper.c: New file.
21067
21068         Tests for module 'unicase/u8-toupper'.
21069         * modules/unicase/u8-toupper-tests: New file.
21070         * tests/unicase/test-u8-toupper.c: New file.
21071
21072         New module 'unicase/u32-toupper'.
21073         * lib/unicase/u32-toupper.c: New file.
21074         * modules/unicase/u32-toupper: New file.
21075
21076         New module 'unicase/u16-toupper'.
21077         * lib/unicase/u16-toupper.c: New file.
21078         * modules/unicase/u16-toupper: New file.
21079
21080         New module 'unicase/u8-toupper'.
21081         * lib/unicase/u8-toupper.c: New file.
21082         * modules/unicase/u8-toupper: New file.
21083
21084         New module 'unicase/u32-casemap'.
21085         * lib/unicase/u32-casemap.c: New file.
21086         * modules/unicase/u32-casemap: New file.
21087
21088         New module 'unicase/u16-casemap'.
21089         * lib/unicase/u16-casemap.c: New file.
21090         * modules/unicase/u16-casemap: New file.
21091
21092         New module 'unicase/u8-casemap'.
21093         * lib/unicase/unicasemap.h: New file.
21094         * lib/unicase/u8-casemap.c: New file.
21095         * lib/unicase/u-casemap.h: New file.
21096         * modules/unicase/u8-casemap: New file.
21097
21098         New module 'unicase/special-casing'.
21099         * lib/unicase/special-casing.h: New file.
21100         * lib/unicase/special-casing.c: New file.
21101         * lib/unicase/special-casing-table.gperf: New file, generated by
21102         gen-uni-tables.c.
21103         * modules/unicase/special-casing: New file.
21104
21105         Tests for module 'unicase/locale-language'.
21106         * modules/unicase/locale-language-tests: New file.
21107         * tests/unicase/test-locale-language.sh: New file.
21108         * tests/unicase/test-locale-language.c: New file.
21109
21110         New module 'unicase/locale-language'.
21111         * lib/unicase/locale-language.c: New file.
21112         * lib/unicase/locale-languages.gperf: New file.
21113         * modules/unicase/locale-language: New file.
21114
21115         Generate more tables for case conversion and case folding.
21116         * lib/gen-uni-tables.c (SCC_*): New enum items.
21117         (struct special_casing_rule): New type.
21118         (casing_rules, num_casing_rules, allocated_casing_rules): New
21119         variables.
21120         (add_casing_rule, fill_casing_rules): New functions.
21121         (struct casefold_rule): New type.
21122         (casefolding_rules, num_casefolding_rules,
21123         allocated_casefolding_rules): New variables.
21124         (fill_casefolding_rules): New function.
21125         (unicode_casefold): New variable.
21126         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
21127         sort_casing_rules, output_casing_rules): New functions.
21128         (main): Accept to more arguments: SpecialCasing.txt and
21129         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
21130         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
21131         Output mapping for casefolding.
21132
21133         * lib/unicase.h: Include stdbool.h, uninorm.h.
21134         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
21135         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
21136         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
21137         arguments.
21138         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
21139         resultp arguments.
21140         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
21141         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
21142         resultp arguments.
21143         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
21144         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
21145         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
21146         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
21147         declarations.
21148         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
21149
21150 2009-03-08  Bruno Haible  <bruno@clisp.org>
21151
21152         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
21153         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
21154         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
21155         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
21156
21157 2009-03-07  Bruno Haible  <bruno@clisp.org>
21158
21159         Adjust u*_normcmp, u*_normcoll API.
21160         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
21161         u16_normcoll, u32_normcoll): Change failure conventions.
21162         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
21163         errno and return -1.
21164         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
21165
21166 2009-03-07  Bruno Haible  <bruno@clisp.org>
21167
21168         Tests for module 'uninorm/u32-normcoll'.
21169         * modules/uninorm/u32-normcoll-tests: New file.
21170         * tests/uninorm/test-u32-normcoll.c: New file.
21171
21172         Tests for module 'uninorm/u16-normcoll'.
21173         * modules/uninorm/u16-normcoll-tests: New file.
21174         * tests/uninorm/test-u16-normcoll.c: New file.
21175
21176         Tests for module 'uninorm/u8-normcoll'.
21177         * modules/uninorm/u8-normcoll-tests: New file.
21178         * tests/uninorm/test-u8-normcoll.c: New file.
21179
21180 2009-03-07  Bruno Haible  <bruno@clisp.org>
21181
21182         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
21183         tests/uninorm/test-u32-normcmp.c.
21184         * tests/uninorm/test-u32-normcmp.c: Include it.
21185         (test_nonascii): New function, extracted from main. Add some more
21186         tests.
21187         (main): Invoke test_ascii and test_nonascii.
21188         * modules/uninorm/u32-normcmp-tests (Files): Add
21189         tests/uninorm/test-u32-normcmp.h.
21190         (Depends-on): Remove uninorm/u32-normcmp.
21191
21192         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
21193         tests/uninorm/test-u16-normcmp.c.
21194         * tests/uninorm/test-u16-normcmp.c: Include it.
21195         (test_nonascii): New function, extracted from main. Add some more
21196         tests.
21197         (main): Invoke test_ascii and test_nonascii.
21198         * modules/uninorm/u16-normcmp-tests (Files): Add
21199         tests/uninorm/test-u16-normcmp.h.
21200         (Depends-on): Remove uninorm/u16-normcmp.
21201
21202         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
21203         tests/uninorm/test-u8-normcmp.c.
21204         * tests/uninorm/test-u8-normcmp.c: Include it.
21205         (test_nonascii): New function, extracted from main. Add some more
21206         tests.
21207         (main): Invoke test_ascii and test_nonascii.
21208         * modules/uninorm/u8-normcmp-tests (Files): Add
21209         tests/uninorm/test-u8-normcmp.h.
21210         (Depends-on): Remove uninorm/u8-normcmp.
21211
21212 2009-03-07  Bruno Haible  <bruno@clisp.org>
21213
21214         New module 'uninorm/u32-normcoll'.
21215         * lib/uninorm/u32-normcoll.c: New file.
21216         * modules/uninorm/u32-normcoll: New file.
21217
21218         New module 'uninorm/u16-normcoll'.
21219         * lib/uninorm/u16-normcoll.c: New file.
21220         * modules/uninorm/u16-normcoll: New file.
21221
21222         New module 'uninorm/u8-normcoll'.
21223         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
21224         declarations.
21225         * lib/uninorm/u8-normcoll.c: New file.
21226         * lib/uninorm/u-normcoll.h: New file.
21227         * modules/uninorm/u8-normcoll: New file.
21228
21229         New module 'uninorm/u32-normxfrm'.
21230         * lib/uninorm/u32-normxfrm.c: New file.
21231         * modules/uninorm/u32-normxfrm: New file.
21232
21233         New module 'uninorm/u16-normxfrm'.
21234         * lib/uninorm/u16-normxfrm.c: New file.
21235         * modules/uninorm/u16-normxfrm: New file.
21236
21237         New module 'uninorm/u8-normxfrm'.
21238         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
21239         declarations.
21240         * lib/uninorm/u8-normxfrm.c: New file.
21241         * lib/uninorm/u-normxfrm.h: New file.
21242         * modules/uninorm/u8-normxfrm: New file.
21243
21244 2009-03-07  Bruno Haible  <bruno@clisp.org>
21245
21246         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
21247         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
21248         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
21249
21250 2009-03-07  Bruno Haible  <bruno@clisp.org>
21251
21252         New module 'memxfrm'.
21253         * lib/memxfrm.h: New file.
21254         * lib/memxfrm.c: New file.
21255         * modules/memxfrm: New file.
21256
21257 2009-03-07  Bruno Haible  <bruno@clisp.org>
21258
21259         New module 'memcmp2'.
21260         * lib/memcmp2.h: New file.
21261         * lib/memcmp2.c: New file.
21262         * modules/memcmp2: New file.
21263
21264 2009-03-07  Bruno Haible  <bruno@clisp.org>
21265
21266         Tests for module 'uninorm/decomposing-form'.
21267         * modules/uninorm/decomposing-form-tests: New file.
21268         * tests/uninorm/test-decomposing-form.c: New file.
21269
21270         New module 'uninorm/decomposing-form'.
21271         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
21272         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
21273         Add 'decomposing_variant' field.
21274         * lib/uninorm/decomposing-form.c: New file.
21275         * lib/uninorm/nfc.c (uninorm_nfc): Update.
21276         * lib/uninorm/nfd.c (uninorm_nfd): Update.
21277         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
21278         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
21279         * modules/uninorm/decomposing-form: New file.
21280         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
21281         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
21282
21283 2009-03-07  Bruno Haible  <bruno@clisp.org>
21284
21285         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
21286         strings.
21287
21288 2009-03-06  Bruno Haible  <bruno@clisp.org>
21289
21290         Tests for module 'uninorm/u32-normcmp'.
21291         * tests/uninorm/test-u32-normcmp.c: New file.
21292         * modules/uninorm/u32-normcmp-tests: New file.
21293
21294         Tests for module 'uninorm/u16-normcmp'.
21295         * tests/uninorm/test-u16-normcmp.c: New file.
21296         * modules/uninorm/u16-normcmp-tests: New file.
21297
21298         Tests for module 'uninorm/u8-normcmp'.
21299         * tests/uninorm/test-u8-normcmp.c: New file.
21300         * modules/uninorm/u8-normcmp-tests: New file.
21301
21302         New module 'uninorm/u32-normcmp'.
21303         * lib/uninorm/u32-normcmp.c: New file.
21304         * modules/uninorm/u32-normcmp: New file.
21305
21306         New module 'uninorm/u16-normcmp'.
21307         * lib/uninorm/u16-normcmp.c: New file.
21308         * modules/uninorm/u16-normcmp: New file.
21309
21310         New module 'uninorm/u8-normcmp'.
21311         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
21312         declarations.
21313         * lib/uninorm/u8-normcmp.c: New file.
21314         * lib/uninorm/u-normcmp.h: New file.
21315         * modules/uninorm/u8-normcmp: New file.
21316
21317 2009-03-06  Bruno Haible  <bruno@clisp.org>
21318
21319         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
21320         Reported by Eric Blake.
21321
21322 2009-03-06  Eric Blake  <ebb9@byu.net>
21323             Bruno Haible  <bruno@clisp.org>
21324
21325         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
21326         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
21327         condition.
21328         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
21329         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
21330         condition.
21331         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
21332
21333 2009-03-06  Eric Blake  <ebb9@byu.net>
21334
21335         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
21336         to avoid compiler warnings.
21337         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
21338
21339 2009-03-05  Bruno Haible  <bruno@clisp.org>
21340
21341         * tests/test-ftell.c (main): Disable test beyond end of file on
21342         FreeMiNT.
21343         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
21344
21345 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
21346
21347         * lib/filevercmp.c: Move hidden files up in ordering.
21348         * tests/test-filevercmp.c: Add tests for hidden files.
21349
21350 2009-03-04  Bruno Haible  <bruno@clisp.org>
21351
21352         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
21353         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
21354         AM_CFLAGS.
21355         Reported by Simon Josefsson.
21356
21357 2009-03-03  Bruno Haible  <bruno@clisp.org>
21358
21359         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
21360         Reported by Simon Josefsson.
21361
21362         * doc/ld-version-script.texi: Update node reference.
21363
21364 2009-03-03  Bruno Haible  <bruno@clisp.org>
21365
21366         * modules/visibility (License): Change to 'unlimited'.
21367         Suggested by Simon Josefsson.
21368
21369 2009-03-03  Jim Meyering  <meyering@redhat.com>
21370
21371         unlinkdir: cannot_unlink_dir may modify process state
21372         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
21373         it's neither thread-safe nor appropriate for use in a library.
21374
21375 2009-03-03  Eric Blake  <ebb9@byu.net>
21376
21377         test-closein: silence test under Darwin
21378         * tests/test-closein.sh: Ignore stderr from cat, since we don't
21379         care if it dies from EPIPE or EBADF.
21380
21381 2009-03-03  Bruno Haible  <bruno@clisp.org>
21382
21383         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
21384         earlier.
21385         * doc/visibility.texi: Fix @node and @section.
21386
21387 2009-03-03  Simon Josefsson  <simon@josefsson.org>
21388
21389         * doc/gnulib.texi: Link to sections for ld version script and
21390         visibility.
21391         * doc/visibility.texi: Add @node and @section.
21392         * modules/ld-version-script: New module.
21393         * m4/ld-version-script.m4: New file.
21394         * doc/ld-version-script.texi: New file.
21395
21396 2009-03-02  David Lutterkort  <lutter@redhat.com>
21397
21398         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
21399         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
21400
21401 2009-03-02  Bruno Haible  <bruno@clisp.org>
21402
21403         * doc/visibility.texi: Mention libtool's -export-symbols option.
21404
21405 2009-03-02  Jim Meyering  <meyering@redhat.com>
21406
21407         announce-gen: new option: --no-print-checksums
21408         * build-aux/announce-gen (usage): Describe it.
21409         (print_checksums): Print a newline here, not in the [*] footnote.
21410         (main): Honor it.
21411
21412 2009-03-01  Bruno Haible  <bruno@clisp.org>
21413
21414         Use socklen_t in the native Windows replacements prototypes.
21415         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
21416         instead of 'int'.
21417         * lib/getsockopt.c (rpl_getsockopt): Likewise.
21418         * lib/setsockopt.c (rpl_setsockopt): Likewise.
21419         * modules/getsockopt (Depends-on): Add socklen.
21420         * modules/setsockopt (Depends-on): Add socklen.
21421
21422 2009-03-01  Bruno Haible  <bruno@clisp.org>
21423
21424         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
21425         least 4.2.
21426
21427 2009-03-01  Eric Blake  <ebb9@byu.net>
21428             Bruno Haible  <bruno@clisp.org>
21429
21430         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
21431         error messages.
21432         * lib/wait-process.c (wait_subprocess): Omit error message about
21433         deadly signal sent to the child of termsigp != NULL.
21434
21435 2009-03-01  Eric Blake  <ebb9@byu.net>
21436
21437         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
21438
21439 2009-03-01  Bruno Haible  <bruno@clisp.org>
21440
21441         Avoid a gcc warning.
21442         * tests/test-sched.c (b): Make global.
21443         Reported by Eric Blake.
21444
21445 2009-01-19  Martin Lambers  <marlam@marlam.de>
21446
21447         Provide POSIX semantics for socket timeout options on W32.
21448         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
21449         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
21450         * modules/setsockopt: Depend on sys_time module for struct timeval.
21451         * modules/getsockopt: Depend on sys_time module for struct timeval.
21452
21453 2009-03-01  Simon Josefsson  <simon@josefsson.org>
21454
21455         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
21456         __USE_GNU, for consistency with netdb.in.h.
21457         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
21458
21459 2009-03-01  Bruno Haible  <bruno@clisp.org>
21460
21461         More support for FreeMiNT.
21462         * lib/fseeko.c (rpl_fseeko): Complete last commit.
21463         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
21464
21465 2009-03-01  Bruno Haible  <bruno@clisp.org>
21466
21467         More support for FreeMiNT.
21468         * lib/fpurge.c (fpurge): Correct last commit.
21469         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
21470
21471 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21472
21473         Fix unportable awk script in vc-list-files.
21474         * build-aux/vc-list-files: In the replacement awk script, use
21475         substr with a second argument of 1, not zero.
21476         Report by Simon Josefsson.
21477
21478 2009-02-28  Bruno Haible  <bruno@clisp.org>
21479
21480         More support for FreeMiNT.
21481         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
21482         to FreeMiNT today.
21483         * lib/fwriting.c (fwriting): Likewise.
21484         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
21485
21486 2009-02-28  Bruno Haible  <bruno@clisp.org>
21487
21488         * tests/test-freadseek.c (main): Disable test beyond end of file on
21489         FreeMiNT.
21490         * tests/test-ftello.c (main): Likewise.
21491         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
21492
21493 2009-02-28  Bruno Haible  <bruno@clisp.org>
21494
21495         Add tentative support for FreeMiNT.
21496         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
21497         * lib/fpurge.c (fpurge): Likewise.
21498         * lib/freadable.c (freadable): Likewise.
21499         * lib/freading.c (freading): Likewise.
21500         * lib/freadptr.c (freadptr): Likewise.
21501         * lib/freadseek.c (freadptrinc): Likewise.
21502         * lib/fseeko.c (rpl_fseeko): Likewise.
21503         * lib/fseterr.c (fseterr): Likewise.
21504         * lib/fwritable.c (fwritable): Likewise.
21505         * lib/fwriting.c (fwriting): Likewise.
21506         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
21507         Hourihane.
21508         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
21509
21510 2009-02-28  Bruno Haible  <bruno@clisp.org>
21511
21512         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
21513         SIGCHLD.
21514         Reported by Jim Meyering.
21515
21516 2009-02-28  Bruno Haible  <bruno@clisp.org>
21517
21518         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
21519         Mention the results of these tests on various platforms.
21520         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
21521         order.
21522         * doc/posix-functions/printf.texi: Likewise.
21523         * doc/posix-functions/snprintf.texi: Likewise.
21524         * doc/posix-functions/sprintf.texi: Likewise.
21525         * doc/posix-functions/vfprintf.texi: Likewise.
21526         * doc/posix-functions/vprintf.texi: Likewise.
21527         * doc/posix-functions/vsnprintf.texi: Likewise.
21528         * doc/posix-functions/vsprintf.texi: Likewise.
21529         * doc/glibc-functions/obstack_printf.texi: Likewise.
21530         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
21531
21532 2009-02-28  Bruno Haible  <bruno@clisp.org>
21533
21534         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
21535         Reported by Loïc Minier <lool@dooz.org>.
21536
21537 2009-02-27  Bruno Haible  <bruno@clisp.org>
21538
21539         * gnulib-tool (func_import): Make the sed expression used to create the
21540         sed script for updating the .gitignore file POSIX compliant.
21541         Reported by Eric Blake.
21542
21543 2009-02-27  Bruno Haible  <bruno@clisp.org>
21544
21545         * gnulib-tool (sed): Don't alias as "sed --posix".
21546         Reported by Eric Blake.
21547
21548 2009-02-27  Bruno Haible  <bruno@clisp.org>
21549
21550         Avoid test link errors.
21551         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
21552         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
21553         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
21554         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
21555         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
21556
21557 2009-02-27  Bruno Haible  <bruno@clisp.org>
21558
21559         Avoid spurious "(cached)" in configure output.
21560         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
21561         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
21562         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
21563         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
21564         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
21565         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
21566         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
21567         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
21568         Reported by Eric Blake.
21569
21570 2009-02-27  Eric Blake  <ebb9@byu.net>
21571
21572         printf: fix regression in previous patch
21573         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
21574
21575 2009-02-27  Bruno Haible  <bruno@clisp.org>
21576
21577         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
21578         value.
21579         * lib/stdint.in.h: Likewise.
21580         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
21581
21582 2009-02-27  Eric Blake  <ebb9@byu.net>
21583
21584         doc: mention more functions added in cygwin 1.7.0
21585         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
21586         addition.
21587         * doc/posix-functions/open_wmemstream.texi: Likewise.
21588         * doc/posix-functions/wcsnlen.texi: Likewise.
21589         * doc/posix-functions/wcsnrtombs.texi: Likewise.
21590         * doc/posix-functions/wcstod.texi: Likewise.
21591         * doc/posix-functions/wcstof.texi: Likewise.
21592         * doc/posix-functions/wcstoimax.texi: Likewise.
21593         * doc/posix-functions/wcstok.texi: Likewise.
21594         * doc/posix-functions/wcstoumax.texi: Likewise.
21595
21596         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
21597         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
21598         * doc/posix-functions/fprintf.texi: Update.
21599         * doc/posix-functions/printf.texi: Update.
21600         * doc/posix-functions/snprintf.texi: Update.
21601         * doc/posix-functions/sprintf.texi: Update.
21602         * doc/posix-functions/vfprintf.texi: Update.
21603         * doc/posix-functions/vprintf.texi: Update.
21604         * doc/posix-functions/vsnprintf.texi: Update.
21605         * doc/posix-functions/vsprintf.texi: Update.
21606         * doc/glibc-functions/obstack_printf.texi: Update.
21607         * doc/glibc-functions/obstack_vprintf.texi: Update.
21608
21609 2009-02-26  Eric Blake  <ebb9@byu.net>
21610
21611         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
21612         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
21613         compilation bug by using runtime conversion.
21614         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
21615         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
21616         * modules/ceill-tests (Files): Use nan.h.
21617         * modules/floorl-tests (Files): Likewise.
21618         * modules/frexpl-tests (Files): Likewise.
21619         * modules/isnanl-tests (Files): Likewise.
21620         * modules/ldexpl-tests (Files): Likewise.
21621         * modules/roundl-tests (Files): Likewise.
21622         * modules/truncl-tests (Files): Likewise.
21623         * tests/test-ceill.c (main): Use a working NaN.
21624         * tests/test-floorl.c (main): Likewise.
21625         * tests/test-frexpl.c (main): Likewise.
21626         * tests/test-isnan.c (test_long_double): Likewise.
21627         * tests/test-isnanl.h (main): Likewise.
21628         * tests/test-ldexpl.h (main): Likewise.
21629         * tests/test-roundl.h (main): Likewise.
21630         * tests/test-truncl.h (main): Likewise.
21631         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
21632
21633 2009-02-26  Eric Blake  <ebb9@byu.net>
21634             Bruno Haible  <bruno@clisp.org>
21635
21636         Work around a *printf bug with %ls on Solaris.
21637         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
21638         precision is specified, sprintf stops converting the wide string
21639         argument when the number of bytes that have been produced by this
21640         conversion equals or exceeds the precision.
21641         * doc/posix-functions/fprintf.texi: Update.
21642         * doc/posix-functions/printf.texi: Update.
21643         * doc/posix-functions/snprintf.texi: Update.
21644         * doc/posix-functions/sprintf.texi: Update.
21645         * doc/posix-functions/vfprintf.texi: Update.
21646         * doc/posix-functions/vprintf.texi: Update.
21647         * doc/posix-functions/vsnprintf.texi: Update.
21648         * doc/posix-functions/vsprintf.texi: Update.
21649         * doc/glibc-functions/obstack_printf.texi: Update.
21650         * doc/glibc-functions/obstack_vprintf.texi: Update.
21651
21652 2009-02-26  Eric Blake  <ebb9@byu.net>
21653
21654         stdlib: favor compiler check of random.h
21655         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
21656         to avoid an ObjC random.h installed by Swarm.
21657
21658 2009-02-26  Bruno Haible  <bruno@clisp.org>
21659
21660         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
21661         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
21662         Reported by Gary V. Vaughan <gary@gnu.org>.
21663
21664 2009-02-26  Bruno Haible  <bruno@clisp.org>
21665
21666         Fix *printf behaviour regarding the %ls directive.
21667         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
21668         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
21669         NEED_PRINTF_DIRECTIVE_LS.
21670         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
21671         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
21672         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
21673         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
21674         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
21675         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
21676         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
21677         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
21678         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
21679         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
21680         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
21681         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
21682         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
21683         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
21684         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
21685         * doc/posix-functions/fprintf.texi: Update.
21686         * doc/posix-functions/printf.texi: Update.
21687         * doc/posix-functions/snprintf.texi: Update.
21688         * doc/posix-functions/sprintf.texi: Update.
21689         * doc/posix-functions/vfprintf.texi: Update.
21690         * doc/posix-functions/vprintf.texi: Update.
21691         * doc/posix-functions/vsnprintf.texi: Update.
21692         * doc/posix-functions/vsprintf.texi: Update.
21693         * doc/glibc-functions/obstack_printf.texi: Update.
21694         * doc/glibc-functions/obstack_vprintf.texi: Update.
21695         Reported by Eric Blake.
21696
21697 2009-02-25  Bruno Haible  <bruno@clisp.org>
21698
21699         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
21700         with known value.
21701         Reported by Gary V. Vaughan <gary@gnu.org>.
21702
21703 2009-02-25  Bruno Haible  <bruno@clisp.org>
21704
21705         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
21706         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
21707         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
21708         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
21709         Reported by Gary V. Vaughan <gary@gnu.org>.
21710
21711 2009-02-25  Bruno Haible  <bruno@clisp.org>
21712
21713         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
21714         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
21715         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
21716         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
21717         Reported by Gary V. Vaughan <gary@gnu.org>.
21718
21719 2009-02-25  Eric Blake  <ebb9@byu.net>
21720
21721         tests: skip fseek/ftell tests if ungetc is broken
21722         * m4/ungetc.m4: New file.
21723         * modules/fseek-tests: Split test, so ungetc dependency is
21724         separate from rest of test.
21725         * modules/fseeko-tests: Likewise.
21726         * modules/ftell-tests: Likewise.
21727         * modules/ftello-tests: Likewise.
21728         * tests/test-fseek.c (main): Isolate ungetc dependency.
21729         * tests/test-fseeko.c (main): Likewise.
21730         * tests/test-ftell.c (main): Likewise.
21731         * tests/test-ftello.c (main): Likewise.
21732         * tests/test-fseek2.sh: New file.
21733         * tests/test-fseeko2.sh: Likewise.
21734         * tests/test-ftell2.sh: Likewise.
21735         * tests/test-ftello2.sh: Likewise.
21736
21737 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
21738
21739         test-getaddrinfo: fix usage of skip return code 77
21740         * tests/test-gettaddrinfo.c: Return skip code 77 only
21741         for first occurance of skip (4x77 is not 77)
21742
21743 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
21744
21745         strtod: avoid C99 decl-after-statement
21746         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
21747
21748 2009-02-24  Eric Blake  <ebb9@byu.net>
21749
21750         strtod: detect HP-UX 11.31 bug
21751         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
21752         Reported by Gary V. Vaughan.
21753
21754 2009-02-23  Bruno Haible  <bruno@clisp.org>
21755
21756         Fix invalid read past end of memory block.
21757         * lib/vasnprintf.c (DCHAR_SET): Define.
21758         (local_wcslen): Define only when needed.
21759         (local_strnlen, local_wcsnlen): New functions.
21760         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
21761         directives that involve a conversion ourselves.
21762         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
21763         wcsnlen, mbrtowc, wcrtomb.
21764         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
21765         * tests/test-vasprintf-posix.c (test_function): Likewise.
21766         * tests/test-snprintf-posix.h (test_function): Likewise.
21767         * tests/test-sprintf-posix.h (test_function): Likewise.
21768         Reported by Ben Pfaff <blp@cs.stanford.edu>.
21769
21770 2009-02-22  Bruno Haible  <bruno@clisp.org>
21771
21772         Implement new clarified decomposition of Hangul syllables.
21773         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
21774         of type LTV, return only a pairwise decomposition.
21775         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
21776         Likewise.
21777         * tests/uninorm/test-decomposition.c (main): Updated expected result.
21778         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
21779         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
21780
21781 2009-02-22  Bruno Haible  <bruno@clisp.org>
21782
21783         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
21784         zero-length results and shrink excess allocated memory.
21785         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
21786         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
21787         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
21788         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
21789         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
21790         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
21791         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
21792         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
21793         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
21794         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
21795         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
21796         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
21797
21798 2009-02-21  Bruno Haible  <bruno@clisp.org>
21799
21800         * doc/gnulib.texi: Include safe-alloc.texi earlier.
21801         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
21802         spaces after a period. Put a space between a macro name and its
21803         argument list. Trivial rewordings.
21804         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
21805         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
21806         (main): Return 0 explicitly.
21807
21808 2009-02-21  Bruno Haible  <bruno@clisp.org>
21809
21810         Tests for module 'uninorm/filter'.
21811         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
21812         * modules/uninorm/filter-tests: New file.
21813
21814         New module 'uninorm/filter'.
21815         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
21816         uninorm_filter_flush, uninorm_filter_free): New declarations.
21817         * lib/uninorm/uninorm-filter.c: New file.
21818         * modules/uninorm/filter: New file.
21819
21820 2009-02-21  Bruno Haible  <bruno@clisp.org>
21821
21822         Tests for module 'uninorm/nfkc'.
21823         * tests/uninorm/test-nfkc.c: New file.
21824         * tests/uninorm/test-u8-nfkc.c: New file.
21825         * tests/uninorm/test-u16-nfkc.c: New file.
21826         * tests/uninorm/test-u32-nfkc.c: New file.
21827         * tests/uninorm/test-u32-nfkc-big.sh: New file.
21828         * tests/uninorm/test-u32-nfkc-big.c: New file.
21829         * modules/uninorm/nfkc-tests: New file.
21830
21831         New module 'uninorm/nfkc'.
21832         * lib/uninorm/nfkc.c: New file.
21833         * modules/uninorm/nfkc: New file.
21834
21835         Tests for module 'uninorm/nfkd'.
21836         * tests/uninorm/test-nfkd.c: New file.
21837         * tests/uninorm/test-u8-nfkd.c: New file.
21838         * tests/uninorm/test-u16-nfkd.c: New file.
21839         * tests/uninorm/test-u32-nfkd.c: New file.
21840         * tests/uninorm/test-u32-nfkd-big.sh: New file.
21841         * tests/uninorm/test-u32-nfkd-big.c: New file.
21842         * modules/uninorm/nfkd-tests: New file.
21843
21844         New module 'uninorm/nfkd'.
21845         * lib/uninorm/nfkd.c: New file.
21846         * modules/uninorm/nfkd: New file.
21847
21848         Tests for module 'uninorm/nfc'.
21849         * tests/uninorm/test-nfc.c: New file.
21850         * tests/uninorm/test-u8-nfc.c: New file.
21851         * tests/uninorm/test-u16-nfc.c: New file.
21852         * tests/uninorm/test-u32-nfc.c: New file.
21853         * tests/uninorm/test-u32-nfc-big.sh: New file.
21854         * tests/uninorm/test-u32-nfc-big.c: New file.
21855         * modules/uninorm/nfc-tests: New file.
21856
21857         New module 'uninorm/nfc'.
21858         * lib/uninorm/nfc.c: New file.
21859         * modules/uninorm/nfc: New file.
21860
21861         Tests for module 'uninorm/nfd'.
21862         * tests/uninorm/test-nfd.c: New file.
21863         * tests/uninorm/test-u8-nfd.c: New file.
21864         * tests/uninorm/test-u16-nfd.c: New file.
21865         * tests/uninorm/test-u32-nfd.c: New file.
21866         * tests/uninorm/test-u32-nfd-big.sh: New file.
21867         * tests/uninorm/test-u32-nfd-big.c: New file.
21868         * tests/uninorm/test-u32-normalize-big.h: New file.
21869         * tests/uninorm/test-u32-normalize-big.c: New file.
21870         * tests/uninorm/NormalizationTest.txt: New file, created from
21871         Unicode 5.1.0 NormalizationTest.txt.
21872         * modules/uninorm/nfd-tests: New file.
21873
21874         New module 'uninorm/nfd'.
21875         * lib/uninorm/nfd.c: New file.
21876         * modules/uninorm/nfd: New file.
21877
21878         New module 'uninorm/u32-normalize'.
21879         * lib/uninorm/u32-normalize.c: New file.
21880         * modules/uninorm/u32-normalize: New file.
21881
21882         New module 'uninorm/u16-normalize'.
21883         * lib/uninorm/u16-normalize.c: New file.
21884         * modules/uninorm/u16-normalize: New file.
21885
21886         New module 'uninorm/u8-normalize'.
21887         * lib/uninorm/u8-normalize.c: New file.
21888         * lib/uninorm/normalize-internal.h: New file.
21889         * lib/uninorm/u-normalize-internal.h: New file.
21890         * modules/uninorm/u8-normalize: New file.
21891
21892         New module 'uninorm/decompose-internal'.
21893         * lib/uninorm/decompose-internal.c: New file.
21894         * modules/uninorm/decompose-internal: New file.
21895
21896         Tests for module 'uninorm/composition'.
21897         * tests/uninorm/test-composition.c: New file.
21898         * modules/uninorm/composition-tests: New file.
21899
21900         New module 'uninorm/composition'.
21901         * lib/uninorm/composition.c: New file.
21902         * lib/uninorm/composition-table.gperf: New file, generated by
21903         gen-uni-tables.
21904         * modules/uninorm/composition: New file.
21905
21906         Tests for module 'uninorm/compat-decomposition'.
21907         * tests/uninorm/test-compat-decomposition.c: New file.
21908         * modules/uninorm/compat-decomposition-tests: New file.
21909
21910         New module 'uninorm/compat-decomposition'.
21911         * lib/uninorm/decompose-internal.h: New file.
21912         * lib/uninorm/compat-decomposition.c: New file.
21913         * modules/uninorm/compat-decomposition: New file.
21914
21915         Tests for module 'uninorm/canonical-decomposition'.
21916         * tests/uninorm/test-canonical-decomposition.c: New file.
21917         * modules/uninorm/canonical-decomposition-tests: New file.
21918
21919         New module 'uninorm/canonical-decomposition'.
21920         * lib/uninorm/canonical-decomposition.c: New file.
21921         * modules/uninorm/canonical-decomposition: New file.
21922
21923         Tests for module 'uninorm/decomposition'.
21924         * tests/uninorm/test-decomposition.c: New file.
21925         * modules/uninorm/decomposition-tests: New file.
21926
21927         New module 'uninorm/decomposition'.
21928         * lib/uninorm/decomposition.c: New file.
21929         * modules/uninorm/decomposition: New file.
21930
21931         New module 'uninorm/decomposition-table'.
21932         * lib/uninorm/decomposition-table.h: New file.
21933         * lib/uninorm/decomposition-table.c: New file.
21934         * lib/uninorm/decomposition-table1.h: New file, generated by
21935         gen-uni-tables.
21936         * lib/uninorm/decomposition-table2.h: New file, generated by
21937         gen-uni-tables.
21938         * modules/uninorm/decomposition-table: New file.
21939
21940         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
21941         (UC_DECOMP_*): New enumeration items.
21942         (get_decomposition): New function.
21943         (struct decomp_table): New type.
21944         (output_decomposition, output_decomposition_tables): New functions.
21945         (unicode_composition_exclusions): New variable.
21946         (fill_composition_exclusions, debug_output_composition_tables): New
21947         functions.
21948         (main): Accept one more argument. Invoke fill_composition_exclusions.
21949         Output decomposition and composition tables.
21950
21951         New module 'uninorm/base'.
21952         * lib/uninorm.h: New file.
21953         * lib/unictype.h: Update comment.
21954         * modules/uninorm/base: New file.
21955
21956 2009-02-21  David Lutterkort  <lutter@redhat.com>
21957
21958         Tests for module 'safe-alloc'.
21959         * tests/test-safe-alloc.c: New file.
21960         * modules/safe-alloc-tests: New file.
21961
21962         New module 'safe-alloc'.
21963         * lib/safe-alloc.h: New file.
21964         * lib/safe-alloc.c: New file.
21965         * m4/safe-alloc.m4: New file.
21966         * modules/safe-alloc: New file.
21967         * doc/safe-alloc.texi: New file.
21968         * doc/gnulib.texi: Include it.
21969         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
21970         safe-alloc.
21971
21972 2009-02-18  Bruno Haible  <bruno@clisp.org>
21973
21974         Fix link error on non-glibc systems.
21975         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
21976         variable.
21977         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
21978
21979 2009-02-18  Jim Meyering  <meyering@redhat.com>
21980
21981         fts: avoid used-uninitialized error due to recent change
21982         * lib/fts.c (fts_read): Guard uses of the new member,
21983         parent->fts_n_dirs_remaining, since it's not relevant for
21984         the parent of a directory specified on the command-line.
21985
21986 2009-02-17  James Youngman  <jay@gnu.org>
21987             Bruno Haible  <bruno@clisp.org>
21988
21989         * m4/include_next.m4: Reformulate comment.
21990
21991 2009-02-16  Jim Meyering  <meyering@redhat.com>
21992
21993         fts: add #if guards so that the fts_lgpl module still builds
21994         * lib/fts.c: Guard just-added hash-table-using parts with
21995         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
21996         Reported by Simon Josefsson.
21997
21998 2009-02-15  Bruno Haible  <bruno@clisp.org>
21999
22000         * modules/array-mergesort-tests: New file.
22001         * tests/test-array-mergesort.c: New file.
22002
22003         New module 'array-mergesort'.
22004         * modules/array-mergesort: New file.
22005         * lib/array-mergesort.h: New file.
22006
22007 2009-02-15  Bruno Haible  <bruno@clisp.org>
22008
22009         Fix 2009-02-07 commit.
22010         * lib/gen-uni-tables.c (output_predicate, output_category,
22011         output_combclass, output_bidi_category, output_decimal_digit,
22012         output_digit, output_numeric, output_mirror, output_scripts,
22013         output_ident_category, output_simple_mapping): Fix format directives.
22014         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
22015
22016 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
22017
22018         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
22019         fixes are available from IBM.
22020
22021 2009-02-13  Jim Meyering  <meyering@redhat.com>
22022
22023         fts: arrange not to stat non-directories in more cases
22024         This makes GNU find (when it doesn't need to stat each file)
22025         *much* more efficient at traversing reiserfs file systems.
22026         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
22027         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
22028         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
22029         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
22030         (leaf_optimization_applies): New function.
22031         (LCO_hash, LCO_compare): New helper functions.
22032         (link_count_optimize_ok): New function.
22033         (fts_stat): Initialize new member (if dir).
22034         (fts_read): Decrement parent's fts_n_dirs_remaining count if
22035         we've just stat'ed a directory.  Skip the stat call when possible.
22036         ---
22037         Note this AFS-related exchange:
22038         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
22039         and note find's pioctl call in find/fstype.c.
22040         But that is necessary only if you want to enable the
22041         optimization for AFS, and for now, I don't.
22042
22043         fts: move a function definition "up" (no semantic change)
22044         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
22045         "up" to precede upcoming use of a related function.
22046
22047 2009-02-11  Jim Meyering  <meyering@redhat.com>
22048
22049         fts: correct internal computation of nlinks (optimization-related)
22050         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
22051         whether the current entry is a directory, so don't test it.
22052
22053 2009-02-10  Bruno Haible  <bruno@clisp.org>
22054
22055         Tests for module 'uniwbrk/ulc-wordbreaks'.
22056         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
22057         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
22058         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
22059
22060         Tests for module 'uniwbrk/u32-wordbreaks'.
22061         * modules/uniwbrk/u32-wordbreaks-tests: New file.
22062         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
22063
22064         Tests for module 'uniwbrk/u16-wordbreaks'.
22065         * modules/uniwbrk/u16-wordbreaks-tests: New file.
22066         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
22067
22068         Tests for module 'uniwbrk/u8-wordbreaks'.
22069         * modules/uniwbrk/u8-wordbreaks-tests: New file.
22070         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
22071
22072 2009-02-10  Bruno Haible  <bruno@clisp.org>
22073
22074         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
22075         property.
22076         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
22077         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
22078         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
22079
22080 2009-02-10  Simon Josefsson  <simon@josefsson.org>
22081
22082         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
22083         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
22084
22085 2009-02-10  Bruno Haible  <bruno@clisp.org>
22086
22087         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
22088         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
22089         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
22090         * lib/unilbrk/u8-possible-linebreaks.c: Update.
22091         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
22092         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
22093
22094 2009-02-09  Simon Josefsson  <simon@josefsson.org>
22095
22096         * lib/sockets.h (gl_fd_to_handle): New function.
22097
22098         * tests/test-sockets.c: Call gl_fd_to_handle.
22099
22100 2009-02-09  Bruno Haible  <bruno@clisp.org>
22101
22102         * doc/havelib.texi: Document the conventions on bi-arch systems.
22103
22104 2009-02-08  Bruno Haible  <bruno@clisp.org>
22105
22106         Document the AC_LIB_LINKFLAGS macro.
22107         * doc/havelib.texi: New file, mostly written on 2005-05-24.
22108         * doc/gnulib.texi: Include it.
22109
22110 2009-02-08  Bruno Haible  <bruno@clisp.org>
22111
22112         Fix wrong order of sections, compared to TOC.
22113         * doc/gnulib.texi: Include relocatable-maint.texi after the
22114         "Regular expressions" node, not before.
22115
22116 2009-02-08  Bruno Haible  <bruno@clisp.org>
22117
22118         Tests for module 'unicase/totitle'.
22119         * modules/unicase/totitle-tests: New file.
22120
22121         Tests for module 'unicase/tolower'.
22122         * modules/unicase/tolower-tests: New file.
22123
22124         Tests for module 'unicase/toupper'.
22125         * modules/unicase/toupper-tests: New file.
22126         * tests/unicase/test-mapping-part1.h: New file.
22127         * tests/unicase/test-mapping-part2.h: New file.
22128
22129         New module 'unicase/totitle'.
22130         * modules/unicase/totitle: New file.
22131         * lib/unicase/totitle.c: New file.
22132
22133         New module 'unicase/tolower'.
22134         * modules/unicase/tolower: New file.
22135         * lib/unicase/tolower.c: New file.
22136
22137         New module 'unicase/toupper'.
22138         * modules/unicase/toupper: New file.
22139         * lib/unicase/toupper.c: New file.
22140         * lib/unicase/simple-mapping.h: New file.
22141
22142         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
22143         (mapping_table): New structure.
22144         (output_simple_mapping): New function.
22145         (main): Invoke output_simple_mapping_test and output_simple_mapping.
22146         * modules/gen-uni-tables (Description): Update.
22147         * lib/unicase/toupper.h: New file, automatically generated by
22148         gen-uni-tables.
22149         * lib/unicase/tolower.h: New file, automatically generated by
22150         gen-uni-tables.
22151         * lib/unicase/totitle.h: New file, automatically generated by
22152         gen-uni-tables.
22153         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
22154         gen-uni-tables.
22155         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
22156         gen-uni-tables.
22157         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
22158         gen-uni-tables.
22159
22160         New module 'unicase/base'.
22161         * modules/unicase/base: New file.
22162         * lib/unicase.h: New file.
22163
22164 2009-02-08  Bruno Haible  <bruno@clisp.org>
22165
22166         New module 'uniwbrk/ulc-wordbreaks'.
22167         * modules/uniwbrk/ulc-wordbreaks: New file.
22168         * lib/uniwbrk/ulc-wordbreaks.c: New file.
22169
22170         New module 'uniwbrk/u32-wordbreaks'.
22171         * modules/uniwbrk/u32-wordbreaks: New file.
22172         * lib/uniwbrk/u32-wordbreaks.c: New file.
22173
22174         New module 'uniwbrk/u16-wordbreaks'.
22175         * modules/uniwbrk/u16-wordbreaks: New file.
22176         * lib/uniwbrk/u16-wordbreaks.c: New file.
22177
22178         New module 'uniwbrk/u8-wordbreaks'.
22179         * modules/uniwbrk/u8-wordbreaks: New file.
22180         * lib/uniwbrk/u8-wordbreaks.c: New file.
22181         * lib/uniwbrk/u-wordbreaks.h: New file.
22182
22183         New module 'uniwbrk/table'.
22184         * modules/uniwbrk/table: New file.
22185         * lib/uniwbrk/wbrktable.h: New file.
22186         * lib/uniwbrk/wbrktable.c: New file.
22187
22188         New module 'uniwbrk/wordbreak-property'.
22189         * modules/uniwbrk/wordbreak-property: New file.
22190         * lib/uniwbrk/wordbreak-property.c: New file.
22191
22192         * lib/gen-uni-tables.c (WBP_*): New enum items.
22193         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
22194         (unicode_org_wbp): New variable.
22195         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
22196         New functions.
22197         (wbp_table): New structure.
22198         (output_wbp, output_wbrk_tables): New functions.
22199         (main): Accept additional argument. Invoke fill_org_wbp,
22200         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
22201         output_wbrk_tables.
22202         * modules/gen-uni-tables (Description): Update.
22203         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
22204         gen-uni-tables.
22205
22206         New module 'uniwbrk/base'.
22207         * modules/uniwbrk/base: New file.
22208         * lib/uniwbrk.h: New file.
22209
22210 2009-02-08  Bruno Haible  <bruno@clisp.org>
22211
22212         Update to Unicode 5.1.0.
22213         * lib/gen-uni-tables.c (is_property_alphabetic): Include
22214         U+2185..U+2188.
22215         (is_property_default_ignorable_code_point): Don't include characters
22216         of category Cc or Cs and not-a-characters.
22217         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
22218         U+0D79, U+109E, U+109F, U+A60C.
22219         * lib/unictype/bidi_of.h: Regenerated.
22220         * lib/unictype/blocks.h: Regenerated.
22221         * lib/unictype/categ_C.h: Regenerated.
22222         * lib/unictype/categ_Cf.h: Regenerated.
22223         * lib/unictype/categ_Cn.h: Regenerated.
22224         * lib/unictype/categ_L.h: Regenerated.
22225         * lib/unictype/categ_Ll.h: Regenerated.
22226         * lib/unictype/categ_Lm.h: Regenerated.
22227         * lib/unictype/categ_Lo.h: Regenerated.
22228         * lib/unictype/categ_Lu.h: Regenerated.
22229         * lib/unictype/categ_M.h: Regenerated.
22230         * lib/unictype/categ_Mc.h: Regenerated.
22231         * lib/unictype/categ_Me.h: Regenerated.
22232         * lib/unictype/categ_Mn.h: Regenerated.
22233         * lib/unictype/categ_N.h: Regenerated.
22234         * lib/unictype/categ_Nd.h: Regenerated.
22235         * lib/unictype/categ_Nl.h: Regenerated.
22236         * lib/unictype/categ_No.h: Regenerated.
22237         * lib/unictype/categ_P.h: Regenerated.
22238         * lib/unictype/categ_Pd.h: Regenerated.
22239         * lib/unictype/categ_Pe.h: Regenerated.
22240         * lib/unictype/categ_Pf.h: Regenerated.
22241         * lib/unictype/categ_Pi.h: Regenerated.
22242         * lib/unictype/categ_Po.h: Regenerated.
22243         * lib/unictype/categ_Ps.h: Regenerated.
22244         * lib/unictype/categ_S.h: Regenerated.
22245         * lib/unictype/categ_Sk.h: Regenerated.
22246         * lib/unictype/categ_Sm.h: Regenerated.
22247         * lib/unictype/categ_So.h: Regenerated.
22248         * lib/unictype/categ_of.h: Regenerated.
22249         * lib/unictype/combining.h: Regenerated.
22250         * lib/unictype/ctype_alnum.h: Regenerated.
22251         * lib/unictype/ctype_alpha.h: Regenerated.
22252         * lib/unictype/ctype_graph.h: Regenerated.
22253         * lib/unictype/ctype_lower.h: Regenerated.
22254         * lib/unictype/ctype_print.h: Regenerated.
22255         * lib/unictype/ctype_punct.h: Regenerated.
22256         * lib/unictype/ctype_upper.h: Regenerated.
22257         * lib/unictype/decdigit.h: Regenerated.
22258         * lib/unictype/digit.h: Regenerated.
22259         * lib/unictype/mirror.h: Regenerated.
22260         * lib/unictype/numeric.h: Regenerated.
22261         * lib/unictype/pr_alphabetic.h: Regenerated.
22262         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
22263         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
22264         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
22265         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
22266         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
22267         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
22268         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
22269         * lib/unictype/pr_combining.h: Regenerated.
22270         * lib/unictype/pr_dash.h: Regenerated.
22271         * lib/unictype/pr_decimal_digit.h: Regenerated.
22272         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
22273         * lib/unictype/pr_deprecated.h: Regenerated.
22274         * lib/unictype/pr_diacritic.h: Regenerated.
22275         * lib/unictype/pr_extender.h: Regenerated.
22276         * lib/unictype/pr_format_control.h: Regenerated.
22277         * lib/unictype/pr_grapheme_base.h: Regenerated.
22278         * lib/unictype/pr_grapheme_extend.h: Regenerated.
22279         * lib/unictype/pr_grapheme_link.h: Regenerated.
22280         * lib/unictype/pr_id_continue.h: Regenerated.
22281         * lib/unictype/pr_id_start.h: Regenerated.
22282         * lib/unictype/pr_ideographic.h: Regenerated.
22283         * lib/unictype/pr_ignorable_control.h: Regenerated.
22284         * lib/unictype/pr_lowercase.h: Regenerated.
22285         * lib/unictype/pr_math.h: Regenerated.
22286         * lib/unictype/pr_numeric.h: Regenerated.
22287         * lib/unictype/pr_other_alphabetic.h: Regenerated.
22288         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
22289         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
22290         * lib/unictype/pr_other_id_continue.h: Regenerated.
22291         * lib/unictype/pr_other_lowercase.h: Regenerated.
22292         * lib/unictype/pr_other_math.h: Regenerated.
22293         * lib/unictype/pr_punctuation.h: Regenerated.
22294         * lib/unictype/pr_sentence_terminal.h: Regenerated.
22295         * lib/unictype/pr_soft_dotted.h: Regenerated.
22296         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
22297         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
22298         * lib/unictype/pr_unified_ideograph.h: Regenerated.
22299         * lib/unictype/pr_uppercase.h: Regenerated.
22300         * lib/unictype/pr_xid_continue.h: Regenerated.
22301         * lib/unictype/pr_xid_start.h: Regenerated.
22302         * lib/unictype/pr_zero_width.h: Regenerated.
22303         * lib/unictype/scripts.h: Regenerated.
22304         * lib/unictype/scripts_byname.gperf: Regenerated.
22305         * lib/unictype/sy_java_ident.h: Regenerated.
22306         * lib/unilbrk/lbrkprop1.h: Regenerated.
22307         * lib/unilbrk/lbrkprop2.h: Regenerated.
22308         * tests/unictype/test-categ_C.c: Regenerated.
22309         * tests/unictype/test-categ_Cf.c: Regenerated.
22310         * tests/unictype/test-categ_Cn.c: Regenerated.
22311         * tests/unictype/test-categ_L.c: Regenerated.
22312         * tests/unictype/test-categ_Ll.c: Regenerated.
22313         * tests/unictype/test-categ_Lm.c: Regenerated.
22314         * tests/unictype/test-categ_Lo.c: Regenerated.
22315         * tests/unictype/test-categ_Lu.c: Regenerated.
22316         * tests/unictype/test-categ_M.c: Regenerated.
22317         * tests/unictype/test-categ_Mc.c: Regenerated.
22318         * tests/unictype/test-categ_Me.c: Regenerated.
22319         * tests/unictype/test-categ_Mn.c: Regenerated.
22320         * tests/unictype/test-categ_N.c: Regenerated.
22321         * tests/unictype/test-categ_Nd.c: Regenerated.
22322         * tests/unictype/test-categ_Nl.c: Regenerated.
22323         * tests/unictype/test-categ_No.c: Regenerated.
22324         * tests/unictype/test-categ_P.c: Regenerated.
22325         * tests/unictype/test-categ_Pd.c: Regenerated.
22326         * tests/unictype/test-categ_Pe.c: Regenerated.
22327         * tests/unictype/test-categ_Pf.c: Regenerated.
22328         * tests/unictype/test-categ_Pi.c: Regenerated.
22329         * tests/unictype/test-categ_Po.c: Regenerated.
22330         * tests/unictype/test-categ_Ps.c: Regenerated.
22331         * tests/unictype/test-categ_S.c: Regenerated.
22332         * tests/unictype/test-categ_Sk.c: Regenerated.
22333         * tests/unictype/test-categ_Sm.c: Regenerated.
22334         * tests/unictype/test-categ_So.c: Regenerated.
22335         * tests/unictype/test-ctype_alnum.c: Regenerated.
22336         * tests/unictype/test-ctype_alpha.c: Regenerated.
22337         * tests/unictype/test-ctype_graph.c: Regenerated.
22338         * tests/unictype/test-ctype_lower.c: Regenerated.
22339         * tests/unictype/test-ctype_print.c: Regenerated.
22340         * tests/unictype/test-ctype_punct.c: Regenerated.
22341         * tests/unictype/test-ctype_upper.c: Regenerated.
22342         * tests/unictype/test-decdigit.h: Regenerated.
22343         * tests/unictype/test-digit.h: Regenerated.
22344         * tests/unictype/test-numeric.h: Regenerated.
22345         * tests/unictype/test-pr_alphabetic.c: Regenerated.
22346         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
22347         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
22348         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
22349         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
22350         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
22351         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
22352         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
22353         * tests/unictype/test-pr_combining.c: Regenerated.
22354         * tests/unictype/test-pr_dash.c: Regenerated.
22355         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
22356         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
22357         * tests/unictype/test-pr_deprecated.c: Regenerated.
22358         * tests/unictype/test-pr_diacritic.c: Regenerated.
22359         * tests/unictype/test-pr_extender.c: Regenerated.
22360         * tests/unictype/test-pr_format_control.c: Regenerated.
22361         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
22362         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
22363         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
22364         * tests/unictype/test-pr_id_continue.c: Regenerated.
22365         * tests/unictype/test-pr_id_start.c: Regenerated.
22366         * tests/unictype/test-pr_ideographic.c: Regenerated.
22367         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
22368         * tests/unictype/test-pr_lowercase.c: Regenerated.
22369         * tests/unictype/test-pr_math.c: Regenerated.
22370         * tests/unictype/test-pr_numeric.c: Regenerated.
22371         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
22372         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
22373         Regenerated.
22374         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
22375         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
22376         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
22377         * tests/unictype/test-pr_other_math.c: Regenerated.
22378         * tests/unictype/test-pr_punctuation.c: Regenerated.
22379         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
22380         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
22381         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
22382         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
22383         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
22384         * tests/unictype/test-pr_uppercase.c: Regenerated.
22385         * tests/unictype/test-pr_xid_continue.c: Regenerated.
22386         * tests/unictype/test-pr_xid_start.c: Regenerated.
22387         * tests/unictype/test-pr_zero_width.c: Regenerated.
22388
22389         Update to Unicode 5.1.0.
22390         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
22391         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
22392         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
22393         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
22394         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
22395         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
22396         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
22397         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
22398         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
22399         (nonspacing_table_ind): Update.
22400         * tests/uniwidth/test-uc_width2.sh: Update expected result.
22401
22402         Update to Unicode 5.1.0.
22403         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
22404         code transform.
22405         * lib/uniname/uniname.c (unicode_character_name,
22406         unicode_name_character): Add the range 0x1Fxxx to the code transform.
22407         * lib/uniname/uninames.h: Regenerated.
22408         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
22409
22410 2009-02-07  Bruno Haible  <bruno@clisp.org>
22411
22412         Merge gen-ctype and gen-lbrk into a single program.
22413         * lib/gen-uni-tables.c: New file, incorporating
22414         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
22415         Add directory prefixes to the names of the generated files.
22416         * lib/unictype/gen-ctype.c: Remove file.
22417         * lib/unilbrk/gen-lbrk.c: Remove file.
22418         * modules/gen-uni-tables: New file.
22419         * modules/unictype/gen-ctype: Remove file.
22420         * modules/unilbrk/gen-lbrk: Remove file.
22421
22422 2009-02-07  Bruno Haible  <bruno@clisp.org>
22423
22424         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
22425
22426         New module 'unistr/u32-strcoll'.
22427         * modules/unistr/u32-strcoll: New file.
22428         * lib/unistr/u32-strcoll.c: New file.
22429
22430         New module 'unistr/u16-strcoll'.
22431         * modules/unistr/u16-strcoll: New file.
22432         * lib/unistr/u16-strcoll.c: New file.
22433
22434         New module 'unistr/u8-strcoll'.
22435         * modules/unistr/u8-strcoll: New file.
22436         * lib/unistr/u8-strcoll.c: New file.
22437         * lib/unistr/u-strcoll.h: New file.
22438
22439 2009-02-07  Bruno Haible  <bruno@clisp.org>
22440
22441         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
22442         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
22443         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
22444         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
22445         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
22446         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
22447
22448 2009-02-07  Bruno Haible  <bruno@clisp.org>
22449
22450         Make 64-bit clean.
22451         * lib/unictype/gen-ctype.c (output_predicate, output_category,
22452         output_combclass, output_bidi_category, output_decimal_digit,
22453         output_digit, output_numeric, output_mirror, output_scripts,
22454         output_ident_category): Use proper width specifier in format strings.
22455
22456 2009-02-07  Bruno Haible  <bruno@clisp.org>
22457
22458         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
22459         failure behaviour.
22460
22461 2009-02-07  Jim Meyering  <meyering@redhat.com>
22462
22463         regex: avoid compilation failure with upcoming gcc-4.4
22464         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
22465         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
22466         "... error: integer overflow in preprocessor expression".
22467
22468 2009-02-05  Ben Pfaff  <blp@gnu.org>
22469
22470         Fix link errors on Windows when close module is used.
22471         * modules/close: Add $(LIB_CLOSE) to Link section.
22472         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
22473         $(LIB_CLOSE) on Windows.
22474
22475 2009-02-05  Jim Meyering  <meyering@redhat.com>
22476
22477         still avoid unused-parameter warnings, but do it cleanly
22478         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
22479         (get_fs_usage): Cast to void instead.
22480         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
22481         (dev_from_mount_options, read_file_system_list): Cast to void.
22482         Prompted by Bruno Haible.
22483
22484 2009-02-04  Jim Meyering  <meyering@redhat.com>
22485
22486         fsusage.c: correct copyright year
22487         * lib/fsusage.c: Reflect year in which the change is pushed into
22488
22489         avoid misc. warnings
22490         * lib/fsusage.c (UNUSED_PARAM): Define.
22491         (get_fs_usage): Mark parameter "disk" as unused.
22492         * lib/getugroups.c (getgrent): Use "void" in prototype.
22493         * lib/mountlist.c: Mark unused parameters.
22494         (read_file_system_list): Declare a local with "const".
22495         * lib/nanosleep.c (getnow): Declare static.
22496         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
22497
22498         dirfd: set errno upon failure
22499         * lib/dirfd.c: Include <errno.h>.
22500         Set errno to ENOTSUP when returning -1.
22501         * modules/dirfd (Depends-on): Add errno.
22502         Suggested by John Kodis <kodis@comcast.net>.
22503
22504 2009-02-01  Bruno Haible  <bruno@clisp.org>
22505
22506         Don't assume sizeof (long) >= sizeof (void *).
22507         * lib/memcmp.c: Include stdint.h.
22508         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
22509         srcp2 to 'const byte *'.
22510         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
22511         types to uintptr_t.
22512         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
22513         * modules/memcmp (Depends-on): Add stdint.
22514         Reported by Ozkan Sezer <sezeroz@gmail.com>.
22515
22516 2009-01-30  Eric Blake  <ebb9@byu.net>
22517
22518         fix more require-before-expand issues
22519         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
22520         expand, AC_PROG_AWK.
22521         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
22522
22523 2009-01-28  Eric Blake  <ebb9@byu.net>
22524
22525         version-etc: use consistent URL formatting
22526         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
22527         Improve formatting.  Use fputs for string without %.
22528
22529 2009-01-28  Jim Meyering  <meyering@redhat.com>
22530
22531         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
22532         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
22533         "underquoted definition of NAME" from autoconf-2.59.
22534
22535 2009-01-28  Bruno Haible  <bruno@clisp.org>
22536
22537         * doc/gnulib.texi: Add "Obsolete modules" to index.
22538
22539 2009-01-28  Jim Meyering  <meyering@redhat.com>
22540
22541         useless-if-before-free: recognize more variants
22542         * build-aux/useless-if-before-free: Also recognize e.g.,
22543         if (NULL != p) free (p);
22544
22545 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
22546
22547         test-getaddrinfo: skip (don't fail) this test when there's no network
22548         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
22549         on the presumption that it means you lack network access.
22550
22551 2009-01-26  Jim Meyering  <meyering@redhat.com>
22552
22553         fflush: avoid warnings on modern systems
22554         * lib/fflush.c (rpl_fflush): Move declarations of locals,
22555         pos and result, into scopes where they're used.
22556
22557 2009-01-26  Eric Blake  <ebb9@byu.net>
22558
22559         Silence warning reintroduced by recent extensions patch.
22560         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
22561         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
22562         autoconf.
22563
22564         Backport improved autoconf semantics of AC_DEFUN_ONCE.
22565         * m4/00gnulib.m4: New file.
22566         * gnulib-tool (func_get_filelist): Always use it.
22567         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
22568         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
22569
22570 2009-01-25  Bruno Haible  <bruno@clisp.org>
22571
22572         Make test-quotearg work on MacOS X and AIX.
22573         * tests/test-quotearg.sh: New file.
22574         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
22575         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
22576         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
22577         include <libintl.h>.
22578         (fake_locale): Remove variable.
22579         (gettext, dgettext, dcgettext): Remove functions.
22580         (main): Instead of setting a fake locale, set a real locale. Call
22581         textdomain and bindtextdomain.
22582         * modules/quotearg-tests (Files): Add the new files.
22583         (Depends-on): Add gettext, setenv, unsetenv.
22584         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
22585         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
22586         Augment TESTS_ENVIRONMENT.
22587
22588 2009-01-25  Bruno Haible  <bruno@clisp.org>
22589
22590         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
22591         fr_FR.ISO8859-1 locale on MacOS X.
22592         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
22593         ja_JP.eucJP locale on MacOS X.
22594         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
22595         zh_CN.GB18030 locale on MacOS X.
22596
22597 2009-01-25  Bruno Haible  <bruno@clisp.org>
22598
22599         Avoid link errors on MacOS X 10.3.
22600         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
22601         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
22602
22603 2009-01-25  Bruno Haible  <bruno@clisp.org>
22604
22605         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
22606         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
22607         * modules/pipe (Files): Remove m4/posix_spawn.m4.
22608         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
22609         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
22610         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
22611         posix_spawnattr_init, posix_spawnattr_setsigmask,
22612         posix_spawnattr_setflags, posix_spawnattr_destroy.
22613
22614         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
22615         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
22616         * modules/execute (Files): Remove m4/posix_spawn.m4.
22617         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
22618         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
22619         posix_spawnattr_init, posix_spawnattr_setsigmask,
22620         posix_spawnattr_setflags, posix_spawnattr_destroy.
22621
22622 2009-01-25  Bruno Haible  <bruno@clisp.org>
22623
22624         * lib/glthread/threadlib.c: Include <stdlib.h>.
22625
22626 2009-01-25  Bruno Haible  <bruno@clisp.org>
22627
22628         * lib/glthread/threadlib.c (dummy): New declaration.
22629
22630 2009-01-25  Bruno Haible  <bruno@clisp.org>
22631
22632         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
22633         multibyte characters also for the GB18030 encoding. Don't crash when
22634         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
22635
22636 2009-01-25  Bruno Haible  <bruno@clisp.org>
22637
22638         Avoid redefining 'struct random_data' on OSF/1 5.1.
22639         * lib/stdlib.in.h: Include <random.h> if it exists.
22640         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
22641         HAVE_RANDOM_H. Include <random.h> when testing whether
22642         'struct random_data' exists.
22643         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
22644
22645 2009-01-25  Bruno Haible  <bruno@clisp.org>
22646
22647         Don't install charset.alias on MacOS X >= 10.3.
22648         * lib/localcharset.c (DARWIN7): New macro.
22649         (get_charset_aliases): Hardcode the result for Darwin7.
22650         * modules/localcharset (install-exec-local): Don't install
22651         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
22652
22653 2009-01-25  Bruno Haible  <bruno@clisp.org>
22654
22655         Don't install charset.alias on mingw and Cygwin.
22656         * modules/localcharset (install-exec-local): Don't install
22657         charset.alias on mingw and Cygwin, if the file does not yet exist.
22658         The result for these platforms is hardcoded in localcharset.c.
22659
22660 2009-01-25  Bruno Haible  <bruno@clisp.org>
22661
22662         Make it possible again to use AC_GNU_SOURCE together with gnulib.
22663         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
22664         before requiring AC_USE_SYSTEM_EXTENSIONS.
22665
22666 2009-01-25  Jim Meyering  <meyering@redhat.com>
22667
22668         c-strtod: avoid warnings
22669         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
22670         "assignment discards qualifiers from pointer target type" warnings.
22671
22672 2009-01-24  Bruno Haible  <bruno@clisp.org>
22673
22674         Add support for non-UTF-8 locales on MacOS X.
22675         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
22676         canonical encodings. For Darwin 7 and newer, don't map traditional
22677         encodings to UTF-8.
22678         Reported by Vincent Lefevre <vincent@vinc17.org>
22679         at <http://savannah.gnu.org/bugs/?25235>.
22680
22681 2009-01-24  Bruno Haible  <bruno@clisp.org>
22682
22683         * doc/gnulib.texi (Obsolete modules): New section.
22684         Reported by Mike Frysinger <vapier@gentoo.org>.
22685
22686 2009-01-24  Bruno Haible  <bruno@clisp.org>
22687
22688         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
22689         (%.dvi): New rule.
22690
22691 2009-01-24  Bruno Haible  <bruno@clisp.org>
22692
22693         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
22694         Reported by Eric Blake.
22695
22696 2009-01-24  Bruno Haible  <bruno@clisp.org>
22697
22698         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
22699         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
22700         Reported by Gary V. Vaughan <gary@gnu.org>.
22701
22702 2009-01-24  Bruno Haible  <bruno@clisp.org>
22703
22704         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
22705
22706 2009-01-23  Bruno Haible  <bruno@clisp.org>
22707
22708         Make c-strtod, c-strtold usable in libraries.
22709         * lib/c-strtod.c: Include string.h instead of xalloc.h.
22710         (C_STRTOD): Call strdup instead of xstrdup.
22711         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
22712         * modules/c-strtold (Depends-on): Likewise.
22713         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
22714         * NEWS: Mention the change.
22715         Reported by Michael Gold <mgold@ncf.ca>.
22716
22717 2009-01-23  Jim Meyering  <meyering@redhat.com>
22718
22719         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
22720         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
22721         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
22722
22723 2009-01-23  Simon Josefsson  <simon@josefsson.org>
22724
22725         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
22726         GNU CoreUtils.
22727         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
22728         * modules/version-etc (Description): Update.
22729
22730 2009-01-22  Bruno Haible  <bruno@clisp.org>
22731
22732         Cache the C locale object.
22733         * lib/c-strtod.c (c_locale_cache): New variable.
22734         (c_locale): New function.
22735         (C_STRTOD): Use it, and don't call freelocale.
22736         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
22737         Suggested by Paolo Bonzini.
22738
22739 2009-01-21  Bruno Haible  <bruno@clisp.org>
22740
22741         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
22742         conditions other than overflow.
22743
22744 2009-01-21  Bruno Haible  <bruno@clisp.org>
22745
22746         * lib/c-strtod.c: Include errno.h.
22747         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
22748         value from STRTOD_L and STRTOD.
22749
22750 2009-01-21  Bruno Haible  <bruno@clisp.org>
22751         and Jim Meyering  <meyering@redhat.com>
22752
22753         nanosleep: skip configure test (fail it) for apple universal builds
22754         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
22755         universal builds, assume that nanosleep does not work.
22756         * modules/nanosleep (Depends-on): Add multiarch.
22757
22758         mktime: skip configure test (fail it) for apple universal builds
22759         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
22760         universal builds, assume that mktime does not work.
22761         * modules/mktime (Depends-on): Add multiarch.
22762
22763 2009-01-21  Eric Blake  <ebb9@byu.net>
22764
22765         multiarch: avoid expand-before-require warning
22766         * modules/multiarch (configure.ac): Require, rather than expand,
22767         gl_MULTIARCH.
22768         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
22769         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
22770         enforce that all clients require it.  Partial reversion of
22771         2008-12-29 patch.
22772
22773         error: avoid expand-before-require warning
22774         * modules/errno (configure.ac): Require, rather than expand,
22775         gl_HEADER_ERRNO_H.
22776         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
22777         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
22778         enforce that all clients require it.
22779
22780         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
22781         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
22782         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
22783         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
22784
22785 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
22786
22787         Revert:
22788         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
22789
22790         regex: do not depend on obsolete modules.
22791         * modules/regex: Remove memcmp and memmove.
22792
22793 2009-01-20  Bruno Haible  <bruno@clisp.org>
22794
22795         Make the 'link' module link on Windows NT 4.
22796         * lib/link.c (_WIN32_WINNT): Don't define.
22797         (CreateHardLinkFuncType): New type.
22798         (CreateHardLinkFunc, initialized): New variables.
22799         (initialize): New function.
22800         (link): Invoke CreateHardLink indirectly through the function pointer.
22801
22802 2009-01-20  Bruno Haible  <bruno@clisp.org>
22803
22804         Fix compilation failure on mingw.
22805         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
22806
22807 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
22808
22809         * doc/c-strtod.texi: Mention a couple of restrictions.
22810
22811 2009-01-20  Jim Meyering  <meyering@redhat.com>
22812
22813         gettimeofday: move more declarations out of functions
22814         * lib/gettimeofday.c: Move extern declarations of tzset and
22815         gmtime out of containing functions.  Prompted by Bruno Haible.
22816
22817 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
22818
22819         regex: do not depend on obsolete modules.
22820         * modules/regex: Remove memcmp and memmove.
22821
22822 2009-01-19  Bruno Haible  <bruno@clisp.org>
22823
22824         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
22825         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
22826         gl_BIGENDIAN, not AC_C_BIGENDIAN.
22827         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
22828         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
22829
22830 2009-01-19  Bruno Haible  <bruno@clisp.org>
22831
22832         * tests/test-link.c: Include <errno.h>.
22833         (main): Exit with code 77 when a hard link cannot be created due to
22834         the file system.
22835         * tests/test-link.sh: Skip test when a hard link cannot be created due
22836         to the file system.
22837         Suggested by Eric Blake.
22838
22839 2009-01-19  Martin Lambers  <marlam@marlam.de>
22840
22841         * modules/link-tests: New file.
22842         * tests/test-link.sh: New file.
22843         * tests/test-link.c: New file.
22844
22845 2009-01-19  Eric Blake  <ebb9@byu.net>
22846
22847         doc: mention another function added in cygwin 1.7.0
22848         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
22849         Another new function in cygwin 1.7.
22850
22851 2009-01-19  Bruno Haible  <bruno@clisp.org>
22852
22853         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
22854         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
22855         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
22856         gl_BIGENDIAN, not AC_C_BIGENDIAN.
22857         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
22858         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
22859         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
22860         * m4/md4.m4 (gl_MD4): Likewise.
22861         * m4/md5.m4 (gl_MD5): Likewise.
22862         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
22863         * m4/sha1.m4 (gl_SHA1): Likewise.
22864         * m4/sha256.m4 (gl_SHA256): Likewise.
22865         * m4/sha512.m4 (gl_SHA512): Likewise.
22866
22867 2009-01-19  Bruno Haible  <bruno@clisp.org>
22868
22869         * modules/uniname/uniname-tests (Depends-on): Add progname.
22870         * tests/uniname/test-uninames.c: Include progname.h.
22871         (main): Call set_program_name.
22872
22873         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
22874         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
22875         (main): Call set_program_name.
22876
22877         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
22878         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
22879         (main): Call set_program_name.
22880
22881         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
22882         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
22883         (main): Call set_program_name.
22884
22885         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
22886         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
22887         (main): Call set_program_name.
22888
22889         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
22890         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
22891         (main): Call set_program_name.
22892
22893         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
22894         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
22895         (main): Call set_program_name.
22896
22897         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
22898         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
22899         (main): Call set_program_name.
22900
22901         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
22902         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
22903         (main): Call set_program_name.
22904
22905 2009-01-19  Eric Blake  <ebb9@byu.net>
22906
22907         test-unistd: test previous patch
22908         * tests/test-unistd.c: Test *_FILENO macros.
22909
22910         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
22911         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
22912         Guarantee a definition.
22913         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
22914         * modules/unistd-safer (Depends-on): Add dependency on unistd.
22915         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
22916         * lib/dup-safer.c (STDERR_FILENO): Likewise.
22917         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
22918         Likewise.
22919         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
22920         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
22921         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
22922         Likewise.
22923         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
22924         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
22925         (STDERR_FILENO): Likewise.
22926         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
22927         (STDERR_FILENO): Likewise.
22928         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
22929         (STDERR_FILENO): Likewise.
22930         Reported by Elbert Pol.
22931
22932 2009-01-19  Eric Blake  <ebb9@byu.net>
22933
22934         doc: mention more functions added in cygwin 1.7.0
22935         * doc/posix-functions/abort.texi (abort): Update wording related
22936         to cygwin.
22937         * doc/posix-functions/daylight.texi (daylight): Likewise.
22938         * doc/posix-functions/optarg.texi (optarg): Likewise.
22939         * doc/posix-functions/optarg.texi (opterr): Likewise.
22940         * doc/posix-functions/optarg.texi (optind): Likewise.
22941         * doc/posix-functions/optarg.texi (optopt): Likewise.
22942         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
22943         worked in 1.5.x, and was withdrawn in 1.7.
22944         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
22945         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
22946         cygwin versions.
22947         * doc/posix-functions/perror.texi (perror): Likewise.
22948         * doc/posix-functions/printf.texi (printf): Likewise.
22949         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
22950         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
22951         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
22952         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
22953         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
22954         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
22955         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
22956         Likewise.
22957         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
22958         Likewise.
22959         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
22960         this function.
22961         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
22962         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
22963         Likewise.
22964         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
22965         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
22966         * doc/posix-functions/confstr.texi (confstr): Likewise.
22967         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
22968         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
22969         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
22970         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
22971         * doc/posix-functions/fputws.texi (fputws): Likewise.
22972         * doc/posix-functions/fwide.texi (fwide): Likewise.
22973         * doc/posix-functions/getwc.texi (getwc): Likewise.
22974         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
22975         * doc/posix-functions/putwc.texi (putwc): Likewise.
22976         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
22977         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
22978         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
22979         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
22980         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
22981         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
22982         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
22983         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
22984         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
22985         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
22986         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
22987
22988 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
22989
22990         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
22991         * lib/ioctl.c: Include <sys/ioctl.h>.
22992
22993 2009-01-19  Simon Josefsson  <simon@josefsson.org>
22994
22995         * modules/getdate-tests (Depends-on): Add progname.
22996         * tests/test-getdate.c: Use progname module, to avoid link errors
22997         on non-glibc systems.
22998
22999 2009-01-18  Simon Josefsson  <simon@josefsson.org>
23000
23001         * modules/filenamecat-tests (Depends-on): Add progname.
23002         * modules/fstrcmp-tests (Depends-on): Likewise.
23003
23004         * tests/test-filenamecat.c: Use progname module, to avoid link
23005         errors on non-glibc systems.
23006         * tests/test-fstrcmp.c: Likewise.
23007
23008 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
23009
23010         gettimeofday: avoid warning: nested extern declaration of 'localtime'
23011         * lib/gettimeofday.c: Move extern declaration out of function.
23012
23013 2009-01-18  Bruno Haible  <bruno@clisp.org>
23014
23015         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
23016         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
23017         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
23018
23019 2009-01-18  Bruno Haible  <bruno@clisp.org>
23020
23021         * lib/strftime.c (MEMPCPY): Remove unused macro.
23022         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
23023
23024 2009-01-18  Martin Lambers  <marlam@marlam.de>
23025
23026         New module 'link'.
23027         * lib/unistd.in.h (link): New declaration.
23028         * lib/link.c: New file.
23029         * m4/link.m4: New file.
23030         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
23031         HAVE_LINK.
23032         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
23033         * modules/link: New file.
23034         * doc/posix-functions/link.texi: Mention the new module.
23035
23036 2009-01-18  Bruno Haible  <bruno@clisp.org>
23037
23038         * tests/test-avltree_list.c (main): Call set_program_name.
23039         * tests/test-avltree_oset.c (main): Likewise.
23040         * tests/test-obstack-printf.c: Include progname.h.
23041         (main): Call set_program_name.
23042         * tests/test-quotearg.c: Include progname.h.
23043         (main): Call set_program_name.
23044         * tests/test-xmemdup0.c: Include progname.h.
23045         (main): Call set_program_name.
23046
23047 2009-01-18  Bruno Haible  <bruno@clisp.org>
23048
23049         New module 'alphasort'.
23050         * lib/dirent.in.h (alphasort): New declaration.
23051         * lib/alphasort.c: New file, from glibc with modifications.
23052         * m4/alphasort.m4: New file.
23053         * modules/alphasort: New file.
23054         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
23055         HAVE_ALPHASORT.
23056         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
23057         HAVE_ALPHASORT.
23058         * doc/posix-functions/alphasort.texi: Mention the new module and the
23059         portability problems.
23060
23061 2009-01-18  Bruno Haible  <bruno@clisp.org>
23062
23063         New module 'scandir'.
23064         * lib/dirent.in.h (scandir): New declaration.
23065         * lib/scandir.c: New file, from glibc with modifications.
23066         * m4/scandir.m4: New file.
23067         * modules/scandir: New file.
23068         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
23069         HAVE_SCANDIR.
23070         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
23071         HAVE_SCANDIR.
23072         * doc/posix-functions/scandir.texi: Mention the new module and the
23073         portability problems.
23074
23075 2009-01-17  Bruno Haible  <bruno@clisp.org>
23076
23077         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
23078         Update documentation.
23079         (func_remove_suffix): Escape all dots in the suffix. Update
23080         documentation.
23081         (func_filter_filelist): Update documentation.
23082         Reported by Ralf Wildenhues.
23083
23084 2009-01-17  Bruno Haible  <bruno@clisp.org>
23085
23086         * modules/dprintf-posix-tests: New file.
23087         * tests/test-dprintf-posix.sh: New file.
23088         * tests/test-dprintf-posix.c: New file.
23089
23090         New modules 'dprintf', 'dprintf-posix'.
23091         * lib/stdio.in.h (dprintf): New declaration.
23092         * lib/dprintf.c: New file.
23093         * m4/dprintf.m4: New file.
23094         * m4/dprintf-posix.m4: New file.
23095         * modules/dprintf: New file.
23096         * modules/dprintf-posix: New file.
23097         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
23098         HAVE_DPRINTF, REPLACE_DPRINTF.
23099         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
23100         HAVE_DPRINTF, REPLACE_DPRINTF.
23101         * doc/posix-functions/dprintf.texi: Mention the new modules.
23102
23103 2009-01-17  Bruno Haible  <bruno@clisp.org>
23104
23105         * modules/vdprintf-posix-tests: New file.
23106         * tests/test-vdprintf-posix.sh: New file.
23107         * tests/test-vdprintf-posix.c: New file.
23108
23109         New modules 'vdprintf', 'vdprintf-posix'.
23110         * lib/stdio.in.h (vdprintf): New declaration.
23111         * lib/vdprintf.c: New file.
23112         * m4/vdprintf.m4: New file.
23113         * m4/vdprintf-posix.m4: New file.
23114         * modules/vdprintf: New file.
23115         * modules/vdprintf-posix: New file.
23116         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
23117         HAVE_VDPRINTF, REPLACE_VDPRINTF.
23118         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
23119         HAVE_VDPRINTF, REPLACE_VDPRINTF.
23120         * doc/posix-functions/vdprintf.texi: Mention the new modules.
23121
23122 2009-01-17  Bruno Haible  <bruno@clisp.org>
23123
23124         Fix replacement of fopen on mingw.
23125         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
23126         mingw.
23127
23128 2009-01-17  Bruno Haible  <bruno@clisp.org>
23129
23130         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
23131         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
23132
23133 2009-01-17  Bruno Haible  <bruno@clisp.org>
23134
23135         Avoid test-fflush2.sh failure on mingw.
23136         * tests/test-fflush2.c: Include binary-io.h.
23137         (main): Put standard input into binary mode.
23138         * modules/fflush-tests (Depends-on): Add binary-io.
23139
23140 2009-01-17  Bruno Haible  <bruno@clisp.org>
23141
23142         * lib/wchar.in.h: In another particular situation, include only the
23143         system's <wchar.h> file.
23144         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
23145         Reported by Albert Chin-A-Young <china@thewrittenword.com>
23146         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
23147
23148 2009-01-17  Bruno Haible  <bruno@clisp.org>
23149
23150         Support for stripping executables in --enable-relocatable.
23151         * build-aux/install-reloc: Expect one more argument, or an environment
23152         variable RELOC_STRIP_PROG. If set, strip the destination program and
23153         its wrapper.
23154         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
23155         RELOC_STRIP_PROG.
23156         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
23157         to set RELOCATABLE_STRIP.
23158         * NEWS: Mention the new Makefile requirement.
23159
23160 2009-01-17  Bruno Haible  <bruno@clisp.org>
23161
23162         * build-aux/install-reloc: Remove debugging information left over by
23163         C compiler on MacOS X.
23164
23165 2009-01-17  Bruno Haible  <bruno@clisp.org>
23166
23167         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
23168         * lib/progreloc.c (find_executable): Fix type of pointer passed to
23169         _NSGetExecutablePath.
23170
23171 2009-01-16  Jim Meyering  <meyering@redhat.com>
23172
23173         strerror: avoid warnings about discarding "const"
23174         * lib/strerror.c (rpl_strerror): Instead of returning a const
23175         string from each and every "case", use a variable, and add a single
23176         cast after the switch.
23177
23178 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
23179
23180         * lib/arpa_inet.in.h: Add extern "C" block for C++.
23181
23182 2009-01-16  Bruno Haible  <bruno@clisp.org>
23183
23184         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
23185         array initializer syntax that also works in C++ mode.
23186         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23187
23188 2009-01-16  Jim Meyering  <meyering@redhat.com>
23189
23190         poll: suppress a warning
23191         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
23192         to ignore "...unsigned expression < 0 is always false" warnings.
23193
23194 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
23195
23196         poll: remove declarations of unused variables
23197         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
23198         sockbuf and optlen.
23199
23200 2009-01-15  Bruno Haible  <bruno@clisp.org>
23201
23202         Make fflush-after-ungetc POSIX compliant on BSD systems.
23203         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
23204         (clear_ungetc_buffer): Implement also for other systems.
23205         (rpl_fflush): On glibc systems, invoke
23206         clear_ungetc_buffer_preserving_position. Otherwise, invoke
23207         clear_ungetc_buffer after fetching the stream's position, not before.
23208
23209 2009-01-15  Bruno Haible  <bruno@clisp.org>
23210
23211         Make fflush-after-ungetc POSIX compliant on glibc systems.
23212         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
23213         after ungetc.
23214         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
23215         (rpl_fflush): On glibc systems, simply call the system's fflush
23216         function after clearing the ungetc buffer.
23217         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
23218         Instead, lseek only to the end of file, then use the system's fseeko
23219         for the rest. On glibc systems, reset the EOF indicator bit.
23220
23221 2009-01-15  Jim Meyering  <meyering@redhat.com>
23222
23223         openmp.m4: revert quote-adding change, for portability to older autoconf
23224         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
23225         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
23226         Simon Josefsson noticed the problem when using autoconf-2.61.
23227
23228 2009-01-15  Bruno Haible  <bruno@clisp.org>
23229
23230         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
23231         * tests/test-fflush2.c (ASSERT): Always fail.
23232         (main): Add two tests for fflush() after ungetc(), taking into account
23233         the Austin Group's clarification.
23234         Suggested by Eric Blake.
23235
23236 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
23237
23238         mktime.m4: remove K&R-style function prototypes
23239         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
23240         for the Sun C++ compiler.
23241
23242 2009-01-14  Bruno Haible  <bruno@clisp.org>
23243
23244         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
23245         while including <wchar.h>.
23246         * lib/wchar.in.h: In two particular situations on HP-UX, include only
23247         the system's <wchar.h> file.
23248         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
23249
23250 2009-01-14  Bruno Haible  <bruno@clisp.org>
23251
23252         * m4/csharp.m4: Don't mention gettext on the serial number line.
23253         * m4/csharpexec.m4: Likewise.
23254         * m4/eaccess.m4: Likewise.
23255         * m4/javaexec.m4: Likewise.
23256         * m4/sig_atomic_t.m4: Likewise.
23257         * m4/tmpdir.m4: Likewise.
23258         * m4/intldir.m4: Bump gettext version.
23259         * m4/lib-ld.m4: Likewise.
23260
23261 2009-01-14  Bruno Haible  <bruno@clisp.org>
23262
23263         * lib/progname.c (set_program_name): Add more comments.
23264         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
23265
23266 2009-01-14  Simon Josefsson  <simon@josefsson.org>
23267
23268         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
23269         were sys/stat.h does not define it.
23270
23271 2009-01-14  Jim Meyering  <meyering@redhat.com>
23272
23273         many *.m4 files: improve m4 quoting
23274         99% of this change was performed by running the following commands:
23275         git ls-files | grep '\.m4$' | xargs perl -pi \
23276           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
23277           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
23278           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
23279           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
23280         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
23281         The remainder were to add Copyright dates, increment serial numbers,
23282         undo some changes in comments, exclude m4/intl.m4, and add quotes
23283         around the "1" in ",1" where the unusual spacing prohibited the
23284         above regexps from doing the job.  For more details, see
23285         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
23286         * m4/acl.m4: Modified.
23287         * m4/afs.m4: Likewise.
23288         * m4/alloca.m4: Likewise.
23289         * m4/argp.m4: Likewise.
23290         * m4/argz.m4: Likewise.
23291         * m4/atexit.m4: Likewise.
23292         * m4/bison-i18n.m4: Likewise.
23293         * m4/bison.m4: Likewise.
23294         * m4/byteswap.m4: Likewise.
23295         * m4/c-stack.m4: Likewise.
23296         * m4/c-strtod.m4: Likewise.
23297         * m4/calloc.m4: Likewise.
23298         * m4/canonicalize-lgpl.m4: Likewise.
23299         * m4/chown.m4: Likewise.
23300         * m4/clock_time.m4: Likewise.
23301         * m4/codeset.m4: Likewise.
23302         * m4/copy-file.m4: Likewise.
23303         * m4/csharp.m4: Likewise.
23304         * m4/csharpcomp.m4: Likewise.
23305         * m4/csharpexec.m4: Likewise.
23306         * m4/d-ino.m4: Likewise.
23307         * m4/d-type.m4: Likewise.
23308         * m4/dirfd.m4: Likewise.
23309         * m4/double-slash-root.m4: Likewise.
23310         * m4/eaccess.m4: Likewise.
23311         * m4/eealloc.m4: Likewise.
23312         * m4/environ.m4: Likewise.
23313         * m4/errno_h.m4: Likewise.
23314         * m4/euidaccess.m4: Likewise.
23315         * m4/execute.m4: Likewise.
23316         * m4/fatal-signal.m4: Likewise.
23317         * m4/fchdir.m4: Likewise.
23318         * m4/fcntl_h.m4: Likewise.
23319         * m4/fileblocks.m4: Likewise.
23320         * m4/filenamecat.m4: Likewise.
23321         * m4/findprog.m4: Likewise.
23322         * m4/flexmember.m4: Likewise.
23323         * m4/fnmatch.m4: Likewise.
23324         * m4/fopen.m4: Likewise.
23325         * m4/fpending.m4: Likewise.
23326         * m4/fprintf-posix.m4: Likewise.
23327         * m4/free.m4: Likewise.
23328         * m4/frexp.m4: Likewise.
23329         * m4/frexpl.m4: Likewise.
23330         * m4/fsusage.m4: Likewise.
23331         * m4/ftruncate.m4: Likewise.
23332         * m4/gc-camellia.m4: Likewise.
23333         * m4/gc-random.m4: Likewise.
23334         * m4/gc.m4: Likewise.
23335         * m4/getaddrinfo.m4: Likewise.
23336         * m4/getcwd-abort-bug.m4: Likewise.
23337         * m4/getcwd-path-max.m4: Likewise.
23338         * m4/getdate.m4: Likewise.
23339         * m4/getdomainname.m4: Likewise.
23340         * m4/getgroups.m4: Likewise.
23341         * m4/gethostname.m4: Likewise.
23342         * m4/gethrxtime.m4: Likewise.
23343         * m4/getline.m4: Likewise.
23344         * m4/getloadavg.m4: Likewise.
23345         * m4/getndelim2.m4: Likewise.
23346         * m4/getpass.m4: Likewise.
23347         * m4/gettext.m4: Likewise.
23348         * m4/gettime.m4: Likewise.
23349         * m4/gettimeofday.m4: Likewise.
23350         * m4/gnulib-common.m4: Likewise.
23351         * m4/group-member.m4: Likewise.
23352         * m4/host-os.m4: Likewise.
23353         * m4/iconv.m4: Likewise.
23354         * m4/iconv_open.m4: Likewise.
23355         * m4/inet_ntop.m4: Likewise.
23356         * m4/inet_pton.m4: Likewise.
23357         * m4/inline.m4: Likewise.
23358         * m4/intldir.m4: Likewise.
23359         * m4/intlmacosx.m4: Likewise.
23360         * m4/intmax.m4: Likewise.
23361         * m4/intmax_t.m4: Likewise.
23362         * m4/inttypes.m4: Likewise.
23363         * m4/inttypes_h.m4: Likewise.
23364         * m4/inttypes-pri.m4: Likewise.
23365         * m4/isapipe.m4: Likewise.
23366         * m4/isnand.m4: Likewise.
23367         * m4/isnanf.m4: Likewise.
23368         * m4/isnanl.m4: Likewise.
23369         * m4/javacomp.m4: Likewise.
23370         * m4/javaexec.m4: Likewise.
23371         * m4/jm-winsz1.m4: Likewise.
23372         * m4/jm-winsz2.m4: Likewise.
23373         * m4/lchown.m4: Likewise.
23374         * m4/lcmessage.m4: Likewise.
23375         * m4/ldexpl.m4: Likewise.
23376         * m4/lib-ld.m4: Likewise.
23377         * m4/lib-link.m4: Likewise.
23378         * m4/libsigsegv.m4: Likewise.
23379         * m4/link-follow.m4: Likewise.
23380         * m4/localcharset.m4: Likewise.
23381         * m4/locale-fr.m4: Likewise.
23382         * m4/locale-ja.m4: Likewise.
23383         * m4/locale-tr.m4: Likewise.
23384         * m4/locale-zh.m4: Likewise.
23385         * m4/lock.m4: Likewise.
23386         * m4/longlong.m4: Likewise.
23387         * m4/ls-mntd-fs.m4: Likewise.
23388         * m4/lstat.m4: Likewise.
23389         * m4/malloc.m4: Likewise.
23390         * m4/mathl.m4: Likewise.
23391         * m4/mbrtowc.m4: Likewise.
23392         * m4/mbstate_t.m4: Likewise.
23393         * m4/mbswidth.m4: Likewise.
23394         * m4/memchr.m4: Likewise.
23395         * m4/memcmp.m4: Likewise.
23396         * m4/memcpy.m4: Likewise.
23397         * m4/memmem.m4: Likewise.
23398         * m4/memmove.m4: Likewise.
23399         * m4/mempcpy.m4: Likewise.
23400         * m4/memrchr.m4: Likewise.
23401         * m4/memset.m4: Likewise.
23402         * m4/minmax.m4: Likewise.
23403         * m4/mkdir-slash.m4: Likewise.
23404         * m4/mkdtemp.m4: Likewise.
23405         * m4/mktime.m4: Likewise.
23406         * m4/mmap-anon.m4: Likewise.
23407         * m4/mountlist.m4: Likewise.
23408         * m4/nanosleep.m4: Likewise.
23409         * m4/nls.m4: Likewise.
23410         * m4/nocrash.m4: Likewise.
23411         * m4/open.m4: Likewise.
23412         * m4/openat.m4: Likewise.
23413         * m4/openmp.m4: Likewise.
23414         * m4/pathmax.m4: Likewise.
23415         * m4/perl.m4: Likewise.
23416         * m4/physmem.m4: Likewise.
23417         * m4/pipe.m4: Likewise.
23418         * m4/po.m4: Likewise.
23419         * m4/poll.m4: Likewise.
23420         * m4/posixtm.m4: Likewise.
23421         * m4/posixver.m4: Likewise.
23422         * m4/printf-frexp.m4: Likewise.
23423         * m4/printf-frexpl.m4: Likewise.
23424         * m4/printf-posix.m4: Likewise.
23425         * m4/printf-posix-rpl.m4: Likewise.
23426         * m4/printf.m4: Likewise.
23427         * m4/progtest.m4: Likewise.
23428         * m4/putenv.m4: Likewise.
23429         * m4/readline.m4: Likewise.
23430         * m4/readlink.m4: Likewise.
23431         * m4/readutmp.m4: Likewise.
23432         * m4/realloc.m4: Likewise.
23433         * m4/regex.m4: Likewise.
23434         * m4/relocatable.m4: Likewise.
23435         * m4/relocatable-lib.m4: Likewise.
23436         * m4/rename-dest-slash.m4: Likewise.
23437         * m4/rename.m4: Likewise.
23438         * m4/rmdir-errno.m4: Likewise.
23439         * m4/rmdir.m4: Likewise.
23440         * m4/roundf.m4: Likewise.
23441         * m4/roundl.m4: Likewise.
23442         * m4/rpmatch.m4: Likewise.
23443         * m4/save-cwd.m4: Likewise.
23444         * m4/selinux-selinux-h.m4: Likewise.
23445         * m4/setenv.m4: Likewise.
23446         * m4/settime.m4: Likewise.
23447         * m4/sig2str.m4: Likewise.
23448         * m4/sig_atomic_t.m4: Likewise.
23449         * m4/signalblocking.m4: Likewise.
23450         * m4/signbit.m4: Likewise.
23451         * m4/sigpipe.m4: Likewise.
23452         * m4/sockets.m4: Likewise.
23453         * m4/sockpfaf.m4: Likewise.
23454         * m4/st_dm_mode.m4: Likewise.
23455         * m4/stat-time.m4: Likewise.
23456         * m4/stdbool.m4: Likewise.
23457         * m4/stdint.m4: Likewise.
23458         * m4/stdint_h.m4: Likewise.
23459         * m4/stpcpy.m4: Likewise.
23460         * m4/stpncpy.m4: Likewise.
23461         * m4/strcase.m4: Likewise.
23462         * m4/strchrnul.m4: Likewise.
23463         * m4/strcspn.m4: Likewise.
23464         * m4/strdup.m4: Likewise.
23465         * m4/strftime.m4: Likewise.
23466         * m4/strndup.m4: Likewise.
23467         * m4/strnlen.m4: Likewise.
23468         * m4/strpbrk.m4: Likewise.
23469         * m4/strptime.m4: Likewise.
23470         * m4/strsep.m4: Likewise.
23471         * m4/strtod.m4: Likewise.
23472         * m4/strtoimax.m4: Likewise.
23473         * m4/strtok_r.m4: Likewise.
23474         * m4/strtol.m4: Likewise.
23475         * m4/strtoll.m4: Likewise.
23476         * m4/strtoul.m4: Likewise.
23477         * m4/strtoull.m4: Likewise.
23478         * m4/strtoumax.m4: Likewise.
23479         * m4/strverscmp.m4: Likewise.
23480         * m4/threadlib.m4: Likewise.
23481         * m4/timegm.m4: Likewise.
23482         * m4/tm_gmtoff.m4: Likewise.
23483         * m4/tmpdir.m4: Likewise.
23484         * m4/tmpfile.m4: Likewise.
23485         * m4/tzset.m4: Likewise.
23486         * m4/uintmax_t.m4: Likewise.
23487         * m4/unlinkdir.m4: Likewise.
23488         * m4/unlocked-io.m4: Likewise.
23489         * m4/uptime.m4: Likewise.
23490         * m4/userspec.m4: Likewise.
23491         * m4/utimbuf.m4: Likewise.
23492         * m4/utime.m4: Likewise.
23493         * m4/utimes-null.m4: Likewise.
23494         * m4/utimes.m4: Likewise.
23495         * m4/vararrays.m4: Likewise.
23496         * m4/vasnprintf.m4: Likewise.
23497         * m4/vfprintf-posix.m4: Likewise.
23498         * m4/vprintf-posix.m4: Likewise.
23499         * m4/wait-process.m4: Likewise.
23500         * m4/wchar_t.m4: Likewise.
23501         * m4/wint_t.m4: Likewise.
23502         * m4/write-any-file.m4: Likewise.
23503         * m4/yield.m4: Likewise.
23504
23505 2009-01-13  Bruno Haible  <bruno@clisp.org>
23506
23507         Avoid test-copy-file.sh failures when ACL support insufficient.
23508         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
23509         TESTS_ENVIRONMENT.
23510         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
23511         Reported by Jim Meyering.
23512
23513 2009-01-13  Bruno Haible  <bruno@clisp.org>
23514
23515         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
23516         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
23517         * modules/unistdio/u8-printf-parse (Files): Likewise.
23518         * modules/unistdio/u32-printf-parse (Files): Likewise.
23519         * modules/unistdio/ulc-printf-parse (Files): Likewise.
23520
23521 2009-01-13  Simon Josefsson  <simon@josefsson.org>
23522
23523         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
23524         and m4/inttypes_h.m4 too.
23525
23526 2009-01-12  Eric Blake  <ebb9@byu.net>
23527
23528         tests: IRIX 6.2 cc can't compile -0.0 into .data
23529         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
23530         rather than at compile-time.
23531         * tests/test-floorl.c (minus_zero): Likewise.
23532         * tests/test-frexpl.c (minus_zero): Likewise.
23533         * tests/test-isnan.c (minus_zerol): Likewise.
23534         * tests/test-isnanl.h (minus_zero): Likewise.
23535         * tests/test-ldexpl.c (minus_zero): Likewise.
23536         * tests/test-roundl.c (minus_zero): Likewise.
23537         * tests/test-signbit.c (minus_zerol): Likewise.
23538         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
23539         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
23540         * tests/test-truncl.c (minus_zero): Likewise.
23541         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
23542         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
23543         Reported by Tom G. Christensen and Nelson H. F. Beebe.
23544
23545 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
23546
23547         regex: fix glibc bug 9697
23548         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
23549         handling.
23550
23551 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
23552
23553         regex: fix glibc bug 697
23554         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
23555         being NULL also if there are no backreferences.
23556
23557 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
23558
23559         regex: merge glibc changes
23560         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
23561         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
23562         re_string_skip_chars, re_string_reconstruct): Likewise.
23563         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
23564
23565 2009-01-07  Jim Meyering  <meyering@redhat.com>
23566
23567         poll: filter through cppi
23568         * lib/poll.c: Indent cpp directives to reflect nesting.
23569
23570 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
23571
23572         poll: don't return uninitialized
23573         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
23574
23575 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
23576
23577         avoid compile failure on AIX 6.1
23578         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
23579         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
23580
23581 2009-01-04  Jim Meyering  <meyering@redhat.com>
23582
23583         remove duplicate inclusion of <stdio.h>
23584         * tests/test-fprintf-posix.c: Likewise.
23585         * tests/test-printf-posix.c: Likewise.
23586         * tests/test-snprintf-posix.c: Likewise.
23587         * tests/test-sprintf-posix.c: Likewise.
23588         * tests/test-vasprintf-posix.c: Likewise.
23589         * tests/test-vfprintf-posix.c: Likewise.
23590         * tests/test-vprintf-posix.c: Likewise.
23591         * tests/test-vsnprintf-posix.c: Likewise.
23592         * tests/test-vsprintf-posix.c: Likewise.
23593
23594 2009-01-03  Jim Meyering  <meyering@redhat.com>
23595
23596         gnulib-tool: fix sed-based filtering
23597         * gnulib-tool (func_filter_filelist): Remove extra backslash
23598         in sed_fff_filter definition.
23599
23600 2009-01-02  Jim Meyering  <meyering@redhat.com>
23601
23602         strftime: avoid compilation failure on Solaris 2.6
23603         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
23604         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
23605         Don't #define mbrlen or mbsinit, since now they're guaranteed to
23606         be available.  Reported by Tom G. Christensen.  Details in
23607         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
23608
23609 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23610             Bruno Haible  <bruno@clisp.org>
23611
23612         Speed up gnulib-tool by doing more string processing through shell
23613         built-ins.
23614         * gnulib-tool (fast_func_append): New variable.
23615         (func_remove_prefix, func_remove_suffix): New functions.
23616         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
23617         (func_filter_filelist): New function.
23618         (func_get_dependencies): Use func_remove_suffix instead of sed.
23619         (func_get_automake_snippet): Use func_filter_filelist instead of a
23620         subshell and sed invocation.
23621
23622 2009-01-01  Bruno Haible  <bruno@clisp.org>
23623
23624         Fix a security bug.
23625         * gnulib-tool (func_import, import, update): Don't allow the characters
23626         '"', '$', '`', '\' in macro arguments that become part of commands that
23627         are evaluated.
23628
23629 2009-01-01  Bruno Haible  <bruno@clisp.org>
23630
23631         * gnulib-tool (func_reset_sigpipe): Add more comments.
23632
23633 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23634
23635         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
23636         func_emit_tests_Makefile_am, func_import): Abort loops early if we
23637         already know the answer.
23638
23639 2009-01-01  Jim Meyering  <meyering@redhat.com>
23640
23641         * lib/version-etc.c (version_etc_va): Update copyright year.
23642
23643 2008-12-30  Bruno Haible  <bruno@clisp.org>
23644
23645         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
23646         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
23647         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
23648
23649 2008-12-29  Eric Blake  <ebb9@byu.net>
23650
23651         multiarch: avoid autoconf AC_REQUIRE bug
23652         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
23653         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
23654         2.63 and older.
23655         Reported by Bruno Haible, and analyzed in
23656         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
23657
23658 2008-12-29  Bruno Haible  <bruno@clisp.org>
23659
23660         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
23661         files in subdirectories correctly.
23662         Reported by Ralf Wildenhues.
23663
23664 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23665
23666         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
23667         rather than 'join FILE -', for Solaris join.
23668
23669 2008-12-29  Bruno Haible  <bruno@clisp.org>
23670
23671         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
23672         quoting.
23673         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
23674         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
23675         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
23676         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
23677         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
23678         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
23679         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
23680         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
23681         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
23682         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
23683         * m4/nls.m4 (AM_NLS): Likewise.
23684         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
23685         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
23686         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
23687         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
23688         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
23689         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
23690         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
23691         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
23692         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
23693         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
23694         * m4/xsize.m4 (gl_XSIZE): Likewise.
23695         Suggested by Jim Meyering.
23696
23697 2008-11-17  Bruce Korb  <bkorb@gnu.org>
23698
23699         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
23700         * lib/parse-duration.c: use a switch instead of cascading if's.
23701
23702 2008-12-29  Eric Blake  <ebb9@byu.net>
23703
23704         wchar.h: supply WEOF on Irix 5.3
23705         * lib/wchar.in.h (wint_t): Also supply WEOF.
23706         * lib/wctype.in.h (wint_t): Likewise.
23707         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
23708         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
23709         Reported by Tom G. Christensen.
23710
23711 2008-12-26  Bruno Haible  <bruno@clisp.org>
23712
23713         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
23714         i486, i586, i686.
23715
23716 2008-12-26  Bruno Haible  <bruno@clisp.org>
23717
23718         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
23719
23720 2008-12-26  Bruno Haible  <bruno@clisp.org>
23721
23722         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
23723         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
23724         not __STDC_CONSTANT_MACROS.
23725         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
23726
23727 2008-12-25  Bruno Haible  <bruno@clisp.org>
23728
23729         Add support for universal builds to vasnprintf.
23730         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
23731         universal builds, guess no.
23732         * modules/vasnprintf-posix (Depends-on): Add multiarch.
23733         * modules/vasprintf-posix (Depends-on): Likewise.
23734         * modules/fprintf-posix (Depends-on): Likewise.
23735         * modules/vfprintf-posix (Depends-on): Likewise.
23736         * modules/snprintf-posix (Depends-on): Likewise.
23737         * modules/vsnprintf-posix (Depends-on): Likewise.
23738         * modules/sprintf-posix (Depends-on): Likewise.
23739         * modules/vsprintf-posix (Depends-on): Likewise.
23740         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
23741         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
23742         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
23743         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
23744         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
23745         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
23746         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
23747
23748         Add support for universal builds to <inttypes.h>.
23749         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
23750         _SCNu64_PREFIX): In Apple
23751         universal builds, define directly, using _LP64.
23752         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
23753         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
23754         * modules/inttypes (Depends-on): Add multiarch.
23755         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
23756
23757         Add support for universal builds to <stdint.h>.
23758         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
23759         universal builds, define directly, using _LP64.
23760         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
23761         Apple universal builds, don't test for the size and suffix of ptrdiff_t
23762         and size_t.
23763         * modules/stdint (Depends-on): Add multiarch.
23764         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
23765
23766         New module 'multiarch'.
23767         * modules/multiarch: New file.
23768         * m4/multiarch.m4: New file.
23769
23770 2008-12-25  Bruno Haible  <bruno@clisp.org>
23771
23772         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
23773
23774 2008-12-25  Bruno Haible  <bruno@clisp.org>
23775
23776         * modules/btowc (License): Relicense under LGPLv2+.
23777         * modules/mbsinit (License): Likewise.
23778         * modules/mbrtowc (License): Likewise.
23779         * modules/wcrtomb (License): Likewise.
23780         * modules/streq (License): Likewise.
23781         Reported by David Lutterkort <lutter@redhat.com>.
23782
23783 2008-12-23  Bruno Haible  <bruno@clisp.org>
23784
23785         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
23786
23787 2008-12-23  Bruno Haible  <bruno@clisp.org>
23788
23789         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
23790         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
23791         GETADDRINFO_LIB, not in LIBS.
23792         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
23793         * modules/canon-host (Link): Likewise.
23794         * NEWS: Mention the change.
23795         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
23796         GETADDRINFO_LIB.
23797
23798 2008-12-22  Bruno Haible  <bruno@clisp.org>
23799
23800         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
23801         * doc/posix-functions/iswalpha_l.texi: Likewise.
23802         * doc/posix-functions/iswblank_l.texi: Likewise.
23803         * doc/posix-functions/iswcntrl_l.texi: Likewise.
23804         * doc/posix-functions/iswctype_l.texi: Likewise.
23805         * doc/posix-functions/iswdigit_l.texi: Likewise.
23806         * doc/posix-functions/iswgraph_l.texi: Likewise.
23807         * doc/posix-functions/iswlower_l.texi: Likewise.
23808         * doc/posix-functions/iswprint_l.texi: Likewise.
23809         * doc/posix-functions/iswpunct_l.texi: Likewise.
23810         * doc/posix-functions/iswspace_l.texi: Likewise.
23811         * doc/posix-functions/iswupper_l.texi: Likewise.
23812         * doc/posix-functions/iswxdigit_l.texi: Likewise.
23813         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
23814         * doc/posix-functions/open_wmemstream.texi: Likewise.
23815         * doc/posix-functions/swscanf.texi: Likewise.
23816         * doc/posix-functions/towctrans_l.texi: Likewise.
23817         * doc/posix-functions/towlower.texi: Likewise.
23818         * doc/posix-functions/towlower_l.texi: Likewise.
23819         * doc/posix-functions/towupper.texi: Likewise.
23820         * doc/posix-functions/towupper_l.texi: Likewise.
23821         * doc/posix-functions/vfwprintf.texi: Likewise.
23822         * doc/posix-functions/vfwscanf.texi: Likewise.
23823         * doc/posix-functions/vswscanf.texi: Likewise.
23824         * doc/posix-functions/vwprintf.texi: Likewise.
23825         * doc/posix-functions/vwscanf.texi: Likewise.
23826         * doc/posix-functions/wcpcpy.texi: Likewise.
23827         * doc/posix-functions/wcpncpy.texi: Likewise.
23828         * doc/posix-functions/wcscasecmp.texi: Likewise.
23829         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
23830         * doc/posix-functions/wcscoll_l.texi: Likewise.
23831         * doc/posix-functions/wcsdup.texi: Likewise.
23832         * doc/posix-functions/wcsncasecmp.texi: Likewise.
23833         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
23834         * doc/posix-functions/wcsnlen.texi: Likewise.
23835         * doc/posix-functions/wcsnrtombs.texi: Likewise.
23836         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
23837         * doc/posix-functions/wctrans_l.texi: Likewise.
23838         * doc/posix-functions/wctype_l.texi: Likewise.
23839         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
23840         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
23841         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
23842         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
23843         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
23844         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
23845         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
23846         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
23847         * doc/glibc-functions/wcschrnul.texi: Likewise.
23848         * doc/glibc-functions/wcsftime_l.texi: Likewise.
23849         * doc/glibc-functions/wcstod_l.texi: Likewise.
23850         * doc/glibc-functions/wcstof_l.texi: Likewise.
23851         * doc/glibc-functions/wcstol_l.texi: Likewise.
23852         * doc/glibc-functions/wcstold_l.texi: Likewise.
23853         * doc/glibc-functions/wcstoll_l.texi: Likewise.
23854         * doc/glibc-functions/wcstoq.texi: Likewise.
23855         * doc/glibc-functions/wcstoul_l.texi: Likewise.
23856         * doc/glibc-functions/wcstoull_l.texi: Likewise.
23857         * doc/glibc-functions/wcstouq.texi: Likewise.
23858         * doc/glibc-functions/wmempcpy.texi: Likewise.
23859
23860 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
23861             Eric Blake  <ebb9@byu.net>
23862             Paolo Bonzini  <bonzini@gnu.org>
23863             Bruno Haible  <bruno@clisp.org>
23864
23865         Make c-stack work on Haiku.
23866         * lib/c-stack.c (SA_ONSTACK): Define fallback.
23867         (c_stack_action): Use SA_ONSTACK flag.
23868
23869 2008-12-22  Bruno Haible  <bruno@clisp.org>
23870
23871         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
23872
23873 2008-12-22  Bruno Haible  <bruno@clisp.org>
23874
23875         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
23876         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
23877         being overridden.
23878         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
23879         New macros.
23880         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
23881         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
23882         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
23883         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
23884
23885 2008-12-22  Bruno Haible  <bruno@clisp.org>
23886
23887         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
23888         from test code.
23889
23890 2008-12-22  Eric Blake  <ebb9@byu.net>
23891
23892         Avoid gcc warnings on cygwin.
23893         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
23894         Avoid unused variable.
23895         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
23896         Likewise.
23897
23898 2008-12-22  Bruno Haible  <bruno@clisp.org>
23899
23900         Remove HAVE_MBRTOWC conditionals.
23901         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
23902         (mbscasecmp): Assume mbrtowc function.
23903         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
23904         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
23905         * lib/mbschr.c: Include mbuiter.h unconditionally.
23906         (mbschr): Assume mbrtowc function.
23907         * lib/mbscspn.c: Include mbuiter.h unconditionally.
23908         (mbscspn): Assume mbrtowc function.
23909         * lib/mbslen.c: Include mbuiter.h unconditionally.
23910         (mbslen): Assume mbrtowc function.
23911         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
23912         (mbsncasecmp): Assume mbrtowc function.
23913         * lib/mbsnlen.c: Include mbiter.h unconditionally.
23914         (mbsnlen): Assume mbrtowc function.
23915         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
23916         (mbspbrk): Assume mbrtowc function.
23917         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
23918         (mbspcasecmp): Assume mbrtowc function.
23919         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
23920         (mbsrchr): Assume mbrtowc function.
23921         * lib/mbssep.c: Include mbuiter.h unconditionally.
23922         (mbssep): Assume mbrtowc function.
23923         * lib/mbsspn.c: Include mbuiter.h unconditionally.
23924         (mbsspn): Assume mbrtowc function.
23925         * lib/mbsstr.c: Include mbuiter.h unconditionally.
23926         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
23927         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
23928         (mbstok_r): Assume mbrtowc function.
23929         * lib/propername.c: Include mbuiter.h unconditionally.
23930         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
23931         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
23932         (trim2): Assume mbrtowc function.
23933         * lib/mbswidth.c (mbsinit): Remove fallback definition.
23934         (mbsnwidth): Assume mbrtowc function.
23935         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
23936         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
23937         fallback definitions.
23938         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
23939
23940 2008-12-22  Bruno Haible  <bruno@clisp.org>
23941
23942         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
23943
23944 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
23945
23946         * modules/regex: Request emulations for the mb*/wc* functions we need.
23947         * m4/regex.m4: Don't look for those functions here.
23948         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
23949
23950 2008-12-22  Bruno Haible  <bruno@clisp.org>
23951
23952         * modules/fnmatch (Depends-on): Remove duplicated dependency.
23953
23954 2008-12-21  Bruno Haible  <bruno@clisp.org>
23955
23956         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
23957         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
23958         (Include): Remove conditionalization.
23959         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
23960         (Include): Remove conditionalization.
23961         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
23962         (Include): Remove conditionalization.
23963         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
23964         * m4/mbfile.m4 (gl_MBFILE): Likewise.
23965         * NEWS: Mention the change.
23966         Reported by Alan Hourihane <alanh@fairlite.co.uk>
23967         via Sergey Poznyakoff <gray@gnu.org.ua>.
23968
23969 2008-12-21  Bruno Haible  <bruno@clisp.org>
23970
23971         * MODULES.html.sh (Extended multibyte and wide character utilities
23972         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
23973         wcrtomb, wcsrtombs.
23974         (Support for systems lacking POSIX:2008): Add accept, bind, close,
23975         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
23976         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
23977         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
23978
23979 2008-12-21  Bruno Haible  <bruno@clisp.org>
23980
23981         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
23982
23983 2008-12-21  Bruno Haible  <bruno@clisp.org>
23984
23985         * modules/wcsnrtombs-tests: New file.
23986         * tests/test-wcsnrtombs1.sh: New file.
23987         * tests/test-wcsnrtombs2.sh: New file.
23988         * tests/test-wcsnrtombs3.sh: New file.
23989         * tests/test-wcsnrtombs4.sh: New file.
23990         * tests/test-wcsnrtombs.c: New file.
23991
23992         New module 'wcsnrtombs'.
23993         * lib/wchar.in.h (wcsnrtombs): New declaration.
23994         * lib/wcsnrtombs.c: New file.
23995         * lib/wcsrtombs-state.c: New file.
23996         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
23997         (internal_state): Remove variable.
23998         * m4/wcsnrtombs.m4: New file.
23999         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
24000         compilation units.
24001         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
24002         HAVE_WCSNRTOMBS.
24003         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
24004         HAVE_WCSNRTOMBS.
24005         * modules/wcsnrtombs: New file.
24006         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
24007         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
24008
24009 2008-12-21  Bruno Haible  <bruno@clisp.org>
24010
24011         * modules/wcsrtombs-tests: New file.
24012         * tests/test-wcsrtombs1.sh: New file.
24013         * tests/test-wcsrtombs2.sh: New file.
24014         * tests/test-wcsrtombs3.sh: New file.
24015         * tests/test-wcsrtombs4.sh: New file.
24016         * tests/test-wcsrtombs.c: New file.
24017
24018         New module 'wcsrtombs'.
24019         * lib/wchar.in.h (wcsrtombs): New declaration.
24020         * lib/wcsrtombs.c: New file.
24021         * m4/wcsrtombs.m4: New file.
24022         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
24023         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
24024         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
24025         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
24026         * modules/wcsrtombs: New file.
24027         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
24028         bugs.
24029
24030 2008-12-21  Bruno Haible  <bruno@clisp.org>
24031
24032         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
24033         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
24034         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
24035         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
24036         if not correct.
24037         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
24038         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
24039         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
24040         m4/locale-zh.m4, m4/codeset.m4.
24041         * doc/posix-functions/wcrtomb.texi: Document the bug.
24042
24043 2008-12-21  Bruno Haible  <bruno@clisp.org>
24044
24045         Work around a btowc() bug on IRIX 6.5.
24046         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
24047         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
24048         REPLACE_WTOBC if not.
24049         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
24050         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
24051         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
24052
24053 2008-12-21  Bruno Haible  <bruno@clisp.org>
24054
24055         * modules/wcrtomb-tests: New file.
24056         * tests/test-wcrtomb.sh: New file.
24057         * tests/test-wcrtomb.c: New file.
24058
24059         New module 'wcrtomb'.
24060         * lib/wchar.in.h (wcrtomb): New declaration.
24061         * lib/wcrtomb.c: New file.
24062         * m4/wcrtomb.m4: New file.
24063         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
24064         HAVE_WCRTOMB.
24065         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
24066         HAVE_WCRTOMB.
24067         * modules/wcrtomb: New file.
24068         * doc/posix-functions/wcrtomb.texi: Mention the new module.
24069
24070 2008-12-21  Bruno Haible  <bruno@clisp.org>
24071
24072         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
24073         * modules/mbsrtowcs (Files): Likewise.
24074         * modules/wctob (Files): Likewise.
24075         * modules/c-strcase-tests (Files): Likewise.
24076         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
24077         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
24078         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
24079         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
24080         * modules/vasnprintf-posix-tests (Files): Likewise.
24081
24082 2008-12-21  William Pursell  <bill.pursell@gmail.com>
24083
24084         gitlog-to-changelog: pass all command-line arguments to git-log
24085         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
24086         it is sometimes convenient to filter the commits in various ways.
24087         gitlog-to-changelog only allows --since to specify a start date,
24088         but git-log itself supports many other filtering mechanisms.
24089         At the moment, I want to filter by branch name.  Rather than
24090         adding a --branch option to gitlog-to-changelog, it seems more
24091         flexible to simply pass all options directly to git-log and let
24092         git do the work.  Notice that this effectively makes --since a
24093         redundant option for gitlog-to-changelog, but removing it would
24094         require current usage to change since calls would then require
24095         an additional '--'.
24096
24097 2008-12-21  Bruno Haible  <bruno@clisp.org>
24098
24099         * modules/mbsnrtowcs-tests: New file.
24100         * tests/test-mbsnrtowcs1.sh: New file.
24101         * tests/test-mbsnrtowcs2.sh: New file.
24102         * tests/test-mbsnrtowcs3.sh: New file.
24103         * tests/test-mbsnrtowcs4.sh: New file.
24104         * tests/test-mbsnrtowcs.c: New file.
24105
24106         New module 'mbsnrtowcs'.
24107         * lib/wchar.in.h (mbsnrtowcs): New declaration.
24108         * lib/mbsnrtowcs.c: New file.
24109         * lib/mbsrtowcs-state.c: New file.
24110         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
24111         (internal_state): Remove variable.
24112         * m4/mbsnrtowcs.m4: New file.
24113         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
24114         compilation units.
24115         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
24116         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
24117         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
24118         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
24119         * modules/mbsnrtowcs: New file.
24120         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
24121         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
24122         portability problem.
24123
24124 2008-12-21  Bruno Haible  <bruno@clisp.org>
24125
24126         Work around mbsrtowcs bug.
24127         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
24128         (gl_FUNC_MBSRTOWCS): Invoke it.
24129         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
24130         m4/locale-zh.m4.
24131         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
24132
24133 2008-12-21  Bruno Haible  <bruno@clisp.org>
24134
24135         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
24136
24137 2008-12-21  Bruno Haible  <bruno@clisp.org>
24138
24139         Update doc for AIX.
24140         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
24141         16-bit wchar_t type.
24142         * doc/posix-functions/btowc.texi: Likewise.
24143         * doc/posix-functions/fgetwc.texi: Likewise.
24144         * doc/posix-functions/fgetws.texi: Likewise.
24145         * doc/posix-functions/fputwc.texi: Likewise.
24146         * doc/posix-functions/fputws.texi: Likewise.
24147         * doc/posix-functions/fwide.texi: Likewise.
24148         * doc/posix-functions/fwprintf.texi: Likewise.
24149         * doc/posix-functions/fwscanf.texi: Likewise.
24150         * doc/posix-functions/getwchar.texi: Likewise.
24151         * doc/posix-functions/getwc.texi: Likewise.
24152         * doc/posix-functions/iswalnum.texi: Likewise.
24153         * doc/posix-functions/iswalpha.texi: Likewise.
24154         * doc/posix-functions/iswblank.texi: Likewise.
24155         * doc/posix-functions/iswcntrl.texi: Likewise.
24156         * doc/posix-functions/iswctype.texi: Likewise.
24157         * doc/posix-functions/iswdigit.texi: Likewise.
24158         * doc/posix-functions/iswgraph.texi: Likewise.
24159         * doc/posix-functions/iswlower.texi: Likewise.
24160         * doc/posix-functions/iswprint.texi: Likewise.
24161         * doc/posix-functions/iswpunct.texi: Likewise.
24162         * doc/posix-functions/iswspace.texi: Likewise.
24163         * doc/posix-functions/iswupper.texi: Likewise.
24164         * doc/posix-functions/iswxdigit.texi: Likewise.
24165         * doc/posix-functions/mbrtowc.texi: Likewise.
24166         * doc/posix-functions/mbsrtowcs.texi: Likewise.
24167         * doc/posix-functions/mbstowcs.texi: Likewise.
24168         * doc/posix-functions/mbtowc.texi: Likewise.
24169         * doc/posix-functions/putwchar.texi: Likewise.
24170         * doc/posix-functions/putwc.texi: Likewise.
24171         * doc/posix-functions/swprintf.texi: Likewise.
24172         * doc/posix-functions/tolower.texi: Likewise.
24173         * doc/posix-functions/toupper.texi: Likewise.
24174         * doc/posix-functions/towctrans.texi: Likewise.
24175         * doc/posix-functions/ungetwc.texi: Likewise.
24176         * doc/posix-functions/vswprintf.texi: Likewise.
24177         * doc/posix-functions/wcrtomb.texi: Likewise.
24178         * doc/posix-functions/wcscat.texi: Likewise.
24179         * doc/posix-functions/wcschr.texi: Likewise.
24180         * doc/posix-functions/wcscmp.texi: Likewise.
24181         * doc/posix-functions/wcscoll.texi: Likewise.
24182         * doc/posix-functions/wcscpy.texi: Likewise.
24183         * doc/posix-functions/wcscspn.texi: Likewise.
24184         * doc/posix-functions/wcsftime.texi: Likewise.
24185         * doc/posix-functions/wcslen.texi: Likewise.
24186         * doc/posix-functions/wcsncat.texi: Likewise.
24187         * doc/posix-functions/wcsncmp.texi: Likewise.
24188         * doc/posix-functions/wcsncpy.texi: Likewise.
24189         * doc/posix-functions/wcspbrk.texi: Likewise.
24190         * doc/posix-functions/wcsrchr.texi: Likewise.
24191         * doc/posix-functions/wcsrtombs.texi: Likewise.
24192         * doc/posix-functions/wcsspn.texi: Likewise.
24193         * doc/posix-functions/wcsstr.texi: Likewise.
24194         * doc/posix-functions/wcstod.texi: Likewise.
24195         * doc/posix-functions/wcstof.texi: Likewise.
24196         * doc/posix-functions/wcstoimax.texi: Likewise.
24197         * doc/posix-functions/wcstok.texi: Likewise.
24198         * doc/posix-functions/wcstold.texi: Likewise.
24199         * doc/posix-functions/wcstoll.texi: Likewise.
24200         * doc/posix-functions/wcstol.texi: Likewise.
24201         * doc/posix-functions/wcstombs.texi: Likewise.
24202         * doc/posix-functions/wcstoull.texi: Likewise.
24203         * doc/posix-functions/wcstoul.texi: Likewise.
24204         * doc/posix-functions/wcstoumax.texi: Likewise.
24205         * doc/posix-functions/wcswidth.texi: Likewise.
24206         * doc/posix-functions/wcsxfrm.texi: Likewise.
24207         * doc/posix-functions/wctob.texi: Likewise.
24208         * doc/posix-functions/wctomb.texi: Likewise.
24209         * doc/posix-functions/wctrans.texi: Likewise.
24210         * doc/posix-functions/wctype.texi: Likewise.
24211         * doc/posix-functions/wcwidth.texi: Likewise.
24212         * doc/posix-functions/wmemchr.texi: Likewise.
24213         * doc/posix-functions/wmemcmp.texi: Likewise.
24214         * doc/posix-functions/wmemcpy.texi: Likewise.
24215         * doc/posix-functions/wmemmove.texi: Likewise.
24216         * doc/posix-functions/wmemset.texi: Likewise.
24217         * doc/posix-functions/wprintf.texi: Likewise.
24218         * doc/posix-functions/wscanf.texi: Likewise.
24219
24220 2008-12-21  Bruno Haible  <bruno@clisp.org>
24221
24222         Update doc for HP-UX 11.11.
24223         * doc/posix-functions/btowc.texi: Clarify that the function is missing
24224         in HP-UX version 11.00, not in all versions of HP-UX 11.
24225         * doc/posix-functions/fwide.texi: Likewise.
24226         * doc/posix-functions/fwprintf.texi: Likewise.
24227         * doc/posix-functions/fwscanf.texi: Likewise.
24228         * doc/posix-functions/inet_ntop.texi: Likewise.
24229         * doc/posix-functions/inet_pton.texi: Likewise.
24230         * doc/posix-functions/mbrlen.texi: Likewise.
24231         * doc/posix-functions/mbrtowc.texi: Likewise.
24232         * doc/posix-functions/mbsinit.texi: Likewise.
24233         * doc/posix-functions/mbsrtowcs.texi: Likewise.
24234         * doc/posix-functions/swprintf.texi: Likewise.
24235         * doc/posix-functions/swscanf.texi: Likewise.
24236         * doc/posix-functions/towctrans.texi: Likewise.
24237         * doc/posix-functions/vfwprintf.texi: Likewise.
24238         * doc/posix-functions/vswprintf.texi: Likewise.
24239         * doc/posix-functions/vwprintf.texi: Likewise.
24240         * doc/posix-functions/wcrtomb.texi: Likewise.
24241         * doc/posix-functions/wcsrtombs.texi: Likewise.
24242         * doc/posix-functions/wcsstr.texi: Likewise.
24243         * doc/posix-functions/wctob.texi: Likewise.
24244         * doc/posix-functions/wctrans.texi: Likewise.
24245         * doc/posix-functions/wmemchr.texi: Likewise.
24246         * doc/posix-functions/wmemcmp.texi: Likewise.
24247         * doc/posix-functions/wmemcpy.texi: Likewise.
24248         * doc/posix-functions/wmemmove.texi: Likewise.
24249         * doc/posix-functions/wmemset.texi: Likewise.
24250         * doc/posix-functions/wprintf.texi: Likewise.
24251         * doc/posix-functions/wscanf.texi: Likewise.
24252
24253 2008-12-21  Bruno Haible  <bruno@clisp.org>
24254
24255         Work around a portability problem.
24256         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
24257         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
24258
24259 2008-12-20  Bruno Haible  <bruno@clisp.org>
24260
24261         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
24262         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
24263         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
24264         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
24265         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
24266
24267         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
24268         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
24269         set.
24270         (GNULIB_defined_mbstate_t): New macro.
24271         (mbsinit): Redefine if REPLACE_MBSINIT is set.
24272         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
24273         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
24274         reuses the system's mbrtowc function but works around the bugs.
24275         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
24276         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
24277         macros.
24278         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
24279         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
24280         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
24281         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
24282         REPLACE_MBSINIT if mbsinit needs to be overridden.
24283         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
24284         REPLACE_MBSINIT, REPLACE_MBRTOWC.
24285         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
24286         REPLACE_MBSINIT, REPLACE_MBRTOWC.
24287         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
24288         m4/locale-zh.m4.
24289         (Depends): Add mbsinit.
24290         * modules/mbsinit (Depends): Add mbrtowc.
24291         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
24292
24293 2008-12-20  Bruno Haible  <bruno@clisp.org>
24294
24295         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
24296         so that there are no conversion errors on AIX.
24297         * tests/test-mbsrtowcs.c (main): LIkewise.
24298
24299 2008-12-20  Bruno Haible  <bruno@clisp.org>
24300
24301         Work around wctob bug on Solaris <= 9.
24302         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
24303         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
24304         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
24305         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
24306         * modules/wctob (Files): Add m4/locale-fr.m4.
24307         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
24308
24309 2008-12-20  Bruno Haible  <bruno@clisp.org>
24310
24311         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
24312         /dev/null.
24313         * tests/test-select-in.sh: Likewise.
24314         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
24315
24316 2008-12-20  Bruno Haible  <bruno@clisp.org>
24317
24318         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
24319         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
24320         Cygwin 1.5.x.
24321
24322 2008-12-20  Bruno Haible  <bruno@clisp.org>
24323
24324         Ensure mbstate_t is defined on HP-UX 11.11.
24325         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
24326         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
24327         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
24328         AC_USE_SYSTEM_EXTENSIONS.
24329         * modules/fnmatch (Depends-on): Add extensions.
24330         * modules/mbrlen (Depends-on): Likewise.
24331         * modules/mbrtowc (Depends-on): Likewise.
24332         * modules/mbsinit (Depends-on): Likewise.
24333         * modules/mbsrtowcs (Depends-on): Likewise.
24334         * modules/mbswidth (Depends-on): Likewise.
24335         * modules/quotearg (Depends-on): Likewise.
24336         * modules/strftime (Depends-on): Likewise.
24337
24338 2008-12-20  Bruno Haible  <bruno@clisp.org>
24339
24340         Ensure wctob is declared on IRIX 6.5.
24341         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
24342         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
24343         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
24344         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
24345         of HAVE_WCTOB.
24346         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
24347         HAVE_WCTOB.
24348         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
24349
24350 2008-12-19  Bruno Haible  <bruno@clisp.org>
24351
24352         * modules/mbsrtowcs-tests: New file.
24353         * tests/test-mbsrtowcs1.sh: New file.
24354         * tests/test-mbsrtowcs2.sh: New file.
24355         * tests/test-mbsrtowcs3.sh: New file.
24356         * tests/test-mbsrtowcs4.sh: New file.
24357         * tests/test-mbsrtowcs.c: New file.
24358
24359         New module 'mbsrtowcs'.
24360         * lib/wchar.in.h (mbsrtowcs): New declaration.
24361         * lib/mbsrtowcs.c: New file.
24362         * m4/mbsrtowcs.m4: New file.
24363         * modules/mbsrtowcs: New file.
24364         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
24365         HAVE_MBSRTOWCS.
24366         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
24367         HAVE_MBSRTOWCS.
24368         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
24369
24370 2008-12-19  Bruno Haible  <bruno@clisp.org>
24371
24372         New module 'mbrlen'.
24373         * lib/wchar.in.h (mbrlen): New declaration.
24374         * lib/mbrlen.c: New file.
24375         * m4/mbrlen.m4: New file.
24376         * modules/mbrlen: New file.
24377         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
24378         HAVE_MBRLEN.
24379         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
24380         HAVE_MBRLEN.
24381         * doc/posix-functions/mbrlen.texi: Document the new module.
24382
24383 2008-12-19  Bruno Haible  <bruno@clisp.org>
24384
24385         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
24386         * modules/mbrtowc (Depends-on): Add verify.
24387         Suggested by Paul Eggert.
24388
24389 2008-12-18  Bruno Haible  <bruno@clisp.org>
24390
24391         * modules/mbsinit-tests: New file.
24392         * tests/test-mbsinit.sh: New file.
24393         * tests/test-mbsinit.c: New file.
24394
24395 2008-12-18  Bruno Haible  <bruno@clisp.org>
24396
24397         * modules/mbrtowc-tests: New file.
24398         * tests/test-mbrtowc1.sh: New file.
24399         * tests/test-mbrtowc2.sh: New file.
24400         * tests/test-mbrtowc3.sh: New file.
24401         * tests/test-mbrtowc4.sh: New file.
24402         * tests/test-mbrtowc.c: New file.
24403
24404         New module 'mbrtowc'.
24405         * lib/wchar.in.h (mbstate_t): Override when the system does not have
24406         mbsinit and mbrtowc.
24407         (mbrtowc): New declaration.
24408         * lib/mbrtowc.c: New file.
24409         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
24410         * modules/mbrtowc: New file.
24411         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
24412         HAVE_MBRTOWC.
24413         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
24414         HAVE_MBRTOWC.
24415         * doc/posix-functions/mbrtowc.texi: Document the new module.
24416
24417 2008-12-18  Bruno Haible  <bruno@clisp.org>
24418
24419         New module 'wctob'.
24420         * lib/wchar.in.h (wctob): New declaration.
24421         * lib/wctob.c: New file.
24422         * m4/wctob.m4: New file.
24423         * modules/wctob: New file.
24424         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
24425         HAVE_WCTOB.
24426         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
24427         * doc/posix-functions/wctob.texi: Document the new module.
24428
24429 2008-12-18  Bruno Haible  <bruno@clisp.org>
24430
24431         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
24432         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
24433
24434 2008-12-18  Simon Josefsson  <simon@josefsson.org>
24435
24436         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
24437         G. Christensen" <tgc@jupiterrise.com>.
24438
24439         * lib/flock.c: Need to include errno.h.  Reported by "Tom
24440         G. Christensen" <tgc@jupiterrise.com>.
24441
24442         * lib/flock.c: Need to include string.h.  Reported by "Tom
24443         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
24444         <ebb9@byu.net>.
24445
24446 2008-12-18  Bruno Haible  <bruno@clisp.org>
24447
24448         * m4/locale-ja.m4: New file, from GNU gettext.
24449
24450 2008-12-17  Bruno Haible  <bruno@clisp.org>
24451
24452         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
24453         Suggested by Eric Blake.
24454
24455 2008-12-17  Bruno Haible  <bruno@clisp.org>
24456
24457         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
24458
24459 2008-12-17  Bruno Haible  <bruno@clisp.org>
24460
24461         * lib/mbsinit.c: Include verify.h. Verify an assumption.
24462         * modules/mbsinit (Depends-on): Add verify.
24463         Suggested by Paul Eggert.
24464
24465 2008-12-17  Bruno Haible  <bruno@clisp.org>
24466
24467         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
24468         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
24469         gl_FUNC_MBRTOWC.
24470         * m4/mbiter.m4 (gl_MBITER): LIkewise.
24471         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
24472         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
24473         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
24474         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
24475         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
24476         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
24477         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
24478         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
24479         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
24480         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
24481         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
24482         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
24483         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
24484         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
24485         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
24486         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
24487         * modules/trim (configure.ac): Likewise.
24488
24489 2008-12-17  Bruno Haible  <bruno@clisp.org>
24490
24491         * modules/btowc-tests: New file.
24492         * tests/test-btowc1.sh: New file.
24493         * tests/test-btowc2.sh: New file.
24494         * tests/test-btowc.c: New file.
24495
24496         New module 'btowc'.
24497         * lib/wchar.in.h (btowc): New declaration.
24498         * lib/btowc.c: New file.
24499         * m4/btowc.m4: New file.
24500         * modules/btowc: New file.
24501         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
24502         HAVE_BTOWC.
24503         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
24504         * doc/posix-functions/btowc.texi: Document the new module.
24505
24506 2008-12-17  Bruno Haible  <bruno@clisp.org>
24507
24508         New module 'mbsinit'.
24509         * lib/wchar.in.h (mbsinit): New declaration.
24510         * lib/mbsinit.c: New file.
24511         * m4/mbsinit.m4: New file.
24512         * modules/mbsinit: New file.
24513         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
24514         HAVE_MBSINIT.
24515         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
24516         HAVE_MBSINIT.
24517         * doc/posix-functions/mbsinit.texi: Document the new module.
24518
24519 2008-12-16  Bruno Haible  <bruno@clisp.org>
24520
24521         * lib/unistd.in.h: Add comment.
24522         * tests/test-environ.c: Don't include <stdlib.h>.
24523
24524 2008-12-16  Bruno Haible  <bruno@clisp.org>
24525
24526         * lib/parse-duration.h (parse_duration): Document return value
24527         convention.
24528         * lib/parse-duration.c: Include specification header first. Add
24529         comments.
24530         (_): Remove macro.
24531         (parse_year_month_day, parse_hour_minute_second): Move side effects
24532         outside of strchr call.
24533         (parse_non_iso8601): Move side effects outside of isspace call.
24534         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
24535         call.
24536
24537 2008-12-16  Bruno Haible  <bruno@clisp.org>
24538
24539         * tests/test-parse-duration.sh: Produce no output when the test
24540         succeeds.
24541
24542 2008-12-16  Bruno Haible  <bruno@clisp.org>
24543
24544         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
24545         expressions.
24546
24547 2008-12-15  Bruno Haible  <bruno@clisp.org>
24548
24549         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
24550         * doc/glibc-functions/flistxattr.texi: Likewise.
24551         * doc/glibc-functions/fopencookie.texi: Likewise.
24552         * doc/glibc-functions/fremovexattr.texi: Likewise.
24553         * doc/glibc-functions/fsetxattr.texi: Likewise.
24554         * doc/glibc-functions/getxattr.texi: Likewise.
24555         * doc/glibc-functions/lgetxattr.texi: Likewise.
24556         * doc/glibc-functions/listxattr.texi: Likewise.
24557         * doc/glibc-functions/llistxattr.texi: Likewise.
24558         * doc/glibc-functions/lremovexattr.texi: Likewise.
24559         * doc/glibc-functions/lsetxattr.texi: Likewise.
24560         * doc/glibc-functions/removexattr.texi: Likewise.
24561         * doc/glibc-functions/setxattr.texi: Likewise.
24562         * doc/posix-functions/open_memstream.texi: Likewise.
24563
24564 2008-12-15  Eric Blake  <ebb9@byu.net>
24565
24566         Update doc for cygwin 1.7.
24567         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
24568         functions.
24569         * doc/posix-functions/fchmodat.texi: Likewise.
24570         * doc/posix-functions/fchownat.texi: Likewise.
24571         * doc/posix-functions/fdopendir.texi: Likewise.
24572         * doc/posix-functions/fmemopen.texi: Likewise.
24573         * doc/posix-functions/freeaddrinfo.texi: Likewise.
24574         * doc/posix-functions/fstatat.texi: Likewise.
24575         * doc/posix-functions/futimens.texi: Likewise.
24576         * doc/posix-functions/gai_strerror.texi: Likewise.
24577         * doc/posix-functions/getaddrinfo.texi: Likewise.
24578         * doc/posix-functions/getnameinfo.texi: Likewise.
24579         * doc/posix-functions/if_freenameindex.texi: Likewise.
24580         * doc/posix-functions/if_indextoname.texi: Likewise.
24581         * doc/posix-functions/if_nameindex.texi: Likewise.
24582         * doc/posix-functions/if_nametoindex.texi: Likewise.
24583         * doc/posix-functions/insque.texi: Likewise.
24584         * doc/posix-functions/linkat.texi: Likewise.
24585         * doc/posix-functions/llrint.texi: Likewise.
24586         * doc/posix-functions/llrintf.texi: Likewise.
24587         * doc/posix-functions/llrintl.texi: Likewise.
24588         * doc/posix-functions/lockf.texi: Likewise.
24589         * doc/posix-functions/lrintl.texi: Likewise.
24590         * doc/posix-functions/mkdirat.texi: Likewise.
24591         * doc/posix-functions/mkfifoat.texi: Likewise.
24592         * doc/posix-functions/mknodat.texi: Likewise.
24593         * doc/posix-functions/mq_close.texi: Likewise.
24594         * doc/posix-functions/mq_getattr.texi: Likewise.
24595         * doc/posix-functions/mq_notify.texi: Likewise.
24596         * doc/posix-functions/mq_open.texi: Likewise.
24597         * doc/posix-functions/mq_receive.texi: Likewise.
24598         * doc/posix-functions/mq_send.texi: Likewise.
24599         * doc/posix-functions/mq_setattr.texi: Likewise.
24600         * doc/posix-functions/mq_timedreceive.texi: Likewise.
24601         * doc/posix-functions/mq_timedsend.texi: Likewise.
24602         * doc/posix-functions/mq_unlink.texi: Likewise.
24603         * doc/posix-functions/open_memstream.texi: Likewise.
24604         * doc/posix-functions/openat.texi: Likewise.
24605         * doc/posix-functions/posix_fadvise.texi: Likewise.
24606         * doc/posix-functions/posix_fallocate.texi: Likewise.
24607         * doc/posix-functions/posix_madvise.texi: Likewise.
24608         * doc/posix-functions/posix_memalign.texi: Likewise.
24609         * doc/posix-functions/posix_openpt.texi: Likewise.
24610         * doc/posix-functions/readlinkat.texi: Likewise.
24611         * doc/posix-functions/remque.texi: Likewise.
24612         * doc/posix-functions/renameat.texi: Likewise.
24613         * doc/posix-functions/rintl.texi: Likewise.
24614         * doc/posix-functions/sem_unlink.texi: Likewise.
24615         * doc/posix-functions/shm_open.texi: Likewise.
24616         * doc/posix-functions/shm_unlink.texi: Likewise.
24617         * doc/posix-functions/signgam.texi: Likewise.
24618         * doc/posix-functions/sigset.texi: Likewise.
24619         * doc/posix-functions/stpcpy.texi: Likewise.
24620         * doc/posix-functions/stpncpy.texi: Likewise.
24621         * doc/posix-functions/strerror.texi: Likewise.
24622         * doc/posix-functions/strtod.texi: Likewise.
24623         * doc/posix-functions/symlinkat.texi: Likewise.
24624         * doc/posix-functions/unlinkat.texi: Likewise.
24625         * doc/posix-functions/utimensat.texi: Likewise.
24626         * doc/glibc-functions/bindresvport.texi: Likewise.
24627         * doc/glibc-functions/dn_expand.texi: Likewise.
24628         * doc/glibc-functions/exp10.texi: Likewise.
24629         * doc/glibc-functions/exp10f.texi: Likewise.
24630         * doc/glibc-functions/fgetxattr.texi: Likewise.
24631         * doc/glibc-functions/flistxattr.texi: Likewise.
24632         * doc/glibc-functions/fopencookie.texi: Likewise.
24633         * doc/glibc-functions/freeifaddrs.texi: Likewise.
24634         * doc/glibc-functions/fremovexattr.texi: Likewise.
24635         * doc/glibc-functions/fsetxattr.texi: Likewise.
24636         * doc/glibc-functions/getifaddrs.texi: Likewise.
24637         * doc/glibc-functions/getxattr.texi: Likewise.
24638         * doc/glibc-functions/lgetxattr.texi: Likewise.
24639         * doc/glibc-functions/listxattr.texi: Likewise.
24640         * doc/glibc-functions/llistxattr.texi: Likewise.
24641         * doc/glibc-functions/lremovexattr.texi: Likewise.
24642         * doc/glibc-functions/lsetxattr.texi: Likewise.
24643         * doc/glibc-functions/pow10.texi: Likewise.
24644         * doc/glibc-functions/pow10f.texi: Likewise.
24645         * doc/glibc-functions/rcmd_af.texi: Likewise.
24646         * doc/glibc-functions/removexattr.texi: Likewise.
24647         * doc/glibc-functions/res_init.texi: Likewise.
24648         * doc/glibc-functions/res_mkquery.texi: Likewise.
24649         * doc/glibc-functions/res_query.texi: Likewise.
24650         * doc/glibc-functions/res_querydomain.texi: Likewise.
24651         * doc/glibc-functions/res_send.texi: Likewise.
24652         * doc/glibc-functions/rresvport_af.texi: Likewise.
24653         * doc/glibc-functions/setxattr.texi: Likewise.
24654         * doc/glibc-functions/strcasestr.texi: Likewise.
24655
24656 2008-12-15  Bruno Haible  <bruno@clisp.org>
24657
24658         Fix compilation error on OSF/1 4.0.
24659         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
24660         <sys/time.h>, simply delegate to the system header.
24661         Reported by Daniel Richard G. <oss@teragram.com>.
24662
24663 2008-12-15  Bruno Haible  <bruno@clisp.org>
24664
24665         * doc/posix-functions/openat.texi: Mention the 'openat' module.
24666         * doc/posix-functions/fchmodat.texi: Likewise.
24667         * doc/posix-functions/fchownat.texi: Likewise.
24668         * doc/posix-functions/fdopendir.texi: Likewise.
24669         * doc/posix-functions/fstatat.texi: Likewise.
24670         * doc/posix-functions/mkdirat.texi: Likewise.
24671         * doc/posix-functions/unlinkat.texi: Likewise.
24672
24673 2008-12-14  Bruno Haible  <bruno@clisp.org>
24674
24675         Update doc for POSIX:2008.
24676         * doc/posix-functions/faccessat.texi: New file.
24677         * doc/posix-functions/fchmodat.texi: New file.
24678         * doc/posix-functions/fchownat.texi: New file.
24679         * doc/posix-functions/fdopendir.texi: New file.
24680         * doc/posix-functions/fstatat.texi: New file.
24681         * doc/posix-functions/futimens.texi: New file.
24682         * doc/posix-functions/linkat.texi: New file.
24683         * doc/posix-functions/mkdirat.texi: New file.
24684         * doc/posix-functions/mkfifoat.texi: New file.
24685         * doc/posix-functions/mknodat.texi: New file.
24686         * doc/posix-functions/open_wmemstream.texi: New file.
24687         * doc/posix-functions/openat.texi: New file.
24688         * doc/posix-functions/psiginfo.texi: New file.
24689         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
24690         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
24691         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
24692         * doc/posix-functions/readlinkat.texi: New file.
24693         * doc/posix-functions/renameat.texi: New file.
24694         * doc/posix-functions/strerror_l.texi: New file.
24695         * doc/posix-functions/symlinkat.texi: New file.
24696         * doc/posix-functions/unlinkat.texi: New file.
24697         * doc/posix-functions/utimensat.texi: New file.
24698         * doc/gnulib.texi (Function Substitutes): Add these subsections.
24699
24700 2008-12-14  Bruno Haible  <bruno@clisp.org>
24701
24702         Update doc for POSIX:2008.
24703         * doc/posix-functions/alphasort.texi: Renamed from
24704         doc/glibc-functions/alphasort.texi.
24705         * doc/posix-functions/dirfd.texi: Renamed from
24706         doc/glibc-functions/dirfd.texi.
24707         * doc/posix-functions/dprintf.texi: Renamed from
24708         doc/glibc-functions/dprintf.texi.
24709         * doc/posix-functions/duplocale.texi: Renamed from
24710         doc/glibc-functions/duplocale.texi.
24711         * doc/posix-functions/fexecve.texi: Renamed from
24712         doc/glibc-functions/fexecve.texi.
24713         * doc/posix-functions/fmemopen.texi: Renamed from
24714         doc/glibc-functions/fmemopen.texi.
24715         * doc/posix-functions/freelocale.texi: Renamed from
24716         doc/glibc-functions/freelocale.texi.
24717         * doc/posix-functions/getdate_err.texi: Renamed from
24718         doc/glibc-functions/getdate_err.texi.
24719         * doc/posix-functions/isalnum_l.texi: Renamed from
24720         doc/glibc-functions/isalnum_l.texi.
24721         * doc/posix-functions/isalpha_l.texi: Renamed from
24722         doc/glibc-functions/isalpha_l.texi.
24723         * doc/posix-functions/isblank_l.texi: Renamed from
24724         doc/glibc-functions/isblank_l.texi.
24725         * doc/posix-functions/iscntrl_l.texi: Renamed from
24726         doc/glibc-functions/iscntrl_l.texi.
24727         * doc/posix-functions/isdigit_l.texi: Renamed from
24728         doc/glibc-functions/isdigit_l.texi.
24729         * doc/posix-functions/isgraph_l.texi: Renamed from
24730         doc/glibc-functions/isgraph_l.texi.
24731         * doc/posix-functions/islower_l.texi: Renamed from
24732         doc/glibc-functions/islower_l.texi.
24733         * doc/posix-functions/isprint_l.texi: Renamed from
24734         doc/glibc-functions/isprint_l.texi.
24735         * doc/posix-functions/ispunct_l.texi: Renamed from
24736         doc/glibc-functions/ispunct_l.texi.
24737         * doc/posix-functions/isspace_l.texi: Renamed from
24738         doc/glibc-functions/isspace_l.texi.
24739         * doc/posix-functions/isupper_l.texi: Renamed from
24740         doc/glibc-functions/isupper_l.texi.
24741         * doc/posix-functions/iswalnum_l.texi: Renamed from
24742         doc/glibc-functions/iswalnum_l.texi.
24743         * doc/posix-functions/iswalpha_l.texi: Renamed from
24744         doc/glibc-functions/iswalpha_l.texi.
24745         * doc/posix-functions/iswblank_l.texi: Renamed from
24746         doc/glibc-functions/iswblank_l.texi.
24747         * doc/posix-functions/iswcntrl_l.texi: Renamed from
24748         doc/glibc-functions/iswcntrl_l.texi.
24749         * doc/posix-functions/iswctype_l.texi: Renamed from
24750         doc/glibc-functions/iswctype_l.texi.
24751         * doc/posix-functions/iswdigit_l.texi: Renamed from
24752         doc/glibc-functions/iswdigit_l.texi.
24753         * doc/posix-functions/iswgraph_l.texi: Renamed from
24754         doc/glibc-functions/iswgraph_l.texi.
24755         * doc/posix-functions/iswlower_l.texi: Renamed from
24756         doc/glibc-functions/iswlower_l.texi.
24757         * doc/posix-functions/iswprint_l.texi: Renamed from
24758         doc/glibc-functions/iswprint_l.texi.
24759         * doc/posix-functions/iswpunct_l.texi: Renamed from
24760         doc/glibc-functions/iswpunct_l.texi.
24761         * doc/posix-functions/iswspace_l.texi: Renamed from
24762         doc/glibc-functions/iswspace_l.texi.
24763         * doc/posix-functions/iswupper_l.texi: Renamed from
24764         doc/glibc-functions/iswupper_l.texi.
24765         * doc/posix-functions/iswxdigit_l.texi: Renamed from
24766         doc/glibc-functions/iswxdigit_l.texi.
24767         * doc/posix-functions/isxdigit_l.texi: Renamed from
24768         doc/glibc-functions/isxdigit_l.texi.
24769         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
24770         doc/glibc-functions/mbsnrtowcs.texi.
24771         * doc/posix-functions/mkdtemp.texi: Renamed from
24772         doc/glibc-functions/mkdtemp.texi.
24773         * doc/posix-functions/newlocale.texi: Renamed from
24774         doc/glibc-functions/newlocale.texi.
24775         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
24776         doc/glibc-functions/nl_langinfo_l.texi.
24777         * doc/posix-functions/open_memstream.texi: Renamed from
24778         doc/glibc-functions/open_memstream.texi.
24779         * doc/posix-functions/opterr.texi: Renamed from
24780         doc/glibc-functions/opterr.texi.
24781         * doc/posix-functions/optind.texi: Renamed from
24782         doc/glibc-functions/optind.texi.
24783         * doc/posix-functions/optopt.texi: Renamed from
24784         doc/glibc-functions/optopt.texi.
24785         * doc/posix-functions/psignal.texi: Renamed from
24786         doc/glibc-functions/psignal.texi.
24787         * doc/posix-functions/scandir.texi: Renamed from
24788         doc/glibc-functions/scandir.texi.
24789         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
24790         doc/glibc-functions/sched_get_priority_min.texi.
24791         * doc/posix-functions/signgam.texi: Renamed from
24792         doc/glibc-functions/signgam.texi.
24793         * doc/posix-functions/stpcpy.texi: Renamed from
24794         doc/glibc-functions/stpcpy.texi.
24795         * doc/posix-functions/stpncpy.texi: Renamed from
24796         doc/glibc-functions/stpncpy.texi.
24797         * doc/posix-functions/strcasecmp_l.texi: Renamed from
24798         doc/glibc-functions/strcasecmp_l.texi.
24799         * doc/posix-functions/strcoll_l.texi: Renamed from
24800         doc/glibc-functions/strcoll_l.texi.
24801         * doc/posix-functions/strfmon_l.texi: Renamed from
24802         doc/glibc-functions/strfmon_l.texi.
24803         * doc/posix-functions/strftime_l.texi: Renamed from
24804         doc/glibc-functions/strftime_l.texi.
24805         * doc/posix-functions/strncasecmp_l.texi: Renamed from
24806         doc/glibc-functions/strncasecmp_l.texi.
24807         * doc/posix-functions/strndup.texi: Renamed from
24808         doc/glibc-functions/strndup.texi.
24809         * doc/posix-functions/strnlen.texi: Renamed from
24810         doc/glibc-functions/strnlen.texi.
24811         * doc/posix-functions/strsignal.texi: Renamed from
24812         doc/glibc-functions/strsignal.texi.
24813         * doc/posix-functions/strxfrm_l.texi: Renamed from
24814         doc/glibc-functions/strxfrm_l.texi.
24815         * doc/posix-functions/timer_gettime.texi: Renamed from
24816         doc/glibc-functions/timer_gettime.texi.
24817         * doc/posix-functions/tolower_l.texi: Renamed from
24818         doc/glibc-functions/tolower_l.texi.
24819         * doc/posix-functions/toupper_l.texi: Renamed from
24820         doc/glibc-functions/toupper_l.texi.
24821         * doc/posix-functions/towctrans_l.texi: Renamed from
24822         doc/glibc-functions/towctrans_l.texi.
24823         * doc/posix-functions/towlower_l.texi: Renamed from
24824         doc/glibc-functions/towlower_l.texi.
24825         * doc/posix-functions/towupper_l.texi: Renamed from
24826         doc/glibc-functions/towupper_l.texi.
24827         * doc/posix-functions/uselocale.texi: Renamed from
24828         doc/glibc-functions/uselocale.texi.
24829         * doc/posix-functions/vdprintf.texi: Renamed from
24830         doc/glibc-functions/vdprintf.texi.
24831         * doc/posix-functions/wcpcpy.texi:
24832         Renamed from doc/glibc-functions/wcpcpy.texi.
24833         * doc/posix-functions/wcpncpy.texi: Renamed from
24834         doc/glibc-functions/wcpncpy.texi.
24835         * doc/posix-functions/wcscasecmp.texi: Renamed from
24836         doc/glibc-functions/wcscasecmp.texi.
24837         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
24838         doc/glibc-functions/wcscasecmp_l.texi.
24839         * doc/posix-functions/wcscoll_l.texi: Renamed from
24840         doc/glibc-functions/wcscoll_l.texi.
24841         * doc/posix-functions/wcsdup.texi: Renamed from
24842         doc/glibc-functions/wcsdup.texi.
24843         * doc/posix-functions/wcsncasecmp.texi: Renamed from
24844         doc/glibc-functions/wcsncasecmp.texi.
24845         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
24846         doc/glibc-functions/wcsncasecmp_l.texi.
24847         * doc/posix-functions/wcsnlen.texi: Renamed from
24848         doc/glibc-functions/wcsnlen.texi.
24849         * doc/posix-functions/wcsnrtombs.texi: Renamed from
24850         doc/glibc-functions/wcsnrtombs.texi.
24851         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
24852         doc/glibc-functions/wcsxfrm_l.texi.
24853         * doc/posix-functions/wctrans_l.texi: Renamed from
24854         doc/glibc-functions/wctrans_l.texi.
24855         * doc/posix-functions/wctype_l.texi: Renamed from
24856         doc/glibc-functions/wctype_l.texi.
24857         * doc/gnulib.texi (Function Substitutes): Add these subsections.
24858         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
24859         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
24860         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
24861         these subsections.
24862         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
24863         Remove sections.
24864
24865 2008-12-14  Bruno Haible  <bruno@clisp.org>
24866
24867         Update doc for POSIX:2008.
24868         * doc/posix-functions/*.texi: Update URL of POSIX specification.
24869
24870 2008-12-14  Bruno Haible  <bruno@clisp.org>
24871
24872         Update doc for POSIX:2008.
24873         * doc/pastposix-functions/bcmp.texi: Renamed from
24874         doc/posix-functions/bcmp.texi.
24875         * doc/pastposix-functions/bcopy.texi: Renamed from
24876         doc/posix-functions/bcopy.texi.
24877         * doc/pastposix-functions/bsd_signal.texi: Renamed from
24878         doc/posix-functions/bsd_signal.texi.
24879         * doc/pastposix-functions/bzero.texi: Renamed from
24880         doc/posix-functions/bzero.texi.
24881         * doc/pastposix-functions/ecvt.texi: Renamed from
24882         doc/posix-functions/ecvt.texi.
24883         * doc/pastposix-functions/fcvt.texi: Renamed from
24884         doc/posix-functions/fcvt.texi.
24885         * doc/pastposix-functions/ftime.texi: Renamed from
24886         doc/posix-functions/ftime.texi.
24887         * doc/pastposix-functions/gcvt.texi: Renamed from
24888         doc/posix-functions/gcvt.texi.
24889         * doc/pastposix-functions/getcontext.texi: Renamed from
24890         doc/posix-functions/getcontext.texi.
24891         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
24892         doc/posix-functions/gethostbyaddr.texi.
24893         * doc/pastposix-functions/gethostbyname.texi: Renamed from
24894         doc/posix-functions/gethostbyname.texi.
24895         * doc/pastposix-functions/getwd.texi: Renamed from
24896         doc/posix-functions/getwd.texi.
24897         * doc/pastposix-functions/h_errno.texi: Renamed from
24898         doc/posix-functions/h_errno.texi.
24899         * doc/pastposix-functions/index.texi: Renamed from
24900         doc/posix-functions/index.texi.
24901         * doc/pastposix-functions/makecontext.texi: Renamed from
24902         doc/posix-functions/makecontext.texi.
24903         * doc/pastposix-functions/mktemp.texi: Renamed from
24904         doc/posix-functions/mktemp.texi.
24905         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
24906         doc/posix-functions/pthread_attr_getstackaddr.texi.
24907         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
24908         doc/posix-functions/pthread_attr_setstackaddr.texi.
24909         * doc/pastposix-functions/rindex.texi: Renamed from
24910         doc/posix-functions/rindex.texi.
24911         * doc/pastposix-functions/scalb.texi: Renamed from
24912         doc/posix-functions/scalb.texi.
24913         * doc/pastposix-functions/setcontext.texi: Renamed from
24914         doc/posix-functions/setcontext.texi.
24915         * doc/pastposix-functions/swapcontext.texi: Renamed from
24916         doc/posix-functions/swapcontext.texi.
24917         * doc/pastposix-functions/ualarm.texi: Renamed from
24918         doc/posix-functions/ualarm.texi.
24919         * doc/pastposix-functions/usleep.texi: Renamed from
24920         doc/posix-functions/usleep.texi.
24921         * doc/pastposix-functions/vfork.texi: Renamed from
24922         doc/posix-functions/vfork.texi.
24923         * doc/pastposix-functions/wcswcs.texi: Renamed from
24924         doc/posix-functions/wcswcs.texi.
24925         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
24926         (Function Substitutes): Update.
24927
24928 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24929
24930         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
24931         m4/strerror.m4.
24932
24933 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24934             Bruno Haible  <bruno@clisp.org>
24935
24936         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
24937
24938 2008-12-13  Bruno Haible  <bruno@clisp.org>
24939
24940         * modules/strtoull (Depends-on): Remove unistd.
24941
24942 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24943
24944         * modules/strtoull (Depends-on): Add stdlib.
24945
24946 2008-12-11  Simon Josefsson  <simon@josefsson.org>
24947
24948         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
24949
24950 2008-12-10  Jim Meyering  <meyering@redhat.com>
24951
24952         gl_ASSERT: don't say assertions are disabled when they're not
24953         * m4/assert.m4 (gl_ASSERT): Do not make configure report
24954         "checking whether to enable assertions... no", when they are in
24955         fact enabled.  This is solely a bug in the output of configure.
24956         In spite of saying "no", NDEBUG was not defined in that case.
24957         Also, as noted by Eric Blake, leave assertions enabled upon
24958         --enable-assert=INVALID.
24959
24960 2008-12-10  Bruno Haible  <bruno@clisp.org>
24961
24962         Change MODULES.html to refer to POSIX:2008 where possible.
24963         * MODULES.html.sh (POSIX2008_URL): New variable.
24964         (posix_headers): Remove sys/timeb, ucontext.
24965         (posix2001_headers): New variable.
24966         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
24967         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
24968         index, makecontext, mktemp, pthread_attr_getstackaddr,
24969         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
24970         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
24971         (posix2001_functions): New variable.
24972         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
24973         otherwise.
24974
24975 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
24976
24977         add missing include to parse-duration.c
24978         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
24979         * modules/parse-duration (Depends-on): Add xalloc.
24980
24981         fix sed script reading maint.mk
24982         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
24983         (syntax-check-rules): Use it.
24984
24985 2008-12-09  Bruno Haible  <bruno@clisp.org>
24986
24987         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
24988         MacOS X 10.4/PowerPC.
24989         Reported by Simon Josefsson.
24990
24991 2008-12-08  Jim Meyering  <meyering@redhat.com>
24992
24993         work around mingw's lack of some S_IF definitions
24994         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
24995         Reported by Simon Josefsson.
24996
24997 2008-12-08  Bruno Haible  <bruno@clisp.org>
24998
24999         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
25000         applied to variables. Needed on MacOS X 10.4/PowerPC.
25001         Reported by Simon Josefsson.
25002
25003 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
25004         and Eric Blake  <ebb9@byu.net>
25005
25006         assert: honor --enable-assert
25007         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
25008         order to honor --enable-assert, rather than treating it as a
25009         synonym for --disable-assert.
25010
25011 2008-12-08  Jim Meyering  <meyering@redhat.com>
25012
25013         * lib/posixtm.c: Remove now-useless declaration of mktime.
25014
25015         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
25016
25017 2008-12-07  Bruno Haible  <bruno@clisp.org>
25018
25019         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
25020         test_once): Mark functions as static.
25021         * tests/test-tls.c (test_tls): Likewise.
25022
25023 2008-12-07  Bruno Haible  <bruno@clisp.org>
25024
25025         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
25026         iconv_register_autodetect.
25027
25028 2008-12-07  Jim Meyering  <meyering@redhat.com>
25029
25030         posixtm.c: avoid a warning
25031         * lib/posixtm.c (posixtime): Don't initialize tm0.
25032         It's no longer needed to placate gcc4's -Wuninitialized,
25033         and the attempt to placate would elicit a new warning.
25034
25035         unicodeio.c: mark unused parameters
25036         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
25037         (fallback_failure_callback): Likewise.
25038
25039 2008-12-07  Bruno Haible  <bruno@clisp.org>
25040
25041         * gnulib-tool (func_create_testdir): When building the tests
25042         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
25043         Reported by Simon Josefsson.
25044
25045 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25046
25047         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
25048
25049 2008-12-06  Bruno Haible  <bruno@clisp.org>
25050
25051         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
25052         Suggested by Eric Blake.
25053
25054 2008-12-06  Bruno Haible  <bruno@clisp.org>
25055
25056         Fix a c-stack test failure on MacOS X.
25057         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
25058         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
25059         handler for SIGBUS as well.
25060         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
25061         install a signal handler for SIGBUS as well.
25062         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
25063
25064 2008-12-06  Bruno Haible  <bruno@clisp.org>
25065
25066         Advocacy documentation.
25067         * doc/gnulib-intro.texi (Benefits): New section.
25068         * doc/gnulib.texi: Update.
25069
25070 2008-12-06  Bruno Haible  <bruno@clisp.org>
25071
25072         Document the 'manywarnings' module.
25073         * doc/manywarnings.texi: New file.
25074         * doc/gnulib.texi: Include it.
25075
25076 2008-12-05  Eric Blake  <ebb9@byu.net>
25077
25078         tests: silence some gcc warnings
25079         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
25080         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
25081         type mismatches.
25082
25083 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25084             Bruno Haible  <bruno@clisp.org>
25085
25086         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
25087
25088 2008-11-29  Jim Meyering  <meyering@redhat.com>
25089
25090         unicodeio.c: mark unused parameters
25091         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
25092         (fallback_failure_callback): Likewise.
25093
25094         fts: fix a thinko
25095         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
25096         (set_stat_type): Return S_IF*-valued "type" directly.
25097         Prompted by James Youngman's spotting a related bug.
25098         Confirmed by further testing through find.
25099
25100         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
25101         * lib/fts.c (D_TYPE): Define.
25102         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
25103         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
25104         (s_ifmt_shift_bits): New function.
25105         (set_stat_type): New function.
25106         (fts_build): When not calling fts_stat, call set_stat_type
25107         to propagate dirent.d_type info to fts_read caller.
25108         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
25109         fts_statp->st_mode type information may be valid.
25110
25111 2008-11-28  Simon Josefsson  <simon@josefsson.org>
25112
25113         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
25114         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
25115         <sds@gnu.org>.
25116
25117 2008-11-20  Bruno Haible  <bruno@clisp.org>
25118
25119         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
25120         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
25121         INCLUDE_NEXT.
25122         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
25123         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
25124         * modules/math (Makefile.am): Substitute
25125         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
25126         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
25127
25128 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
25129             Bruno Haible  <bruno@clisp.org>
25130
25131         * lib/stdint.in.h: Define all type macros so that their expansion is
25132         a single typedef'ed token. Fixes a compilation failure in Boost which
25133         does "using ::int8_t;".
25134
25135 2008-11-18  Simon Josefsson  <simon@josefsson.org>
25136
25137         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
25138         gl_MANYWARN_ALL_GCC.
25139         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
25140         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
25141         * modules/manywarnings: New file.
25142         * MODULES.html.sh: Mention manywarnings module.
25143
25144 2008-11-18  Bruno Haible  <bruno@clisp.org>
25145
25146         * doc/gnulib-tool.texi (Unit tests): New section.
25147
25148 2008-11-18  Simon Josefsson  <simon@josefsson.org>
25149
25150         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
25151         paths like 'lib/po/foo.po'.
25152
25153 2008-11-17  Simon Josefsson  <simon@josefsson.org>
25154
25155         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
25156         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
25157
25158 2008-11-17  Simon Josefsson  <simon@josefsson.org>
25159
25160         * m4/warnings.m4: Use CPPFLAGS to really check whether the
25161         parameter works.
25162
25163 2008-11-17  Simon Josefsson  <simon@josefsson.org>
25164
25165         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
25166
25167 2008-11-17  Bruce Korb  <bkorb@gnu.org>
25168
25169         * modules/parse-duration-tests: New file.
25170         * tests/test-parse-duration.sh: New file.
25171         * tests/test-parse-duration.c: New file.
25172
25173         New module 'parse-duration'.
25174         * lib/parse-duration.h: New file.
25175         * lib/parse-duration.c: New file.
25176         * modules/parse-duration: New file.
25177
25178 2008-11-17  Bruno Haible  <bruno@clisp.org>
25179
25180         * tests/test-select-out.sh: Comment out the first pipe test.
25181         Reported by Simon Josefsson.
25182
25183 2008-11-17  Bruno Haible  <bruno@clisp.org>
25184
25185         * modules/getaddrinfo (Depends-on): Add servent, hostent.
25186         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
25187         gl_HOSTENT.
25188
25189 2008-11-17  Bruno Haible  <bruno@clisp.org>
25190
25191         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
25192         -lnetwork and -lnet. Needed for Haiku and BeOS.
25193
25194 2008-11-16  Bruno Haible  <bruno@clisp.org>
25195
25196         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
25197
25198 2008-11-16  Bruno Haible  <bruno@clisp.org>
25199
25200         Avoid test failure on Haiku.
25201         * tests/test-fsync.c: Include <errno.h>.
25202         (main): Don't require that fsync (0) fails.
25203
25204 2008-11-15  Bruno Haible  <bruno@clisp.org>
25205
25206         New module 'hostent'.
25207         * modules/hostent: New file.
25208         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
25209
25210 2008-11-15  Bruno Haible  <bruno@clisp.org>
25211
25212         New module 'servent'.
25213         * modules/servent: New file.
25214         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
25215
25216 2008-11-15  Bruno Haible  <bruno@clisp.org>
25217
25218         Avoid generating same test program with two different rules.
25219         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
25220         test-frexp to test-frexp-nolibm.
25221         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
25222         test-frexpl to test-frexpl-nolibm.
25223
25224 2008-11-15  Bruno Haible  <bruno@clisp.org>
25225
25226         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
25227         $(FREXPL_LIBM).
25228
25229 2008-11-15  Bruno Haible  <bruno@clisp.org>
25230
25231         * lib/netdb.in.h: Activate the definitions also when the system's
25232         <netdb.h> has 'struct addrinfo'.
25233         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
25234         EAI_OVERFLOW or AI_NUMERICSERV.
25235         * doc/posix-headers/netdb.texi: Document the problem.
25236
25237 2008-11-15  Bruno Haible  <bruno@clisp.org>
25238
25239         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
25240
25241         Make the 'sched' module work on platforms where <sched.h> exists but
25242         is incomplete (such as Haiku).
25243         * lib/sched.in.h; Include the system's <sched.h> if it exists.
25244         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
25245         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
25246         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
25247         HAVE_STRUCT_SCHED_PARAM.
25248         * modules/sched (Depends-on): Add include_next.
25249         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
25250         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
25251         * doc/posix-headers/sched.texi: Document the issue.
25252
25253 2008-11-13  Jim Meyering  <meyering@redhat.com>
25254
25255         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
25256         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
25257         test would fail due to the difference in the Report bugs to ...
25258         line.  The expected address is empty, "<>", while the actual
25259         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
25260
25261 2008-11-12  Bruno Haible  <bruno@clisp.org>
25262
25263         lstat: don't compile lstat.c on systems lacking lstat
25264         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
25265         which don't have lstat; this is handled by lib/sys_stat.in.h already.
25266         Reported by Daniel P. Berrange via Jim Meyering.
25267
25268 2008-11-12  Jim Meyering  <meyering@redhat.com>
25269
25270         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
25271
25272 2008-11-12  Simon Josefsson  <simon@josefsson.org>
25273
25274         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
25275         instead.
25276
25277 2008-11-12  Bruno Haible  <bruno@clisp.org>
25278
25279         * lib/unicodeio.c: Include unistr.h.
25280         (utf8_wctomb): Remove function.
25281         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
25282
25283 2008-11-12  Simon Josefsson  <simon@josefsson.org>
25284
25285         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
25286         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
25287         <bruno@clisp.org>.
25288         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
25289
25290 2008-11-12  Simon Josefsson  <simon@josefsson.org>
25291
25292         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
25293         * doc/gnulib.texi: Add section for warnings.
25294
25295 2008-11-11  Bruno Haible  <bruno@clisp.org>
25296
25297         * lib/sockets.h: Add a comment.
25298
25299 2008-11-11  Karl Berry  <karl@gnu.org>
25300
25301         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
25302
25303 2008-11-11  Eric Blake  <ebb9@byu.net>
25304
25305         fdl.texi: avoid git symlinks
25306         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
25307
25308 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
25309
25310         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
25311
25312 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
25313
25314         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
25315         (gl_WARN_ADD): Substitute $2 if literal.
25316
25317 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
25318
25319         * m4/warning.m4: Remove.
25320
25321 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
25322
25323         * m4/warnings.m4: Almost complete rewrite. :-)
25324
25325 2008-11-10  Simon Josefsson  <simon@josefsson.org>
25326
25327         * modules/warnings: New module.
25328         * m4/warnings.m4: New file.
25329         * MODULES.html.sh: Mention warnings module.
25330         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
25331         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
25332
25333 2008-11-10  Eric Blake  <ebb9@byu.net>
25334
25335         fdl.texi: make a symlink to the latest version
25336         * doc/standards.texi: Revert today's earlier change.
25337         * doc/fdl-1.2.texi: Rename from old fdl.texi...
25338         * doc/fdl.texi: ...and replace this with a symlink to the newer
25339         fdl-1.3.texi.
25340
25341 2008-11-10  Bruno Haible  <bruno@clisp.org>
25342
25343         * tests/test-select-fd.c (main): Accept the result file name as fourth
25344         argument.
25345         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
25346         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
25347
25348 2008-11-10  Bruno Haible  <bruno@clisp.org>
25349
25350         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
25351         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
25352         as autoconf-substituted macros.
25353         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
25354         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
25355         gl_NETDB_H_DEFAULTS. Set these variables.
25356         * modules/netdb (Makefile.am): Substitute these variables.
25357
25358 2008-11-10  Eric Blake  <ebb9@byu.net>
25359
25360         standards.texi: include correct file for FDL 1.3
25361         * doc/standards.texi (GNU Free Documentation License): Change
25362         include file to pull in FDL 1.3, not 1.2.
25363
25364         fdl.texi: revert accidental change to license
25365         * doc/fdl.texi: This is FDL 1.2, not 1.3.
25366
25367 2008-11-10  Bruno Haible  <bruno@clisp.org>
25368
25369         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
25370         cross-compiling guesses also when the native compile gives no result.
25371
25372 2008-11-10  Bruno Haible  <bruno@clisp.org>
25373
25374         * lib/spawni.c (__spawni): Force variable into the stack.
25375
25376 2008-11-10  Bruno Haible  <bruno@clisp.org>
25377
25378         Add support for Haiku.
25379         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
25380         glibc and BeOS, but also on Haiku.
25381         * lib/fpurge.c (fpurge): Likewise.
25382         * lib/freadable.c (freadable): Likewise.
25383         * lib/freadahead.c (freadahead): Likewise.
25384         * lib/freading.c (freading): Likewise.
25385         * lib/freadptr.c (freadptr): Likewise.
25386         * lib/freadseek.c (freadptrinc): Likewise.
25387         * lib/fseeko.c (rpl_fseeko): Likewise.
25388         * lib/fseterr.c (fseterr): Likewise.
25389         * lib/fwritable.c (fwritable): Likewise.
25390         * lib/fwriting.c (fwriting): Likewise.
25391         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
25392
25393 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
25394
25395         * lib/config.charset: Treat Haiku like BeOS.
25396
25397 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
25398
25399         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
25400         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
25401
25402 2008-11-08  Bruno Haible  <bruno@clisp.org>
25403
25404         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
25405         AC_CACHE_CHECK.
25406
25407 2008-11-08  Bruno Haible  <bruno@clisp.org>
25408
25409         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
25410
25411 2008-11-08  Bruno Haible  <bruno@clisp.org>
25412
25413         * tests/test-select-fd.c: New file.
25414         * tests/test-select-in.sh: New file.
25415         * tests/test-select-out.sh: New file.
25416         * tests/test-select-stdin.c: New file.
25417         * modules/select-tests (Files): Add the new files.
25418         (Depends-on): Add gettimeofday.
25419         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
25420         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
25421         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
25422
25423 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
25424             Bruno Haible  <bruno@clisp.org>
25425
25426         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
25427
25428 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
25429
25430         * build-aux/pmccabe2html: Added support for C++ source files.
25431
25432 2008-11-05  Ben Pfaff  <blp@gnu.org>
25433
25434         Fix lib/close.c build on Windows.
25435         * modules/close (Files): Add lib/w32sock.h.
25436
25437 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
25438
25439         Accept Bison's NEWS format.
25440         * build-aux/announce-gen (print_news_deltas): Tweak
25441         $re_prefix.
25442
25443 2008-11-04  Bruno Haible  <bruno@clisp.org>
25444
25445         * modules/random_r (Maintainer): Add glibc.
25446
25447 2008-11-04  Simon Josefsson  <simon@josefsson.org>
25448
25449         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
25450         by karl@freefriends.org (Karl Berry).
25451         * doc/alloca.texi: Likewise.
25452         * doc/c-ctype.texi: Likewise.
25453         * doc/c-strcase.texi: Likewise.
25454         * doc/c-strcaseeq.texi: Likewise.
25455         * doc/c-strcasestr.texi: Likewise.
25456         * doc/c-strstr.texi: Likewise.
25457         * doc/c-strtod.texi: Likewise.
25458         * doc/c-strtold.texi: Likewise.
25459         * doc/ctime.texi: Likewise.
25460         * doc/error.texi: Likewise.
25461         * doc/fdl.texi: Likewise.
25462         * doc/gcd.texi: Likewise.
25463         * doc/getdate.texi: Likewise.
25464         * doc/gnulib-intro.texi: Likewise.
25465         * doc/gnulib-tool.texi: Likewise.
25466         * doc/gnulib.texi: Likewise.
25467         * doc/inet_ntoa.texi: Likewise.
25468         * doc/maintain.texi: Likewise.
25469         * doc/make-stds.texi: Likewise.
25470         * doc/quote.texi: Likewise.
25471         * doc/regexprops-generic.texi: Likewise.
25472         * doc/standards.texi: Likewise.
25473         * doc/verify.texi: Likewise.
25474         * doc/visibility.texi: Likewise.
25475         * doc/gnulib.texi (GNU Free Documentation License): Include
25476         fdl-1.3.texi instead of fdl.texi.
25477
25478 2008-11-04  Simon Josefsson  <simon@josefsson.org>
25479
25480         * doc/fdl-1.3.texi: New file, from
25481         <http://www.gnu.org/licenses/fdl-1.3.texi>.
25482         * modules/fdl-1.3: Add.
25483         * MODULES.html.sh: Add fdl-1.3.
25484
25485 2008-11-03  Bruno Haible  <bruno@clisp.org>
25486
25487         Make determination of absolute name of header file work with AIX xlc.
25488         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
25489         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
25490         preprocessing.
25491         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
25492         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
25493
25494 2008-11-03  Simon Josefsson  <simon@josefsson.org>
25495
25496         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
25497         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
25498         <ludo@gnu.org>.
25499
25500 2008-11-02  Bruno Haible  <bruno@clisp.org>
25501
25502         Mark 'strpbrk' obsolete.
25503         * modules/strpbrk (Status, Notice): New sections.
25504         * modules/strtok_r (Depends-on): Add strpbrk.
25505
25506 2008-11-02  Bruno Haible  <bruno@clisp.org>
25507
25508         Mark 'strdup' obsolete.
25509         * modules/strdup (Status, Notice): New sections.
25510         * modules/findprog (Depends-on): Add strdup.
25511         * modules/getaddrinfo (Depends-on): Likewise.
25512         * modules/localename (Depends-on): Likewise.
25513         * modules/relocatable-lib (Depends-on): Likewise.
25514         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
25515         * modules/relocatable-prog (Depends-on): Likewise.
25516         * modules/trim (Depends-on): Likewise.
25517         * modules/unictype/gen-ctype (Depends-on): Likewise.
25518         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
25519
25520 2008-11-02  Bruno Haible  <bruno@clisp.org>
25521
25522         Mark 'strcspn' obsolete.
25523         * modules/strcspn (Status, Notice): New sections.
25524
25525 2008-11-02  Bruno Haible  <bruno@clisp.org>
25526
25527         Mark 'rmdir' obsolete.
25528         * modules/rmdir (Status, Notice): New sections.
25529         * modules/clean-temp (Depends-on): Add rmdir.
25530         * modules/openat (Depends-on): Likewise.
25531
25532 2008-11-02  Bruno Haible  <bruno@clisp.org>
25533
25534         Mark 'raise' obsolete.
25535         * modules/raise (Status, Notice): New sections.
25536         (Include): Specify <signal.h>.
25537         * modules/stdio (Depends-on): Add raise.
25538         * modules/write (Depends-on): Likewise.
25539
25540 2008-11-02  Bruno Haible  <bruno@clisp.org>
25541
25542         Mark 'memset' obsolete.
25543         * modules/memset (Status, Notice): New sections.
25544
25545 2008-11-02  Bruno Haible  <bruno@clisp.org>
25546
25547         Mark 'memmove' obsolete.
25548         * modules/memmove (Status, Notice): New sections.
25549         * modules/argp (Depends-on): Add memmove.
25550         * modules/argz (Depends-on): Likewise.
25551         * modules/canonicalize (Depends-on): Likewise.
25552         * modules/canonicalize-lgpl (Depends-on): Likewise.
25553         * modules/fts (Depends-on): Likewise.
25554         * modules/getcwd (Depends-on): Likewise.
25555         * modules/human (Depends-on): Likewise.
25556         * modules/regex (Depends-on): Likewise.
25557         * modules/striconveh (Depends-on): Likewise.
25558         * modules/trim (Depends-on): Likewise.
25559         * modules/unistr/u8-move (Depends-on): Likewise.
25560         * modules/unistr/u16-move (Depends-on): Likewise.
25561         * modules/unistr/u32-move (Depends-on): Likewise.
25562
25563 2008-11-02  Bruno Haible  <bruno@clisp.org>
25564
25565         Mark 'memcpy' obsolete.
25566         * modules/memcpy (Status, Notice): New sections.
25567
25568 2008-11-02  Bruno Haible  <bruno@clisp.org>
25569
25570         Mark 'memcmp' obsolete.
25571         * modules/memcmp (Status, Notice): New sections.
25572         * modules/argmatch (Depends-on): Add memchr.
25573         * modules/backupfile (Depends-on): Likewise.
25574         * modules/c-strcasestr (Depends-on): Likewise.
25575         * modules/crypto/des (Depends-on): Likewise.
25576         * modules/csharpcomp (Depends-on): Likewise.
25577         * modules/fnmatch (Depends-on): Likewise.
25578         * modules/git-merge-changelog (Depends-on): Likewise.
25579         * modules/isnand (Depends-on): Likewise.
25580         * modules/isnand-nolibm (Depends-on): Likewise.
25581         * modules/isnanf (Depends-on): Likewise.
25582         * modules/isnanf-nolibm (Depends-on): Likewise.
25583         * modules/isnanl (Depends-on): Likewise.
25584         * modules/isnanl-nolibm (Depends-on): Likewise.
25585         * modules/mbchar (Depends-on): Likewise.
25586         * modules/memcoll (Depends-on): Likewise.
25587         * modules/quotearg (Depends-on): Likewise.
25588         * modules/regex (Depends-on): Likewise.
25589         * modules/relocatable-prog (Depends-on): Likewise.
25590         * modules/same (Depends-on): Likewise.
25591         * modules/signbit (Depends-on): Likewise.
25592         * modules/strcasestr-simple (Depends-on): Likewise.
25593         * modules/unictype/gen-ctype (Depends-on): Likewise.
25594         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
25595         * modules/uniname/uniname (Depends-on): Likewise.
25596         * modules/unistr/u8-cmp (Depends-on): Likewise.
25597
25598 2008-11-02  Bruno Haible  <bruno@clisp.org>
25599
25600         Mark 'memchr' obsolete.
25601         * modules/memchr (Status, Notice): New sections.
25602         * modules/argp (Depends-on): Add memchr.
25603         * modules/base64 (Depends-on): Likewise.
25604         * modules/c-strcasestr (Depends-on): Likewise.
25605         * modules/chdir-long (Depends-on): Likewise.
25606         * modules/fnmatch (Depends-on): Likewise.
25607         * modules/getsubopt (Depends-on): Likewise.
25608         * modules/git-merge-changelog (Depends-on): Likewise.
25609         * modules/glob (Depends-on): Likewise.
25610         * modules/strcasestr-simple (Depends-on): Likewise.
25611         * modules/strnlen (Depends-on): Likewise.
25612
25613 2008-11-02  Bruno Haible  <bruno@clisp.org>
25614
25615         Mark 'atexit' obsolete.
25616         * modules/atexit (Status, Notice): New sections.
25617         * modules/chdir-long (Depends-on): Add atexit.
25618         * modules/wait-process (Depends-on): Likewise.
25619
25620 2008-11-02  Bruno Haible  <bruno@clisp.org>
25621
25622         * gnulib-tool: New option --with-obsolete.
25623         (func_usage): Document it.
25624         (func_modules_transitive_closure): Drop obsolete dependencies if
25625         incobsolete is not true.
25626         (func_import): Read and save the incobsolete variable to the cache.
25627
25628 2008-11-02  Bruno Haible  <bruno@clisp.org>
25629
25630         * modules/TEMPLATE-EXTENDED: New field 'Status'.
25631         * gnulib-tool: New option --extract-status.
25632         (func_usage): Document it.
25633         (sed_extract_prog): Recognize it.
25634         (func_get_status): New function.
25635
25636 2008-10-30  Simon Josefsson  <simon@josefsson.org>
25637
25638         * modules/sockets (License): Change from LGPL to LGPLv2+.
25639
25640 2008-10-28  Simon Josefsson  <simon@josefsson.org>
25641
25642         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
25643
25644 2008-10-28  Simon Josefsson  <simon@josefsson.org>
25645
25646         * MODULES.html.sh (Support for systems lacking POSIX:2001):
25647         Mention times and sys_times.
25648         * modules/sys_times, modules/sys_times-tests: New modules.
25649         * modules/times, modules/times-tests: Likewise
25650         * m4/sys_times_h.m4: New file.
25651         * lib/sys_times.in.h: Likewise
25652         * lib/times.c: Likewise.
25653         * tests/test-sys_times.c: Likewise.
25654         * tests/test-times.c: Likewise.
25655         * doc/posix-headers/sys_times.texi: Update.
25656         * doc/posix-functions/times.texi: Update.
25657
25658 2008-10-28  Jim Meyering  <meyering@redhat.com>
25659
25660         * modules/tempname (Depends-on): Add lstat.
25661
25662         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
25663
25664 2008-10-28  Simon Josefsson  <simon@josefsson.org>
25665
25666         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
25667         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
25668         using idiom used elsewhere in gnulib.
25669
25670 2008-10-27  Jim Meyering  <meyering@redhat.com>
25671
25672         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
25673
25674 2008-10-27  Simon Josefsson  <simon@josefsson.org>
25675
25676         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
25677         TESTS_ENVIRONMENT, for shell scripts that needs to call built
25678         programs.
25679         * tests/test-argp-2.sh: Use $EXEEXT when needed.
25680
25681 2008-10-27  Simon Josefsson  <simon@josefsson.org>
25682
25683         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
25684
25685 2008-10-27  Bruno Haible  <bruno@clisp.org>
25686
25687         * tests/test-lstat.c: Include <stdio.h>.
25688
25689 2008-10-27  Simon Josefsson  <simon@josefsson.org>
25690
25691         * modules/lstat-tests: New module.
25692         * tests/test-lstat.c: New file.
25693
25694 2008-10-26  Jim Meyering  <meyering@redhat.com>
25695
25696         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
25697
25698 2008-10-26  Simon Josefsson  <simon@josefsson.org>
25699             Bruno Haible  <bruno@clisp.org>
25700
25701         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
25702         * modules/configmake (Include): Add a note that the include must come
25703         after all system headers.
25704         * lib/javaversion.c: Include configmake.h after all other includes.
25705
25706 2008-10-26  Bruno Haible  <bruno@clisp.org>
25707
25708         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
25709         HAVE_STRUCT_RANDOM_DATA to 1.
25710         (gl_STDLIB_H): Simplify.
25711
25712 2008-10-26  Simon Josefsson  <simon@josefsson.org>
25713
25714         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
25715         substitute HAVE_STRUCT_RANDOM_DATA.
25716         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
25717         random_data.
25718         * modules/stdlib (Makefile.am): Substitute
25719         HAVE_STRUCT_RANDOM_DATA.
25720
25721 2008-10-26  Simon Josefsson  <simon@josefsson.org>
25722
25723         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
25724         * doc/gnulib-intro.texi (Copyright): Likewise.
25725
25726 2008-10-26  Simon Josefsson  <simon@josefsson.org>
25727
25728         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
25729         findings.
25730
25731 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
25732             Bruno Haible  <bruno@clisp.org>
25733
25734         * lib/unistd.in.h: Include <winsock2.h>.
25735         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
25736         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
25737         Provide dummy declarations.
25738         (gethostname): Override.
25739         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
25740         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
25741         gl_PREREQ_SYS_H_WINSOCK2.
25742         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
25743         * doc/posix-functions/gethostname.texi: More details.
25744
25745 2008-10-25  Bruno Haible  <bruno@clisp.org>
25746
25747         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
25748         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
25749         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
25750
25751         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
25752         here ...
25753         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
25754         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
25755         gl_UNISTD_H_DEFAULTS.
25756
25757 2008-10-25  Eric Blake  <ebb9@byu.net>
25758
25759         signbit: avoid spurious compiler failure
25760         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
25761         declarations inside function.
25762
25763 2008-10-24  Simon Josefsson  <simon@josefsson.org>
25764             Bruno Haible  <bruno@clisp.org>
25765
25766         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
25767         * modules/random_r (Depends-on): Add stdint.
25768
25769 2008-10-24  Bruno Haible  <bruno@clisp.org>
25770
25771         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
25772         Eggert.
25773         * modules/strerror (License): Likewise.
25774
25775 2008-10-24  Jim Meyering  <meyering@redhat.com>
25776
25777         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
25778         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
25779
25780 2008-10-24  Eric Blake  <ebb9@byu.net>
25781
25782         getgroups: fix compilation when getgroups is available
25783         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
25784         but with <config.h> override of getgroups disabled.
25785
25786 2008-10-24  Simon Josefsson  <simon@josefsson.org>
25787
25788         * doc/gnulib.texi (Header files): Add note about C++ problems.
25789         Explained by Bruno Haible <bruno@clisp.org>.
25790
25791 2008-10-23  Bruno Haible  <bruno@clisp.org>
25792
25793         Define a dummy SA_NODEFER macro on Interix.
25794         * lib/signal.in.h (SA_NODEFER): Define fallback.
25795         Reported by Aleksey Cheusov <cheusov@tut.by> via
25796         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
25797
25798 2008-10-23  Bruno Haible  <bruno@clisp.org>
25799
25800         * modules/freadahead (License): Change to LGPLv2+.
25801         Suggested by Simon Josefsson.
25802
25803 2008-10-23  Jim Meyering  <meyering@redhat.com>
25804
25805         random_r: new module
25806         * modules/random_r: New file.
25807         * m4/random_r.m4: New file.
25808         * lib/random_r.c: New file, from glibc.
25809         * modules/random_r-tests: New file.
25810         * tests/test-random_r.c: New file.
25811         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
25812          Declare.
25813         (RAND_MAX): Define.
25814         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
25815         * modules/stdlib: Substitute them, too.
25816         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
25817         * doc/glibc-functions/initstate_r.texi: Mention the new module.
25818         * doc/glibc-functions/random_r.texi: Likewise.
25819         * doc/glibc-functions/setstate_r.texi: Likewise.
25820         * doc/glibc-functions/srandom_r.texi: Likewise.
25821         * config/srclist.txt: Mention it.
25822
25823 2008-10-23  David Lutterkort  <lutter@redhat.com>
25824
25825         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
25826         link requirement
25827
25828 2008-10-23  Jim Meyering  <meyering@redhat.com>
25829
25830         selinux-h: mark parameters of stub functions as intentionally unused
25831         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
25832         * lib/se-context.in.h: Likewise.
25833
25834 2008-10-22  Simon Josefsson  <simon@josefsson.org>
25835
25836         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
25837
25838 2008-10-22  Simon Josefsson  <simon@josefsson.org>
25839
25840         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
25841
25842 2008-10-22  Eric Blake  <ebb9@byu.net>
25843
25844         glthread/thread: avoid compiler warning
25845         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
25846         Add unreachable abort to silence compiler.
25847
25848 2008-10-22  Eric Blake  <ebb9@byu.net>
25849
25850         netdb: also supply struct addrinfo for cygwin 1.5.x
25851         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
25852         older cygwin.
25853         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
25854         cygwin.
25855         * doc/posix-headers/netdb.texi (netdb.h): Document this.
25856
25857 2008-10-22  Bruno Haible  <bruno@clisp.org>
25858
25859         * users.txt: Update entry about pspp.
25860
25861 2008-10-21  Bruno Haible  <bruno@clisp.org>
25862
25863         Simplification.
25864         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
25865         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
25866
25867         Simplification.
25868         * lib/ioctl.c (ioctl): Don't undefine.
25869         * lib/socket.c (socket): Don't undefine.
25870
25871         Remove unused module indicator macros.
25872         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
25873         GNULIB_$1 as a C macro.
25874
25875         * doc/posix-functions/close.texi: Undo last change.
25876         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
25877         Windows platforms.
25878
25879 2008-10-21  Bruno Haible  <bruno@clisp.org>
25880
25881         Add gethostname() declaration to <unistd.h>.
25882         * lib/unistd.in.h (gethostname): New declaration.
25883         * lib/gethostname.c: Include <unistd.h>.
25884         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
25885         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
25886         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
25887         and HAVE_GETHOSTNAME.
25888         * modules/gethostname (Depends-on): Add unistd.
25889         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
25890         (Include): Specify <unistd.h>.
25891         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
25892         HAVE_GETHOSTNAME.
25893         * tests/test-gethostname.c: Include <unistd.h> first.
25894
25895 2008-10-21  Bruno Haible  <bruno@clisp.org>
25896
25897         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
25898         * modules/select-tests (Depends-on): Likewise.
25899         Reported by Simon Josefsson.
25900
25901 2008-10-21  Simon Josefsson  <simon@josefsson.org>
25902
25903         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
25904         * lib/accept.c: New file, based on winsock.c.
25905         * lib/bind.c: New file, based on winsock.c.
25906         * lib/connect.c: New file, based on winsock.c.
25907         * lib/getpeername.c: New file, based on winsock.c.
25908         * lib/getsockname.c: New file, based on winsock.c.
25909         * lib/getsockopt.c: New file, based on winsock.c.
25910         * lib/ioctl.c: New file, based on winsock.c.
25911         * lib/listen.c: New file, based on winsock.c.
25912         * lib/recv.c: New file, based on winsock.c.
25913         * lib/recvfrom.c: New file, based on winsock.c.
25914         * lib/send.c: New file, based on winsock.c.
25915         * lib/sendto.c: New file, based on winsock.c.
25916         * lib/setsockopt.c: New file, based on winsock.c.
25917         * lib/shutdown.c: New file, based on winsock.c.
25918         * lib/socket.c: New file, based on winsock.c.
25919         * lib/w32sock.h: New file, based on winsock.c.
25920         * lib/winsock.c: Remove file.
25921         * modules/accept: Likewise.
25922         * modules/bind: Likewise.
25923         * modules/connect: Likewise.
25924         * modules/getpeername: Likewise.
25925         * modules/getsockname: Likewise.
25926         * modules/getsockopt: Likewise.
25927         * modules/ioctl: Likewise.
25928         * modules/listen: Likewise.
25929         * modules/recv: Likewise.
25930         * modules/recvfrom: Likewise.
25931         * modules/send: Likewise.
25932         * modules/sendto: Likewise.
25933         * modules/setsockopt: Likewise.
25934         * modules/shutdown: Likewise.
25935         * modules/socket: Use socket.c instead of winsock.c.
25936         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
25937         * doc/posix-functions/accept.texi: Doc fix.
25938         * doc/posix-functions/bind.texi: Doc fix.
25939         * doc/posix-functions/close.texi: Doc fix.
25940         * doc/posix-functions/connect.texi: Doc fix.
25941         * doc/posix-functions/getpeername.texi: Doc fix.
25942         * doc/posix-functions/getsockname.texi: Doc fix.
25943         * doc/posix-functions/getsockopt.texi: Doc fix.
25944         * doc/posix-functions/ioctl.texi: Doc fix.
25945         * doc/posix-functions/listen.texi: Doc fix.
25946         * doc/posix-functions/recv.texi: Doc fix.
25947         * doc/posix-functions/recvfrom.texi: Doc fix.
25948         * doc/posix-functions/send.texi: Doc fix.
25949         * doc/posix-functions/sendto.texi: Doc fix.
25950         * doc/posix-functions/setsockopt.texi: Doc fix.
25951         * doc/posix-functions/shutdown.texi: Doc fix.
25952         * doc/posix-functions/socket.texi: Doc fix.
25953
25954 2008-10-20  Bruno Haible  <bruno@clisp.org>
25955
25956         Take into account the role of SIGABRT_COMPAT on Windows 2008.
25957         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
25958         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
25959         as an alias for SIGABRT.
25960         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
25961         (sigaction): Map it to SIGABRT.
25962         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
25963
25964 2008-10-20  Bruno Haible  <bruno@clisp.org>
25965
25966         * lib/fts.c: Don't include lstat.h.
25967         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
25968
25969         Move the lstat() declaration to <sys/stat.h>.
25970         * lib/lstat.h: Remove file.
25971         * lib/sys_stat.in.h: Add special invocation convention.
25972         (lstat): New declaration.
25973         * lib/lstat.c (orig_lstat): New function.
25974         (rpl_lstat): Use orig_lstat instead of lstat.
25975         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
25976         AC_C_INLINE. Set REPLACE_LSTAT.
25977         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
25978         and REPLACE_LSTAT.
25979         * modules/lstat (Files): Remove lib/lstat.h.
25980         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
25981         (Include): Specify <sys/stat.h> instead of lstat.h.
25982         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
25983         REPLACE_LSTAT.
25984         * NEWS: Mention the change.
25985
25986 2008-10-20  Bruno Haible  <bruno@clisp.org>
25987
25988         * modules/posix_spawn-tests: New file.
25989         * tests/test-posix_spawn3.c: New file.
25990
25991 2008-10-20  Bruno Haible  <bruno@clisp.org>
25992
25993         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
25994         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
25995         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
25996         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
25997         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
25998
25999 2008-10-20  Bruno Haible  <bruno@clisp.org>
26000
26001         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
26002         of posix_spawn on AIX 5.3.
26003
26004 2008-10-20  Bruno Haible  <bruno@clisp.org>
26005
26006         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
26007
26008 2008-10-20  Bruno Haible  <bruno@clisp.org>
26009
26010         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
26011         of AC_LANG_PROGRAM.
26012
26013 2008-10-20  Simon Josefsson  <simon@josefsson.org>
26014
26015         * lib/netdb.in.h: Don't define GNU specific constants until they
26016         are supported or needed.  Reported by Bruno Haible
26017         <bruno@clisp.org>.
26018
26019 2008-10-20  Simon Josefsson  <simon@josefsson.org>
26020
26021         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
26022
26023 2008-10-20  Simon Josefsson  <simon@josefsson.org>
26024
26025         * lib/getaddrinfo.h: Remove file.
26026         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
26027         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
26028         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
26029         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
26030         * modules/netdb: Substitute GNULIB_GETADDRINFO.
26031         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
26032         * tests/test-getaddrinfo.c: Likewise.
26033         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
26034         * NEWS: Mention change.
26035
26036 2008-10-19  Bruno Haible  <bruno@clisp.org>
26037
26038         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
26039
26040 2008-10-19  Bruno Haible  <bruno@clisp.org>
26041
26042         * lib/wait-process.c: Include simply <sys/wait.h>.
26043         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
26044         WIFSTOPPED): Remove fallback definitions.
26045         * modules/wait-process (Depends-on): Add sys_wait.
26046
26047         New module 'sys_wait'.
26048         * modules/sys_wait: New file.
26049         * lib/sys_wait.in.h: New file, partially copied from
26050         lib/wait-process.c.
26051         * m4/sys_wait_h.m4: New file.
26052         * doc/posix-headers/sys_wait.texi: Mention the new module.
26053
26054 2008-10-19  Bruno Haible  <bruno@clisp.org>
26055
26056         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
26057
26058 2008-10-19  Bruno Haible  <bruno@clisp.org>
26059
26060         Assume that waitpid() fills an 'int' status, not a 'union wait'.
26061         * lib/wait-process.c (WAIT_T): Remove type.
26062         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
26063         (wait_subprocess): Update.
26064
26065 2008-10-19  Bruno Haible  <bruno@clisp.org>
26066
26067         New module 'atoll'.
26068         * modules/atoll: New file.
26069         * lib/stdlib.in.h (atoll): New declaration.
26070         * lib/atoll.c: New file, from glibc with modifications.
26071         * m4/atoll.m4: New file.
26072         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
26073         HAVE_ATOLL.
26074         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
26075         * doc/posix-functions/atoll.texi: Mention the new module.
26076
26077 2008-10-19  Bruno Haible  <bruno@clisp.org>
26078
26079         Add strtoull() declaration to <stdlib.h>.
26080         * lib/stdlib.in.h (strtoull): New declaration.
26081         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
26082         Set HAVE_STRTOULL.
26083         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
26084         HAVE_STRTOULL.
26085         * modules/strtoull (Depends-on): Add stdlib.
26086         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
26087         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
26088         HAVE_STRTOULL.
26089
26090 2008-10-19  Bruno Haible  <bruno@clisp.org>
26091
26092         Add strtoll() declaration to <stdlib.h>.
26093         * lib/stdlib.in.h (strtoll): New declaration.
26094         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
26095         Set HAVE_STRTOLL.
26096         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
26097         HAVE_STRTOLL.
26098         * modules/strtoll (Depends-on): Add stdlib.
26099         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
26100         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
26101
26102 2008-10-19  Bruno Haible  <bruno@clisp.org>
26103
26104         * modules/bcopy (Depends-on): Add strings.
26105         (Include): Specify <strings.h>.
26106
26107 2008-10-19  Bruno Haible  <bruno@clisp.org>
26108
26109         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
26110
26111 2008-10-19  Bruno Haible  <bruno@clisp.org>
26112
26113         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
26114         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
26115         mingw.
26116
26117 2008-10-19  Bruno Haible  <bruno@clisp.org>
26118
26119         * lib/atanl.c: Don't include isnanl.h.
26120         * lib/cosl.c: Likewise.
26121         * lib/ldexpl.c: Likewise.
26122         * lib/logl.c: Likewise.
26123         * lib/sinl.c: Likewise.
26124         * lib/sqrtl.c: Likewise.
26125         * lib/tanl.c: Likewise.
26126
26127         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
26128         * lib/isnanf.h: Remove file.
26129         * lib/isnand.h: Remove file.
26130         * lib/isnanl.h: Remove file.
26131         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
26132         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
26133         macros.
26134         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
26135         HAVE_ISNANF, don't define it as a C macro.
26136         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
26137         HAVE_ISNAND, don't define it as a C macro.
26138         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
26139         HAVE_ISNANL, don't define it as a C macro.
26140         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
26141         HAVE_ISNAN[FDL].
26142         * modules/isnanf (Files): Remove lib/isnanf.h.
26143         (Depends-on): Add math.
26144         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
26145         (Include): Specify <math.h> instead of isnanf.h.
26146         * modules/isnand (Files): Remove lib/isnand.h.
26147         (Depends-on): Add math.
26148         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
26149         (Include): Specify <math.h> instead of isnand.h.
26150         * modules/isnanl (Files): Remove lib/isnanl.h.
26151         (Depends-on): Add math.
26152         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
26153         (Include): Specify <math.h> instead of isnanl.h.
26154         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
26155         HAVE_ISNAN[FDL].
26156         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
26157         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
26158         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
26159         * NEWS: Mention the change.
26160
26161 2008-10-18  Bruno Haible  <bruno@clisp.org>
26162
26163         Add getusershell(), setusershell(), endusershell() declarations to
26164         <unistd.h>.
26165         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
26166         declarations.
26167         * lib/getusershell.c: Include unistd.h.
26168         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
26169         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
26170         HAVE_GETUSERSHELL.
26171         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
26172         and HAVE_GETUSERSHELL.
26173         * modules/getusershell (Depends-on): Add unistd, extensions.
26174         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
26175         (Include): Specify <unistd.h>.
26176         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
26177         HAVE_GETUSERSHELL.
26178
26179 2008-10-18  Bruno Haible  <bruno@clisp.org>
26180
26181         Add a getloadavg() declaration to <stdlib.h>.
26182         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
26183         getloadavg declaration.
26184         (getloadavg): New declaration.
26185         * lib/getloadavg.c: Include <stdlib.h> first.
26186         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
26187         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
26188         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
26189         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
26190         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
26191         * modules/getloadavg (Depends-on): Add stdlib, extensions.
26192         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
26193         (Include): Specify <stdlib.h>.
26194         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
26195         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
26196
26197 2008-10-18  Bruno Haible  <bruno@clisp.org>
26198
26199         * lib/dirchownmod.c: Don't include lchmod.h.
26200
26201         Move the lchmod() declaration to <sys/stat.h>.
26202         * lib/lchmod.h: Remove file.
26203         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
26204         (lchmod): New declaration, moved here from lib/lchown.h.
26205         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
26206         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
26207         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
26208         and HAVE_LCHMOD.
26209         * modules/lchmod (Files): Remove lib/lchmod.h.
26210         (Depends-on): Add sys_stat, extensions.
26211         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
26212         (Include): Specify <sys/stat.h> instead of lchmod.h.
26213         * modules/sys_stat (Depends-on): Add link-warning.
26214         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
26215         definition of GL_LINK_WARNING.
26216         * NEWS: Mention the change.
26217
26218 2008-10-18  Bruno Haible  <bruno@clisp.org>
26219
26220         * lib/fchdir.c: Don't include dirfd.h.
26221         * lib/fts.c: Likewise.
26222         * lib/getcwd.c: Likewise.
26223         * lib/glob.c: Likewise.
26224
26225         Move the dirfd() declaration to <dirent.h>.
26226         * lib/dirfd.h: Remove file.
26227         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
26228         (dirfd): New declaration.
26229         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
26230         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
26231         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
26232         HAVE_DECL_DIRFD.
26233         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
26234         HAVE_DECL_DIRFD.
26235         * modules/dirfd (Files): Remove lib/dirfd.h.
26236         (Depends-on): Add dirent, extensions.
26237         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
26238         (Include): Specify <dirent.h> instead of dirfd.h.
26239         * modules/dirent (Depends-on): Add link-warning.
26240         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
26241         definition of GL_LINK_WARNING.
26242         * NEWS: Mention the change.
26243
26244 2008-10-18  Bruno Haible  <bruno@clisp.org>
26245
26246         Move the euidaccess() declaration to <unistd.h>.
26247         * lib/euidaccess.h: Remove file.
26248         * lib/unistd.in.h (euidaccess): New declaration.
26249         * lib/euidaccess.c: Don't include euidaccess.h.
26250         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
26251         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
26252         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
26253         and HAVE_EUIDACCESS.
26254         * modules/euidaccess (Files): Remove lib/euidaccess.h.
26255         (Depends-on): Add unistd.
26256         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
26257         (Include): Specify <unistd.h> instead of euidaccess.h.
26258         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
26259         HAVE_EUIDACCESS.
26260         * NEWS: Mention the change.
26261
26262 2008-10-18  Bruno Haible  <bruno@clisp.org>
26263
26264         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
26265
26266         Move the getdomainname() declaration to <unistd.h>.
26267         * lib/getdomainname.h: Remove file.
26268         * lib/unistd.in.h (getdomainname): New declaration.
26269         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
26270         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
26271         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
26272         HAVE_GETDOMAINNAME.
26273         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
26274         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
26275         * modules/getdomainname (Files): Remove lib/getdomainname.h.
26276         (Depends-on): Add unistd, extensions.
26277         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
26278         (Includes): Specify <unistd.h> instead of getdomainname.h.
26279         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
26280         HAVE_GETDOMAINNAME.
26281         * NEWS: Mention the change.
26282
26283 2008-10-18  Bruno Haible  <bruno@clisp.org>
26284
26285         * modules/dirent: New file.
26286         * m4/dirent_h.m4: New file.
26287         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
26288         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
26289         * modules/fchdir (Files): Remove lib/dirent.in.h.
26290         (Depends-on): Add dirent.
26291         (Makefile.am): Move rules to modules/dirent.
26292         * doc/posix-headers/dirent.texi: Mention the new module.
26293
26294 2008-10-18  Bruno Haible  <bruno@clisp.org>
26295
26296         Avoid -Wunused-parameter warnings in public gnulib header files.
26297         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
26298         macro.
26299         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
26300
26301 2008-10-18  Bruno Haible  <bruno@clisp.org>
26302
26303         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
26304         * doc/glibc-functions/error.texi: Mention the module 'error'.
26305         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
26306         * doc/glibc-functions/getdomainname.texi: Mention the module
26307         'getdomainname'.
26308         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
26309         * doc/glibc-functions/getpagesize.texi: Mention the module
26310         'getpagesize'.
26311         * doc/glibc-functions/getusershell.texi: Mention the module
26312         'getusershell'.
26313         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
26314         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
26315         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
26316         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
26317         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
26318         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
26319         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
26320         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
26321         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
26322         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
26323         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
26324         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
26325         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
26326         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
26327
26328 2008-10-17  Bruno Haible  <bruno@clisp.org>
26329
26330         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
26331         HP-UX and IRIX, use -0.0L.
26332         * tests/test-ceill.c (minus_zero): Likewise.
26333         * tests/test-floorl.c (minus_zero): Likewise.
26334         * tests/test-frexpl.c (minus_zero): Likewise.
26335         * tests/test-isnan.c (minus_zerol): Likewise.
26336         * tests/test-isnanl.h (minus_zero): Likewise.
26337         * tests/test-ldexpl.c (minus_zero): Likewise.
26338         * tests/test-roundl.c (minus_zero): Likewise.
26339         * tests/test-signbit.c (minus_zerol): Likewise.
26340         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
26341         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
26342         * tests/test-truncl.c (minus_zero): Likewise.
26343         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
26344         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
26345         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
26346         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
26347
26348 2008-10-17  Bruno Haible  <bruno@clisp.org>
26349
26350         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
26351         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
26352         that it gets activated only for gcc >= 3.0.
26353         * lib/dirent.in.h: Likewise.
26354         * lib/errno.in.h: Likewise.
26355         * lib/fcntl.in.h: Likewise.
26356         * lib/float.in.h: Likewise.
26357         * lib/iconv.in.h: Likewise.
26358         * lib/inttypes.in.h: Likewise.
26359         * lib/locale.in.h: Likewise.
26360         * lib/math.in.h: Likewise.
26361         * lib/netdb.in.h: Likewise.
26362         * lib/netinet_in.in.h: Likewise.
26363         * lib/search.in.h: Likewise.
26364         * lib/signal.in.h: Likewise.
26365         * lib/spawn.in.h: Likewise.
26366         * lib/stdarg.in.h: Likewise.
26367         * lib/stdint.in.h: Likewise.
26368         * lib/stdio.in.h: Likewise.
26369         * lib/stdlib.in.h: Likewise.
26370         * lib/string.in.h: Likewise.
26371         * lib/strings.in.h: Likewise.
26372         * lib/sys_file.in.h: Likewise.
26373         * lib/sys_ioctl.in.h: Likewise.
26374         * lib/sys_select.in.h: Likewise.
26375         * lib/sys_socket.in.h: Likewise.
26376         * lib/sys_stat.in.h: Likewise.
26377         * lib/sys_time.in.h: Likewise.
26378         * lib/sysexits.in.h: Likewise.
26379         * lib/time.in.h: Likewise.
26380         * lib/unistd.in.h: Likewise.
26381         * lib/wchar.in.h: Likewise.
26382         * lib/wctype.in.h: Likewise.
26383         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
26384
26385 2008-10-17  Jim Meyering  <meyering@redhat.com>
26386
26387         ignore-value: don't depend on inline module
26388         * modules/ignore-value (Depends-on): Remove 'inline'.
26389         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
26390         Suggestion from Bruno Haible.
26391
26392 2008-10-17  Bruno Haible  <bruno@clisp.org>
26393
26394         New implementation of condition variables for Win32.
26395         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
26396         (gl_linked_waitqueue_t): New type.
26397         (gl_cond_t): Use it.
26398         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
26399         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
26400         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
26401         (glthread_cond_init_func, glthread_cond_wait_func,
26402         glthread_cond_timedwait_func, glthread_cond_signal_func,
26403         glthread_cond_broadcast_func, glthread_cond_destroy_func):
26404         Reimplemented on the basis of gl_linked_waitqueue_t.
26405         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
26406         gl_waitqueue_t.
26407         (gl_rwlock_t): Update.
26408         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
26409
26410 2008-10-17  Simon Josefsson  <simon@josefsson.org>
26411
26412         * modules/recvfrom (Depends-on): Add dependency on getpeername.
26413         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
26414
26415 2008-10-17  Jim Meyering  <meyering@redhat.com>
26416
26417         ignore-value: new module
26418         * modules/ignore-value: New file.
26419         * lib/ignore-value.h: New file.
26420         * MODULES.html.sh (Compiler warning management): New section,
26421         just for this module.  More to come.
26422
26423 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
26424
26425         open-safer.c: avoid 'signed and unsigned in conditional...' warning
26426         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
26427         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
26428
26429 2008-10-16  Jim Meyering  <meyering@redhat.com>
26430
26431         openat-die.c: avoid 'no previous prototype' warning
26432         * lib/openat-die.c: Include "openat.h".
26433         Reported by Reuben Thomas <rrt@sc3d.org>.
26434
26435 2008-10-16  Simon Josefsson  <simon@josefsson.org>
26436
26437         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
26438         * lib/netdb.in.h: Fix typo.
26439         Reported by Bruno Haible  <bruno@clisp.org>
26440
26441         * lib/netdb.in.h: Include sys/socket.h for platforms without
26442         netdb.h, to get structures like hostent on MinGW.
26443         * modules/netdb (Depends-on): Add sys_socket.
26444
26445 2008-10-15  Simon Josefsson  <simon@josefsson.org>
26446
26447         * modules/netdb, modules/netdb-tests: New file.
26448         * m4/netdb_h.m4: New file.
26449         * lib/netdb.in.h: Add, currently just an empty file pending
26450         definitions.
26451         * tests/test-netdb.c: New file.
26452         * doc/posix-headers/netdb.texi: Mention that we replace it if
26453         needed.
26454         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26455         netdb.
26456
26457 2008-10-15  Simon Josefsson  <simon@josefsson.org>
26458
26459         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
26460         with code.
26461
26462 2008-10-13  Bruno Haible  <bruno@clisp.org>
26463
26464         * lib/glthread/cond.c (glthread_cond_wait_func,
26465         glthread_cond_timedwait_func): Add a comment.
26466
26467 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26468
26469         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
26470         * tests/test-select.c: Likewise,
26471
26472 2008-10-13  Bruno Haible  <bruno@clisp.org>
26473
26474         * lib/glthread/cond.c (glthread_cond_wait_func,
26475         glthread_cond_timedwait_func): Fix variable name.
26476         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
26477
26478 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
26479
26480         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
26481         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
26482         struct sockaddr.sa_len.
26483         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
26484
26485 2008-10-13  Simon Josefsson  <simon@josefsson.org>
26486
26487         * build-aux/pmccabe2html: Add css and css_url parameters.
26488
26489 2008-10-12  Bruno Haible  <bruno@clisp.org>
26490
26491         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
26492         calling aclx_get.
26493         Reported by Rainer Tammer <tammer@tammer.net>.
26494
26495 2008-10-12  Bruno Haible  <bruno@clisp.org>
26496
26497         Use msvcrt aware primitives for creation/termination of Win32 threads.
26498         * lib/glthread/thread.c: Include <process.h>.
26499         (glthread_create_func): Use _beginthreadex instead of CreateThread.
26500         (wrapper_func): Update signature.
26501         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
26502
26503 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
26504             Bruno Haible  <bruno@clisp.org>
26505
26506         Provide a Win32 implementation of the 'cond' module.
26507         * lib/glthread/cond.h [USE_WIN32]: New implementation.
26508         * lib/glthread/cond.c (glthread_cond_init_func,
26509         glthread_cond_wait_func, glthread_cond_timedwait_func,
26510         glthread_cond_signal_func, glthread_cond_broadcast_func,
26511         glthread_cond_destroy_func) [USE_WIN32]: New functions.
26512         * modules/cond (Dependencies): Add gettimeofday.
26513
26514 2008-10-11  Bruno Haible  <bruno@clisp.org>
26515
26516         Make sleep work on older versions of mingw.
26517         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
26518         only whether it exists.
26519         * doc/posix-functions/sleep.texi: Mention the problem with older
26520         versions of mingw.
26521
26522 2008-10-11  Bruno Haible  <bruno@clisp.org>
26523
26524         New module 'shutdown'.
26525         * modules/shutdown: New file.
26526         * lib/sys_socket.in.h (shutdown): New declaration.
26527         * lib/winsock.c (shutdown): New function.
26528         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
26529         GNULIB_SHUTDOWN.
26530         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
26531         * doc/posix-functions/shutdown.texi: Document the new module.
26532
26533 2008-10-11  Jim Meyering  <meyering@redhat.com>
26534
26535         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
26536
26537 2008-10-11  Bruno Haible  <bruno@clisp.org>
26538
26539         New module 'fclose'.
26540         * modules/fclose: New file.
26541         * lib/stdio.in.h (fclose): New declaration.
26542         * lib/fclose.c: New file.
26543         * m4/fclose.m4: New file.
26544         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
26545         REPLACE_FCLOSE.
26546         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
26547         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
26548         REPLACE_FCLOSE.
26549         * modules/close (Depends-on): fclose.
26550         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
26551
26552 2008-10-11  Bruno Haible  <bruno@clisp.org>
26553
26554         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
26555         set errno and don't call _close.
26556
26557 2008-10-10  Bruno Haible  <bruno@clisp.org>
26558
26559         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
26560         ACL, not afterwards. Fixes test failure on Cygwin.
26561
26562 2008-10-09  Ben Pfaff  <blp@gnu.org>
26563
26564         * build-aux/announce-gen: Fix gnulib version related part of usage
26565         message.  Die with a useful error message if no tarballs are
26566         found.
26567
26568 2008-10-10  Jim Meyering  <meyering@redhat.com>
26569
26570         bootstrap: use git's --depth=N option only if it's supported
26571         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
26572         recognize the --depth option.  Reported by Pádraig Brady.
26573
26574 2008-10-09  Bruno Haible  <bruno@clisp.org>
26575
26576         New module 'ioctl'.
26577         * modules/ioctl: New file.
26578         * lib/sys_socket.in.h (ioctl): Remove declaration.
26579         * lib/winsock.c: Include <sys/ioctl.h>.
26580         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
26581         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
26582         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
26583         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
26584         * doc/posix-functions/ioctl.texi: Mention the new module.
26585
26586 2008-10-09  Bruno Haible  <bruno@clisp.org>
26587
26588         New module 'sys_ioctl'.
26589         * lib/sys_ioctl.in.h: New file.
26590         * m4/sys_ioctl_h.m4: New file.
26591         * modules/sys_ioctl: New file.
26592         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
26593
26594 2008-10-09  Bruno Haible  <bruno@clisp.org>
26595
26596         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
26597         * lib/winsock.c: Include <stdarg.h>.
26598         (rpl_ioctl): Change to second argument 'int' and then varargs.
26599
26600 2008-10-09  Bruno Haible  <bruno@clisp.org>
26601
26602         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
26603         when the sys_socket module is present and the system has <winsock2.h>.
26604
26605 2008-10-09  Bruno Haible  <bruno@clisp.org>
26606
26607         * doc/posix-functions/close.texi: Mention module 'close' instead of
26608         module 'sys_socket'.
26609
26610 2008-10-09  Bruno Haible  <bruno@clisp.org>
26611
26612         * doc/glibc-headers/sys_ioctl.texi: New file.
26613         * doc/gnulib.texi: Include it.
26614
26615 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
26616             Bruno Haible  <bruno@clisp.org>
26617
26618         Combine the two replacements of 'close'.
26619         * lib/sys_socket.in.h (close): Define to a reminder to include
26620         <unistd.h>.
26621         (_gl_close_fd_maybe_socket): New declaration.
26622         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
26623         * lib/winsock.c (close): Remove undefinition.
26624         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
26625         needed for the gnulib module 'close'.
26626         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
26627         define to an error symbol or to a warning, if suitable.
26628         * lib/close.c: Include <sys/socket.h>.
26629         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
26630         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
26631         UNISTD_H_HAVE_WINSOCK2_H.
26632         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
26633         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
26634         UNISTD_H_HAVE_WINSOCK2_H.
26635         * modules/sys_socket (Files): Add m4/unistd_h.m4.
26636         (configure.ac): Set a module indicator.
26637         (Makefile.am): Substitute GNULIB_CLOSE.
26638         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
26639         * modules/poll-tests (Depends-on): Add close.
26640         * modules/select-tests (Depends-on): Likewise.
26641
26642 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
26643             Bruno Haible  <bruno@clisp.org>
26644
26645         New module 'close'.
26646         * modules/close: New file.
26647         * lib/unistd.in.h (close): Move declaration out of the
26648         FCHDIR_REPLACEMENT scope.
26649         (_gl_unregister_fd): New declaration.
26650         * lib/close.c: New file.
26651         * lib/fchdir.c (rpl_close): Remove function.
26652         * m4/close.m4: New file.
26653         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
26654         close.
26655         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
26656         REPLACE_CLOSE.
26657         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
26658         REPLACE_CLOSE.
26659         * modules/fchdir (Depends-on): Add close.
26660
26661 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
26662             Bruno Haible  <bruno@clisp.org>
26663
26664         * lib/fcntl.in.h (open): Simplify conditionals.
26665         (_gl_register_fd): New declaration.
26666         * lib/fchdir.c (rpl_open): Remove function.
26667         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
26668         also.
26669         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
26670         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
26671         open.
26672
26673 2008-10-09  Jim Meyering  <meyering@redhat.com>
26674
26675         GNUmakefile: use the more name-space-friendly "_version"
26676         * top/GNUmakefile (_dummy): Update.
26677         (_version): Rename from "version".
26678
26679 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
26680             Bruno Haible  <bruno@clisp.org>
26681
26682         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
26683         rpl_close.
26684         (_gl_register_fd): New function, extracted from rpl_open.
26685         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
26686         (rpl_open, rpl_opendir): Use _gl_register_fd.
26687
26688 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
26689
26690         Fix organization of 'open' replacement.
26691         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
26692         (gl_FUNC_OPEN): Use it.
26693         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
26694
26695 2008-10-08  Bruno Haible  <bruno@clisp.org>
26696
26697         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
26698
26699 2008-10-08  Simon Josefsson  <simon@josefsson.org>
26700
26701         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
26702         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
26703         listen).
26704
26705 2008-10-08  Eric Blake  <ebb9@byu.net>
26706
26707         GNUmakefile: add 'make version' target
26708         * top/GNUmakefile (_curr-ver): Split version update rules...
26709         (version): ...into a target.
26710
26711 2008-10-07  Bruno Haible  <bruno@clisp.org>
26712
26713         Use a more portable replacement expression for -0.0L.
26714         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
26715         instead of -0.0L. Fix m4 quotation.
26716
26717         * tests/test-signbit.c: Include <float.h>.
26718         (minus_zero): New variable.
26719         (test_signbitl): Use minus_zero instead of -zero.
26720         * modules/signbit-tests (Depends-on): Add float.
26721
26722         * tests/test-ceill.c: Include <float.h>.
26723         (zero): Remove variable.
26724         (minus_zero): New variable.
26725         (main): Use minus_zero instead of -zero.
26726         * modules/ceill-tests (Depends-on): Add float.
26727
26728         * tests/test-floorl.c: Include <float.h>.
26729         (zero): Remove variable.
26730         (minus_zero): New variable.
26731         (main): Use minus_zero instead of -zero.
26732         * modules/floorl-tests (Depends-on): Add float.
26733
26734         * tests/test-roundl.c: Include <float.h>.
26735         (zero): Remove variable.
26736         (minus_zero): New variable.
26737         (main): Use minus_zero instead of -zero.
26738         * modules/roundl-tests (Depends-on): Add float.
26739
26740         * tests/test-truncl.c: Include <float.h>.
26741         (zero): Remove variable.
26742         (minus_zero): New variable.
26743         (main): Use minus_zero instead of -zero.
26744         * modules/truncl-tests (Depends-on): Add float.
26745
26746         * tests/test-frexpl.c (zero): Remove variable.
26747         (minus_zero): New variable.
26748         (main): Use minus_zero instead of -zero.
26749         * modules/frexpl-tests (Depends-on): Add float.
26750
26751         * tests/test-isnan.c (zerol): Remove variable.
26752         (minus_zerol): New variable.
26753         (test_long_double): Use minus_zerol instead of -zerol.
26754         * modules/isnan-tests (Depends-on): Add float.
26755
26756         * tests/test-isnanl.h (zero): Remove variable.
26757         (minus_zero): New variable.
26758         (main): Use minus_zero instead of -zero.
26759         * modules/isnanl-nolibm-tests (Depends-on): Add float.
26760         * modules/isnanl-tests (Depends-on): Add float.
26761
26762         * tests/test-ldexpl.c (zero): Remove variable.
26763         (minus_zero): New variable.
26764         (main): Use minus_zero instead of -zero.
26765         * modules/ldexpl-tests (Depends-on): Add float.
26766
26767         * tests/test-snprintf-posix.h (zerol): Remove variable.
26768         (minus_zerol): New variable.
26769         (test_function): Use minus_zerol instead of -zerol.
26770         * modules/snprintf-posix-tests (Depends-on): Add float.
26771         * modules/vsnprintf-posix-tests (Depends-on): Add float.
26772
26773         * tests/test-sprintf-posix.h (zerol): Remove variable.
26774         (minus_zerol): New variable.
26775         (test_function): Use minus_zerol instead of -zerol.
26776         * modules/sprintf-posix-tests (Depends-on): Add float.
26777         * modules/vsprintf-posix-tests (Depends-on): Add float.
26778
26779         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
26780         (minus_zerol): New variable.
26781         (test_function): Use minus_zerol instead of -zerol.
26782         * modules/vasnprintf-posix-tests (Depends-on): Add float.
26783
26784         * tests/test-vasprintf-posix.c (zerol): Remove variable.
26785         (minus_zerol): New variable.
26786         (test_function): Use minus_zerol instead of -zerol.
26787         * modules/vasprintf-posix-tests (Depends-on): Add float.
26788
26789 2008-10-07  Simon Josefsson  <simon@josefsson.org>
26790
26791         * MODULES.html.sh (Support for building documentation): Mention
26792         pmccabe2html.  Sort entries.
26793
26794         Add pmccabe2html module, from gnupdf.
26795         * build-aux/pmccabe.css: New file.
26796         * build-aux/pmccabe2html: New file.
26797         * m4/pmccabe2html.m4: New file.
26798         * modules/pmccabe2html: New file.
26799
26800 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
26801
26802         flock: new module
26803         * MODULES.html.sh: Add to list of modules.
26804         * lib/flock.c: flock implementation for Windows and Unix systems
26805         which have fcntl.
26806         * doc/glibc-functions/flock.texi: Update documentation.
26807         * lib/sys_file.in.h: <sys/file.h> header file.
26808         * m4/flock.m4: M4 macros.
26809         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
26810         * modules/flock: flock module.
26811         * modules/flock-tests: flock tests module.
26812         * modules/sys_file: sys/file.h module.
26813         * tests/test-flock.c: test suite for flock.
26814
26815 2008-10-06  Jim Meyering  <meyering@redhat.com>
26816
26817         bootstrap: check for LT_INIT more portably still ;-)
26818         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
26819         Spotted by Bruno Haible.
26820
26821 2008-10-06  Eric Blake  <ebb9@byu.net>
26822
26823         test-signbit: avoid tripping Irix cc bug on -0.0L
26824         * tests/test-signbit.c (minus_zerol): Delete, and replace with
26825         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
26826         entire testsuite consistent and avoids an Irix 6.2 bug.
26827
26828 2008-10-05  Bruno Haible  <bruno@clisp.org>
26829             Jim Meyering  <jim@meyering.net>
26830
26831         Add an option for ignoring EPIPE during close_stdout.
26832         * lib/closeout.h: Include <stdbool.h>.
26833         (close_stdout_set_ignore_EPIPE): New declaration.
26834         * lib/closeout.c: Include <stdbool.h>.
26835         (ignore_EPIPE): New variable.
26836         (close_stdout_set_ignore_EPIPE): New function.
26837         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
26838         * lib/close-stream.c (close_stream): Mention the possible EPIPE
26839         failure.
26840         * modules/closeout (Depends-on): Add stdbool.
26841
26842 2008-10-05  Bruno Haible  <bruno@clisp.org>
26843
26844         * modules/accept: New file.
26845         * modules/bind: New file.
26846         * modules/connect: New file.
26847         * modules/getpeername: New file.
26848         * modules/getsockname: New file.
26849         * modules/getsockopt: New file.
26850         * modules/listen: New file.
26851         * modules/recv: New file.
26852         * modules/recvfrom: New file.
26853         * modules/send: New file.
26854         * modules/sendto: New file.
26855         * modules/setsockopt: New file.
26856         * modules/socket: New file.
26857         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
26858         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
26859         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
26860         the particular module is requested. Add a link warning when the
26861         particular module is not requested.
26862         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
26863         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
26864         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
26865         the particular module is requested.
26866         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
26867         gl_SYS_SOCKET_H_DEFAULTS): New macros.
26868         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
26869         * modules/sys_socket (Depends-on): Add link-warning.
26870         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
26871         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
26872         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
26873         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
26874         GL_LINK_WARNING.
26875         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
26876         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
26877         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
26878         * doc/posix-functions/getpeername.texi: Mention the new module
26879         'getpeername'.
26880         * doc/posix-functions/getsockname.texi: Mention the new module
26881         'getsockname'.
26882         * doc/posix-functions/getsockopt.texi: Mention the new module
26883         'getsockopt'.
26884         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
26885         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
26886         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
26887         * doc/posix-functions/send.texi: Mention the new module 'send'.
26888         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
26889         * doc/posix-functions/setsockopt.texi: Mention the new module
26890         'setsockopt'.
26891         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
26892         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
26893         listen, connect, accept.
26894         * modules/select-tests (Depends-on): Likewise.
26895
26896 2008-10-05  Bruno Haible  <bruno@clisp.org>
26897
26898         * lib/winsock.c (strerror): Remove unused #undef.
26899         (rpl_close): Remove unused local variable.
26900
26901         * modules/sys_socket (Depends-on); Add errno.
26902
26903 2008-10-05  Bruno Haible  <bruno@clisp.org>
26904
26905         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
26906         (select): Add a link warning when the 'select' module is not used.
26907         * modules/sys_select (Depends-on): Add link-warning.
26908         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
26909         Suggested by Paolo Bonzini.
26910
26911 2008-10-05  Jim Meyering  <meyering@redhat.com>
26912
26913         bootstrap: check for LT_INIT more portably
26914         * build-aux/bootstrap: Avoid using grep -E, since it's not
26915         portable enough.  Suggestion from Bruno Haible.
26916
26917 2008-10-05  Bruno Haible  <bruno@clisp.org>
26918
26919         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
26920         as being fixed by gnulib.
26921
26922 2008-10-05  Bruno Haible  <bruno@clisp.org>
26923
26924         * modules/select-tests: New file, mostly copied from
26925         modules/sys_select-tests.
26926         * tests/test-select.c: New file, mostly copied from
26927         tests/test-sys_select.c.
26928         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
26929         * modules/sys_select-tests (Depends-on): Remove all dependencies.
26930         (Makefile.am): Remove test_sys_select_LDADD.
26931
26932         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
26933         to an undefined symbol, for an error message.
26934         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
26935         (gl_SYS_SELECT_H_DEFAULTS): New macro.
26936         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
26937         winsock-select.c here.
26938         * modules/sys_select (Files): Remove lib/winsock-select.c.
26939         (Depends-on): Remove alloca.
26940         (Makefile.am): Substitute GNULIB_SELECT.
26941         * modules/select: New file.
26942         * doc/posix-functions/select.texi: Update.
26943
26944 2008-10-05  Bruno Haible  <bruno@clisp.org>
26945
26946         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
26947         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
26948         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
26949         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
26950         getdtablesize.
26951         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
26952         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
26953
26954 2008-10-05  Bruno Haible  <bruno@clisp.org>
26955
26956         * modules/getdtablesize-tests: New file.
26957         * tests/test-getdtablesize.c: New file.
26958
26959         New module 'getdtablesize'.
26960         * lib/unistd.in.h (getdtablesize): New declaration.
26961         * lib/getdtablesize.c: New file.
26962         * m4/getdtablesize.m4: New file.
26963         * modules/getdtablesize: New file.
26964         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
26965         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
26966         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
26967         HAVE_GETDTABLESIZE.
26968         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
26969
26970 2008-10-05  Bruno Haible  <bruno@clisp.org>
26971
26972         * modules/sched (Makefile.am): Fix typo.
26973         Reported by Simon Josefsson.
26974
26975 2008-10-05  Jim Meyering  <meyering@redhat.com>
26976
26977         bootstrap: check for LT_INIT, too
26978         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
26979         are deprecated.  Suggestion from Ralf Wildenhues.
26980
26981 2008-10-05  Bruno Haible  <bruno@clisp.org>
26982
26983         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
26984         overriding them by ours.
26985         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
26986
26987 2008-10-05  Jim Meyering  <meyering@redhat.com>
26988
26989         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
26990         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
26991         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
26992
26993 2008-10-04  Bruno Haible  <bruno@clisp.org>
26994
26995         * modules/dup2 (License): Change to LGPLv2+.
26996         * modules/sleep (License): Likewise.
26997         * modules/perror (License): Likewise.
26998         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
26999         Blake.
27000         * modules/signal (License): Likewise.
27001         * modules/sigprocmask (License): Likewise.
27002         * modules/raise (License): Change to LGPLv2+, with approval by Jim
27003         Meyering.
27004
27005 2008-10-04  Bruno Haible  <bruno@clisp.org>
27006
27007         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
27008         Reported by Rainer Tammer <tammer@tammer.net>.
27009
27010 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
27011             Bruno Haible  <bruno@clisp.org>
27012
27013         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
27014         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
27015         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
27016
27017 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
27018
27019         filevercmp: new module
27020         * lib/filevercmp.h: New function filevercmp comparing version strings.
27021         * lib/filevercmp.c: Implementation of filevercmp function.
27022         * modules/filevercmp: Module metadata.
27023         * tests/test-filevercmp.c: Unit test for new module.
27024         * modules/filevercmp-tests: Unit test metadata.
27025         * MODULES.html.sh: Add filevercmp module.
27026
27027 2008-10-03  Bruno Haible  <bruno@clisp.org>
27028
27029         * lib/c-ctype.h: Add comment.
27030         Reported by Jim Meyering.
27031
27032 2008-10-02  Bruno Haible  <bruno@clisp.org>
27033
27034         * modules/posix_spawn-internal (Depends-on): Add 'open'.
27035
27036 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
27037
27038         * build-aux/bootstrap: Allow renaming bootstrap, and change the
27039         name of bootstrap.conf accordingly.
27040
27041 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
27042
27043         * build-aux/bootstrap: Install git-merge-changelog configuration
27044         items into .gitconfig if needed.
27045
27046 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
27047
27048         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
27049         git repository, and initialize/update it accordingly.
27050
27051 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
27052
27053         * modules/fsync-tests: New file.
27054         * tests/test-fsync.c: New file.
27055
27056         New module 'fsync'.
27057         * lib/fsync.c: New file.
27058         * m4/fsync.m4: New file.
27059         * modules/fsync: New file.
27060         * lib/unistd.in.h (fsync): New declaration.
27061         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
27062         GNULIB_FSYNC and HAVE_FSYNC.
27063         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
27064         * MODULES.html.sh (posix_functions): Add fsync.
27065         * doc/posix-functions/fsync.texi: Mention the new module.
27066
27067 2008-10-02  Jim Meyering  <meyering@redhat.com>
27068
27069         fts.c: sync with similar code from coreutils' remove.c
27070         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
27071         Guard also with "#if defined __linux__", since for now at least,
27072         this code is Linux-kernel-specific.
27073
27074 2008-10-02  Jim Meyering  <meyering@redhat.com>
27075
27076         fts: bug fixes
27077         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
27078         Include <sys/vfs.h>, not <sys/statfs.h>.
27079
27080         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
27081         Include <sys/vfs.h>, not <sys/statfs.h>.
27082
27083 2008-10-01  Bruno Haible  <bruno@clisp.org>
27084
27085         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
27086         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
27087         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
27088         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
27089         * doc/posix-functions/posix_spawnp.texi: Likewise.
27090         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
27091         whether posix_spawn actually works.
27092         * m4/pipe.m4 (gl_PIPE): Likewise.
27093         * modules/execute (Files): Add m4/posix_spawn.m4.
27094         * modules/pipe (Files): Add m4/posix_spawn.m4.
27095         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
27096
27097 2008-10-01  Jim Meyering  <meyering@redhat.com>
27098
27099         remove trailing spaces
27100         * NEWS: Likewise.
27101         * lib/poll.c (poll): Likewise.
27102         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
27103         * lib/winsock.c (rpl_close): Likewise.
27104         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
27105         * modules/yield: Likewise.
27106         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
27107         * tests/test-sys_select.c (connect_to_socket): Likewise.
27108
27109         fts.c: adjust a new interface to be more generally useful
27110         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
27111         (fts_build): Adjust caller.
27112
27113 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27114
27115         * modules/cond-tests: New file.
27116         * tests/test-cond.c: New file.
27117
27118 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27119             Bruno Haible  <bruno@clisp.org>
27120
27121         * modules/cond (Dependencies): Add errno, time.
27122         * lib/glthread/cond.h: Include <time.h>.
27123         (gl_cond_define, gl_cond_define_initialized): Use the same definition
27124         across platforms.
27125
27126 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27127             Bruno Haible  <bruno@clisp.org>
27128
27129         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
27130
27131 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27132             Bruno Haible  <bruno@clisp.org>
27133
27134         * modules/tls-tests (Depends-on): Add thread, yield.
27135         (configure.ac): Remove all checks.
27136         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
27137         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
27138         gl_thread_self): Remove definitions. Include glthread/thread.h and
27139         glthread/yield.h instead.
27140         (test_tls): Pass an additional NULL argument to gl_thread_join.
27141
27142 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27143             Bruno Haible  <bruno@clisp.org>
27144
27145         * modules/lock-tests (Depends-on): Add thread, yield.
27146         (configure.ac): Remove all checks.
27147         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
27148         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
27149         gl_thread_self): Remove definitions. Include glthread/thread.h and
27150         glthread/yield.h instead.
27151         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
27152         additional NULL argument to gl_thread_join.
27153
27154 2008-09-30  Bruno Haible  <bruno@clisp.org>
27155
27156         Fix the Win32 implementation of the 'thread' module.
27157         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
27158         pointer type.
27159         (gl_thread_self): Invoke gl_thread_self_func.
27160         (gl_thread_self_func): New declaration.
27161         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
27162         (do_init_self_key, init_self_key): New functions.
27163         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
27164         Remove some fields.
27165         (running_threads, running_lock): Remove variables.
27166         (get_current_thread_handle): New function.
27167         (gl_thread_self_func, wrapper_func, glthread_create_func,
27168         glthread_join_func, gl_thread_exit_func): Largely rewritten and
27169         simplified.
27170
27171 2008-09-30  Bruno Haible  <bruno@clisp.org>
27172
27173         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
27174         files.
27175
27176 2008-09-30  Jim Meyering  <meyering@redhat.com>
27177
27178         fts.m4: correct the test for statfs.f_type
27179         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
27180         when checking for statfs.f_type.
27181
27182 2008-09-15  Simon Josefsson  <simon@josefsson.org>
27183
27184         tests: avoid some compiler warnings
27185         * tests/test-memchr.c (main): Pass NULL indirectly.
27186         * tests/test-getdate.c (main): Remove unused variable 'ret'.
27187
27188 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
27189
27190         getdate.y: disallow countable dayshifts like "4 yesterday ago"
27191         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
27192         exactly specified dayshifts.
27193         (dayshift): New rule.
27194         (rel): Add dayshift.
27195         (relative_time_table) [tomorrow, yesterday, today, now]:
27196         Use tDAY_SHIFT in place of tDAY_UNIT.
27197         * tests/test-getdate.c: Add tests for now-disallowed countable
27198         dayshifts, e.g., "4 yesterday ago".
27199
27200 2008-09-29  Bruno Haible  <bruno@clisp.org>
27201
27202         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
27203         * tests/test-posix_spawn1.in.sh: Renamed from
27204         tests/test-posix_spawn.in.sh.
27205         * tests/test-posix_spawn2.c: New file.
27206         * tests/test-posix_spawn2.in.sh: New file.
27207         * modules/posix_spawnp-tests (Files): Update.
27208         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
27209
27210 2008-09-29  Bruno Haible  <bruno@clisp.org>
27211
27212         Propagate effects of putenv/setenv/unsetenv to child processes.
27213         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
27214         * lib/pipe.c (create_pipe): Likewise.
27215
27216 2008-09-29  Bruno Haible  <bruno@clisp.org>
27217
27218         Enable use of shell scripts as executables in mingw.
27219         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
27220         run the program as a shell script.
27221         * lib/pipe.c (create_pipe): Likewise.
27222         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
27223         resulting array.
27224
27225 2008-09-29  Eric Blake  <ebb9@byu.net>
27226
27227         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
27228
27229 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
27230
27231         * doc/posix-functions/accept.texi: Update mingw problems.
27232         * doc/posix-functions/bind.texi: Update mingw problems.
27233         * doc/posix-functions/close.texi: Update mingw problems.
27234         * doc/posix-functions/connect.texi: Update mingw problems.
27235         * doc/posix-functions/getpeername.texi: Update mingw problems.
27236         * doc/posix-functions/getsockname.texi: Update mingw problems.
27237         * doc/posix-functions/getsockopt.texi: Update mingw problems.
27238         * doc/posix-functions/ioctl.texi: Update mingw problems.
27239         * doc/posix-functions/listen.texi: Update mingw problems.
27240         * doc/posix-functions/recv.texi: Update mingw problems.
27241         * doc/posix-functions/recvfrom.texi: Update mingw problems.
27242         * doc/posix-functions/select.texi: Update mingw problems.
27243         * doc/posix-functions/send.texi: Update mingw problems.
27244         * doc/posix-functions/sendto.texi: Update mingw problems.
27245         * doc/posix-functions/setsockopt.texi: Update mingw problems.
27246         * doc/posix-functions/socket.texi: Update mingw problems.
27247
27248 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
27249             Bruno Haible  <bruno@clisp.org>
27250
27251         * lib/sys_select.in.h: Include sys/time.h.
27252         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
27253         * modules/sys_select: Depend on sys_time.
27254         * tests/test-sys_select.c: Test that sys/select.h defines struct
27255         timeval fully.
27256
27257 2008-09-29  Bruno Haible  <bruno@clisp.org>
27258
27259         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
27260         * lib/sys_select.in.h: Likewise.
27261
27262 2008-09-29  Bruno Haible  <bruno@clisp.org>
27263
27264         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
27265
27266 2008-09-29  Bruno Haible  <bruno@clisp.org>
27267
27268         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
27269         Set LIBSOCKET instead of augmenting LIBS.
27270         * modules/sockets (Link): New section.
27271         * modules/sockets-tests (test_sockets_LDADD): New variable.
27272         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
27273         * modules/poll-tests (test_poll_LDADD): New variable.
27274         * NEWS: Document the change.
27275
27276 2008-09-29  Bruno Haible  <bruno@clisp.org>
27277
27278         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
27279         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
27280         ARPA_INET_H directly.
27281         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
27282
27283 2008-09-28  Bruno Haible  <bruno@clisp.org>
27284
27285         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
27286         from gl_HEADER_SYS_SOCKET.
27287         (gl_HEADER_SYS_SOCKET): Invoke it.
27288         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
27289
27290 2008-09-28  Bruno Haible  <bruno@clisp.org>
27291
27292         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
27293         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
27294         Needed on OSF/1 4.0.
27295
27296 2008-09-28  Bruno Haible  <bruno@clisp.org>
27297
27298         Override open more carefully.
27299         * lib/open.c (orig_open): New function.
27300         (rpl_open): Use orig_open instead of open.
27301         * lib/fcntl.in.h: Add special invocation convention.
27302         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
27303         (gl_FUNC_OPEN): Invoke it.
27304
27305         Override freopen more carefully.
27306         * lib/freopen.c (orig_freopen): New function.
27307         (rpl_freopen): Use orig_freopen instead of freopen.
27308         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
27309         (gl_FUNC_FREOPEN): Invoke it.
27310
27311         Override fopen more carefully.
27312         * lib/fopen.c (orig_fopen): New function.
27313         (rpl_fopen): Use orig_fopen instead of fopen.
27314         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
27315         (gl_FUNC_FOPEN): Invoke it.
27316         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
27317
27318 2008-09-28  Bruno Haible  <bruno@clisp.org>
27319
27320         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
27321         SIGPIPE.
27322
27323 2008-09-28  Bruno Haible  <bruno@clisp.org>
27324
27325         * tests/test-sigaction.c (handler, main): Disable the check whether
27326         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
27327         glibc systems with LinuxThreads.
27328
27329 2008-09-28  Bruno Haible  <bruno@clisp.org>
27330
27331         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
27332
27333         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
27334         with AIX xlc.
27335         * lib/fcntl.in.h (open): Likewise.
27336         Reported by Rainer Tammer <tammer@tammer.net>.
27337
27338 2008-09-28  Bruno Haible  <bruno@clisp.org>
27339
27340         * modules/posix_spawnp-tests: New file.
27341         * tests/test-posix_spawn.c: New file.
27342         * tests/test-posix_spawn.in.sh: New file.
27343
27344         New module 'posix_spawnp'.
27345         * modules/posix_spawnp: New file.
27346         * lib/spawnp.c: New file, from GNU libc with modifications.
27347         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
27348
27349         New module 'posix_spawn'.
27350         * modules/posix_spawn: New file.
27351         * lib/spawn.c: New file, from GNU libc with modifications.
27352         * doc/posix-functions/posix_spawn.texi: Mention the new module.
27353
27354         New module 'posix_spawnattr_destroy'.
27355         * modules/posix_spawnattr_destroy: New file.
27356         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
27357         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
27358         module.
27359
27360         New module 'posix_spawnattr_setsigmask'.
27361         * modules/posix_spawnattr_setsigmask: New file.
27362         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
27363         modifications.
27364         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
27365         new module.
27366
27367         New module 'posix_spawnattr_getsigmask'.
27368         * modules/posix_spawnattr_getsigmask: New file.
27369         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
27370         modifications.
27371         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
27372         new module.
27373
27374         New module 'posix_spawnattr_setsigdefault'.
27375         * modules/posix_spawnattr_setsigdefault: New file.
27376         * lib/spawnattr_setdefault.c: New file, from GNU libc with
27377         modifications.
27378         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
27379         new module.
27380
27381         New module 'posix_spawnattr_getsigdefault'.
27382         * modules/posix_spawnattr_getsigdefault: New file.
27383         * lib/spawnattr_getdefault.c: New file, from GNU libc with
27384         modifications.
27385         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
27386         new module.
27387
27388         New module 'posix_spawnattr_setschedpolicy'.
27389         * modules/posix_spawnattr_setschedpolicy: New file.
27390         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
27391         modifications.
27392         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
27393         new module.
27394
27395         New module 'posix_spawnattr_getschedpolicy'.
27396         * modules/posix_spawnattr_getschedpolicy: New file.
27397         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
27398         modifications.
27399         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
27400         new module.
27401
27402         New module 'posix_spawnattr_setschedparam'.
27403         * modules/posix_spawnattr_setschedparam: New file.
27404         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
27405         modifications.
27406         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
27407         new module.
27408
27409         New module 'posix_spawnattr_getschedparam'.
27410         * modules/posix_spawnattr_getschedparam: New file.
27411         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
27412         modifications.
27413         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
27414         new module.
27415
27416         New module 'posix_spawnattr_setpgroup'.
27417         * modules/posix_spawnattr_setpgroup: New file.
27418         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
27419         modifications.
27420         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
27421         module.
27422
27423         New module 'posix_spawnattr_getpgroup'.
27424         * modules/posix_spawnattr_getpgroup: New file.
27425         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
27426         modifications.
27427         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
27428         module.
27429
27430         New module 'posix_spawnattr_setflags'.
27431         * modules/posix_spawnattr_setflags: New file.
27432         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
27433         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
27434         module.
27435
27436         New module 'posix_spawnattr_getflags'.
27437         * modules/posix_spawnattr_getflags: New file.
27438         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
27439         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
27440         module.
27441
27442         New module 'posix_spawnattr_init'.
27443         * modules/posix_spawnattr_init: New file.
27444         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
27445         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
27446         module.
27447
27448         New module 'posix_spawn_file_actions_destroy'.
27449         * modules/posix_spawn_file_actions_destroy: New file.
27450         * lib/spawn_faction_destroy.c: New file, from GNU libc with
27451         modifications.
27452         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
27453         the new module.
27454
27455         New module 'posix_spawn_file_actions_addopen'.
27456         * modules/posix_spawn_file_actions_addopen: New file.
27457         * lib/spawn_faction_addopen.c: New file, from GNU libc with
27458         modifications.
27459         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
27460         the new module.
27461
27462         New module 'posix_spawn_file_actions_adddup2'.
27463         * modules/posix_spawn_file_actions_adddup2: New file.
27464         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
27465         modifications.
27466         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
27467         the new module.
27468
27469         New module 'posix_spawn_file_actions_addclose'.
27470         * modules/posix_spawn_file_actions_addclose: New file.
27471         * lib/spawn_faction_addclose.c: New file, from GNU libc with
27472         modifications.
27473         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
27474         the new module.
27475
27476         New module 'posix_spawn_file_actions_init'.
27477         * modules/posix_spawn_file_actions_init: New file.
27478         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
27479         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
27480         new module.
27481
27482         New module 'posix_spawn-internal'.
27483         * modules/posix_spawn-internal: New file.
27484         * lib/spawn_int.h: New file, from GNU libc with modifications.
27485         * lib/spawni.c: New file, from GNU libc with modifications.
27486         * m4/posix_spawn.m4: New file.
27487
27488         New module 'spawn'.
27489         * modules/spawn: New file.
27490         * lib/spawn.in.h: New file, from GNU libc with modifications.
27491         * m4/spawn_h.m4: New file.
27492         * doc/posix-headers/spawn.texi: Mention the new module.
27493
27494 2008-09-28  Bruno Haible  <bruno@clisp.org>
27495
27496         * modules/sched-tests: New file.
27497         * tests/test-sched.c: New file.
27498
27499         New module 'sched'.
27500         * modules/sched: New file.
27501         * lib/sched.in.h: New file.
27502         * m4/sched_h.m4: New file.
27503         * doc/posix-headers/sched.texi: Mention the new module.
27504
27505 2008-09-27  Eric Blake  <ebb9@byu.net>
27506
27507         Fix previous patch, and tweak references to $0.
27508         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
27509         (func_version, func_gnulib_dir): Don't call this program
27510         gnulib-tool.
27511         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
27512         with using $0 in function.
27513         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
27514         (func_fatal_error): Reuse the name the user invoked us with.
27515
27516 2008-09-27  Bruno Haible  <bruno@clisp.org>
27517
27518         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
27519         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
27520         (gl_ICONV_H): Not here.
27521         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
27522         instead of assigning ICONV_H directly.
27523
27524         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
27525         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
27526         WCHAR_H directly.
27527
27528 2008-09-27  Bruno Haible  <bruno@clisp.org>
27529
27530         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
27531         * modules/arpa_inet (Depends-on): Add link-warning.
27532         (Makefile.am): Insert the definition of GL_LINK-WARNING.
27533         * modules/unistd (Makefile.am): Likewise.
27534
27535 2008-09-26  Bruno Haible  <bruno@clisp.org>
27536
27537         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
27538         variables.
27539         (func_version): Essentially copied from gnulib-tool.
27540         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
27541         func_readlink): Copied from gnulib-tool.
27542
27543 2008-09-26  Bruno Haible  <bruno@clisp.org>
27544
27545         * gnulib-tool (func_version): Change directory to $gnulib_dir before
27546         invoking git-version-gen.
27547
27548 2008-09-26  Bruno Haible  <bruno@clisp.org>
27549
27550         * posix-modules: Update to directory names changed on 2008-01-19.
27551         Remove commas in output before splitting into words. No more need to
27552         avoid 'ftruncate' since 2007-02-19.
27553
27554 2008-09-26  Bruno Haible  <bruno@clisp.org>
27555
27556         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
27557
27558 2008-09-26  Bruno Haible  <bruno@clisp.org>
27559
27560         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
27561         * modules/fwriteerror (Depends-on): Add errno.
27562
27563 2008-09-26  Bruno Haible  <bruno@clisp.org>
27564
27565         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
27566         * tests/test-vc-list-files-cvs.sh: Likewise.
27567
27568 2008-09-26  Bruno Haible  <bruno@clisp.org>
27569
27570         * doc/posix-headers/sys_resource.texi: Reorder items.
27571
27572 2008-09-26  Jim Meyering  <meyering@redhat.com>
27573
27574         fts: tweak inode comparison function
27575         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
27576         inode numbers, as documented.
27577
27578         fts: sort dirent entries on inode number before traversing
27579         This avoids a quadratic, seek-related performance penalty when
27580         operating on a directory containing many entries (measurable at 10k;
27581         3.5 hours at 2 million entries with a cold cache) on certain types
27582         of file systems, including ext3 and ext4, but not tmpfs.
27583         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
27584         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
27585         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
27586         (fs_handles_readdir_ordered_dirents_efficiently): New function.
27587         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
27588         (fts_build): Set the stat.st_ino member from D_INO.
27589         If it is likely to be useful, sort dirent entries on inode number.
27590
27591         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
27592         and the struct statfs.f_type member.
27593         * modules/fts (Depends-on): Add d-ino.
27594
27595 2008-09-26  Bruno Haible  <bruno@clisp.org>
27596
27597         * modules/sigpipe-die (Depends-on): Add sigpipe.
27598
27599         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
27600         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
27601         and GNULIB_STDIO_H_SIGPIPE are set.
27602         * lib/stdio-write.c: New file.
27603         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
27604         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
27605         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
27606         REPLACE_STDIO_WRITE_FUNCS.
27607         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
27608         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
27609         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
27610         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
27611         * modules/stdio (Files): Add lib/stdio-write.c.
27612         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
27613         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
27614         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
27615         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
27616         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
27617         REPLACE_FPRINTF_POSIX.
27618         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
27619         REPLACE_PRINTF_POSIX.
27620         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
27621         REPLACE_VFPRINTF_POSIX.
27622         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
27623         REPLACE_VPRINTF_POSIX.
27624         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
27625         SIGPIPE issue.
27626         * doc/posix-functions/fputc.texi: Likewise.
27627         * doc/posix-functions/fputs.texi: Likewise.
27628         * doc/posix-functions/fwrite.texi: Likewise.
27629         * doc/posix-functions/printf.texi: Likewise.
27630         * doc/posix-functions/putc.texi: Likewise.
27631         * doc/posix-functions/putchar.texi: Likewise.
27632         * doc/posix-functions/puts.texi: Likewise.
27633         * doc/posix-functions/vfprintf.texi: Likewise.
27634         * doc/posix-functions/vprintf.texi: Likewise.
27635
27636         * modules/safe-write (Depends-on): Add write.
27637
27638         * modules/sigpipe-tests: New file.
27639         * tests/test-sigpipe.c: New file.
27640         * tests/test-sigpipe.sh: New file.
27641
27642         * modules/write: New file.
27643         * lib/unistd.in.h: Include <sys/types.h>.
27644         (write): New declaration.
27645         * lib/write.c: New file.
27646         * m4/write.m4: New file.
27647         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
27648         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
27649         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
27650         GNULIB_WRITE, REPLACE_WRITE.
27651         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
27652         and the SIGPIPE issue.
27653
27654         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
27655         (raise): New declaration.
27656         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
27657         (ext_signal): New function.
27658         (rpl_raise): New function.
27659         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
27660         GNULIB_SIGNAL_H_SIGPIPE.
27661         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
27662         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
27663
27664         * modules/sigpipe: New file.
27665         * m4/sigpipe.m4: New file.
27666
27667 2008-09-25  Derek Price  <derek@ximbiot.com>
27668             Bruno Haible  <bruno@clisp.org>
27669
27670         * gnulib-tool (func_import): Report all license incompatibilities, not
27671         just the first one.
27672
27673 2008-09-25  Bruno Haible  <bruno@clisp.org>
27674
27675         * gnulib-tool (func_import): When computing the edits, consider not
27676         only the Makefile.ams that exist but also those that will be generated.
27677
27678 2008-09-25  Simon Josefsson  <simon@josefsson.org>
27679
27680         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
27681         fixes gnulib-tool --test warning about duplicate dependency.
27682
27683 2008-09-25  Bruno Haible  <bruno@clisp.org>
27684
27685         * gnulib-tool: Don't ask the user to perform edits in the generated
27686         Makefile.ams.
27687         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
27688         apply to the Makefile.am being generated.
27689         (func_emit_tests_Makefile_am): Execute edits that apply to the
27690         Makefile.am being generated.
27691         (func_import): Setup list of Makefile.am edits before emitting the
27692         Makefile.ams, not at the end.
27693         (func_create_testdir): Update.
27694         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
27695
27696 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27697
27698         * gnulib-tool (func_import): Store the --tests-base option in the
27699         comment in gnulib-cache.m4.
27700
27701 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
27702
27703         * NEWS: Document increased portability that sys_select now provides.
27704
27705         * lib/sys_select.in.h: Install select wrapper.
27706         * lib/sys_socket.in.h: Use more descriptive name when there is no
27707         select wrapper.
27708         * lib/winsock-select.c: New.
27709         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
27710         Require gl_HEADER_SYS_SOCKET.
27711         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
27712         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
27713         * tests/test-sys_select.c: Add functional tests.
27714
27715 2008-09-24  Eric Blake  <ebb9@byu.net>
27716
27717         open, fopen: close fd leak in last patch
27718         * lib/open.c (rpl_open): Close fd before returning error.
27719         * lib/fopen.c (rpl_fopen): Close fd before returning error.
27720         * doc/posix-functions/open.texi (open): Document that Irix also
27721         has the bug.
27722         * doc/posix-functions/fopen.texi (fopen): Likewise.
27723         Reported by Paolo Bonzini.
27724
27725 2008-09-24  Bruno Haible  <bruno@clisp.org>
27726
27727         Ensure that a filename ending in a slash cannot be used to access a
27728         non-directory.
27729         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
27730         to check whether it's really a directory.
27731         * lib/fopen.c: Include fcntl.h, unistd.h.
27732         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
27733         and fdopen().
27734         * modules/fopen (Depends-on): Add unistd.
27735         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
27736         * tests/test-fopen.c (main): Likewise.
27737         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
27738         * doc/posix-functions/fopen.texi: Likewise.
27739         Reported by Eric Blake.
27740
27741 2008-09-23  Eric Blake  <ebb9@byu.net>
27742
27743         c-stack: avoid compiler optimizations when provoking overflow
27744         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
27745         recursion harder to optimize, to ensure a stack overflow occurs.
27746         * tests/test-c-stack.c (recurse): Likewise.
27747         Borrowed from libsigsegv.
27748
27749         c-stack: work around Irix sigaltstack bug
27750         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
27751         whether sigaltstack uses wrong end of stack_t (copied in part from
27752         libsigsegv).
27753         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
27754         Irix bug, without requiring an over-allocation.
27755         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
27756         bug.
27757
27758         fopen: document mingw bug on directories
27759         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
27760         not allowing a stream visiting a directory, even though reading
27761         from such a stream is not portable.
27762
27763 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
27764
27765         * lib/poll.c: Rewrite.
27766         * modules/poll: Depend on alloca.
27767
27768 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
27769
27770         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
27771         instead define prototypes for a full set of wrappers.  Ensure
27772         that Cygwin does not use the compatibility code, which is only
27773         for MinGW.
27774         * lib/winsock.c: New.
27775         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
27776         * modules/sys_socket: Add lib/winsock.c.
27777
27778         * modules/poll-tests: Add errno and perror.
27779         * tests/test-poll.c: Use ioctl, not ioctlsocket.
27780
27781 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
27782
27783         * tests/test-poll.c: Downgrade minimum needed Winsock version.
27784
27785 2008-09-23  Bruno Haible  <bruno@clisp.org>
27786
27787         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
27788         * doc/glibc-functions/*: Likewise.
27789
27790 2008-09-23  Simon Josefsson  <simon@josefsson.org>
27791
27792         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
27793         success.
27794
27795 2008-09-22  Eric Blake  <ebb9@byu.net>
27796             Bruno Haible  <bruno@clisp.org>
27797
27798         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
27799         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
27800         supply %A but mishandle pseudo-NaN.
27801         Reported by Simon Josefsson.
27802
27803 2008-09-21  Bruno Haible  <bruno@clisp.org>
27804
27805         * tests/test-lock.c (main): Tweak skip message.
27806         * tests/test-tls.c (main): Likewise.
27807
27808 2008-09-21  Bruno Haible  <bruno@clisp.org>
27809
27810         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
27811         whether 'struct sigaction' has sa_sigaction here...
27812         (gl_PREREQ_SIG_HANDLER_H): ... not here.
27813         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
27814
27815 2008-09-21  Bruno Haible  <bruno@clisp.org>
27816
27817         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
27818         section.
27819         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
27820         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
27821         the new section.
27822         (Support for obsolete systems lacking POSIX:2001): New section.
27823         (String handling <string.h>): Move strdup to the new section.
27824         Suggested by Simon Josefsson and Paolo Bonzini.
27825
27826 2008-09-21  Bruno Haible  <bruno@clisp.org>
27827
27828         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
27829         exponents in %e and %g results on 'long double'. Needed for mingw's
27830         improved *printf functions.
27831         * tests/test-vasprintf-posix.c (test_function): Likewise.
27832         * tests/test-snprintf-posix.h (test_function): Likewise.
27833         * tests/test-sprintf-posix.h (test_function): Likewise.
27834         Reported by Eric Blake.
27835
27836 2008-09-21  Bruno Haible  <bruno@clisp.org>
27837
27838         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
27839         * tests/test-sprintf-posix.h (test_function): Likewise.
27840
27841 2008-09-21  Bruno Haible  <bruno@clisp.org>
27842
27843         * modules/getpass (Depends-on): Add strdup-posix.
27844
27845         New module 'strdup-posix'.
27846         * modules/strdup-posix: New file.
27847         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
27848         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
27849         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
27850         REPLACE_STRDUP.
27851         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
27852         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
27853         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
27854         strdup-posix.
27855
27856         * modules/strdup (Depends-on): Remove malloc-posix.
27857
27858 2008-09-20  Bruno Haible  <bruno@clisp.org>
27859
27860         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
27861         Wildenhues.
27862
27863 2008-09-20  Bruno Haible  <bruno@clisp.org>
27864
27865         Ensure that wint_t gets defined on IRIX 5.3.
27866         * lib/wchar.in.h (wint_t): Define if not defined by the system.
27867         * lib/wctype.in.h (wint_t): Likewise.
27868         (__wctype_wint_t): Remove type.
27869         (isw*): Use wint_t instead of __wctype_wint_t.
27870         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
27871         * modules/wchar (Files): Add m4/wint_t.m4.
27872         (Makefile.am): Substitute HAVE_WINT_T.
27873         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
27874         * tests/test-wctype.c: Check that wint_t is defined.
27875         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
27876         * doc/posix-headers/wctype.texi: Likewise.
27877         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
27878
27879 2008-09-18  Bruno Haible  <bruno@clisp.org>
27880
27881         * gnulib-tool (func_exit): Update comment.
27882
27883 2008-09-18  Simon Josefsson  <simon@josefsson.org>
27884
27885         * modules/getaddrinfo (Depends-on): Remove strdup, this module
27886         assumes strdup exists and does not depend on strdup to return
27887         ENOMEM on out of memory conditions.
27888
27889 2008-09-18  Bruno Haible  <bruno@clisp.org>
27890
27891         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
27892         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
27893         digits for the exponent.
27894
27895 2008-09-18  Jim Meyering  <meyering@redhat.com>
27896             Bruno Haible  <bruno@clisp.org>
27897
27898         * lib/vasnprintf.c (decimal_point_char): Define also if
27899         NEED_PRINTF_INFINITE_LONG_DOUBLE.
27900
27901 2008-09-16  Bruno Haible  <bruno@clisp.org>
27902         and Eric Blake  <ebb9@byu.net>
27903
27904         vasnprintf: support Irix 5.3
27905         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
27906         that mishandle long double infinity.
27907         Reported by Tom G. Christensen.
27908
27909 2008-09-16  Bruno Haible  <bruno@clisp.org>
27910
27911         * doc/glibc-functions/scandir.texi: Mention the function is missing on
27912         Solaris 9.
27913         * doc/glibc-functions/alphasort.texi: Likewise.
27914         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
27915
27916 2008-09-16  Jim Meyering  <meyering@redhat.com>
27917
27918         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
27919         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
27920         a umask modification leak out of a subshell.  Otherwise, the
27921         opensolaris /bin/sh would be accepted and thus cause unwarranted
27922         failures in the coreutils test suite.
27923
27924 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
27925
27926         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
27927         to succeed.
27928
27929 2008-09-16  Jim Meyering  <meyering@redhat.com>
27930
27931         avoid spurious test failure when library is built without ACL support
27932         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
27933         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
27934         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
27935         * tests/test-copy-acl.sh: Likewise.
27936
27937 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27938
27939         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
27940         based on character occurrence counts.
27941
27942 2008-09-15  Eric Blake  <ebb9@byu.net>
27943
27944         tests: avoid some compiler warnings
27945         * tests/test-memchr.c (main): Pass NULL indirectly.
27946         * tests/test-closein.c (main): Avoid unused variable.
27947
27948 2008-09-15  Bruno Haible  <bruno@clisp.org>
27949
27950         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
27951         are missing on OpenBSD 4.0 individually.
27952         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
27953
27954 2008-09-15  Bruno Haible  <bruno@clisp.org>
27955
27956         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
27957         * doc/posix-functions/strerror.texi: Mention also Cygwin.
27958         * doc/posix-functions/perror.texi: Likewise.
27959         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
27960         is missing.
27961         Reported by Eric Blake.
27962
27963         * lib/errno.in.h: Use replacement values >= 2000.
27964         Reported by Eric Blake.
27965
27966 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27967
27968         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
27969         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
27970         limit.
27971         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
27972         compareseq was aborted.
27973
27974 2008-09-14  Bruno Haible  <bruno@clisp.org>
27975
27976         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
27977         yvec_edit_count.
27978         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
27979         (fstrcmp_bounded): Simplify result computation accordingly.
27980
27981 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27982
27983         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
27984         (fstrcmp): Define in terms of fstrcmp_bounded.
27985         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
27986         lower_bound argument.
27987         Return quickly if the result is certainly < lower_bound.
27988         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
27989
27990 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27991
27992         * lib/diffseq.h (EARLY_ABORT): New macro.
27993         (compareseq): Change return type to bool. Return true when EARLY_ABORT
27994         evaluates to true.
27995
27996 2008-09-14  Bruno Haible  <bruno@clisp.org>
27997
27998         * modules/perror-tests: New file.
27999         * tests/test-perror.sh: New file.
28000         * tests/test-perror.c: New file.
28001
28002         New module 'perror'.
28003         * lib/stdio.in.h (perror): New declaration.
28004         * lib/perror.c: New file.
28005         * m4/perror.m4: New file.
28006         * modules/perror: New file.
28007         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
28008         * doc/posix-functions/perror.texi: Mention the perror module.
28009         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
28010         REPLACE_PERROR.
28011         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
28012         REPLACE_PERROR.
28013
28014 2008-09-14  Bruno Haible  <bruno@clisp.org>
28015
28016         * modules/stdio (Makefile.am): Reorder to match the order in
28017         lib/stdio.in.h.
28018         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
28019
28020 2008-09-13  Bruno Haible  <bruno@clisp.org>
28021
28022         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
28023
28024 2008-09-13  Bruno Haible  <bruno@clisp.org>
28025
28026         Extend strerror to cover the added errno values.
28027         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
28028         (rpl_strerror): Provide error messages for the added errno values and
28029         for the WSA* values.
28030         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
28031         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
28032         strerror.
28033         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
28034         * modules/strerror (Depends-on): Add errno.
28035         * doc/posix-functions/strerror.texi: Document the change.
28036         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
28037         and EOVERFLOW.
28038
28039 2008-09-13  Bruno Haible  <bruno@clisp.org>
28040
28041         * modules/EOVERFLOW: Remove file.
28042         * m4/eoverflow.m4: Remove file.
28043         * modules/EOVERFLOW-tests: Remove file.
28044         * tests/test-EOVERFLOW.c: Remove file.
28045         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
28046         * modules/ftell (Depends-on): Likewise.
28047         * modules/getdelim (Depends-on): Likewise.
28048         * modules/getugroups (Depends-on): Likewise.
28049         * modules/poll (Depends-on): Likewise.
28050         * modules/snprintf (Depends-on): Likewise.
28051         * modules/sprintf-posix (Depends-on): Likewise.
28052         * modules/vasnprintf (Depends-on): Likewise.
28053         * modules/vasprintf (Depends-on): Likewise.
28054         * modules/vfprintf-posix (Depends-on): Likewise.
28055         * modules/vsnprintf (Depends-on): Likewise.
28056         * modules/vsprintf-posix (Depends-on): Likewise.
28057         * modules/xvasprintf (Depends-on): Likewise.
28058         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
28059         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
28060         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
28061         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
28062         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
28063         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
28064         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
28065         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
28066         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
28067         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
28068         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
28069         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
28070         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
28071         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
28072         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
28073         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
28074         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
28075         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
28076         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
28077         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
28078         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
28079         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
28080         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
28081         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
28082         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
28083         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
28084         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
28085         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
28086         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
28087         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
28088         * MODULES.html.sh: Remove EOVERFLOW.
28089         * NEWS: Mention the change.
28090
28091 2008-09-13  Bruno Haible  <bruno@clisp.org>
28092
28093         * modules/errno-tests: New file.
28094         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
28095
28096         * lib/errno.in.h: New file.
28097         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
28098         * modules/errno: New file.
28099         * doc/posix-headers/errno.texi: Update documentation.
28100         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
28101
28102 2008-09-13  Bruno Haible  <bruno@clisp.org>
28103
28104         * tests/test-poll.c: Use #if for native Windows, rather than testing
28105         __MSVCRT__.
28106
28107 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28108             Bruno Haible  <bruno@clisp.org>
28109
28110         * lib/glob.c: Don't include <pwd.h> on native Windows.
28111         (WINDOWS32): New macro.
28112         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
28113
28114 2008-09-13  Bruno Haible  <bruno@clisp.org>
28115
28116         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
28117         (ETIMEDOUT): Remove macro.
28118         (glthread_cond_timedwait_multithreaded): New declaration.
28119         (glthread_cond_timedwait): Use it.
28120         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
28121         (glthread_cond_timedwait_multithreaded): New function.
28122
28123 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
28124
28125         * modules/poll-tests: Do not check for io.h.
28126         * tests/test-poll.c: Check for __MSVCRT__ instead.
28127
28128 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
28129
28130         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
28131         * modules/poll-tests: Add inet_pton, stdbool, sockets.
28132         * tests/test-poll.c: Use them.  Use _pipe on Windows.
28133
28134 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
28135
28136         * modules/poll-tests: New.
28137         * tests/test-poll.c: New.
28138
28139 2008-09-12  Eric Blake  <ebb9@byu.net>
28140
28141         frexp: test for NetBSD failure on -0.0
28142         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
28143         not all, bugs from NetBSD 3.0 have been fixed.
28144         * doc/posix-functions/frexp.texi (frexp): Document bug.
28145         Reported by Thomas Klausner.
28146
28147         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
28148         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
28149         literal -0.0.
28150         Reported by Jonathan C. Patschke <jp@centtech.com>.
28151
28152 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28153
28154         * lib/glthread/cond.h: Use dummy implementation also if
28155         USE_WIN32_THREADS.
28156
28157 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28158
28159         * modules/fnmatch-posix (License): Change to LGPLv2+.
28160         * modules/fnmatch-gnu (License): Likewise.
28161
28162 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28163
28164         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
28165
28166 2008-09-11  Jim Meyering  <meyering@redhat.com>
28167
28168         * users.txt: Add gtk-vnc.
28169
28170 2008-09-08  Simon Josefsson  <simon@josefsson.org>
28171
28172         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
28173         rotate amounts.
28174
28175         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
28176         required for 16-bit and 8-bit rotates.
28177         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
28178         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
28179         UINT8_MAX instead of hard-coded constants.
28180         Suggested by Paul Eggert.
28181
28182 2008-09-07  Bruno Haible  <bruno@clisp.org>
28183
28184         * tests/test-striconveh.c (main): Check behaviour when converting from
28185         UTF-7.
28186
28187         Make striconveh work better with stateful encodings.
28188         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
28189         that iconv does not increment the inptr when returning -1/EINVAL.
28190
28191 2008-09-07  Bruno Haible  <bruno@clisp.org>
28192
28193         * build-aux/config.rpath: Update according to libtool-2.2.6.
28194         * build-aux/config.libpath: Likewise.
28195
28196 2008-09-06  Bruno Haible  <bruno@clisp.org>
28197
28198         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
28199         * lib/freadptr.c (freadptr): Likewise.
28200         * lib/freadseek.c (freadptrinc): Likewise.
28201         Reported by Simon Josefsson.
28202
28203 2008-09-06  Bruno Haible  <bruno@clisp.org>
28204
28205         * modules/freadptr (License): Change to LGPLv2+.
28206         * modules/freadseek (License): Likewise.
28207         Suggested by Eric Blake.
28208
28209         * modules/memchr2 (License): Change to LGPLv2+.
28210         Approved by Eric Blake.
28211
28212 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28213             Bruno Haible  <bruno@clisp.org>
28214
28215         Make gnulib-tool work with native 'sed' on AIX.
28216         * gnulib-tool (sed_noop): New variable.
28217         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
28218         func_add_or_update, func_create_testdir): Use it to initialize sed
28219         script variables.
28220         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
28221
28222 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
28223             Bruno Haible  <bruno@clisp.org>
28224
28225         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
28226         also works after #include directives.
28227
28228 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
28229
28230         getdate.y: reject an out-of-range timezone value
28231         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
28232         the range [-24...+24].  When specified with only one or two digits,
28233         * tests/test-getdate.c: Tests for the fix.
28234         * doc/getdate.texi: Document this change.
28235
28236 2008-09-03  Bruno Haible  <bruno@clisp.org>
28237
28238         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
28239
28240 2008-09-02  Simon Josefsson  <simon@josefsson.org>
28241
28242         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
28243         <bruce.korb@gmail.com> with ideas from Ben Pfaff
28244         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
28245         Blake <ebb9@byu.net>.
28246
28247         * tests/test-bitrotate.c: Add more test vectors.
28248
28249 2008-09-02  Eric Blake  <ebb9@byu.net>
28250
28251         vasnprintf-posix: handle large precision via %.*d
28252         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
28253         when handling it ourselves.
28254         * tests/test-vasnprintf-posix.c (test_function): Add test.
28255         * tests/test-snprintf-posix.h (test_function): Likewise.
28256         * tests/test-sprintf-posix.h (test_function): Likewise.
28257         * tests/test-vasprintf-posix.c (test_function): Likewise.
28258         Reported by Alain Guibert.
28259
28260 2008-09-01  Eric Blake  <ebb9@byu.net>
28261
28262         c-stack: make configure-time check more robust
28263         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
28264         successful sigaction call.
28265         Reported by Tom G. Christensen.
28266
28267 2008-09-01  Bruno Haible  <bruno@clisp.org>
28268
28269         New module 'findprog-lgpl'.
28270         * modules/findprog-lgpl: New file.
28271         * lib/findprog-lgpl.c: New file.
28272         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
28273         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
28274         to decide whether to use strdup or xstrdup, concatenated_filename or
28275         xconcatenated_filename.
28276
28277 2008-09-01  Bruno Haible  <bruno@clisp.org>
28278
28279         Split module 'concat-filename' into 'concat-filename' (LGPL) and
28280         'xconcat-filename' (GPL).
28281         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
28282         (License): Change to LGPLv2+.
28283         * modules/xconcat-filename: New file.
28284         * lib/concat-filename.h (concatenated_filename): Change specification.
28285         (xconcatenated_filename): New declaration.
28286         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
28287         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
28288         memory situations.
28289         * lib/xconcat-filename.c: New file.
28290         * NEWS: Mention the change.
28291         * lib/findprog.c: Include concat-filename.h, not filename.h.
28292         (find_in_path): Use xconcatenated_filename instead of
28293         concatenated_filename.
28294         * lib/javacomp.c: Include concat-filename.h, not filename.h.
28295         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
28296         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
28297         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
28298         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
28299         instead of concatenated_filename.
28300         * lib/javaexec.c: Include concat-filename.h, not filename.h.
28301         (execute_java_class): Use xconcatenated_filename instead of
28302         concatenated_filename.
28303         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
28304         * modules/javacomp (Depends-on): Likewise.
28305         * modules/javaexec (Depends-on): Likewise.
28306
28307 2008-09-01  Bruno Haible  <bruno@clisp.org>
28308
28309         Split module 'filename' into 'filename' and 'concat-filename'.
28310         * modules/filename: Keep only lib/filename.h.
28311         (License): Change to LGPLv2+.
28312         * modules/concat-filename: New file, extracted from modules/filename.
28313         * lib/filename.h (concatenated_filename): Remove declaration.
28314         * lib/concat-filename.h: New file, extracted from lib/filename.h.
28315         * lib/concat-filename.c: Include concat-filename.h.
28316         * NEWS: Mention the change.
28317
28318 2008-09-01  Simon Josefsson  <simon@josefsson.org>
28319
28320         * lib/bitrotate.h (rotl8, rotr8): Add.
28321
28322         * modules/bitrotate (configure.ac): Need
28323         AC_REQUIRE([AC_C_INLINE]).
28324         (Description): Mention stdint.h.  Reported by Bruno Haible
28325         <bruno@clisp.org>.
28326
28327         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
28328         Paolo Bonzini <bonzini@gnu.org>.
28329
28330 2008-08-31  Bruno Haible  <bruno@clisp.org>
28331
28332         Assume Solaris specific bi-arch conventions on Solaris systems.
28333         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
28334         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
28335         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
28336         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
28337         like acl_libdirstem.
28338         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
28339         acl_libdirstem.
28340         * NEWS: Mention the change.
28341         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
28342
28343 2008-08-31  Jim Meyering  <meyering@redhat.com>
28344
28345         * lib/strftime.h: Add comments describing the two added arguments.
28346
28347         remove duplicate #include directives
28348         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
28349         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
28350
28351 2008-08-31  Bruno Haible  <bruno@clisp.org>
28352
28353         New module 'sigpipe-die'.
28354         * modules/sigpipe-die: New file.
28355         * lib/sigpipe-die.h: New file.
28356         * lib/sigpipe-die.c: New file.
28357         * MODULES.html.sh (Signal handling): Add sigpipe-die.
28358
28359 2008-08-31  Bruno Haible  <bruno@clisp.org>
28360
28361         Don't override previously installed signal handlers.
28362         * lib/fatal-signal.c (saved_sigactions): New variable.
28363         (uninstall_handlers): Reset the signal to the saved handler, not
28364         to SIG_DFL (except when ignored).
28365         (install_handlers): Save the previous handlers.
28366
28367 2008-08-30  Bruno Haible  <bruno@clisp.org>
28368
28369         * gnulib-tool (func_reset_sigpipe): New function.
28370         (func_get_automake_snippet, func_modules_transitive_closure,
28371         func_import): Invoke it before a join command that reads from stdin,
28372         to avoid "echo: write error: Broken pipe" error messages on stderr.
28373         Reported by Sam Steingold <sds@gnu.org>.
28374
28375 2008-08-30  Bruno Haible  <bruno@clisp.org>
28376
28377         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
28378         Code copied from m4/open.m4.
28379         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
28380         access and the filename ends in a slash. Code copied from lib/open.c.
28381         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
28382         * tests/test-fopen.c (main): Check against bug with trailing slash.
28383
28384 2008-08-29  Bruno Haible  <bruno@clisp.org>
28385
28386         Avoid some "gcc -pedantic" warnings.
28387         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
28388         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
28389         * lib/dirent.in.h: Likewise.
28390         * lib/fcntl.in.h: Likewise.
28391         * lib/float.in.h: Likewise.
28392         * lib/iconv.in.h: Likewise.
28393         * lib/inttypes.in.h: Likewise.
28394         * lib/locale.in.h: Likewise.
28395         * lib/math.in.h: Likewise.
28396         * lib/netinet_in.in.h: Likewise.
28397         * lib/search.in.h: Likewise.
28398         * lib/signal.in.h: Likewise.
28399         * lib/stdarg.in.h: Likewise.
28400         * lib/stdint.in.h: Likewise.
28401         * lib/stdio.in.h: Likewise.
28402         * lib/stdlib.in.h: Likewise.
28403         * lib/string.in.h: Likewise.
28404         * lib/strings.in.h: Likewise.
28405         * lib/sys_select.in.h: Likewise.
28406         * lib/sys_socket.in.h: Likewise.
28407         * lib/sys_stat.in.h: Likewise.
28408         * lib/sys_time.in.h: Likewise.
28409         * lib/sysexits.in.h: Likewise.
28410         * lib/time.in.h: Likewise.
28411         * lib/unistd.in.h: Likewise.
28412         * lib/wchar.in.h: Likewise.
28413         * lib/wctype.in.h: Likewise.
28414         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
28415         * modules/fchdir (Makefile.am): Likewise.
28416         * modules/fcntl (Makefile.am): Likewise.
28417         * modules/float (Makefile.am): Likewise.
28418         * modules/iconv_open (Makefile.am): Likewise.
28419         * modules/inttypes (Makefile.am): Likewise.
28420         * modules/locale (Makefile.am): Likewise.
28421         * modules/math (Makefile.am): Likewise.
28422         * modules/netinet_in (Makefile.am): Likewise.
28423         * modules/search (Makefile.am): Likewise.
28424         * modules/signal (Makefile.am): Likewise.
28425         * modules/stdarg (Makefile.am): Likewise.
28426         * modules/stdint (Makefile.am): Likewise.
28427         * modules/stdio (Makefile.am): Likewise.
28428         * modules/stdlib (Makefile.am): Likewise.
28429         * modules/string (Makefile.am): Likewise.
28430         * modules/strings (Makefile.am): Likewise.
28431         * modules/sys_select (Makefile.am): Likewise.
28432         * modules/sys_socket (Makefile.am): Likewise.
28433         * modules/sys_stat (Makefile.am): Likewise.
28434         * modules/sys_time (Makefile.am): Likewise.
28435         * modules/sysexits (Makefile.am): Likewise.
28436         * modules/time (Makefile.am): Likewise.
28437         * modules/unistd (Makefile.am): Likewise.
28438         * modules/wchar (Makefile.am): Likewise.
28439         * modules/wctype (Makefile.am): Likewise.
28440         Reported by Reuben Thomas <rrt@sc3d.org>.
28441
28442 2008-08-29  Bruno Haible  <bruno@clisp.org>
28443
28444         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
28445         any more.
28446
28447 2008-08-29  Simon Josefsson  <simon@josefsson.org>
28448
28449         * MODULES.html.sh (Misc): Add bitrotate.
28450
28451         * modules/bitrotate: New file.
28452
28453         * lib/bitrotate.h: New file.
28454
28455         * modules/bitrotate-tests: New file.
28456
28457         * tests/test-bitrotate.c: New file.
28458
28459         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
28460         on the bitrotate module.
28461
28462         * lib/arctwo.c: Use new bitrotate module.
28463
28464 2008-08-29  Jim Meyering  <meyering@redhat.com>
28465
28466         bootstrap: merge changes from coreutils
28467         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
28468         of copied files.  Remove a kludge, now that this is fixed.
28469         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
28470         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
28471         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
28472
28473 2008-08-29  Bruno Haible  <bruno@clisp.org>
28474
28475         * MODULES.html.sh: Remove --cvs-urls option.
28476
28477 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
28478
28479         maint.mk: adjust to file name change
28480         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
28481
28482 2008-08-28  Jim Meyering  <meyering@redhat.com>
28483
28484         * modules/getndelim2 (License): Relicense to LGPLv2+.
28485         Approved by Richard Stallman for the version of 1995, and by
28486         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
28487
28488 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
28489
28490         * lib/getdelim.c (flockfile, funlockfile): Make all of them
28491         dummy if one is not available.  Do not touch them if
28492         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
28493         (getc_maybe_unlocked): New.
28494         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
28495
28496 2008-08-26  Eric Blake  <ebb9@byu.net>
28497
28498         doc/INSTALL: resync from autoconf
28499         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
28500         (INSTALL_PRELUDE): Delete; this is done more efficiently by
28501         moving...
28502         * install.texi [!autoconf]: ...here.  Resync from autoconf.
28503         * INSTALL: Regenerate.
28504         * INSTALL.ISO: New file.
28505         * INSTALL.UTF-8: Likewise.
28506
28507 2008-08-26  Jim Meyering  <meyering@redhat.com>
28508
28509         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
28510         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
28511         these definitions conditional, so that they may be overridden, too.
28512
28513 2008-08-26  Bruno Haible  <bruno@clisp.org>
28514
28515         Generate INSTALL file variants with prettier quotes.
28516         * doc/Makefile (INSTALL_PRELUDE): New macro.
28517         (INSTALL): Use it.
28518         (INSTALL.ISO, INSTALL.UTF-8): New rules.
28519
28520 2008-08-26  Bruno Haible  <bruno@clisp.org>
28521
28522         Run makeinfo in an English locale.
28523         * doc/Makefile (MAKEINFO): New variable.
28524
28525 2008-08-26  Bruno Haible  <bruno@clisp.org>
28526
28527         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
28528         Suggested by Eric Blake.
28529
28530 2008-08-25  Bruno Haible  <bruno@clisp.org>
28531
28532         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
28533
28534 2008-08-25  Eric Blake  <ebb9@byu.net>
28535
28536         c-stack: test that stack overflow can be caught
28537         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
28538         that platform allows handling stack overflow; at least OS/2 EMX
28539         has sigaltstack, but crashes before transferring control to
28540         handler on stack overflow.
28541         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
28542         check for HAVE_STACK_OVERFLOW_HANDLING.
28543         Reported by Elbert Pol.
28544
28545 2008-08-25  Bruno Haible  <bruno@clisp.org>
28546
28547         * doc/posix-functions/strftime.texi: Fix description of strftime
28548         module.
28549
28550 2008-08-24  Bruno Haible  <bruno@clisp.org>
28551
28552         * tests/uniwidth/test-uc_width2.c: New file.
28553         * tests/uniwidth/test-uc_width2.sh: New file.
28554         * modules/uniwidth/width-tests (Files): Add the new files.
28555         (TESTS): Add uniwidth/test-uc_width2.sh.
28556         (TESTS_ENVIRONMENT): New variable.
28557         (check_PROGRAMS): Add test-uc_width2.
28558         (test_uc_width2_SOURCES): New variable.
28559
28560         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
28561         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
28562         not 0x00AB.
28563         Reported by Alexander V. Lukyanov <lav@netis.ru>.
28564
28565 2008-08-22  Eric Blake  <ebb9@byu.net>
28566
28567         test-lock, test-tls: mention why a test is skipped
28568         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
28569         skipped.
28570         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
28571
28572         count-one-bits: relax license
28573         * modules/count-one-bits (License): Relicense to LGPLv2+.
28574         Suggested by Ludovic Courtès, approved by Ben Pfaff.
28575
28576 2008-08-22  Andreas Schwab  <schwab@suse.de>
28577
28578         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
28579         Remove spurious space in assignment.
28580
28581 2008-08-21  Simon Josefsson  <simon@josefsson.org>
28582
28583         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
28584         Paul Eggert <eggert@CS.UCLA.EDU>.
28585
28586 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
28587
28588         * modules/gettext: Add m4/threadlib.m4.
28589
28590 2008-08-19  Eric Blake  <ebb9@byu.net>
28591
28592         test-c-stack: fix compilation failure on FreeBSD 5.0
28593         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
28594         headers before <sys/resource.h>.
28595         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
28596         the bug.
28597         Reported by Nelson H. F. Beebe.
28598
28599         strverscmp: migrate from "strverscmp.h" to <string.h>
28600         * modules/string (Makefile.am): Add new hooks.
28601         * modules/strverscmp (Files): Remove strverscmp.h.
28602         (Depends-on): Add string.
28603         (configure.ac): Add indicator.
28604         (Include): Mention new header.
28605         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
28606         defaults.
28607         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
28608         results.
28609         * lib/strverscmp.h: Delete.
28610         * lib/string.in.h (strverscmp): Provide declaration, when needed.
28611         * tests/test-strverscmp.c (includes): Adjust client.
28612         * lib/check-version.c (includes): Likewise.
28613         * NEWS: Document the change.
28614
28615         strverscmp: add unit test
28616         * modules/strverscmp-tests: New file.
28617         * tests/test-strverscmp.c: Likewise.
28618
28619 2008-08-19  Simon Josefsson  <simon@josefsson.org>
28620
28621         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
28622         regarding Windows crypto stuff, from Mono.
28623
28624 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
28625
28626         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
28627         if present, for intel RND.  Return error on failures.
28628
28629 2008-08-18  Ben Pfaff  <blp@gnu.org>
28630
28631         gitlog-to-changelog: give better diagnostic for failed pipe-open
28632         * build-aux/gitlog-to-changelog: Improve error message: suggest
28633         that the version of Git may be too old.
28634
28635 2008-08-18  Simon Josefsson  <simon@josefsson.org>
28636
28637         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
28638         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
28639
28640 2008-08-18  Bruno Haible  <bruno@clisp.org>
28641
28642         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
28643         pthread_in_use().
28644
28645 2008-08-18  Bruno Haible  <bruno@clisp.org>
28646
28647         * lib/glthread/threadlib.c: Include <pthread.h>.
28648
28649 2008-08-18  Bruno Haible  <bruno@clisp.org>
28650
28651         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
28652         glthread_recursive_lock_* macros.
28653         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
28654         Fix syntax error.
28655
28656 2008-08-18  Bruno Haible  <bruno@clisp.org>
28657
28658         * lib/glthread/thread.c: Avoid forcing a context switch right after
28659         thread creation.
28660
28661 2008-08-17  Bruno Haible  <bruno@clisp.org>
28662
28663         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
28664         * lib/glthread/thread.h: Provide Win32 specific implementation.
28665         * modules/thread (Files): Add lib/glthread/thread.c.
28666         (Depends-on): Add lock.
28667         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
28668
28669 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28670
28671         New module 'yield'.
28672         * modules/yield: New file.
28673         * lib/glthread/yield.h: New file.
28674         * m4/yield.m4: New file.
28675         * MODULES.html.sh (Multithreading): Add yield.
28676
28677 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28678
28679         New module 'thread'.
28680         * modules/thread: New file.
28681         * lib/glthread/thread.h: New file.
28682         * m4/thread.m4: New file.
28683         * MODULES.html.sh (Multithreading): Add thread.
28684
28685 2008-08-17  Bruno Haible  <bruno@clisp.org>
28686
28687         * lib/glthread/lock.h: Include <stdlib.h> always.
28688         * lib/glthread/tls.h: Likewise.
28689         * lib/glthread/cond.h: Likewise.
28690
28691 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
28692
28693         New module 'cond'.
28694         * modules/cond: New file.
28695         * lib/glthread/cond.h: New file.
28696         * lib/glthread/cond.c: New file.
28697         * m4/cond.m4: New file.
28698         * MODULES.html.sh (Multithreading): Add cond.
28699
28700 2008-08-16  Eric Blake  <ebb9@byu.net>
28701
28702         c-stack: fix regression on Irix 5.3 from 2008-06-21
28703         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
28704         sa_sigaction...
28705         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
28706         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
28707         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
28708         * modules/signal (Makefile.am): Use the value.
28709         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
28710         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
28711         * doc/posix-headers/signal.texi (signal.h): Document this
28712         portability issue.
28713         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
28714         Reported by Tom G. Christensen.
28715
28716 2008-08-17  Bruno Haible  <bruno@clisp.org>
28717
28718         New module 'threadlib'.
28719         * modules/threadlib: New file.
28720         * lib/glthread/threadlib.c: New file, extracted from
28721         lib/glthread/lock.c.
28722         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
28723         functions.
28724         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
28725         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
28726         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
28727         macros.
28728         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
28729         (gl_DISABLE_THREADS): Remove macro.
28730         * modules/lock (Files): Remove build-aux/config.rpath.
28731         (Depends-on): Remove havelib. Add threadlib.
28732         (configure.ac-early): Remove section.
28733         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
28734         * modules/tls (Depends-on): Remove lock. Add threadlib.
28735         (Link): New section, copied from threadlib.
28736         * MODULES.html.sh (Multithreading): Add threadlib.
28737
28738 2008-08-14  Bruno Haible  <bruno@clisp.org>
28739
28740         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
28741         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
28742         glthread_rwlock_unlock, glthread_rwlock_destroy,
28743         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
28744         glthread_recursive_lock_destroy): Define as macros always.
28745         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
28746         glthread_lock_lock.
28747         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
28748         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
28749         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
28750         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
28751         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
28752         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
28753         (glthread_recursive_lock_lock_func): Renamed from
28754         glthread_recursive_lock_lock.
28755         (glthread_recursive_lock_unlock_func): Renamed from
28756         glthread_recursive_lock_unlock.
28757         (glthread_recursive_lock_destroy_func): Renamed from
28758         glthread_recursive_lock_destroy.
28759
28760 2008-08-14  Bruno Haible  <bruno@clisp.org>
28761
28762         * lib/glthread/lock.h: Renamed from lib/lock.h.
28763         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
28764         * lib/glthread/tls.h: Renamed from lib/tls.h.
28765         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
28766         * lib/fstrcmp.c: Update includes.
28767         * lib/strsignal.c: Update includes.
28768         * modules/lock (Files, Makefile.am): Update.
28769         (Include): Change to "glthread/lock.h".
28770         * modules/tls (Files, Makefile.am): Update.
28771         (Include): Change to "glthread/tls.h".
28772         * tests/test-lock.c: Update includes.
28773         * tests/test-tls.c: Update includes.
28774         * NEWS: Mention the renamed header files.
28775
28776 2008-08-11  Jim Meyering  <meyering@redhat.com>
28777
28778         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
28779
28780 2008-08-11  Eric Blake  <ebb9@byu.net>
28781
28782         test-c-stack: avoid C99-ism
28783         * tests/test-c-stack.c (main): Fix whitespace, move declaration
28784         before statement.
28785         Reported by Alain Guibert.
28786
28787 2008-08-10  Jim Meyering  <meyering@redhat.com>
28788
28789         ensure that return value of uinttostr et al are not ignored
28790         * lib/inttostr.h (__GNUC_PREREQ): Define.
28791         (__attribute_warn_unused_result__): Define.
28792         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
28793
28794 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
28795
28796         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
28797         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
28798
28799 2008-08-07  Jim Meyering  <meyering@redhat.com>
28800
28801         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
28802
28803         * modules/mkstemp (License): Relicense under LGPLv2+.
28804         * modules/tempname (License): Likewise.
28805
28806 2008-08-06  Bruno Haible  <bruno@clisp.org>
28807
28808         * lib/poll.c (poll): Further micro-optimization.
28809
28810 2008-08-06  Jim Meyering  <meyering@redhat.com>
28811
28812         inet_pton.c: use locale-independent tolower
28813         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
28814         (inet_pton6): Use c_tolower rather than tolower.
28815         * modules/inet_pton (Depends-on): Add c-ctype.
28816
28817 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
28818
28819         * lib/poll.c (poll): Avoid division when timeout is 0, cache
28820         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
28821
28822 2008-08-06  Jim Meyering  <meyering@redhat.com>
28823
28824         * modules/inet_pton (License): Relicense under LGPLv2+.
28825
28826 2008-08-03  Bruno Haible  <bruno@clisp.org>
28827
28828         Additional non-aborting API for lock and tls.
28829         * lib/lock.h: Include <errno.h>.
28830         (glthread_lock_init): New macro/function.
28831         (gl_lock_init): Define as wrapper around glthread_lock_init.
28832         (glthread_lock_lock): New macro/function.
28833         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
28834         (glthread_lock_unlock): New macro/function.
28835         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
28836         (glthread_lock_destroy): New macro/function.
28837         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
28838         (glthread_rwlock_init): New macro/function.
28839         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
28840         (glthread_rwlock_rdlock): New macro/function.
28841         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
28842         (glthread_rwlock_wrlock): New macro/function.
28843         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
28844         (glthread_rwlock_unlock): New macro/function.
28845         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
28846         (glthread_rwlock_destroy): New macro/function.
28847         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
28848         (glthread_recursive_lock_init): New macro/function.
28849         (gl_recursive_lock_init): Define as wrapper around
28850         glthread_recursive_lock_init.
28851         (glthread_recursive_lock_lock): New macro/function.
28852         (gl_recursive_lock_lock): Define as wrapper around
28853         glthread_recursive_lock_lock.
28854         (glthread_recursive_lock_unlock): New macro/function.
28855         (gl_recursive_lock_unlock): Define as wrapper around
28856         glthread_recursive_lock_unlock.
28857         (glthread_recursive_lock_destroy): New macro/function.
28858         (gl_recursive_lock_destroy): Define as wrapper around
28859         glthread_recursive_lock_destroy.
28860         (glthread_once): New macro/function.
28861         (gl_once): Define as wrapper around glthread_once.
28862         Update function declarations.
28863         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
28864         glthread_rwlock_init. Return error code.
28865         (glthread_rwlock_rdlock_multithreaded): Renamed from
28866         glthread_rwlock_rdlock. Return error code.
28867         (glthread_rwlock_wrlock_multithreaded): Renamed from
28868         glthread_rwlock_wrlock. Return error code.
28869         (glthread_rwlock_unlock_multithreaded): Renamed from
28870         glthread_rwlock_unlock. Return error code.
28871         (glthread_rwlock_destroy_multithreaded): Renamed from
28872         glthread_rwlock_destroy. Return error code.
28873         (glthread_recursive_lock_init_multithreaded): Renamed from
28874         glthread_recursive_lock_init. Return error code.
28875         (glthread_recursive_lock_lock_multithreaded): Renamed from
28876         glthread_recursive_lock_lock. Return error code.
28877         (glthread_recursive_lock_unlock_multithreaded): Renamed from
28878         glthread_recursive_lock_unlock. Return error code.
28879         (glthread_recursive_lock_destroy_multithreaded): Renamed from
28880         glthread_recursive_lock_destroy. Return error code.
28881         (glthread_once_call): Make static.
28882         (glthread_once_multithreaded): Renamed from glthread_once.
28883         * lib/tls.h: Include <errno.h>.
28884         (glthread_tls_key_init): New macro/function.
28885         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
28886         (glthread_tls_set): New macro/function.
28887         (gl_tls_set): Define as wrapper around glthread_tls_set.
28888         (glthread_tls_key_destroy): New macro/function.
28889         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
28890         Update function declarations.
28891         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
28892         glthread_tls_get.
28893         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
28894
28895 2008-08-04  Eric Blake  <ebb9@byu.net>
28896
28897         gnumakefile: use space, not TAB, outside of targets
28898         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
28899
28900 2008-08-02  Jim Meyering  <meyering@redhat.com>
28901
28902         getdate.y: avoid locale-dependent date parsing failure
28903         In Turkish locales, getdate would fail to recognize keywords
28904         containing a lowercase "i".  The solution is not to rely on
28905         locale-sensitive case-conversion.
28906         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
28907         (lookup_word): Use c_toupper in place of toupper.
28908         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
28909         Reported by Vefa Bicakci <bicave@superonline.com> in
28910         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
28911         * modules/getdate (Depends-on): Add c-ctype.
28912
28913 2008-08-02  Bruno Haible  <bruno@clisp.org>
28914
28915         * gnulib-tool (func_import): When updating or creating a .gitignore
28916         file, prepend each added line with a slash, and ignore leading slashes
28917         from the existing lines.
28918         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
28919
28920 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
28921
28922         Portability fix for GNU make 3.79.1.
28923         * top/GNUmakefile: Avoid 'else COND', which older GNU make
28924         versions do not understand.
28925
28926 2008-08-01  Bruno Haible  <bruno@clisp.org>
28927
28928         Work around bug of HP-UX 10.20 cc with -0.0 literal.
28929         * tests/test-isnanf.h (zero): New variable.
28930         (main): Avoid literal -0.0f.
28931         * tests/test-isnand.h (zero): New variable.
28932         (main): Avoid literal -0.0.
28933         * tests/test-isnanl.h (zero): New variable.
28934         (main): Avoid literal -0.0L.
28935         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
28936         (test_float, test_double, test_long_double): Avoid literals -0.0f,
28937         -0.0, -0.0L.
28938         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
28939         (test_signbitd): Avoid literal -0.0.
28940         (test_signbitl): Avoid literal -0.0L.
28941         * tests/test-ceilf1.c (zero): New variable.
28942         (main): Avoid literal -0.0f.
28943         * tests/test-ceill.c (zero): New variable.
28944         (main): Avoid literal -0.0L.
28945         * tests/test-floorf1.c (zero): New variable.
28946         (main): Avoid literal -0.0f.
28947         * tests/test-floorl.c (zero): New variable.
28948         (main): Avoid literal -0.0L.
28949         * tests/test-roundf1.c (zero): New variable.
28950         (main): Avoid literal -0.0f.
28951         * tests/test-round1.c (zero): New variable.
28952         (main): Avoid literal -0.0.
28953         * tests/test-roundl.c (zero): New variable.
28954         (main): Avoid literal -0.0L.
28955         * tests/test-truncf1.c (zero): New variable.
28956         (main): Avoid literal -0.0f.
28957         * tests/test-trunc1.c (zero): New variable.
28958         (main): Avoid literal -0.0.
28959         * tests/test-truncl.c (zero): New variable.
28960         (main): Avoid literal -0.0L.
28961         * tests/test-frexp.c (zero): New variable.
28962         (main): Avoid literal -0.0.
28963         * tests/test-frexpl.c (zero): New variable.
28964         (main): Avoid literal -0.0L.
28965         * tests/test-ldexpl.c (zero): New variable.
28966         (main): Avoid literal -0.0L.
28967         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
28968         (zerod, zerol): New variables.
28969         (test_function): Avoid literals -0.0, -0.0L.
28970         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
28971         (zerod, zerol): New variables.
28972         (test_function): Avoid literals -0.0, -0.0L.
28973         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
28974         (zerod, zerol): New variables.
28975         (test_function): Avoid literals -0.0, -0.0L.
28976         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
28977         (zerod, zerol): New variables.
28978         (test_function): Avoid literals -0.0, -0.0L.
28979         * tests/test-strtod.c (zero): New variable.
28980         (main): Avoid literal -0.0.
28981         Reported by Jonathan C. Patschke <jp@centtech.com>.
28982
28983 2008-07-31  Jim Meyering  <meyering@redhat.com>
28984
28985         sha256.h: correct definition of SHA224_DIGEST_SIZE
28986         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
28987         Reported by Paulie Pena IV <paulie4@gmail.com>.
28988         Define as 224 / 8, rather than as a literal.
28989         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
28990         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
28991         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
28992
28993 2008-07-31  Bruno Haible  <bruno@clisp.org>
28994
28995         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
28996         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
28997         Reported by Jonathan Patschke <jp@centtech.com>.
28998
28999 2008-07-31  Bruno Haible  <bruno@clisp.org>
29000
29001         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
29002         Reported by Paolo Bonzini <bonzini@gnu.org>.
29003
29004 2008-07-30  Eric Blake  <ebb9@byu.net>
29005
29006         test-strtod: allow compilation without -lm
29007         * tests/test-strtod.c (main): Avoid link dependence on fabs.
29008         Reported by Dennis Clarke <blastwave@gmail.com>.
29009
29010 2008-07-28  Jim Meyering  <meyering@redhat.com>
29011
29012         bootstrap: work also when there are no .po files in po/
29013         * build-aux/bootstrap (update_po_files): Complete the change
29014         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
29015
29016 2008-07-27  Jim Meyering  <meyering@redhat.com>
29017
29018         * users.txt: Add zile.
29019
29020 2008-07-26  Ben Pfaff  <blp@gnu.org>
29021
29022         Add missing dependencies on new m4/exponent[fdl].m4 files.
29023         * modules/isnanf-nolibm: Add m4/exponentf.m4.
29024         * modules/isnand-nolibm: Add m4/exponentd.m4.
29025         * modules/isnanl-nolibm: Add m4/exponentl.m4.
29026         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
29027         m4/isnan[fdl].m4, because the macros actually used moved.
29028         Reported by Jim Meyering.
29029
29030 2008-07-14  Ben Pfaff  <blp@gnu.org>
29031
29032         Add isinf module.
29033         * lib/isinf.c: New file.
29034         * lib/math.in.h: Define isinf macro if we have decided to replace
29035         it.
29036         * m4/isinf.m4: New file.
29037         * m4/math_h.m4: Initialize and substitute variables for isinf
29038         module.
29039         * modules/isinf: New file.
29040         * modules/isinf-tests: New file.
29041         * modules/math: Add substitutions for new module.
29042         * tests/test-isinf.c: New file.
29043         * doc/posix-functions/isinf.texi: Mention new module.
29044         * MODULES.html.sh: Mention new module.
29045
29046 2008-07-14  Ben Pfaff  <blp@gnu.org>
29047
29048         Factor out some macros for use by additional modules.
29049         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
29050         exponentf.m4.
29051         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
29052         exponentd.m4.
29053         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
29054         file exponentl.m4.
29055         * m4/exponentf.m4: New file.
29056         * m4/exponentd.m4: New file.
29057         * m4/exponentl.m4: New file.
29058         * modules/isnanf: Use new file m4/exponentf.m4.
29059         * modules/isnand: Use new file m4/exponentd.m4.
29060         * modules/isnanl: Use new file m4/exponentl.m4.
29061
29062 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
29063
29064         mktime.c: normalize tp->tm_isdst value to -1/0/1.
29065         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
29066         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
29067         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
29068
29069         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
29070         readlink on platforms without PATH_MAX.
29071
29072 2008-07-21  Eric Blake  <ebb9@byu.net>
29073
29074         Warn, not fail, on stale version.
29075         * top/GNUmakefile (_curr-ver): Tone down previous patch.
29076
29077         Don't allow installation with stale devel version number.
29078         * top/GNUmakefile (_is-install-target): New macro.
29079         (_curr-ver): Forbid installation with stale version number.
29080
29081 2008-07-20  Bruno Haible  <bruno@clisp.org>
29082
29083         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
29084         TESTS_ENVIRONMENT.
29085         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
29086
29087 2008-07-20  Bruno Haible  <bruno@clisp.org>
29088
29089         * lib/c-stack.h (c_stack_action): Add documentation.
29090         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
29091
29092 2008-07-20  Bruno Haible  <bruno@clisp.org>
29093
29094         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
29095         * modules/readlink (License): Likewise.
29096
29097 2008-07-17  Eric Blake  <ebb9@byu.net>
29098
29099         * modules/c-stack (Link): Fix typo.
29100
29101         Make c-stack use libsigsegv, when available.
29102         * modules/c-stack (Depends-on): Add libsigsegv.
29103         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
29104         needed.
29105         * lib/c-stack.c (SIGSTKSZ): Define fallback.
29106         (segv_handler, overflow_handler, c_stack_action)
29107         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
29108         implementation when libsigsegv is available, but only when using
29109         the library is necessary.
29110         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
29111         comment, explaining why XSI check fails on Linux.
29112         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
29113         * tests/test-c-stack2.sh: Tweak skip message.
29114         * NEWS: Document new link-time requirements.
29115
29116 2008-07-16  Eric Blake  <ebb9@byu.net>
29117
29118         c-stack: Expose false positives when not using libsigsegv.
29119         * modules/c-stack-tests (Files): Expand test.
29120         * tests/test-c-stack.c (main): Add means to conditionally trigger
29121         non-overflow SIGSEGV.
29122         * tests/test-c-stack2.sh: New file.
29123
29124 2008-07-14  Bruno Haible  <bruno@clisp.org>
29125
29126         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
29127         Reported by Eric Blake.
29128
29129 2008-07-14  Sam Steingold  <sds@gnu.org>
29130             Bruno Haible  <bruno@clisp.org>
29131
29132         New module libsigsegv.
29133         * modules/libsigsegv: New file.
29134         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
29135         modifications.
29136         * MODULES.html.sh (Signal handling): New section.
29137
29138 2008-07-14  Bruno Haible  <bruno@clisp.org>
29139
29140         * modules/unictype/ctype-* (Description): Add the word "function".
29141         Improves the resulting doc in MODULES.html.
29142
29143 2008-07-12  Ben Pfaff  <blp@gnu.org>
29144
29145         Add longlong module.
29146         * modules/longlong: New file.
29147
29148 2008-07-12  Bruno Haible  <bruno@clisp.org>
29149
29150         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
29151         to empty.
29152
29153 2008-07-10  Ben Pfaff  <blp@gnu.org>
29154
29155         Add isnan module.
29156         * doc/posix-functions/isnan.texi: Mention new module.
29157         * lib/math.in.h: Define isnan macro if we have decided to replace
29158         it.
29159         * m4/isnan.m4: New file.
29160         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
29161         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
29162         also.
29163         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
29164         redundancy.
29165         * m4/math_h.m4: Initialize and substitute variables for isnan
29166         module.
29167         * modules/isnan: New file.
29168         * modules/isnan-tests: New file.
29169         * modules/math: Add substitutions for new module.
29170         * tests/test-isnan.c: New file.
29171         * MODULES.html.sh: Mention new module.
29172
29173 2008-07-10  Ben Pfaff  <blp@gnu.org>
29174
29175         Add isnanf module.
29176         * lib/isnanf.m4: New file.
29177         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
29178         (gl_HAVE_ISNANF_IN_LIBM): New macro.
29179         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
29180         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
29181         * modules/isnanf: New file.
29182         * modules/isnanf-tests: New file.
29183         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
29184         files.
29185         * tests/test-isnanf-nolibm.c: factored most of its contents into
29186         new file tests/test-isnanf.h.
29187         * tests/test-isnanf.h: New file.
29188         * tests/test-isnanf.c: New file.
29189         * MODULES.html.sh: Mention new module.
29190         * doc/glibc-functions/isnanf.texi: Mention new module.
29191
29192 2008-07-10  Ben Pfaff  <blp@gnu.org>
29193
29194         Add isnand module.
29195         * lib/isnand.h: New file.
29196         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
29197         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
29198         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
29199         functionality also.
29200         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
29201         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
29202         (gl_HAVE_ISNAND_IN_LIBM): New macro.
29203         * modules/isnand: New file.
29204         * modules/isnand-tests: New file.
29205         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
29206         files.
29207         * tests/test-isnand-nolibm.c: factored most of its contents into
29208         new file tests/test-isnand.h.
29209         * tests/test-isnand.h: New file.
29210         * tests/test-isnand.c: New file.
29211         * MODULES.html.sh: Mention new module.
29212
29213 2008-07-10  Ben Pfaff  <blp@gnu.org>
29214
29215         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
29216         * lib/isnand.h: Rename lib/isnand-nolibm.h.
29217         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
29218         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
29219         * modules/isnanf-nolibm: Update references to renamed files.
29220         * modules/isnand-nolibm: Likewise.
29221         * modules/isnanf-nolibm-tests: Likewise.
29222         * modules/isnand-nolibm-tests: Likewise.
29223         * lib/frexp.c: Likewise.
29224         * lib/isfinite.c: Likewise.
29225         * lib/signbitd.c: Likewise.
29226         * lib/signbitf.c: Likewise.
29227         * lib/vasnprintf.c: Likewise.
29228         * tests/test-ceilf1.c: Likewise.
29229         * tests/test-ceilf2.c: Likewise.
29230         * tests/test-floorf1.c: Likewise.
29231         * tests/test-floorf2.c: Likewise.
29232         * tests/test-frexp.c: Likewise.
29233         * tests/test-round1.c: Likewise.
29234         * tests/test-round2.c: Likewise.
29235         * tests/test-roundf1.c: Likewise.
29236         * tests/test-strtod.c: Likewise.
29237         * tests/test-trunc1.c: Likewise.
29238         * tests/test-trunc2.c: Likewise.
29239         * tests/test-truncf1.c: Likewise.
29240         * tests/test-truncf2.c: Likewise.
29241         * NEWS: Mention the renamed header files.
29242
29243 2008-07-11  Jim Meyering  <meyering@redhat.com>
29244
29245         vc-list-files: make the last-resort awk code more portable
29246         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
29247         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
29248         does not support it.
29249
29250 2008-07-10  Eric Blake  <ebb9@byu.net>
29251
29252         Work with tar's bootstrap.
29253         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
29254         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
29255         an m4 comment.
29256
29257 2008-07-09  Jim Meyering  <meyering@redhat.com>
29258
29259         posix-shell.m4: fix typo that made this test malfunction
29260         * m4/posix-shell.m4: Remove capitalization in variable name.
29261
29262 2008-07-08  Bruno Haible  <bruno@clisp.org>
29263
29264         * m4/onceonly.m4: Update comments.
29265         Reported by Ben Pfaff <blp@cs.stanford.edu>.
29266
29267 2008-07-04  Jim Meyering  <meyering@redhat.com>
29268
29269         * users.txt: Add vc-dwim.
29270         (bison, coreutils): Use the gitweb URL.
29271
29272 2008-07-03  Jim Meyering  <meyering@redhat.com>
29273
29274         * users.txt: Add libffcall.  From Sam Steingold.
29275
29276 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
29277
29278         getdate.y: do not ignore TZ with relative day, month or year offset
29279         * lib/getdate.y (get_date): Move the tz-handling block to follow the
29280         relative-date-handling, since otherwise, the latter would clobber the
29281         sole output (an updated Start value) of the tz-handling block.
29282         * tests/test-getdate.c: Tests for the fix
29283
29284 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
29285
29286         Recognize 'foo_LIBRARIES += libgnu.a'.
29287         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
29288         makefile snippet has already specified an installation location,
29289         also using '+='.
29290
29291 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
29292
29293         getdate.y: factor out common actions
29294         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
29295         Use them in place of open-coded actions.
29296
29297 2008-07-01  Simon Josefsson  <simon@josefsson.org>
29298
29299         Add self-test for getdate module.
29300         * modules/getdate-tests: New file.
29301         * tests/test-getdate.c: New file.
29302
29303 2008-06-29  Bruno Haible  <bruno@clisp.org>
29304
29305         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
29306         .gitignore.
29307         Reported by Sylvain Beucler <beuc@beuc.net>.
29308
29309 2008-06-29  Bruno Haible  <bruno@clisp.org>
29310
29311         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
29312         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
29313
29314 2008-06-29  Bruno Haible  <bruno@clisp.org>
29315
29316         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
29317         EXTRA_DIST.
29318         Reported by Sylvain Beucler <beuc@beuc.net>.
29319
29320 2008-06-26  Jim Meyering  <meyering@redhat.com>
29321
29322         make several modules depend on the "open" module
29323         This provides slightly increased consistency when opening-for-write
29324         the name of a non-directory spelled with a trailing slash.
29325         * modules/chdir-safer: Likewise.
29326         * modules/chown: Likewise.
29327         * modules/clean-temp: Likewise.
29328         * modules/copy-file: Likewise.
29329         * modules/fchdir: Likewise.
29330         * modules/fcntl-safer: Likewise.
29331         * modules/pipe: Likewise.
29332         * modules/utime: Likewise.
29333         Prompted by Eric Blake and Bruno Haible.
29334
29335 2008-06-24  Andreas Schwab  <schwab@suse.de>
29336
29337         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
29338         literals can be used as initializers for global variables.
29339
29340 2008-06-23  Eric Blake  <ebb9@byu.net>
29341
29342         Make gnulib-cache.m4 easier to diff.
29343         * gnulib-tool (func_import): Allow newlines when reading cached
29344         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
29345
29346 2008-06-23  Bruno Haible  <bruno@clisp.org>
29347
29348         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
29349         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
29350         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
29351         m4/signalblocking.m4.
29352         (gl_PREREQ_SIGACTION): Don't invoke it.
29353         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
29354         gl_PREREQ_SIG_HANDLER_H.
29355         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
29356         Don't check for sigaction here.
29357
29358 2008-06-23  Bruno Haible  <bruno@clisp.org>
29359
29360         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
29361         (install_handlers): Don't set the SA_RESETHAND flag.
29362
29363 2008-06-23  Bruno Haible  <bruno@clisp.org>
29364
29365         * m4/sigaction.m4: Comment fixes.
29366         * lib/signal.in.h: Likewise.
29367
29368 2008-06-23  Eric Blake  <ebb9@byu.net>
29369
29370         Fix typo.
29371         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
29372
29373         Avoid SA_ namespace.
29374         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
29375         Reported by Ralf Wildenhues.
29376
29377         Avoid test failure due to SA_RESTORER.
29378         * tests/test-sigaction.c (SA_MASK): New macro.
29379         (main): Avoid failing due to extension flags being set.
29380         Reported by Jim Meyering.
29381
29382         Revert use of sig-handler.h in sigprocmask.c.
29383         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
29384         it requires the existence of struct sigaction.
29385         * lib/sigprocmask.c (handler_t): Restore typedef.
29386         (rpl_signal, old_handlers): Use local type.
29387
29388 2008-06-22  Bruno Haible  <bruno@clisp.org>
29389
29390         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
29391         conditionally.
29392         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
29393
29394 2008-06-22  Bruno Haible  <bruno@clisp.org>
29395
29396         * doc/posix-functions/siginterrupt.texi: Move note.
29397
29398         * lib/signal.in.h (SA_RESTART): New macro.
29399         * lib/sigaction.c: Update comment.
29400
29401         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
29402
29403         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
29404         (gl_PREREQ_SIGPROCMASK): Invoke it.
29405         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
29406
29407         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
29408
29409         * lib/sigprocmask.c: Update a comment.
29410
29411 2008-06-21  Eric Blake  <ebb9@byu.net>
29412
29413         Use sigaction module rather than signal().
29414         * modules/c-stack (Depends-on): Add sigaction.
29415         * modules/fatal-signal (Depends-on): Likewise.
29416         * modules/nanosleep (Depends-on): Likewise.
29417         * modules/sigprocmask (Files): Add sig-handler.h.
29418         * modules/sigaction (Files): Likewise.
29419         * lib/sig-handler.h (get_handler): New file, suggested by Paul
29420         Eggert.
29421         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
29422         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
29423         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
29424         (init_fatal_signals): Likewise.
29425         * lib/nanosleep.c (rpl_nanosleep): Likewise.
29426         (siginterrupt): Delete fallback.
29427         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
29428         instead.
29429         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
29430         siginterrupt.
29431
29432         New module sigaction, for mingw.
29433         * modules/sigaction: New module...
29434         * modules/sigaction-tests: ...and its test.
29435         * m4/sigaction.m4: New file.
29436         * lib/sigaction.c: Likewise.
29437         * tests/test-sigaction.c: Likewise.
29438         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
29439         * modules/signal (Makefile.am): Likewise.
29440         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
29441         needed.
29442         * doc/posix-headers/signal.texi (signal.h): Mention provided
29443         types.
29444         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
29445         that sigaction is preferable.
29446         * doc/posix-functions/sigaction.texi (sigaction): Mention new
29447         module.
29448         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29449         sigaction.
29450
29451         Improve robustness of sigprocmask by overriding signal.
29452         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
29453         is in use.
29454         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
29455         (SIGKILL, SIGSTOP): Provide fallbacks.
29456         (rpl_signal): Implement.
29457         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
29458         signal can be called inside handlers.
29459
29460         Fix nanosleep module on mingw.
29461         * modules/nanosleep (Depends-on): Add sys_select.
29462         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
29463
29464         Fix licensing of sigprocmask.
29465         * modules/raise (License): Relicense as LGPL.
29466
29467 2008-06-21  Bruno Haible  <bruno@clisp.org>
29468
29469         * lib/propername.c (proper_name_utf8): Don't use the transliterated
29470         result if it contains question marks.
29471         Reported by Michael Geng <linux@michaelgeng.de>.
29472
29473 2008-06-19  Bruno Haible  <bruno@clisp.org>
29474
29475         Fix CVS-ism.
29476         * doc/gnulib.texi: Include updated-stamp.texi.
29477         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
29478         (updated-stamp.texi): New rule.
29479         (gnulib.info): Depend on it.
29480         * doc/.gitignore: Add updated-stamp.texi.
29481         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
29482
29483 2008-06-19  Bruno Haible  <bruno@clisp.org>
29484
29485         * doc/Makefile (gnulib.info): Update and simplify dependencies.
29486         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
29487
29488 2008-06-19  Eric Blake  <ebb9@byu.net>
29489
29490         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
29491         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
29492         Reported by Stepan Kasal.
29493
29494 2008-06-18  Bruno Haible  <bruno@clisp.org>
29495
29496         * lib/fatal-signal.c (init_fatal_signals): Add comment.
29497         Reported by Eric Blake.
29498
29499 2008-06-18  Eric Blake  <ebb9@byu.net>
29500
29501         Work around cygwin 1.5.25 strsignal bug.
29502         * tests/test-strsignal.c: Allow for const char *.
29503         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
29504
29505 2008-06-18  Simon Josefsson  <simon@josefsson.org>
29506
29507         * users.txt: Update URL to article and add author/date
29508         information.
29509
29510 2008-06-17  Bruno Haible  <bruno@clisp.org>
29511
29512         New macro gl_DISABLE_THREADS.
29513         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
29514         if the user did not pass --enable-threads or --disable-threads option.
29515         (gl_DISABLE_THREADS): New macro.
29516         Reported by Eric Blake <ebb9@byu.net>.
29517
29518 2008-06-17  Bruno Haible  <bruno@clisp.org>
29519
29520         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
29521         when the macro ignores it.
29522         Based on a patch by Eric Blake <ebb9@byu.net>.
29523
29524 2008-06-17  Bruno Haible  <bruno@clisp.org>
29525
29526         * modules/tls (License): Change to LGPLv2+.
29527         Reported by Eric Blake.
29528
29529 2008-06-17  Eric Blake  <ebb9@byu.net>
29530
29531         Simplify c-stack prerequisites.
29532         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
29533         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
29534         no longer requires <ucontext.h> to exist.  Optimize setrlimit
29535         check.
29536         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
29537         <sys/resource.h>.
29538
29539         Move c-stack test into testsuite.
29540         * modules/c-stack-tests: New file.
29541         * lib/c-stack.c [DEBUG]: Move test program...
29542         * tests/test-c-stack.c: ...into this new file.  Skip rather than
29543         fail test if sigaltstack is lacking.
29544         * tests/test-c-stack.sh: New driver file.
29545
29546 2008-06-16  Eric Blake  <ebb9@byu.net>
29547
29548         Use raise module consistently.
29549         * modules/fatal-signal (Depends-on): Add raise.
29550         * modules/sigprocmask (Depends-on): Likewise.
29551         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
29552         * lib/sigprocmask.c (sigprocmask): Likewise.
29553         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
29554         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
29555
29556         Fix compliance bug in sigpending.
29557         * lib/sigprocmask.c (sigpending): Return pending array via
29558         parameter, not return value.
29559
29560 2008-06-14  Eric Blake  <ebb9@byu.net>
29561
29562         Improve obstack-printf test code.
29563         * tests/test-obstack-printf.c (test_function): Fix comment, and
29564         simplify usage of obstack_* in macros.  Add a test for coverage.
29565         Reported by Bruno Haible.
29566
29567 2008-06-14  Bruno Haible  <bruno@clisp.org>
29568
29569         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
29570         array size as a constant, not as a const variable.
29571         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
29572         AC_USE_SYSTEM_EXTENSIONS.
29573         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
29574         Test whether the obstack_printf function actually exists.
29575         * modules/obstack-printf (Depends-on): Add extensions.
29576         (Include): Remove obstack.h.
29577         * modules/obstack-printf-posix (Depends-on): Add extensions.
29578         (Include): Remove obstack.h.
29579
29580 2008-06-13  Eric Blake  <ebb9@byu.net>
29581
29582         Add obstack-printf and obstack-printf-posix modules.
29583         * modules/obstack-printf: New file.
29584         * modules/obstack-printf-posix: Likewise.
29585         * MODULES.html.sh (Misc): Mention them.
29586         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
29587         Likewise.
29588         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
29589         Likewise.
29590         * modules/stdio (Makefile.am): Accomodate new modules.
29591         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
29592         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
29593         Declare.
29594         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
29595         functions.
29596         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
29597         (gl_REPLACE_OBSTACK_PRINTF): New macros
29598         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
29599         * tests/test-obstack-printf.c: New file.
29600         * modules/obstack-printf-tests: Likewise.
29601         * modules/obstack-printf-posix-tests: Likewise.
29602
29603 2008-06-11  Bruno Haible  <bruno@clisp.org>
29604
29605         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
29606         * lib/open.c: Include errno.h.
29607         (open): Fail when attempting to write to a file that has a trailing
29608         slash.
29609         * tests/test-open.c (main): Test against trailing slash bug.
29610         * doc/posix-functions/open.texi: Mention the trailing slash bug.
29611
29612 2008-06-10  Bruno Haible  <bruno@clisp.org>
29613
29614         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
29615         for $? to work inside the trap command, with various /bin/sh-s.
29616         * tests/test-vc-list-files-cvs.sh: Likewise.
29617
29618 2008-06-10  Bruno Haible  <bruno@clisp.org>
29619
29620         * lib/acl-internal.h: Don't include gettext.h here.
29621         * lib/set-mode-acl.c: Include gettext.h here.
29622         * lib/copy-acl.c: Likewise.
29623
29624 2008-06-10  Bruno Haible  <bruno@clisp.org>
29625
29626         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
29627         * lib/wait-process.c (wait_subprocess): Likewise.
29628         * lib/execute.h (execute): Add termsigp argument.
29629         * lib/execute.c (execute): Likewise.
29630         * lib/csharpcomp.c (compile_csharp_using_pnet,
29631         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
29632         * lib/csharpexec.c (execute_csharp_using_pnet,
29633         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
29634         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
29635         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
29636         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
29637         is_jikes_present): Update.
29638         * lib/javaexec.c (execute_java_class): Update.
29639         * lib/javaversion.c (execute_and_read_line): Update.
29640         * NEWS: Document the changes.
29641         Reported by Eric Blake.
29642
29643 2008-06-10  Eric Blake  <ebb9@byu.net>
29644
29645         Add missing include.
29646         * tests/test-strstr.c (includes): Add <signal.h>.
29647         * tests/test-strcasestr.c (includes): Likewise.
29648         * tests/test-memmem.c (includes): Likewise.
29649
29650 2008-06-10  Bruno Haible  <bruno@clisp.org>
29651
29652         * lib/wait-process.c (wait_subprocess): Add an assertion.
29653
29654 2008-06-10  Bruno Haible  <bruno@clisp.org>
29655
29656         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
29657
29658 2008-06-10  Bruno Haible  <bruno@clisp.org>
29659
29660         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
29661         using alarm().
29662         * tests/test-strcasestr.c (main): Likewise.
29663         * tests/test-strstr.c (main): Likewise.
29664
29665 2008-06-09  Bruno Haible  <bruno@clisp.org>
29666
29667         Work around the Solaris 10 ACE ACLs ABI change.
29668         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
29669         declare if ACL_NO_TRIVIAL is present.
29670         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
29671         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
29672         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
29673         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
29674         define if ACL_NO_TRIVIAL is present.
29675         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
29676         and use the current ABI.
29677         (file_has_acl): Use same #if condition as elsewhere.
29678         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
29679         in use, and use the current ABI.
29680         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
29681         Reported by Jim Meyering.
29682
29683 2008-06-09  Eric Blake  <ebb9@byu.net>
29684
29685         Work around environments that (stupidly) ignore SIGALRM.
29686         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
29687         before using alarm().
29688         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
29689         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
29690         Reported by Ian Beckwith <ianb@erislabs.net>.
29691
29692         Produce autobuild blurb earlier in log.
29693         * modules/autobuild (configure.ac-early): Move AB_INIT here.
29694
29695 2008-06-09  Jim Meyering  <meyering@redhat.com>
29696         and OndÅ™ej Vašík  <ovasik@redhat.com>
29697
29698         utimens.c: correct kernel bug work-around
29699         OndÅ™ej Vašík found that the invalid return value of 280 indicates
29700         failure, not success, and the kernel bug we're trying to work
29701         around affects not just the utimensat call, but also the fallback
29702         futimens call.
29703         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
29704         not success.
29705         [HAVE_FUTIMENS]: Use the same work-around, here.
29706
29707 2008-06-09  Jim Meyering  <meyering@redhat.com>
29708
29709         add more guards around definition of ACE_-related code
29710         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
29711         ALLOW and ACE_OWNER are also defined.
29712
29713 2008-06-08  Bruno Haible  <bruno@clisp.org>
29714
29715         * lib/acl-internal.h: Add me as co-author.
29716         * lib/file-has-acl.c: Likewise.
29717         * lib/set-mode-acl.c: Likewise.
29718         * lib/copy-acl.c: Likewise.
29719
29720 2008-06-08  Bruno Haible  <bruno@clisp.org>
29721
29722         Add support for AIX ACLs.
29723         * lib/acl-internal.h (acl_nontrivial): New declaration.
29724         * lib/file-has-acl.c (acl_nontrivial): New function.
29725         (file_has_acl): Add implementation using AIX 4 ACL API.
29726         * lib/set-mode-acl.c (qset_acl): Likewise.
29727         * lib/copy-acl.c (qcopy_acl): Likewise.
29728
29729 2008-06-08  Bruno Haible  <bruno@clisp.org>
29730
29731         Add support for HP-UX ACLs.
29732         * lib/acl-internal.h (acl_nontrivial): New declaration.
29733         * lib/file-has-acl.c (acl_nontrivial): New function.
29734         (file_has_acl): Add implementation using HP-UX 11 ACL API.
29735         * lib/set-mode-acl.c (qset_acl): Likewise.
29736         * lib/copy-acl.c (qcopy_acl): Likewise.
29737
29738 2008-06-08  Bruno Haible  <bruno@clisp.org>
29739
29740         Add support for Cygwin ACLs.
29741         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
29742         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
29743         the chmod_or_fchmod call.
29744         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
29745
29746 2008-06-08  Bruno Haible  <bruno@clisp.org>
29747
29748         Fix bug with setuid modes in Solaris 10+ code.
29749         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
29750         succeeded, when the mode contains some special bits.
29751
29752 2008-06-08  Bruno Haible  <bruno@clisp.org>
29753
29754         Add support for Solaris 7..10 ACLs.
29755         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
29756         declarations.
29757         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
29758         functions.
29759         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
29760         * lib/set-mode-acl.c (qset_acl): Likewise.
29761         * lib/copy-acl.c (qcopy_acl): Likewise.
29762
29763 2008-06-08  Bruno Haible  <bruno@clisp.org>
29764
29765         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
29766         declaration.
29767         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
29768         (acl_access_nontrivial): Remove MacOS X case.
29769         (file_has_acl): Use acl_extended_nontrivial.
29770         * lib/copy-acl.c (qcopy_acl): Likewise.
29771
29772 2008-06-08  Bruno Haible  <bruno@clisp.org>
29773
29774         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
29775
29776 2008-06-08  Jim Meyering  <meyering@redhat.com>
29777
29778         * modules/acl (Maintainer): Add Bruno Haible.
29779
29780 2008-06-07  Bruno Haible  <bruno@clisp.org>
29781
29782         Improve support for Tru64 ACLs.
29783         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
29784         ACL on OSF/1.
29785
29786 2008-06-07  Bruno Haible  <bruno@clisp.org>
29787
29788         Add support for MacOS X ACLs.
29789         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
29790         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
29791         * lib/set-mode-acl.c (qset_acl): Likewise.
29792         * lib/copy-acl.c (qcopy_acl): Likewise.
29793
29794 2008-06-07  Bruno Haible  <bruno@clisp.org>
29795
29796         Fix memory leak introduced on 2008-05-22.
29797         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
29798         use.
29799
29800 2008-06-07  Bruno Haible  <bruno@clisp.org>
29801
29802         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
29803         to construct an empty ACL.
29804
29805 2008-06-07  Bruno Haible  <bruno@clisp.org>
29806
29807         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
29808         precisely.
29809         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
29810
29811 2008-06-07  Bruno Haible  <bruno@clisp.org>
29812
29813         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
29814         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
29815
29816 2008-06-07  Bruno Haible  <bruno@clisp.org>
29817
29818         * doc/posix-functions/_setjmp.texi: Explain the use of this function
29819         regardless of POSIX.
29820         * doc/posix-functions/_longjmp.texi: Likewise.
29821         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
29822         SystemV platform in this case.
29823
29824 2008-06-06  Eric Blake  <ebb9@byu.net>
29825
29826         Document abort() bugs.
29827         * doc/posix-functions/abort.texi (abort): Mention anomalies.
29828
29829         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
29830         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
29831         sigsetjmp.
29832         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
29833         siglongjmp, but only as a macro.
29834         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
29835         is obsolete.
29836         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
29837
29838         Tweak documentation to cover cygwin argz bugs.
29839         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
29840         argz bug fix; no code change needed since no cygwin releases
29841         occurred between the last fix and the bug being tested.
29842         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
29843         module and recently fixed cygwin bugs.
29844         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
29845         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
29846         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
29847         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
29848         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
29849         Likewise.
29850         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
29851         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
29852         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
29853         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
29854         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
29855         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
29856         Likewise.
29857
29858         Avoid gcc warning on cygwin.
29859         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
29860         !ACL_NO_TRIVIAL]: Avoid unused variable.
29861
29862 2008-06-05  Eric Blake  <ebb9@byu.net>
29863
29864         Be tolerant of UNKNOWN version in gnulib-tool test dir.
29865         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
29866         git-version-gen fails to come up with a version.
29867         Reported by Simon Josefsson.
29868
29869 2008-06-05  Jim Meyering  <meyering@redhat.com>
29870             Paul Eggert  <eggert@cs.ucla.edu>
29871
29872         utimens.c: work around a probable Linux kernel bug
29873         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
29874         appears to be a kernel bug that causes utimensat to return 280
29875         instead of 0, indicating success.
29876
29877 2008-06-04  Bruno Haible  <bruno@clisp.org>
29878
29879         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
29880         2008-06-01 commit.
29881
29882 2008-06-04  Bruno Haible  <bruno@clisp.org>
29883
29884         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
29885         * lib/file-has-acl.c (acl_access_nontrivial): New function.
29886         (file_has_acl): Use it. Save errno afterwards.
29887         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
29888
29889 2008-06-03  Bruno Haible  <bruno@clisp.org>
29890
29891         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
29892         draft code. Simplify #ifs.
29893         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
29894         Put Solaris code after POSIX-draft code. Fix comments regarding
29895         Solaris 10, HP-UX. Mention Cygwin.
29896         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
29897
29898 2008-06-03  Eric Blake  <ebb9@byu.net>
29899
29900         Provide fallback for older kernels.
29901         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
29902         Provide runtime fallback if kernel lacks support.
29903         Reported by Mike Frysinger.
29904
29905 2008-06-02  Bruno Haible  <bruno@clisp.org>
29906
29907         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
29908         it exists.
29909
29910 2008-06-02  Bruno Haible  <bruno@clisp.org>
29911
29912         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
29913         * lib/copy-acl.c (qcopy_acl): Update comment.
29914
29915 2008-06-02  Bruno Haible  <bruno@clisp.org>
29916
29917         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
29918         like ACL APIs.
29919
29920 2008-06-02  Bruno Haible  <bruno@clisp.org>
29921
29922         * tests/test-file-has-acl.sh: Use different code for Cygwin.
29923         * tests/test-set-mode-acl.sh: Likewise.
29924         * tests/test-copy-acl.sh: Likewise.
29925         * tests/test-copy-file.sh: Likewise.
29926
29927 2008-06-02  Bruno Haible  <bruno@clisp.org>
29928
29929         * tests/test-file-has-acl.sh: Remove unused code.
29930
29931 2008-06-01  Bruno Haible  <bruno@clisp.org>
29932
29933         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
29934         (copy_acl): Just a wrapper around qcopy_acl that emits the error
29935         messages.
29936         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
29937
29938 2008-06-01  Bruno Haible  <bruno@clisp.org>
29939
29940         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
29941         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
29942         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
29943         APIs.
29944         * modules/acl-tests (configure.ac): Remove tests now contained in
29945         m4/acl.m4.
29946
29947 2008-06-02  Jim Meyering  <meyering@redhat.com>
29948
29949         announce-gen: use a better key-server host name
29950         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
29951         it may be more consistently reliable.  Suggested by Werner Koch
29952         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
29953
29954 2008-06-01  Bruno Haible  <bruno@clisp.org>
29955
29956         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
29957         Reported by Voroskoi Andras <voroskoi@gmail.com>.
29958
29959 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
29960
29961         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
29962
29963 2008-06-01  Bruno Haible  <bruno@clisp.org>
29964
29965         New ACL tests.
29966         * tests/test-file-has-acl.sh: New file.
29967         * tests/test-file-has-acl.c: New file.
29968         * tests/test-set-mode-acl.sh: New file.
29969         * tests/test-set-mode-acl.c: New file.
29970         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
29971         * tests/test-copy-acl.c: New file.
29972         * modules/acl-tests: New file, based on modules/copy-file-tests.
29973         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
29974         (Depends-on): Add acl-tests.
29975         (configure.ac): Remove checks.
29976         (Makefile.am): Don't create test-sameacls program here any more.
29977
29978 2008-06-01  Bruno Haible  <bruno@clisp.org>
29979
29980         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
29981         * tests/test-sameacls.c: Include progname.h.
29982         (main): Invoke set_program_name. Portability fixes for MacOS X,
29983         Solaris, HP-UX.
29984
29985 2008-06-01  Bruno Haible  <bruno@clisp.org>
29986
29987         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
29988         function.
29989         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
29990
29991 2008-06-01  Bruno Haible  <bruno@clisp.org>
29992
29993         * modules/rpmatch (Depends-on): Add strdup.
29994
29995 2008-06-01  Bruno Haible  <bruno@clisp.org>
29996
29997         * lib/pipe.c: Include unistd-safer.h.
29998         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
29999         * modules/pipe (Depends-on): Add unistd-safer.
30000
30001 2008-05-30  Simon Josefsson  <simon@josefsson.org>
30002
30003         * modules/autobuild (configure.ac): Call AB_INIT.
30004
30005 2008-05-30  Simon Josefsson  <simon@josefsson.org>
30006
30007         * tests/test-getaddrinfo.c: Don't print debug messages by default.
30008         Suggested by Bruno Haible <bruno@clisp.org>.
30009
30010 2008-05-30  Simon Josefsson  <simon@josefsson.org>
30011
30012         * tests/test-base64.c: Cast size_t to unsigned long when invoking
30013         printf.  Use %lu instead of %d.  Reported by Bruno Haible
30014         <bruno@clisp.org>.
30015
30016 2008-05-29  Eric Blake  <ebb9@byu.net>
30017
30018         Prefer new POSIX 200x interfaces over futimesat.
30019         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
30020         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
30021         when available.
30022         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
30023
30024 2008-05-28  Bruno Haible  <bruno@clisp.org>
30025
30026         * modules/stpcpy (License): Change to LGPLv2+.
30027         Requested by David Lutterkort <dlutter@redhat.com>.
30028
30029 2008-05-27  Bruno Haible  <bruno@clisp.org>
30030
30031         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
30032         current mingw.
30033         Reported by Jose E. Marchesi <jemarch@gnu.org>.
30034
30035 2008-05-27  Bruno Haible  <bruno@clisp.org>
30036
30037         * modules/iconv_open (Link): New section, from module 'iconv'.
30038         * modules/striconv (Link): Likewise.
30039         * modules/striconveh (Link): Likewise.
30040         * modules/xstriconv (Link): Likewise.
30041         * modules/unicodeio (Link): Likewise.
30042         * modules/propername (Link): Likewise.
30043         Reported by Jim Meyering.
30044
30045 2008-05-26  Jim Meyering  <meyering@redhat.com>
30046
30047         sha256: do not artificially restrict buffer length to be < 2^32
30048         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
30049         uint32_t to size_t.
30050         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
30051         to match.
30052
30053         avoid unaligned access errors, e.g., on sparc
30054         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
30055         direct access through a possibly-unaligned uint64* pointer.
30056         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
30057         direct access through a possibly-unaligned uint32* pointer.
30058         Prompted by this patch from Tom "spot" Callaway:
30059         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
30060
30061         sha512.c: fix typo in comment
30062         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
30063
30064 2008-05-25  Bruno Haible  <bruno@clisp.org>
30065
30066         * lib/set-mode-acl.c: Renamed from lib/acl.c.
30067         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
30068         (Makefile.am): Update lib_SOURCES.
30069
30070 2008-05-25  Bruno Haible  <bruno@clisp.org>
30071
30072         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
30073
30074 2008-05-25  Jim Meyering  <meyering@redhat.com>
30075
30076         useless-if-before-free: freed expr may have white-space differences
30077         * build-aux/useless-if-before-free: Recognize cases in which the
30078         freed expression differs from the tested one in embedded white
30079         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
30080         $1 was used, so we can't make any regexp shy.  Improved tests now
30081         detect this.
30082
30083         useless-if-before-free: accept white space in the expression.
30084         * build-aux/useless-if-before-free: For now, any white space
30085         in the expression must be identical in the free argument.
30086
30087         useless-if-before-free: efficiency tweak
30088         * build-aux/useless-if-before-free: Make the expression-matching
30089         regexp "shy".
30090         Make the *outer* regexp shy, not the expr-matching one.
30091
30092         update code-in-comment to accept cast of free arg
30093         * build-aux/useless-if-before-free: Update regexp.
30094
30095 2008-05-25  Bruno Haible  <bruno@clisp.org>
30096
30097         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
30098         * modules/copy-file-tests (Files, Makefile.am): Update.
30099         * tests/test-copy-file.c (func_test_copy): Update.
30100
30101 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
30102
30103         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
30104
30105 2008-05-23  Bruno Haible  <bruno@clisp.org>
30106
30107         Improve support for ACLs on OSF/1.
30108         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
30109         Remove fallback for unknown flavors of ACLs.
30110
30111 2008-05-22  Bruno Haible  <bruno@clisp.org>
30112
30113         Add support for ACLs on OSF/1.
30114         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
30115         replacements.
30116         (acl_free_text): New macro fallback.
30117         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
30118         acl_free.
30119         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
30120         acl_free_text function. Require AC_C_INLINE.
30121
30122 2008-05-22  Bruno Haible  <bruno@clisp.org>
30123
30124         Make copy_acl work on MacOS X 10.5.
30125         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
30126         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
30127         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
30128         If MODE_INSIDE_ACL, don't assume that every system has the same text
30129         representation for ACLs as FreeBSD.
30130         * lib/copy-acl.c (copy_acl): Add support for platforms with
30131         !MODE_INSIDE_ACL.
30132         * lib/file-has-acl.c (file_has_acl): Likewise.
30133         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
30134         FreeBSD, MacOS X, or IRIX, respectively.
30135
30136 2008-05-22  Bruno Haible  <bruno@clisp.org>
30137
30138         * lib/acl.h: Don't include <sys/acl.h>.
30139         (GETACLCNT): Move fallback to lib/acl-internal.h.
30140         * lib/acl-internal.h: Include <sys/acl.h> here.
30141         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
30142
30143 2008-05-22  Bruno Haible  <bruno@clisp.org>
30144
30145         Split off copy_acl function to separate file.
30146         * lib/copy-acl.c: New file, extracted from lib/acl.c.
30147         * lib/acl.c (copy_acl): Moved function to separate file.
30148         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
30149         * modules/acl (Files): Add lib/copy-acl.c.
30150         (Makefiles.am): Augment lib_SOURCES.
30151
30152 2008-05-22  Bruno Haible  <bruno@clisp.org>
30153
30154         * modules/copy-file-tests: New file.
30155         * tests/test-copy-file.sh: New file.
30156         * tests/test-copy-file.c: New file.
30157         * tests/test-copy-file-sameacls.c: New file.
30158
30159 2008-05-22  Eric Blake  <ebb9@byu.net>
30160
30161         Avoid gcc warning.
30162         * tests/test-memcmp.c (main): Pass NULL indirectly.
30163
30164 2008-05-21  Bruno Haible  <bruno@clisp.org>
30165
30166         Add reference doc about ACLs.
30167         * doc/acl-resources.txt: New file.
30168         * doc/acl-cygwin.txt: New file.
30169
30170 2008-05-21  Bruno Haible  <bruno@clisp.org>
30171
30172         Avoid one more warning from gcc.
30173         * lib/vasnprintf.c (IF_LINT): Update comments.
30174         (VASNPRINTF): Use it also for the 'prefix' array initializer.
30175
30176 2008-05-21  Jim Meyering  <meyering@redhat.com>
30177
30178         avoid a warning from gcc
30179         * lib/vasnprintf.c (IF_LINT): Define.
30180         (scale10_round_decimal_long_double):
30181         Use it to avoid a "may be used uninitialized" warning.
30182         (scale10_round_decimal_double): Likewise.
30183
30184 2008-05-21  Simon Josefsson  <simon@josefsson.org>
30185
30186         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
30187         declared.
30188
30189 2008-05-20  Bruno Haible  <bruno@clisp.org>
30190
30191         * tests/test-memcmp.c (main): Test also the sign of the result. Test
30192         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
30193
30194 2008-05-20  Simon Josefsson  <simon@josefsson.org>
30195
30196         * modules/memcmp-tests: New file.
30197         * tests/test-memcmp.c: New file.
30198
30199 2008-05-19  Bruno Haible  <bruno@clisp.org>
30200
30201         * modules/propername (Notice, configure.ac): Put quoted "..." into
30202         --keyword option.
30203         * lib/propername.h: Update comments accordingly.
30204         Reported by Eric Blake.
30205
30206 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
30207
30208         * modules/getpass-gnu (Depends-on): Add fseeko.
30209
30210 2008-05-19  Simon Josefsson  <simon@josefsson.org>
30211
30212         * modules/base64-tests: New file.
30213
30214 2008-05-19  Bo Borgerson <gigabo@gmail.com>
30215
30216         * lib/base64.c (base64_decode_ctx): If a decode context structure
30217         was passed in use it to ignore newlines.  If a context structure
30218         was _not_ passed in, continue to treat newlines as garbage (this
30219         is the historical behavior).  Formerly base64_decode.
30220         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
30221         takes a decode context structure.
30222         * lib/base64.h (base64_decode): Macro for four-argument calls.
30223         (base64_decode_alloc): Likewise.
30224         * lib/base64.c (base64_decode_ctx): If a decode context structure
30225         was passed in use it to ignore newlines.  If a context structure
30226         was _not_ passed in, continue to treat newlines as garbage (this
30227         is the historical behavior).  Formerly base64_decode.
30228         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
30229         takes a decode context structure.
30230         * lib/base64.h (base64_decode): Macro for four-argument calls.
30231         (base64_decode_alloc): Likewise.
30232
30233 2008-05-19  Jim Meyering  <meyering@redhat.com>
30234
30235         avoid a warning from gcc
30236         * lib/trim.c (IF_LINT): Define.
30237         (trim2): Use it to avoid a "may be used uninitialized" warning.
30238
30239         Fix doc typo.
30240         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
30241
30242 2008-05-19  Bruno Haible  <bruno@clisp.org>
30243
30244         * doc/glibc-functions/getpass.texi: Document limits of other
30245         implementations.
30246
30247 2008-05-19  Simon Josefsson  <simon@josefsson.org>
30248             Bruno Haible <bruno@clisp.org>
30249
30250         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
30251
30252 2008-05-18  Bruno Haible  <bruno@clisp.org>
30253
30254         * modules/propername: New file, from GNU gettext.
30255         * lib/propername.h: New file, from GNU gettext.
30256         * lib/propername.c: New file, from GNU gettext.
30257         * MODULES.html.sh (Internationalization functions): Add propername.
30258
30259 2008-05-16  Jim Meyering  <meyering@redhat.com>
30260             Bruno Haible  <bruno@clisp.org>
30261
30262         Avoid some warnings from "gcc -Wshadow".
30263         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
30264
30265 2008-05-15  Eric Blake  <ebb9@byu.net>
30266
30267         Extend previous patch to cygwin 1.7.0.
30268         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
30269         fast implementation in cygwin >= 1.7.0.
30270         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
30271         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
30272
30273 2008-05-15  Bruno Haible  <bruno@clisp.org>
30274
30275         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
30276         implementation in glibc >= 2.9.
30277         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
30278         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
30279
30280 2008-05-15  Bruno Haible  <bruno@clisp.org>
30281
30282         * MODULES.html.sh (Internationalization functions): Remove linebreak.
30283         (Unicode string functions): Add unilbrk/*.
30284         Reported by Karl Berry.
30285
30286 2008-05-15  Eric Blake  <ebb9@byu.net>
30287
30288         Fix violation of <stdbool.h> replacement in regex.
30289         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
30290         * lib/regexec.c (re_search_internal): Likewise.
30291         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
30292
30293 2008-05-15  Jim Meyering  <meyering@redhat.com>
30294
30295         avoid distracting test output when git or cvs is not found
30296         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
30297         * tests/test-vc-list-files-git.sh: Likewise.
30298
30299 2008-05-15  Eric Blake  <ebb9@byu.net>
30300
30301         Glibc finally accepted the memmem speedup code, bugzilla #5514.
30302         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
30303         glibc version.
30304         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
30305         * doc/posix-functions/strstr.texi (strstr): Likewise.
30306         * lib/str-two-way.h (MAX): Sychronize with glibc.
30307
30308 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
30309
30310         * lib/regcomp.c (optimize_utf8): Add a note on why we test
30311         opr.ctx_type.
30312         (calc_first): Initialize constraint field.
30313         (duplicate_node_closure): Use it instead of special casing ANCHORS.
30314         Fix grammar.
30315         (duplicate_node): Merge constraint field for all node types.
30316         (calc_eclosure_iter): Look at constraint field for all node types.
30317         * lib/regex_internal.c (create_cd_newstate): Don't look at
30318         opr.ctx_type.
30319
30320 2008-05-14  Bruno Haible  <bruno@clisp.org>
30321
30322         Help GCC to do better code generation.
30323         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
30324         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
30325         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
30326         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
30327         Declare with attribute 'malloc' if supported.
30328
30329 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
30330
30331         use "echo STR|wc -c" rather than unportable "expr length STR"
30332         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
30333         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
30334
30335 2008-05-14  Jim Meyering  <meyering@redhat.com>
30336
30337         use dd ibs=$n count=1 ... rather than less-portable head -c$n
30338         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
30339         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
30340         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
30341         via Collin Lasse.
30342
30343 2008-05-14  Eric Blake  <ebb9@byu.net>
30344
30345         Avoid quadratic growth in gl_LIBSOURCES.
30346         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
30347         Suggested by Bruno Haible.
30348
30349         Test xmemdup0.
30350         * modules/xmemdup0-tests: New file.
30351         * tests/test-xmemdup0.c: Likewise.
30352
30353 2008-05-13  Eric Blake  <ebb9@byu.net>
30354
30355         Split xmemdup0 into its own module.
30356         * modules/xmemdup0: New file.
30357         * lib/xmemdup0.h: Likewise.
30358         * lib/xmemdup0.c: Likewise.
30359         * MODULES.html.sh (Memory management functions): Add xmemdup0.
30360         * lib/xalloc.h (xmemdup0): Remove.
30361         * lib/xmalloc.c (xmemdup0): Likewise.
30362
30363 2008-05-13  Eric Blake  <ebb9@byu.net>
30364             Bruno Haible  <bruno@clisp.org>
30365
30366         Reduce number of forks required during autoconf.
30367         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
30368         and gl_LIBSOURCES_DIR.
30369         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
30370         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
30371         m4_syscmd per file.
30372         <m4_foreach_w>: Move...
30373         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
30374
30375 2008-05-13  Eric Blake  <ebb9@byu.net>
30376
30377         * gnulib-tool: Fix various comment typos.
30378
30379 2008-05-12  Bruno Haible  <bruno@clisp.org>
30380
30381         Tailor the linebreaking algorithm.
30382         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
30383
30384 2008-05-12  Bruno Haible  <bruno@clisp.org>
30385
30386         Update to Unicode 5.0.0.
30387         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
30388         LBP_JV, LBP_JT. Redistribute values.
30389         (unilbrk_table): Change size.
30390         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
30391         Unicode TR#14 rev. 22.
30392         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
30393         LBP_JV, LBP_JT. Redistribute values.
30394         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
30395         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
30396         Update.
30397         * lib/unilbrk/lbrkprop1.h: Regenerated.
30398         * lib/unilbrk/lbrkprop2.h: Regenerated.
30399         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
30400         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
30401         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
30402         Likewise.
30403         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
30404         Likewise.
30405         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
30406         result.
30407         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
30408         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
30409         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
30410         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
30411         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
30412         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
30413
30414 2008-05-11  Bruno Haible  <bruno@clisp.org>
30415
30416         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
30417
30418 2008-05-11  Bruno Haible  <bruno@clisp.org>
30419
30420         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
30421         * modules/unilbrk/gen-lbrk: New file.
30422
30423 2008-05-11  Bruno Haible  <bruno@clisp.org>
30424
30425         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
30426         * m4/sha512.m4 (gl_SHA512): Likewise.
30427
30428 2008-05-11  Jim Meyering  <meyering@redhat.com>
30429
30430         New modules: crypto/sha256, crypto/sha512 (from coreutils)
30431         * modules/crypto/sha256: New file.
30432         * modules/crypto/sha512: Likewise.
30433         * lib/sha256.c: Likewise.
30434         * lib/sha256.h: Likewise.
30435         * lib/sha512.c: Likewise.
30436         * lib/sha512.h: Likewise.
30437         * lib/u64.h: Likewise.
30438         * m4/sha256.m4: Likewise.
30439         * m4/sha512.m4: Likewise.
30440         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
30441
30442 2008-05-10  Bruno Haible  <bruno@clisp.org>
30443
30444         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
30445         (Input/Output <stdio.h>): Add xprintf.
30446         (Signal handling <signal.h>): Add strsignal.
30447         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
30448         (Core language properties): Add func.
30449         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
30450         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
30451         strings.
30452         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
30453         (Input/output): New section.
30454         (File system functions): Add openat-die, stat-macros.
30455         (Networking functions): Add sockets.
30456         (Unicode string functions): Add unictype/*.
30457         (Support for building libraries and executables): Add gperf.
30458         (Support for building documentation): Add agpl-3.0.
30459         (Misc): Add nocrash.
30460
30461 2008-05-10  Bruno Haible  <bruno@clisp.org>
30462
30463         * modules/unictype/gen-ctype: New file.
30464
30465 2008-05-10  Jim Meyering  <meyering@redhat.com>
30466
30467         Make chdir-safer.c more efficient on a system with no symlinks.
30468         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
30469         also if ELOOP is zero.  Suggested by Bruno Haible.
30470
30471         Make chdir-safer.c slightly safer.
30472         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
30473         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
30474
30475         Avoid compile failure on systems without ELOOP (like mingw).
30476         * lib/chdir-safer.c (ELOOP): Define if not already defined.
30477         Reported by Bruno Haible.
30478
30479 2008-05-10  Bruno Haible  <bruno@clisp.org>
30480
30481         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
30482         (is_utf8_encoding): Use a case-insensitive comparison.
30483         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
30484         streq.
30485
30486 2008-05-10  Bruno Haible  <bruno@clisp.org>
30487
30488         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
30489         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
30490         * lib/unilbrk/ulc-common.h (iconv_string_length,
30491         iconv_string_keeping_offsets): Remove declarations.
30492         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
30493         Don't include <iconv.h>, streq.h, xsize.h.
30494         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
30495         conversion.
30496         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
30497         <iconv.h>, streq.h, xsize.h.
30498         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
30499         conversion.
30500         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
30501         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
30502         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
30503         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
30504
30505 2008-05-10  Bruno Haible  <bruno@clisp.org>
30506
30507         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
30508         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
30509
30510         * modules/unilbrk/u32-width-linebreaks-tests: New file.
30511         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
30512
30513         * modules/unilbrk/u16-width-linebreaks-tests: New file.
30514         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
30515
30516         * modules/unilbrk/u8-width-linebreaks-tests: New file.
30517         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
30518
30519         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
30520         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
30521
30522         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
30523         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
30524
30525         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
30526         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
30527
30528         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
30529         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
30530
30531 2008-05-10  Bruno Haible  <bruno@clisp.org>
30532
30533         Split up 'linebreak' module.
30534         * lib/unilbrk.h: New file, based on lib/linebreak.h.
30535         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
30536         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
30537         modifications.
30538         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
30539         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
30540         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
30541         lib/linebreak.c.
30542         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
30543         lib/linebreak.c.
30544         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
30545         lib/linebreak.c.
30546         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
30547         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
30548         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
30549         lib/linebreak.c.
30550         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
30551         lib/linebreak.c.
30552         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
30553         lib/linebreak.c.
30554         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
30555         lib/linebreak.c.
30556         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
30557         lib/linebreak.c.
30558         * modules/unilbrk/base: New file.
30559         * modules/unilbrk/tables: New file.
30560         * modules/unilbrk/u8-possible-linebreaks: New file.
30561         * modules/unilbrk/u16-possible-linebreaks: New file.
30562         * modules/unilbrk/u32-possible-linebreaks: New file.
30563         * modules/unilbrk/ulc-common: New file.
30564         * modules/unilbrk/ulc-possible-linebreaks: New file.
30565         * modules/unilbrk/u8-width-linebreaks: New file.
30566         * modules/unilbrk/u16-width-linebreaks: New file.
30567         * modules/unilbrk/u32-width-linebreaks: New file.
30568         * modules/unilbrk/ulc-width-linebreaks: New file.
30569         * lib/linebreak.h: Remove file.
30570         * lib/linebreak.c: Remove file.
30571         * m4/linebreak.m4: Remove file.
30572         * modules/linebreak: Remove file.
30573         * NEWS: Mention the changes.
30574
30575 2008-05-09  Eric Blake  <ebb9@byu.net>
30576
30577         Add xmemdup0.
30578         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
30579         implementation.
30580         * lib/xmalloc.c (xmemdup0): New C implementation.
30581
30582 2008-05-08  Bruno Haible  <bruno@clisp.org>
30583
30584         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
30585
30586 2008-05-07  Eric Blake  <ebb9@byu.net>
30587
30588         Support cross-compilation of <wctype.h>.
30589         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
30590         AC_CACHE_CHECK.
30591
30592 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
30593
30594         * build-aux/vc-list-files: Add support for bzr.
30595
30596 2008-05-03  Jim Meyering  <meyering@redhat.com>
30597
30598         avoid failed assertion with tight malloc
30599         * tests/test-getndelim2.c: Correct an off-by-one assertion.
30600
30601 2008-05-03  Simon Josefsson  <simon@josefsson.org>
30602
30603         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
30604         are needed from arpa/inet.h.
30605         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
30606         Reported by Bruno Haible.
30607
30608 2008-05-02  Jim Meyering  <meyering@redhat.com>
30609
30610         avoid compilation error on FreeBSD 6
30611         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
30612
30613 2008-05-01  Jim Meyering  <meyering@redhat.com>
30614
30615         useless-if-before-free: correct --help's exit status description
30616         * build-aux/useless-if-before-free (usage): Like grep, exit 0
30617         for one or more matches, etc.  Reported by Bruno Haible.
30618
30619         vc-list-files: make the stand-alone gnulib test work
30620         * modules/vc-list-files-tests (configure.ac):
30621         Define and AC_SUBST abs_aux_dir.
30622         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
30623         $(abs_top_srcdir) to each script and having each of them
30624         duplicate the work of setting PATH, set PATH here, using
30625         the new variable, abs_aux_dir instead.
30626         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
30627         * tests/test-vc-list-files-git.sh: Likewise.
30628         Reported by Bruno Haible.
30629
30630 2008-05-01  Bruno Haible  <bruno@clisp.org>
30631
30632         * lib/getndelim2.c (getndelim2): Fix newsize computation during
30633         reallocation. Rename 'done' to 'found_delimiter'.
30634
30635 2008-05-01  Jim Meyering  <meyering@redhat.com>
30636
30637         vc-list-files: accommodate /bin/sh like the one from Solaris 10
30638         * build-aux/vc-list-files: Use `...`, not $(...).
30639
30640 2008-04-30  Jim Meyering  <meyering@redhat.com>
30641
30642         add tests for vc-list-files
30643         * modules/vc-list-files-tests: New module.
30644         * tests/test-vc-list-files-cvs.sh: New file.
30645         * tests/test-vc-list-files-git.sh: New file.
30646
30647         avoid a warning from gcc
30648         * lib/getndelim2.c (IF_LINT): Define.
30649         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
30650
30651         vc-list-files: work properly with build-aux/cvsu, too
30652         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
30653         to all cvs-based clauses.
30654
30655         vc-list-files: work properly in the CVS+awk case, too
30656         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
30657
30658         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
30659         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
30660         take more than one file argument, so .  Add quotes, just in case $dir
30661         ever contains a shell meta-character.  Prompted by Soren Hansen in
30662         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
30663
30664 2008-04-29  Eric Blake  <ebb9@byu.net>
30665
30666         Optimize getndelim2 to use block operations when possible.
30667         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
30668         freadseek, and memchr2.
30669         * lib/getndelim2.c (getndelim2): Use them for block reads.
30670
30671 2008-04-29  Bruno Haible  <bruno@clisp.org>
30672
30673         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
30674         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
30675         * modules/inet_ntop (Depends-on): Add extensions.
30676         * modules/inet_pton (Depends-on): Likewise.
30677         Reported by Simon Josefsson.
30678
30679 2008-04-29  Jim Meyering  <meyering@redhat.com>
30680
30681         When the is more than one match in a block, match all of them.
30682         * build-aux/useless-if-before-free: Iterate through each block
30683         until there are no more matches.
30684
30685         Fix broken useless-if-before-free script.
30686         * build-aux/useless-if-before-free: Fix typo: missing "?" after
30687         the expression to match cast of argument to free-like function.
30688
30689 2008-04-29  Eric Blake  <ebb9@byu.net>
30690
30691         Use new header.
30692         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
30693
30694 2008-04-29  Jim Meyering  <meyering@redhat.com>
30695
30696         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
30697         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
30698         by gnulib to exist and to declare e.g., inet_ntop.
30699         Don't include "inet_ntop.h", now removed.
30700
30701         * m4/arpa_inet_h.m4: Remove trailing blanks.
30702
30703 2008-04-29  Eric Blake  <ebb9@byu.net>
30704
30705         Silence valgrind on safe reads beyond potential array bounds.
30706         * lib/rawmemchr.valgrind: New file.
30707         * lib/strchrnul.valgrind: Likewise.
30708         * modules/rawmemchr (Files): Distribute new file.
30709         * modules/strchrnul (Files): Likewise.
30710         Suggested by Bruno Haible.
30711
30712 2008-04-29  Bruno Haible  <bruno@clisp.org>
30713
30714         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
30715         (inet_ntop, inet_pton): Change portability warning's wording.
30716         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
30717         Invoke gl_CHECK_NEXT_HEADERS.
30718         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
30719         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
30720         set ARPA_INET_H.
30721         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
30722         * modules/arpa_inet (Description): No longer only for systems that
30723         lack it.
30724         (Depends-on): Add include_next.
30725         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
30726         HAVE_ARPA_INET_H.
30727
30728 2008-04-29  Jim Meyering  <meyering@redhat.com>
30729
30730         * modules/mkdir (License): Re-license as LGPLv2+.
30731
30732 2008-04-29  Bruno Haible  <bruno@clisp.org>
30733
30734         * modules/rawmemchr (Maintainer): Set to Eric.
30735         * modules/strchrnul (Maintainer): Likewise.
30736
30737 2008-04-29  Simon Josefsson  <simon@josefsson.org>
30738
30739         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
30740         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
30741
30742         * modules/arpa_inet (arpa/inet.h): Use them.
30743
30744 2008-04-28  Eric Blake  <ebb9@byu.net>
30745
30746         Test getndelim2.
30747         * modules/getndelim2-tests: New file.
30748         * tests/test-getndelim2.c: Likewise.
30749         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
30750         stream.
30751         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
30752
30753         * MODULES.html.sh: Document new module.
30754
30755 2008-04-20  Bruno Haible  <bruno@clisp.org>
30756
30757         * lib/c-stack.c (die): Use raise.
30758         * modules/c-stack (Depends-on): Add raise.
30759
30760 2008-04-28  Bruno Haible  <bruno@clisp.org>
30761
30762         Expect rpmatch to be declared.
30763         * lib/yesno.c (rpmatch): Remove declaration.
30764
30765         Declare rpmatch.
30766         * lib/stdlib.in.h (rpmatch): New declaration.
30767         * lib/rpmatch.c: Include <stdlib.h> first.
30768         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
30769         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
30770         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
30771         HAVE_RPMATCH.
30772         * modules/rpmatch (Depends-on): Add stdlib, extensions.
30773         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
30774         (Include): Set to <stdlib.h>.
30775         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
30776         HAVE_RPMATCH.
30777         * NEWS: Document the change.
30778
30779 2008-04-28  Bruno Haible  <bruno@clisp.org>
30780
30781         Change rpmatch to use nl_langinfo when appropriate.
30782         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
30783         (N_): New macro.
30784         (localized_pattern): New function/macro.
30785         (try): Remove match, nomatch arguments. Copy the pattern into safe
30786         memory before caching it.
30787         (rpmatch): Use localized_pattern. Add translator comments.
30788         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
30789         Suggested by Eric Blake.
30790         * modules/rpmatch (Depends-on): Add stdbool.
30791
30792 2008-04-28  Eric Blake  <ebb9@byu.net>
30793
30794         Add rawmemchr module, matching glibc.
30795         * modules/string (Makefile.am): New indicator.
30796         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
30797         * lib/string.in.h (rawmemchr): Declare when appropriate.
30798         * modules/rawmemchr: New file.
30799         * m4/rawmemchr.m4: Likewise.
30800         * lib/rawmemchr.c: Likewise.
30801         * modules/rawmemchr-tests: Likewise.
30802         * tests/test-rawmemchr.c: Likewise.
30803         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
30804         module.
30805         * modules/strchrnul (Depends-on): Add rawmemchr.
30806         * lib/strchrnul.c (strchrnul): Optimize a corner case.
30807
30808         Whitespace cleanup.
30809         * tests/test-strchrnul.c: Reindent.
30810         * lib/strchrnul.c: Likewise.
30811
30812         Optimize and test strchrnul.
30813         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
30814         * modules/strchrnul-tests: New file.
30815         * tests/test-strchrnul.c: Likewise.
30816
30817         Remove intprops dependency.
30818         * modules/memchr (Depends-on): Remove intprops.
30819         * modules/memrchr (Depends-on): Likewise.
30820         * modules/memchr2 (Depends-on): Likewise.
30821         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
30822         * lib/memrchr.c (__memrchr): Likewise.
30823         * lib/memrchr2.c (memchr2): Likewise.
30824         Reported by Simon Josefsson.
30825
30826 2008-04-28  Simon Josefsson  <simon@josefsson.org>
30827
30828         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
30829         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30830
30831 2008-04-28  Simon Josefsson  <simon@josefsson.org>
30832
30833         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
30834
30835         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
30836
30837         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
30838
30839         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
30840         declarations.
30841         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
30842
30843         * m4/inet_pton.m4: Don't check for header files.
30844
30845         * m4/inet_ntop.m4: Don't check for header files.
30846
30847 2008-04-28  Simon Josefsson  <simon@josefsson.org>
30848
30849         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
30850         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
30851         trigger for cygwin).
30852         Reported by Bruno Haible  <bruno@clisp.org>.
30853
30854 2008-04-28  Bruno Haible  <bruno@clisp.org>
30855
30856         * doc/posix-functions/strdup.texi: Mention mingw problem.
30857
30858 2008-04-27  Bruno Haible  <bruno@clisp.org>
30859
30860         * modules/stat-time-tests (Depends-on): Add sleep.
30861         * tests/test-stat-time.c (force_unlink): New function.
30862         (cleanup): Use it.
30863         (test_mtime): Remove the ctime related tests.
30864         (test_ctime): New function, containing the ctime related tests.
30865         (main): Call test_ctime, except on native Windows platforms.
30866
30867 2008-04-27  Bruno Haible  <bruno@clisp.org>
30868
30869         * lib/rpmatch.c (rpmatch): Add some comments.
30870         Reported by James Youngman <jay@gnu.org>.
30871
30872 2008-04-27  Bruno Haible  <bruno@clisp.org>
30873
30874         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
30875         quiet NaNs.
30876
30877 2008-04-27  Bruno Haible  <bruno@clisp.org>
30878
30879         Make test-yesno.sh work on mingw.
30880         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
30881         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
30882         (main): Set stdin to binary mode.
30883         * modules/yesno-tests (Depends-on): Add binary-io.
30884
30885 2008-04-27  Bruno Haible  <bruno@clisp.org>
30886
30887         Fix 'isfinite' on x86, x86_64, ia64 platforms.
30888         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
30889         argument that lie outside the IEEE 854 domain.
30890         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
30891         (gl_ISFINITE): Use it.
30892         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
30893
30894 2008-04-27  Bruno Haible  <bruno@clisp.org>
30895
30896         Allow local renaming in config.h.
30897         * lib/memrchr.c (memrchr): Don't undefine outside libc.
30898
30899 2008-04-27  Bruno Haible  <bruno@clisp.org>
30900
30901         * lib/memchr.c (__memchr): Change type of 'i'.
30902         * lib/memchr2.c (memchr2): Likewise.
30903
30904 2008-04-26  Eric Blake  <ebb9@byu.net>
30905         and Bruno Haible  <bruno@clisp.org>
30906
30907         Optimize and test memrchr.
30908         * modules/memrchr (Depends-on): Add intprops.
30909         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
30910         * modules/memrchr-tests: New file.
30911         * tests/test-memrchr.c: New file.
30912
30913 2008-04-26  Bruno Haible  <bruno@clisp.org>
30914
30915         Add tentative support for DragonFly BSD.
30916         * lib/stdio-impl.h: Add macros for DragonFly BSD.
30917         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
30918         fp.
30919         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
30920         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
30921         * lib/fpurge.c (fpurge): Likewise.
30922         * lib/freadable.c (freaadable): Likewise.
30923         * lib/freadahead.c (freadahead): Likewise.
30924         * lib/freading.c (freading): Likewise.
30925         * lib/freadptr.c (freadptr): Likewise.
30926         * lib/freadseek.c (freadptrinc): Likewise.
30927         * lib/fseeko.c (fseeko): Likewise.
30928         * lib/fseterr.c (fseterr): Likewise.
30929         * lib/fwritable.c (fwritable): Likewise.
30930         * lib/fwriting.c (fwriting): Likewise.
30931
30932 2008-04-26  Bruno Haible  <bruno@clisp.org>
30933
30934         * lib/stdio-impl.h: New file.
30935         * lib/fbufmode.c: Include stdio-impl.h.
30936         (fbufmode): Use fp_, remove redundant #defines.
30937         * lib/fflush.c: Include stdio-impl.h.
30938         (clear_ungetc_buffer): Remove redundant #defines.
30939         * lib/fpurge.c: Include stdio-impl.h.
30940         (fpurge): Remove redundant #defines.
30941         * lib/freadable.c: Include stdio-impl.h.
30942         (freadable): Remove redundant #defines.
30943         * lib/freadahead.c: Include stdio-impl.h.
30944         (freadahead): Remove redundant #defines.
30945         * lib/freading.c: Include stdio-impl.h.
30946         (freading): Remove redundant #defines.
30947         * lib/freadptr.c: Include stdio-impl.h.
30948         (freadptr): Remove redundant #defines.
30949         * lib/freadseek.c: Include stdio-impl.h.
30950         (freadptrinc): Remove redundant #defines.
30951         * lib/fseeko.c: Include stdio-impl.h.
30952         (rpl_fseeko): Remove redundant #defines.
30953         * lib/fseterr.c: Include stdio-impl.h.
30954         (fseterr): Remove redundant #defines.
30955         * lib/fwritable.c: Include stdio-impl.h.
30956         (fwritable: Remove redundant #defines.
30957         * lib/fwriting.c: Include stdio-impl.h.
30958         (fwriting): Remove redundant #defines.
30959         * modules/fbufmode (Files): Add lib/stdio-impl.h.
30960         * modules/fflush (Files): Likewise.
30961         * modules/fpurge (Files): Likewise.
30962         * modules/freadable (Files): Likewise.
30963         * modules/freadahead (Files): Likewise.
30964         * modules/freading (Files): Likewise.
30965         * modules/freadptr (Files): Likewise.
30966         * modules/freadseek (Files): Likewise.
30967         * modules/fseeko (Files): Likewise.
30968         * modules/fseterr (Files): Likewise.
30969         * modules/fwritable (Files): Likewise.
30970         * modules/fwriting (Files): Likewise.
30971
30972 2008-04-26  Bruno Haible  <bruno@clisp.org>
30973
30974         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
30975         restore_seek_optimization, update_fpos_cache): New functions, extracted
30976         from rpl_fflush.
30977         (rpl_fflush): Use them.
30978         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
30979         (gl_REPLACE_FFLUSH): Use it.
30980
30981 2008-04-26  Bruno Haible  <bruno@clisp.org>
30982
30983         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
30984         on Solaris.
30985         * tests/test-xstrtoimax.sh: Likewise.
30986         * tests/test-xstrtoumax.sh: Likewise.
30987         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30988
30989 2008-04-26  Bruno Haible  <bruno@clisp.org>
30990
30991         * modules/memchr-tests: New file.
30992         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
30993
30994 2008-04-26  Eric Blake  <ebb9@byu.net>
30995             Bruno Haible  <bruno@clisp.org>
30996
30997         * lib/memchr.c: Include intprops.h.
30998         (__memchr): Optimize parallel detection of matching bytes. Rename local
30999         variables. Add explanatory comments.
31000
31001 2008-04-26  Bruno Haible  <bruno@clisp.org>
31002
31003         Fix module 'memchr', broken since 2000-10-28.
31004         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
31005
31006 2008-04-26  Bruno Haible  <bruno@clisp.org>
31007
31008         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
31009         comments.
31010
31011 2008-04-25  Eric Blake  <ebb9@byu.net>
31012
31013         Use native fstatat on cygwin 1.7.0.
31014         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
31015         first.
31016
31017 2008-04-23  Eric Blake  <ebb9@byu.net>
31018
31019         Improve memchr2 performance.
31020         * lib/memchr2.c (memchr2): Further optimize parallel detection of
31021         NUL bytes.
31022         * modules/memchr2 (Depends-on): Use intprops.h.
31023
31024 2008-04-23  Simon Josefsson  <simon@josefsson.org>
31025
31026         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
31027         an inline function instead of a CPP macro.  Patch by Ben Pfaff
31028         <blp@cs.stanford.edu>.
31029
31030 2008-04-23  Simon Josefsson  <simon@josefsson.org>
31031
31032         * lib/arpa_inet.in.h: New file.
31033
31034         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
31035         (Makefile.am): Sed in substitute header file.
31036
31037         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
31038         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
31039
31040         * modules/inet_ntop (configure.ac): Use
31041         gl_ARPA_INET_MODULE_INDICATOR.
31042
31043         * modules/inet_pton (configure.ac): Use
31044         gl_ARPA_INET_MODULE_INDICATOR.
31045
31046 2008-04-22  Jim Meyering  <meyering@redhat.com>
31047
31048         * modules/verify (License): Re-license as LGPLv2+.
31049
31050 2008-04-22  Simon Josefsson  <simon@josefsson.org>
31051
31052         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
31053         parameter to void* as per POSIX standard (MinGW uses char*).
31054
31055 2008-04-21  Bruno Haible  <bruno@clisp.org>
31056
31057         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
31058         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
31059         Define to replacements if REPLACE_ISWCNTRL is 1.
31060         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
31061         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
31062         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
31063         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
31064         what it fixes.
31065         * doc/posix-functions/iswalpha.texi: Likewise.
31066         * doc/posix-functions/iswblank.texi: Likewise.
31067         * doc/posix-functions/iswcntrl.texi: Likewise.
31068         * doc/posix-functions/iswdigit.texi: Likewise.
31069         * doc/posix-functions/iswgraph.texi: Likewise.
31070         * doc/posix-functions/iswlower.texi: Likewise.
31071         * doc/posix-functions/iswprint.texi: Likewise.
31072         * doc/posix-functions/iswpunct.texi: Likewise.
31073         * doc/posix-functions/iswspace.texi: Likewise.
31074         * doc/posix-functions/iswupper.texi: Likewise.
31075         * doc/posix-functions/iswxdigit.texi: Likewise.
31076         Reported by Alain Guibert.
31077
31078 2008-04-21  Bruno Haible  <bruno@clisp.org>
31079
31080         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
31081         Patch by Alain Guibert.
31082
31083 2008-04-21  Bruno Haible  <bruno@clisp.org>
31084
31085         Fix test failures on mingw.
31086         * tests/test-xstrtol.c (print_no_progname): New function.
31087         (main): Install it in error_print_progname hook.
31088         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
31089         * tests/test-xstrtoimax.sh: Likewise.
31090         * tests/test-xstrtoumax.sh: Likewise.
31091
31092 2008-04-21  Bruno Haible  <bruno@clisp.org>
31093
31094         Fix test failure on mingw.
31095         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
31096
31097 2008-04-21  Bruno Haible  <bruno@clisp.org>
31098
31099         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
31100         Actually assign a value.
31101
31102 2008-04-20  Bruno Haible  <bruno@clisp.org>
31103
31104         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
31105         take 2.
31106         * lib/canonicalize.c (canonicalize_file_name): Elide if the
31107         'canonicalize-lgpl' module is also used.
31108         * lib/canonicalize-lgpl.c: Undo last change.
31109         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
31110
31111 2008-04-20  Bruno Haible  <bruno@clisp.org>
31112
31113         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
31114         config.h. Provide _mkdir based fallback for mingw.
31115         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
31116         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
31117         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
31118         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
31119         rather than defining mkdir in config.h.
31120         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
31121         (gl_SYS_STAT_H_DEFAULTS): New macro.
31122         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
31123         HAVE_IO_H any more.
31124         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
31125         HAVE_DECL_MKDIR and HAVE_IO_H.
31126
31127 2008-04-20  Bruno Haible  <bruno@clisp.org>
31128
31129         * lib/isapipe.c: Port to native Windows platforms.
31130
31131 2008-04-20  Bruno Haible  <bruno@clisp.org>
31132
31133         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
31134
31135 2008-04-21  Eric Blake  <ebb9@byu.net>
31136
31137         Work around preprocessors that don't handle UINTMAX_MAX.
31138         * lib/memchr2.c (memchr2): Avoid embedded #if.
31139         Reported by Alain Guibert, fix suggested by Bruno Haible.
31140
31141 2008-04-21  Simon Josefsson  <simon@josefsson.org>
31142
31143         * doc/posix-functions/strftime.texi (strftime): Explain better
31144         Windows incompatibility.  Suggested by Micah Cowan
31145         <micah@cowan.name>.
31146
31147 2008-04-20  Bruno Haible  <bruno@clisp.org>
31148
31149         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
31150         unistr/u8-mblen.
31151
31152 2008-04-20  Bruno Haible  <bruno@clisp.org>
31153
31154         Fix test failure on platforms with non-GNU iconv.
31155         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
31156         (U_TO_U8): Use it, rather than u16_to_u8.
31157         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
31158         units at the end of the input string.
31159         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
31160
31161 2008-04-20  Bruno Haible  <bruno@clisp.org>
31162
31163         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
31164         when the resulting length is 0.
31165         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
31166
31167 2008-04-20  Bruno Haible  <bruno@clisp.org>
31168
31169         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
31170         works.
31171         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
31172
31173 2008-04-20  Bruno Haible  <bruno@clisp.org>
31174
31175         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
31176         * modules/tsearch-tests (configure.ac): Test for initstate function.
31177
31178 2008-04-20  Bruno Haible  <bruno@clisp.org>
31179
31180         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
31181         for nlink_t if missing.
31182         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
31183
31184 2008-04-19  Bruno Haible  <bruno@clisp.org>
31185
31186         Work around snprintf bug on Linux libc5.
31187         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
31188         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
31189         gl_SNPRINTF_SIZE1.
31190         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
31191         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
31192         that test failed.
31193         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
31194         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
31195         * modules/snprintf (Files): Add m4/printf.m4.
31196         * modules/vsnprintf (Files): Likewise.
31197         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
31198         * doc/posix-functions/vsnprintf.texi: Likewise.
31199
31200 2008-04-19  Bruno Haible  <bruno@clisp.org>
31201
31202         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
31203         from 0.0058 to less than 10^-7.
31204
31205 2008-04-19  Bruno Haible  <bruno@clisp.org>
31206
31207         Fix rounding when a precision is given.
31208         * lib/vasnprintf.c (is_borderline): New function.
31209         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
31210         9...9x.
31211         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
31212         %e, %g.
31213         * tests/test-vasprintf-posix.c (test_function): Likewise.
31214         * tests/test-snprintf-posix.h (test_function): Likewise.
31215         * tests/test-sprintf-posix.h (test_function): Likewise.
31216         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
31217         * tests/test-printf-posix.h (test_function): Likewise.
31218         * tests/test-printf-posix.output: Update.
31219         Reported by John Darrington <john@darrington.wattle.id.au> via
31220         Ben Pfaff <blp@cs.stanford.edu>.
31221
31222 2008-04-18  Simon Josefsson  <simon@josefsson.org>
31223
31224         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
31225         Suggested by Bruno Haible <bruno@clisp.org>.
31226
31227 2008-04-17  Bruno Haible  <bruno@clisp.org>
31228
31229         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
31230         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
31231         implementation.
31232         Patch by Bruce Merry <bmerry@gmail.com>.
31233
31234 2008-04-17  Simon Josefsson  <simon@josefsson.org>
31235
31236         * doc/posix-functions/strftime.texi (strftime): Mention that %e
31237         doesn't work under Windows.
31238
31239 2008-04-16  Bruno Haible  <bruno@clisp.org>
31240
31241         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
31242         New macros.
31243         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
31244         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
31245         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
31246         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
31247         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
31248         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
31249         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
31250         macros.
31251         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
31252         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
31253         Northern Sotho, Uighur.
31254
31255 2008-04-16  Bruno Haible  <bruno@clisp.org>
31256
31257         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
31258         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
31259         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
31260         Reported by Daniel Bergström <daniel@octocode.com>.
31261
31262 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
31263             Bruno Haible  <bruno@clisp.org>
31264
31265         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
31266         function.
31267         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
31268         New functions, mostly extracted from gl_locale_name_default.
31269         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
31270
31271 2008-04-16  Eric Blake  <ebb9@byu.net>
31272
31273         Adjust strtod detection to catch glibc 2.7 bug.
31274         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
31275         Reported by John Gatewood Ham.
31276
31277 2008-04-16  Bruno Haible  <bruno@clisp.org>
31278
31279         Add tentative support for Linux libc5.
31280         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
31281         * lib/fpurge.c (fpurge): Likewise.
31282         * lib/freadable.c (freadable): Likewise.
31283         * lib/freadahead.c (freadahead): Likewise.
31284         * lib/freading.c (freading): Likewise.
31285         * lib/freadptr.c (freadptr): Likewise.
31286         * lib/freadseek.c (freadptrinc): Likewise.
31287         * lib/fseeko.c (rpl_fseeko): Likewise.
31288         * lib/fseterr.c (fseterr): Likewise.
31289         * lib/fwritable.c (fwritable): Likewise.
31290         * lib/fwriting.c (fwriting): Likewise.
31291         Reported by Alain Guibert <alguibert+bts@free.fr>.
31292
31293 2008-04-15  Bruno Haible  <bruno@clisp.org>
31294
31295         * modules/mathl (configure.ac): Define module indicator.
31296
31297 2008-04-15  Bruno Haible  <bruno@clisp.org>
31298
31299         * lib/logl.c (logl): Remove unused variables.
31300
31301 2008-04-15  Bruno Haible  <bruno@clisp.org>
31302
31303         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
31304         fails.
31305
31306 2008-04-15  Bruno Haible  <bruno@clisp.org>
31307
31308         * lib/trim.c (trim2): Fix argument of isspace() macro.
31309
31310 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
31311
31312         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
31313         to 0.
31314         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
31315
31316 2008-04-14  Bruno Haible  <bruno@clisp.org>
31317
31318         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
31319         AC_LANG_PROGRAM argument.
31320         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
31321         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
31322         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
31323         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
31324         * m4/math_h.m4 (gl_MATH_H): Likewise.
31325         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
31326         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
31327         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
31328         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
31329         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
31330         * m4/regex.m4 (gl_REGEX): Likewise.
31331         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
31332         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
31333         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
31334         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
31335         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
31336         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
31337         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
31338         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
31339
31340 2008-04-14  Jim Meyering  <meyering@redhat.com>
31341
31342         test-strtod: fix typos: s/abs/fabs/
31343         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
31344
31345 2008-04-13  Bruno Haible  <bruno@clisp.org>
31346
31347         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
31348         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
31349         module is also used and while not building the reloc-wrapper.
31350
31351 2008-04-13  Bruno Haible  <bruno@clisp.org>
31352
31353         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
31354
31355 2008-04-13  Bruno Haible  <bruno@clisp.org>
31356
31357         Fix AIX compilation failure introduced on 2008-04-02.
31358         * tests/test-frexp.c (exp): Undefine before redefining.
31359         * tests/test-frexpl.c (exp): Likewise.
31360
31361 2008-04-13  Bruno Haible  <bruno@clisp.org>
31362
31363         Work around a HP-UX stdio bug.
31364         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
31365         * tests/test-ftello.c (main): Likewise.
31366         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
31367         * doc/posix-functions/ftello.texi: Likewise.
31368
31369 2008-04-13  Bruno Haible  <bruno@clisp.org>
31370
31371         Make test-signbit pass on HP-UX/hppa.
31372         * tests/test-signbit.c (minus_zerol): New variable.
31373         (test_signbitl): Use it.
31374
31375 2008-04-13  Bruno Haible  <bruno@clisp.org>
31376
31377         Make truncl work on OSF/1 4.0.
31378         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
31379         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
31380         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
31381         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
31382         HAVE_DECL_TRUNCL.
31383         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
31384         HAVE_DECL_TRUNCL.
31385         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
31386
31387 2008-04-13  Bruno Haible  <bruno@clisp.org>
31388
31389         * lib/unictype.h: Remove trailing comma from enumeration definitions.
31390
31391 2008-04-13  Bruno Haible  <bruno@clisp.org>
31392
31393         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
31394         expression, so as to avoid HP-UX 11 cc compiler bug.
31395
31396 2008-04-13  Bruno Haible  <bruno@clisp.org>
31397
31398         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
31399
31400 2008-04-13  Bruno Haible  <bruno@clisp.org>
31401
31402         * lib/git-merge-changelog.c: Remove empty declaration outside of
31403         functions.
31404
31405 2008-04-13  Bruno Haible  <bruno@clisp.org>
31406
31407         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
31408
31409 2008-04-13  Bruno Haible  <bruno@clisp.org>
31410
31411         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
31412         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
31413         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
31414         also if it exists but lacks definitions of the SHUT_* macros.
31415         * modules/sys_socket (Description): Update.
31416         Reported by Elbert Pol <e.pol@chello.nl>.
31417
31418 2008-04-13  Bruno Haible  <bruno@clisp.org>
31419
31420         * lib/localcharset.c (OS2): Don't redefine if already defined.
31421         Reported by Elbert Pol <e.pol@chello.nl>.
31422
31423 2008-04-13  Bruno Haible  <bruno@clisp.org>
31424
31425         * lib/binary-io.h [__EMX__]: Include <io.h>.
31426         Reported by Elbert Pol <e.pol@chello.nl>.
31427
31428 2008-04-12  Bruno Haible  <bruno@clisp.org>
31429
31430         * lib/fpucw.h: Enable the definitions also for x86_64.
31431         Needed for NetBSD/x86_64.
31432         Reported by Thomas Klausner <tk@giga.or.at>.
31433
31434 2008-04-12  Bruno Haible  <bruno@clisp.org>
31435
31436         * tests/test-strtod.c: Include isnand.h.
31437         (main): Use isnand instead of isnan.
31438         Reported by Jim Meyering.
31439
31440 2008-04-12  Bruno Haible  <bruno@clisp.org>
31441
31442         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
31443         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
31444
31445 2008-04-12  Jim Meyering  <meyering@redhat.com>
31446
31447         * m4/math_h.m4 (gl_MATH_H): Fix typos.
31448
31449 2008-04-12  Bruno Haible  <bruno@clisp.org>
31450
31451         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
31452         Reported by Elbert Pol <e.pol@chello.nl>.
31453
31454 2008-04-12  Eric Blake  <ebb9@byu.net>
31455
31456         Work around Solaris 10 math.h bug.
31457         * m4/math_h.m4 (gl_MATH_H): Check for bug.
31458         (gl_MATH_H_DEFAULTS): Set up default.
31459         * modules/math (Makefile.am): Replace new indicators.
31460         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
31461         * tests/test-math.c (main): Test this.
31462         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
31463         * doc/posix-headers/math.texi (math.h): Mention bug.
31464         Reported by Nelson H. F. Beebe and Jim Meyering.
31465
31466 2008-04-11  Bruno Haible  <bruno@clisp.org>
31467
31468         Adapt to future versions of Apple GCC.
31469         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
31470         Reported by Peter O'Gorman <peter@pogma.com>.
31471
31472 2008-04-11  Bruno Haible  <bruno@clisp.org>
31473
31474         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
31475
31476 2008-04-11  Bruno Haible  <bruno@clisp.org>
31477
31478         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
31479
31480         * modules/getaddrinfo-tests (Makefile.am): Define
31481         test_getaddrinfo_LDADD.
31482
31483 2008-04-11  Bruno Haible  <bruno@clisp.org>
31484
31485         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
31486         (init): Fix syntax error.
31487         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
31488         is declared.
31489
31490 2008-04-11  Bruno Haible  <bruno@clisp.org>
31491
31492         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
31493         * modules/glob (Depends-on): Add stdbool.
31494
31495 2008-04-11  Bruno Haible  <bruno@clisp.org>
31496
31497         * lib/trim.c: Include <string.h>.
31498
31499 2008-04-11  Eric Blake  <ebb9@byu.net>
31500
31501         Avoid compile failure on OS/2.
31502         * lib/regex_internal.h (internal_function): Disable optimization
31503         on OS/2 (__EMX__), where it caused compiler error.
31504         Reported by Elbert Pol.
31505
31506 2008-04-11  Bruno Haible  <bruno@clisp.org>
31507
31508         Flush the standard error stream before aborting. Needed on mingw.
31509         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
31510         * tests/test-array_list.c (ASSERT): Likewise.
31511         * tests/test-array_oset.c (ASSERT): Likewise.
31512         * tests/test-avltree_list.c (ASSERT): Likewise.
31513         * tests/test-avltree_oset.c (ASSERT): Likewise.
31514         * tests/test-avltreehash_list.c (ASSERT): Likewise.
31515         * tests/test-binary-io.c (ASSERT): Likewise.
31516         * tests/test-byteswap.c (ASSERT): Likewise.
31517         * tests/test-c-ctype.c (ASSERT): Likewise.
31518         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
31519         * tests/test-c-strcasestr.c (ASSERT): Likewise.
31520         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
31521         * tests/test-c-strstr.c (ASSERT): Likewise.
31522         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
31523         * tests/test-canonicalize.c (ASSERT): Likewise.
31524         * tests/test-carray_list.c (ASSERT): Likewise.
31525         * tests/test-ceilf1.c (ASSERT): Likewise.
31526         * tests/test-ceilf2.c (ASSERT): Likewise.
31527         * tests/test-ceill.c (ASSERT): Likewise.
31528         * tests/test-count-one-bits.c (ASSERT): Likewise.
31529         * tests/test-fbufmode.c (ASSERT): Likewise.
31530         * tests/test-fflush2.c (ASSERT): Likewise.
31531         * tests/test-floorf1.c (ASSERT): Likewise.
31532         * tests/test-floorf2.c (ASSERT): Likewise.
31533         * tests/test-floorl.c (ASSERT): Likewise.
31534         * tests/test-fopen.c (ASSERT): Likewise.
31535         * tests/test-fpending.c (ASSERT): Likewise.
31536         * tests/test-fprintf-posix.c (ASSERT): Likewise.
31537         * tests/test-fpurge.c (ASSERT): Likewise.
31538         * tests/test-freadable.c (ASSERT): Likewise.
31539         * tests/test-freadahead.c (ASSERT): Likewise.
31540         * tests/test-freading.c (ASSERT): Likewise.
31541         * tests/test-freadptr.c (ASSERT): Likewise.
31542         * tests/test-freadptr2.c (ASSERT): Likewise.
31543         * tests/test-freadseek.c (ASSERT): Likewise.
31544         * tests/test-freopen.c (ASSERT): Likewise.
31545         * tests/test-frexp.c (ASSERT): Likewise.
31546         * tests/test-frexpl.c (ASSERT): Likewise.
31547         * tests/test-fseek.c (ASSERT): Likewise.
31548         * tests/test-fseeko.c (ASSERT): Likewise.
31549         * tests/test-fstrcmp.c (ASSERT): Likewise.
31550         * tests/test-ftell.c (ASSERT): Likewise.
31551         * tests/test-ftello.c (ASSERT): Likewise.
31552         * tests/test-func.c (ASSERT): Likewise.
31553         * tests/test-fwritable.c (ASSERT): Likewise.
31554         * tests/test-fwriting.c (ASSERT): Likewise.
31555         * tests/test-getdelim.c (ASSERT): Likewise.
31556         * tests/test-getline.c (ASSERT): Likewise.
31557         * tests/test-i-ring.c (ASSERT): Likewise.
31558         * tests/test-iconv-utf.c (ASSERT): Likewise.
31559         * tests/test-iconv.c (ASSERT): Likewise.
31560         * tests/test-isfinite.c (ASSERT): Likewise.
31561         * tests/test-isnand.c (ASSERT): Likewise.
31562         * tests/test-isnanf.c (ASSERT): Likewise.
31563         * tests/test-isnanl.h (ASSERT): Likewise.
31564         * tests/test-ldexpl.c (ASSERT): Likewise.
31565         * tests/test-linked_list.c (ASSERT): Likewise.
31566         * tests/test-linkedhash_list.c (ASSERT): Likewise.
31567         * tests/test-localename.c (ASSERT): Likewise.
31568         * tests/test-lseek.c (ASSERT): Likewise.
31569         * tests/test-mbscasecmp.c (ASSERT): Likewise.
31570         * tests/test-mbscasestr1.c (ASSERT): Likewise.
31571         * tests/test-mbscasestr2.c (ASSERT): Likewise.
31572         * tests/test-mbscasestr3.c (ASSERT): Likewise.
31573         * tests/test-mbscasestr4.c (ASSERT): Likewise.
31574         * tests/test-mbschr.c (ASSERT): Likewise.
31575         * tests/test-mbscspn.c (ASSERT): Likewise.
31576         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
31577         * tests/test-mbspbrk.c (ASSERT): Likewise.
31578         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
31579         * tests/test-mbsrchr.c (ASSERT): Likewise.
31580         * tests/test-mbsspn.c (ASSERT): Likewise.
31581         * tests/test-mbsstr1.c (ASSERT): Likewise.
31582         * tests/test-mbsstr2.c (ASSERT): Likewise.
31583         * tests/test-mbsstr3.c (ASSERT): Likewise.
31584         * tests/test-memchr2.c (ASSERT): Likewise.
31585         * tests/test-memmem.c (ASSERT): Likewise.
31586         * tests/test-open.c (ASSERT): Likewise.
31587         * tests/test-printf-frexp.c (ASSERT): Likewise.
31588         * tests/test-printf-frexpl.c (ASSERT): Likewise.
31589         * tests/test-printf-posix.c (ASSERT): Likewise.
31590         * tests/test-quotearg.c (ASSERT): Likewise.
31591         * tests/test-rbtree_list.c (ASSERT): Likewise.
31592         * tests/test-rbtree_oset.c (ASSERT): Likewise.
31593         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
31594         * tests/test-round1.c (ASSERT): Likewise.
31595         * tests/test-roundf1.c (ASSERT): Likewise.
31596         * tests/test-roundl.c (ASSERT): Likewise.
31597         * tests/test-signbit.c (ASSERT): Likewise.
31598         * tests/test-sleep.c (ASSERT): Likewise.
31599         * tests/test-snprintf-posix.c (ASSERT): Likewise.
31600         * tests/test-snprintf.c (ASSERT): Likewise.
31601         * tests/test-sprintf-posix.c (ASSERT): Likewise.
31602         * tests/test-stat-time.c (ASSERT): Likewise.
31603         * tests/test-strcasestr.c (ASSERT): Likewise.
31604         * tests/test-strerror.c (ASSERT): Likewise.
31605         * tests/test-striconv.c (ASSERT): Likewise.
31606         * tests/test-striconveh.c (ASSERT): Likewise.
31607         * tests/test-striconveha.c (ASSERT): Likewise.
31608         * tests/test-strsignal.c (ASSERT): Likewise.
31609         * tests/test-strstr.c (ASSERT): Likewise.
31610         * tests/test-strtod.c (ASSERT): Likewise.
31611         * tests/test-trunc1.c (ASSERT): Likewise.
31612         * tests/test-trunc2.c (ASSERT): Likewise.
31613         * tests/test-truncf1.c (ASSERT): Likewise.
31614         * tests/test-truncf2.c (ASSERT): Likewise.
31615         * tests/test-truncl.c (ASSERT): Likewise.
31616         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
31617         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
31618         * tests/test-vasnprintf.c (ASSERT): Likewise.
31619         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
31620         * tests/test-vasprintf.c (ASSERT): Likewise.
31621         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
31622         * tests/test-vprintf-posix.c (ASSERT): Likewise.
31623         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
31624         * tests/test-vsnprintf.c (ASSERT): Likewise.
31625         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
31626         * tests/test-wcwidth.c (ASSERT): Likewise.
31627         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
31628         * tests/test-xprintf-posix.c (ASSERT): Likewise.
31629         * tests/test-xvasprintf.c (ASSERT): Likewise.
31630         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
31631         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
31632         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
31633         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
31634         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
31635         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
31636         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
31637         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
31638         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
31639         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
31640         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
31641         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
31642         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
31643         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
31644         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
31645         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
31646         * tests/unictype/test-block_list.c (ASSERT): Likewise.
31647         * tests/unictype/test-block_of.c (ASSERT): Likewise.
31648         * tests/unictype/test-block_test.c (ASSERT): Likewise.
31649         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
31650         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
31651         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
31652         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
31653         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
31654         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
31655         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
31656         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
31657         * tests/unictype/test-combining.c (ASSERT): Likewise.
31658         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
31659         * tests/unictype/test-digit.c (ASSERT): Likewise.
31660         * tests/unictype/test-mirror.c (ASSERT): Likewise.
31661         * tests/unictype/test-numeric.c (ASSERT): Likewise.
31662         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
31663         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
31664         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
31665         * tests/unictype/test-scripts.c (ASSERT): Likewise.
31666         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
31667         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
31668         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
31669         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
31670         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
31671         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
31672         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
31673         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
31674         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
31675         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
31676         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
31677         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
31678         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
31679         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
31680         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
31681         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
31682         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
31683         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
31684         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
31685         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
31686         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
31687         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
31688         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
31689         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
31690         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
31691         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
31692         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
31693         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
31694         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
31695         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
31696         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
31697         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
31698         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
31699         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
31700         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
31701         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
31702         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
31703         Reported by Eric Blake.
31704
31705 2008-04-11  Bruno Haible  <bruno@clisp.org>
31706
31707         * lib/wchar.in.h: Tweak comment.
31708
31709 2008-04-11  Bruno Haible  <bruno@clisp.org>
31710
31711         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
31712         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
31713         gl_COMMON.
31714         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
31715
31716 2008-04-11  Bruno Haible  <bruno@clisp.org>
31717
31718         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
31719
31720 2008-04-11  Simon Josefsson  <simon@josefsson.org>
31721
31722         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
31723         of attempting to use non-existing /dev/*random.  Based on patch
31724         from Adam Strzelecki <ono@java.pl> in
31725         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
31726
31727 2008-04-08  Bruno Haible  <bruno@clisp.org>
31728
31729         Add tentative support for emx+gcc.
31730         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
31731         * lib/fpurge.c (fpurge): Likewise.
31732         * lib/freadable.c (freadable): Likewise.
31733         * lib/freadahead.c (freadahead): Likewise.
31734         * lib/freading.c (freading): Likewise.
31735         * lib/freadptr.c (freadptr): Likewise.
31736         * lib/freadseek.c (freadptrinc): Likewise.
31737         * lib/fseeko.c (rpl_fseeko): Likewise.
31738         * lib/fseterr.c (fseterr): Likewise.
31739         * lib/fwritable.c (fwritable): Likewise.
31740         * lib/fwriting.c (fwriting): Likewise.
31741         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
31742
31743 2008-04-09  Eric Blake  <ebb9@byu.net>
31744
31745         Avoid some autoconf warnings.
31746         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
31747         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
31748         * m4/afs.m4 (gl_AFS): Likewise.
31749         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
31750         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
31751         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
31752         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
31753         (gl_INTEGER_TYPE_SUFFIX): Likewise.
31754         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
31755         (AC_CHECK_DECLS_ONCE): Likewise.
31756         Rename file...
31757         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
31758         gnulib-tool requires autoconf 2.59 or better.
31759         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
31760
31761 2008-04-08  Eric Blake  <ebb9@byu.net>
31762
31763         Use 'git describe --match' if present (added in git 1.5.5).
31764         * build-aux/git-version-gen: Limit result to tags that match 'v*'
31765         if possible.
31766
31767 2008-04-08  Bruno Haible  <bruno@clisp.org>
31768
31769         Add tentative support for OpenServer.
31770         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
31771         _ptr, _cnt.
31772         * lib/fpurge.c (fpurge): Likewise.
31773         * lib/freadable.c (freadable): Likewise.
31774         * lib/freadahead.c (freadahead): Likewise.
31775         * lib/freading.c (freading): Likewise.
31776         * lib/freadptr.c (freadptr): Likewise.
31777         * lib/freadseek.c (freadptrinc): Likewise.
31778         * lib/fseeko.c (rpl_fseeko): Likewise.
31779         * lib/fseterr.c (fseterr): Likewise.
31780         * lib/fwritable.c (fwritable): Likewise.
31781         * lib/fwriting.c (fwriting): Likewise.
31782         Reported by Roger Cornelius <rac@tenzing.org> and
31783         Brian K. White <brian@aljex.com>.
31784
31785 2008-04-06  Jim Meyering  <meyering@redhat.com>
31786
31787         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
31788
31789 2008-04-06  Bruno Haible  <bruno@clisp.org>
31790
31791         Avoid possible error with non-ASCII bytes in UTF-8 locales.
31792         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
31793         * tests/test-printf-posix.sh: Likewise.
31794         * tests/test-vfprintf-posix.sh: Likewise.
31795         * tests/test-vprintf-posix.sh: Likewise.
31796         * tests/test-xprintf-posix.sh: Likewise.
31797
31798 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31799
31800         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
31801         hide error from 'ls', needed on OS/2.
31802         Report by Elbert Pol <elbert.pol@gmail.com>.
31803
31804 2008-04-04  Eric Blake  <ebb9@byu.net>
31805
31806         Make test-fseeko.c failures meaningful.
31807         * tests/test-fseeko.c: Print line number on failure.
31808         * tests/test-fseek.c: Likewise.
31809         Reported by Nelson H. F. Beebe.
31810
31811         Improve strtod bug detection check.
31812         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
31813         required for Solaris 10.
31814         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
31815
31816 2008-04-04  Bruno Haible  <bruno@clisp.org>
31817
31818         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
31819         by m4/setenv.m4.
31820
31821 2008-04-03  Eric Blake  <ebb9@byu.net>
31822
31823         Ensure sane .version contents.
31824         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
31825         version string.
31826         * build-aux/git-version-gen: Improve documentation.
31827
31828         Make GNU make output nicer.
31829         * top/GNUmakefile [!_have-Makefile]: Add dependency on
31830         MAKECMDGOALS to enforce message for all command line targets.  Set
31831         srcdir for use in maint.mk.
31832
31833         Another maintainer tweak.
31834         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
31835         a target that regenerates version.
31836
31837 2008-04-03  Jim Meyering  <meyering@redhat.com>
31838
31839         vc-list-files: don't cause coreutils "make po-check" failure
31840         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
31841
31842 2008-04-03  Eric Blake  <ebb9@byu.net>
31843
31844         Allow VPATH usage of vc-list-files.
31845         * build-aux/vc-list-files (scriptversion): Add timestamp.
31846         (options): Add --help, --version, -C.
31847         (CVS): Support installed cvsu.
31848
31849 2008-04-02  Bruno Haible  <bruno@clisp.org>
31850
31851         Avoid some "statement with no effect" warnings from gcc.
31852         * tests/test-wctype.c (main): Explicitly ignore unused values.
31853         Reported by Jim Meyering.
31854
31855 2008-04-02  Jim Meyering  <meyering@redhat.com>
31856
31857         Avoid some warnings from "gcc -Wshadow".
31858         * tests/test-frexp.c (exp): Define to a different identifier.
31859         * tests/test-frexpl.c (exp): Likewise.
31860
31861 2008-04-03  Jim Meyering  <meyering@redhat.com>
31862
31863         bootstrap: remove dangling *.[ch] symlinks from lib
31864         * build-aux/bootstrap [dangling symlink removal]: Move find's
31865         -depth option to precede all others, to avoid a warning.
31866         Remove *.[ch] files too, and from "$source_base" (usually lib/).
31867
31868 2008-04-02  Bruno Haible  <bruno@clisp.org>
31869
31870         Avoid some warnings from "gcc -Wshadow".
31871         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
31872         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
31873         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
31874         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
31875         Reported by Jim Meyering.
31876
31877 2008-04-01  Bruno Haible  <bruno@clisp.org>
31878
31879         Fix test to work on IRIX 6.5 with cc.
31880         * tests/test-math.c (numeric_equal): New function.
31881         (main): Use it.
31882
31883 2008-04-01  Bruno Haible  <bruno@clisp.org>
31884
31885         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
31886
31887 2008-04-01  Bruno Haible  <bruno@clisp.org>
31888
31889         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
31890         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
31891         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
31892         (Depends-on): Remove math.
31893
31894         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
31895         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
31896         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
31897         (Depends-on): Remove math.
31898
31899         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
31900         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
31901         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
31902         (Depends-on): Remove math.
31903         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
31904         (Depends-on): Remove math.
31905
31906         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
31907         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
31908         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
31909         (Depends-on): Remove math.
31910         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
31911         (Depends-on): Remove math.
31912
31913         * tests/test-round1.c: Include nan.h.
31914         (main): Use NaNd instead of NAN.
31915         * modules/round-tests (Files): Add tests/nan.h.
31916
31917         * tests/test-trunc1.c: Include nan.h.
31918         (main): Use NaNd instead of NAN.
31919         * modules/trunc-tests (Files): Add tests/nan.h.
31920
31921         * tests/test-roundf1.c: Include nan.h.
31922         (main): Use NaNf instead of NAN.
31923         * modules/roundf-tests (Files): Add tests/nan.h.
31924
31925         * tests/test-truncf1.c: Include nan.h.
31926         (main): Use NaNf instead of NAN.
31927         * modules/truncf-tests (Files): Add tests/nan.h.
31928
31929         * tests/test-ceilf1.c: Include nan.h.
31930         (main): Use NaNf instead of NAN.
31931         * modules/ceilf-tests (Files): Add tests/nan.h.
31932
31933         * tests/test-floorf1.c: Include nan.h.
31934         (main): Use NaNf instead of NAN.
31935         * modules/floorf-tests (Files): Add tests/nan.h.
31936
31937         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
31938         (main): Use NaNf instead of NAN.
31939         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
31940
31941         * tests/test-isnand.c: Include nan.h instead of <math.h>.
31942         (main): Use NaNd instead of NAN.
31943         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
31944
31945         * tests/test-frexp.c: Include nan.h.
31946         (main): Use NaNd instead of NAN.
31947         * modules/frexp-tests (Files): Add tests/nan.h.
31948
31949         * lib/isnan.c: Don't include <math.h>.
31950         (FUNC): Don't use NAN macro.
31951         * modules/isnand-nolibm (Depends-on): Remove math.
31952         * modules/isnanf-nolibm (Depends-on): Remove math.
31953         * modules/isnanl (Depends-on): Remove math.
31954         * modules/isnanl-nolibm (Depends-on): Remove math.
31955
31956         * tests/nan.h: New file.
31957
31958 2008-04-01  Eric Blake  <ebb9@byu.net>
31959
31960         Fix typos.
31961         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
31962         values to be the right type.
31963
31964         For now, cater to gnulib strtod inaccuracies.
31965         * tests/test-strtod.c (main): Allow 1-ulp error on expected
31966         fractional results.  While not as nice from a QoI perspective, it
31967         is a quicker patch than correctly implementing decimal to binary
31968         rounding.
31969
31970 2008-03-31  Eric Blake  <ebb9@byu.net>
31971
31972         Guarantee a definition of NAN.
31973         * lib/math.in.h (NAN): Define if missing.
31974         * tests/test-math.c (main): Test it.
31975         * doc/posix-headers/math.texi (math.h): Document this.
31976         * lib/isnan.c (rpl_isnand): Use it.
31977         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
31978         * tests/test-floorf1.c (NaN): Likewise.
31979         * tests/test-frexp.c (NaN): Likewise.
31980         * tests/test-isnand.c (NaN): Likewise.
31981         * tests/test-isnanf.c (NaN): Likewise.
31982         * tests/test-round1.c (NaN): Likewise.
31983         * tests/test-roundf1.c (NaN): Likewise.
31984         * tests/test-snprintf-posix.h (NaN): Likewise.
31985         * tests/test-sprintf-posix.h (NaN): Likewise.
31986         * tests/test-trunc1.c (NaN): Likewise.
31987         * tests/test-truncf1.c (NaN): Likewise.
31988         * tests/test-vasnprintf-posix.c (NaN): Likewise.
31989         * tests/test-vasprintf-posix.c (NaN): Likewise.
31990         * modules/isnand-nolibm (Depends-on): Add math.
31991         * modules/isnanf-nolibm (Depends-on): Likewise.
31992         * modules/isnanl (Depends-on): Likewise.
31993         * modules/isnanl-nolibm (Depends-on): Likewise.
31994         * modules/snprintf-posix-tests (Depends-on): Likewise.
31995         * modules/sprintf-posix-tests (Depends-on): Likewise.
31996         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
31997         * modules/vsprintf-posix-tests (Depends-on): Likewise.
31998         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
31999         * modules/vasprintf-posix-tests (Depends-on): Likewise.
32000
32001 2008-03-31  Bruno Haible  <bruno@clisp.org>
32002
32003         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
32004         * doc/posix-functions/strtod.texi: Likewise.
32005
32006 2008-03-31  Bruno Haible  <bruno@clisp.org>
32007
32008         * tests/test-strtod.c (main): Don't use C99 syntax.
32009
32010 2008-03-31  Bruno Haible  <bruno@clisp.org>
32011
32012         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
32013         Reported by Eric Blake.
32014
32015 2008-03-31  Jim Meyering  <meyering@redhat.com>
32016
32017         Don't compare actual signbit return values.
32018         * tests/test-strtod.c (main): Rather, compare only their
32019         zero/non-zero nature.
32020
32021 2008-03-31  Eric Blake  <ebb9@byu.net>
32022
32023         More strtod documentation.
32024         * doc/posix-functions/strtod.texi (strtod): Interpret more test
32025         failures as distinct bugs.
32026
32027 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
32028
32029         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
32030         Problem reported by Erik Benada in
32031         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
32032
32033 2008-03-30  Bruno Haible  <bruno@clisp.org>
32034
32035         * tests/test-strtod.c: Add comments about which assertion fails on which
32036         platform.
32037         * doc/posix-functions/strtod.texi: Add info about many more platforms.
32038
32039 2008-03-30  Eric Blake  <ebb9@byu.net>
32040
32041         Test signbit behavior on zeros.
32042         * tests/test-signbit.c (test_signbitf): Add tests for zero.
32043         (test_signbitd, test_signbitl): Likewise.
32044
32045         More strtod touchups.
32046         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
32047         sign of negative underflow, for now.  Use .5, not .1.
32048         * doc/posix-functions/strtod.texi (strtod): Mention these
32049         limitations.
32050         Reported by Jim Meyering.
32051
32052 2008-03-30  Bruno Haible  <bruno@clisp.org>
32053
32054         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
32055         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
32056
32057 2008-03-30  Bruno Haible  <bruno@clisp.org>
32058
32059         Avoid failure when attempting to return empty iconv results on some
32060         platforms.
32061         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
32062         allocation, don't report ENOMEM when the resulting string is empty.
32063
32064 2008-03-30  Bruno Haible  <bruno@clisp.org>
32065
32066         Fix buffer overrun.
32067         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
32068         Don't consider the width for tmp_length. Check count against tmp_length
32069         before doing the padding. Ensure enough allocation during padding.
32070
32071 2008-03-30  Eric Blake  <ebb9@byu.net>
32072
32073         strtod touchups.
32074         * lib/strtod.c (strtod): Avoid compiler warnings.
32075         Reported by Jim Meyering.
32076
32077 2008-03-30  Bruno Haible  <bruno@clisp.org>
32078
32079         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
32080         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
32081         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
32082         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
32083         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
32084         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
32085         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
32086         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
32087
32088         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
32089         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
32090         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
32091         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
32092         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
32093         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
32094         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
32095         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
32096
32097         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
32098         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
32099         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
32100         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
32101         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
32102         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
32103         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
32104         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
32105
32106         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
32107         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
32108
32109         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
32110         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
32111
32112         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
32113         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
32114
32115         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
32116         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
32117         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
32118
32119         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
32120         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
32121         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
32122
32123         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
32124         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
32125         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
32126
32127         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
32128         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
32129         * modules/vasprintf (Depends-on): Add EOVERFLOW.
32130
32131         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
32132         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
32133         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
32134         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
32135         (Depends-on): Add EOVERFLOW.
32136         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
32137         (Depends-on): Add EOVERFLOW.
32138         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
32139         (Depends-on): Add EOVERFLOW.
32140         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
32141         (Depends-on): Add EOVERFLOW.
32142         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
32143         (Depends-on): Add EOVERFLOW.
32144         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
32145         (Depends-on): Add EOVERFLOW.
32146         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
32147         (Depends-on): Add EOVERFLOW.
32148         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
32149         (Depends-on): Add EOVERFLOW.
32150
32151         * lib/sprintf.c (EOVERFLOW): Remove fallback.
32152         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
32153         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
32154
32155         * lib/snprintf.c (EOVERFLOW): Remove fallback.
32156         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
32157         * modules/snprintf (Depends-on): Add EOVERFLOW.
32158
32159         * lib/poll.c (EOVERFLOW): Remove fallback.
32160         * modules/poll (Depends-on): Add EOVERFLOW.
32161
32162         * lib/getugroups.c (EOVERFLOW): Remove fallback.
32163         * modules/getugroups (Depends-on): Add EOVERFLOW.
32164
32165         * lib/getdelim.c (EOVERFLOW): Remove fallback.
32166         * modules/getdelim (Depends-on): Add EOVERFLOW.
32167
32168         * lib/ftell.c (EOVERFLOW): Remove fallback.
32169         * modules/ftell (Depends-on): Add EOVERFLOW.
32170
32171         * lib/fprintf.c (EOVERFLOW): Remove fallback.
32172         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
32173         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
32174
32175         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
32176
32177         * modules/EOVERFLOW-tests: New file.
32178         * tests/test-EOVERFLOW.c: New file.
32179
32180         * modules/EOVERFLOW: New file.
32181         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
32182
32183 2008-03-30  Bruno Haible  <bruno@clisp.org>
32184
32185         Fix bug introduced on 2007-06-10.
32186         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
32187         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
32188
32189 2008-03-30  Bruno Haible  <bruno@clisp.org>
32190
32191         Improve freadseek's efficiency after ungetc.
32192         * lib/freadseek.c: Include freadahead.h.
32193         (freadptrinc): New function, extracted from freadseek.
32194         (freadseek): Use it in a loop. Use freadahead to determine the number
32195         of loop iterations.
32196         * modules/freadseek (Depends-on): Add freadahead.
32197         (configure.ac): Require AC_C_INLINE.
32198
32199 2008-03-30  Bruno Haible  <bruno@clisp.org>
32200
32201         * lib/freadseek.c (freadseek): Don't ignore the return value of
32202         freadptr.
32203
32204 2008-03-29  Eric Blake  <ebb9@byu.net>
32205
32206         Add hex float support.
32207         * modules/strtod (Depends-on): Add c-ctype.
32208         (Link): Mention POW_LIB.
32209         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
32210         whitespace between 'e' and exponent.
32211         * tests/test-strtod.c (main): Enable hex float tests.
32212         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
32213         now provides.
32214
32215         Document various strtod bugs, with some fixes.
32216         * doc/posix-functions/strtod.texi (strtod): Document bugs with
32217         "-0x", "inf", "nan", and hex constants.
32218         * doc/posix-functions/atof.texi (atof): Likewise.
32219         * modules/stdlib (Makefile.am): Support strtod.
32220         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
32221         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
32222         detect additional strtod bugs.
32223         * lib/stdlib.in.h (rpl_strtod): Add declarations.
32224         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
32225         bool where appropriate.  Parse 'inf' and 'nan'.
32226         * tests/test-strtod.c: New file.
32227         * modules/strtod (Depends-on): Add stdbool, stdlib.
32228         (configure.ac): Turn on module indicator.
32229         * modules/strtod-tests: New module.
32230
32231 2008-03-29  Eric Blake  <ebb9@byu.net>
32232
32233         Fix ftell on mingw.
32234         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
32235         * modules/ftell-tests (Depends-on): Add binary-io.
32236         * modules/ftello-tests (Depends-on): Likewise.
32237         * tests/test-ftell.c (main): Enhance test to cover behavior after
32238         ungetc.  Enforce binary mode.
32239         * tests/test-ftello.c (main): Likewise.
32240
32241         Pass test-freadseek on cygwin.
32242         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
32243         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
32244         ungetc buffer.
32245
32246         * tests/test-fflush2.c (main): Fix typo.
32247
32248 2008-03-29  Bruno Haible  <bruno@clisp.org>
32249
32250         * tests/test-fflush2.c (main): Temporarily disable the contents of
32251         this test.
32252         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
32253         Reported by Eric Blake.
32254
32255 2008-03-28  Simon Josefsson  <simon@josefsson.org>
32256
32257         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
32258         (GC_SHA224_DIGEST_SIZE): Add.
32259
32260         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
32261         (gc_hash_digest_length): Likewise.
32262         (gc_hash_buffer): Likewise.
32263
32264 2008-03-25  Bruno Haible  <bruno@clisp.org>
32265
32266         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
32267         detail which gettext release to use.
32268         Reported by Simon Josefsson.
32269
32270 2008-03-26  Jim Meyering  <meyering@redhat.com>
32271
32272         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
32273         * modules/gnumakefile (clean-GNUmakefile): Also, use
32274         test ... && ... || : syntax rather than if-then ... fi.
32275
32276         gnumakefile: Don't double-quote-expand $(VPATH) value.
32277         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
32278
32279 2008-03-24  Eric Blake  <ebb9@byu.net>
32280
32281         Alter GNUmakefile to install into top directory.
32282         * modules/maintainer-makefile: Split, and add dependency...
32283         * modules/gnumakefile: to this new module.
32284         * build-aux/GNUmakefile: Move...
32285         * top/GNUmakefile: ...here.
32286         * build-aux/maint.mk: Move...
32287         * top/maint.mk: ...here.
32288         * MODULES.html.sh (Support for maintaining...): Document new
32289         module.
32290
32291 2008-03-23  Bruno Haible  <bruno@clisp.org>
32292
32293         * gnulib-tool: New options --vc-files, --no-vc-files.
32294         (func_usage): Document them.
32295         (vc_files): New variable.
32296         (func_import): Consider vc_files.
32297         (func_create_testdir): Set vc_files to empty.
32298         Suggested by Jim Meyering and Karl Berry.
32299
32300 2008-03-23  Bruno Haible  <bruno@clisp.org>
32301
32302         Fix regex compilation error on HP-UX 11.
32303         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
32304         * modules/regex (Files): Add m4/mbstate_t.m4.
32305         Reported by Ton Voon <ton.voon@altinity.com>.
32306
32307 2008-03-23  Bruno Haible  <bruno@clisp.org>
32308
32309         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
32310
32311 2008-03-23  Eric Blake  <ebb9@byu.net>
32312             Bruno Haible  <bruno@clisp.org>
32313
32314         Install files from top/ in the destination directory.
32315         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
32316         augmentation also for the files from top/.
32317         (func_import, func_create_testdir): Rewrite file names:
32318         top/filename -> filename.
32319
32320 2008-03-23  Bruno Haible  <bruno@clisp.org>
32321
32322         Tweak "gnulib --version" output.
32323         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
32324
32325 2008-03-23  Bruno Haible  <bruno@clisp.org>
32326
32327         Tweak "gnulib --version" output.
32328         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
32329         rather than contents of ChangeLog, when possible.
32330
32331 2008-03-21  Eric Blake  <ebb9@byu.net>
32332
32333         More --version tweaks.
32334         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
32335         date of last ChangeLog entry.
32336
32337 2008-03-21  Jim Meyering  <meyering@redhat.com>
32338
32339         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
32340
32341 2008-03-20  Eric Blake  <ebb9@byu.net>
32342
32343         VPATH fix.
32344         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
32345
32346 2008-03-20  Simon Josefsson  <simon@josefsson.org>
32347
32348         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
32349         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
32350
32351 2008-03-20  Eric Blake  <ebb9@byu.net>
32352
32353         Sync GNUmakefile with coreutils.
32354         * build-aux/GNUmakefile (have-Makefile): Rename...
32355         (_have-Makefile): ...to this, for namespace consideration.
32356         (GNUmakefile.cfg): Include, if present.
32357         (_autoreconf): Define a default.
32358         (_is-dist-target): New rule for rebuilds to pick up intra-release
32359         version.
32360         (maint-cfg.mk): Rename...
32361         (cfg.mk): ...to this.
32362
32363 2008-03-18  Jim Meyering  <meyering@redhat.com>
32364
32365         New script and module: mktempd
32366         * MODULES.html.sh (maint+release support): Add mktempd.
32367         * build-aux/mktempd: New file.
32368         * modules/mktempd: New file.
32369
32370 2008-03-15  Jim Meyering  <meyering@redhat.com>
32371
32372         Undo last change.
32373         * lib/sha1.c, lib/md5.c: 63 != ~63.
32374         Reported by Andreas Schwab.
32375
32376         sha1.c, md5.c: Hoist a redundant expression.
32377         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
32378         "ctx->buflen" only once, before calling *_process_block.
32379         * lib/md5.c (md5_process_bytes): Likewise.
32380
32381 2008-03-14  Eric Blake  <ebb9@byu.net>
32382
32383         Bump copyright year in files generated by gnulib-tool.
32384         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
32385         gnulib-tool, rather than hard-coding it.
32386
32387         Fix 'gnulib-tool --version' output to work with git.
32388         * gnulib-tool (func_gnulib_dir): New function, extracted from...
32389         (startup): ...here.
32390         (func_version): Use it to invoke git-version-gen, rather than
32391         relying on CVS keyword expansion.  Modernize wording.
32392         (cvsdatestamp, last_checkin_date, version): Kill unused
32393         variables.
32394
32395 2008-03-12  Jim Meyering  <meyering@redhat.com>
32396
32397         Recognize optional cast of the argument to free.
32398         * build-aux/useless-if-before-free: Update regexps.
32399
32400         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
32401
32402 2008-03-11  Bruno Haible  <bruno@clisp.org>
32403
32404         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
32405         by a single package.
32406         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
32407         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
32408         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
32409         Reported by Sam Steingold <sds@gnu.org>.
32410
32411 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
32412
32413         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
32414         repositories.
32415
32416 2008-03-11  Bruno Haible  <bruno@clisp.org>
32417
32418         Avoid conflicts between local macro definitions.
32419         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
32420         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
32421
32422 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
32423             Bruno Haible  <bruno@clisp.org>
32424
32425         Make va_copy work with some version of xlc on AIX 5.1.
32426         * lib/stdarg.in.h: New file.
32427         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
32428         On AIX, use a <stdarg.h> file substitute.
32429         * modules/stdarg (Files): Add lib/stdarg.in.h.
32430         (Depends-on): Add include_next.
32431         (Makefile.am): Build a stdarg.h substitute if requested.
32432         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
32433
32434 2008-03-10  Bruno Haible  <bruno@clisp.org>
32435
32436         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
32437         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
32438         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
32439
32440 2008-03-10  Bruno Haible  <bruno@clisp.org>
32441
32442         * modules/stdlib (Depends-on): Add include_next, remove
32443         absolute-header.
32444
32445 2008-03-09  Bruno Haible  <bruno@clisp.org>
32446
32447         * lib/freadahead.h (freadahead): Document more precisely.
32448         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
32449         the sum of both buffer sizes.
32450         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
32451         * NEWS: Document the change.
32452
32453 2008-03-09  Bruno Haible  <bruno@clisp.org>
32454
32455         Extend freadptr to return also the buffer size.
32456         * lib/freadptr.h (freadptr): Add sizep argument.
32457         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
32458         (freadptr): Add sizep argument. Determine buffer size like freadahead
32459         does.
32460         * tests/test-freadptr.c: Don't include freadahead.h.
32461         (main): Adapt for new calling convention of freadptr.
32462         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
32463         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
32464         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
32465         tests/test-freadptr2.sh.
32466         (Depends): Remove freadahead.
32467         (TESTS): Add test-freadptr2.sh.
32468         (check_PROGRAMS): Add test-freadptr2.
32469
32470 2008-03-09  Bruno Haible  <bruno@clisp.org>
32471
32472         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
32473         Report and solution by Simon Josefsson.
32474
32475 2008-03-06  Bruno Haible  <bruno@clisp.org>
32476
32477         Make fflush after ungetc work on BSD platforms.
32478         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
32479         * tests/test-fflush2.c: New file.
32480         * tests/test-fflush2.sh: New file.
32481         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
32482         tests/test-fflush2.c.
32483         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
32484         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
32485
32486 2008-03-06  Eric Blake  <ebb9@byu.net>
32487
32488         Likewise for ftello.
32489         * modules/ftello (Dependencies): Add extensions.
32490         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
32491
32492 2008-03-06  Bruno Haible  <bruno@clisp.org>
32493
32494         * modules/fseeko (Dependencies): Add extensions.
32495         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
32496         Needed on glibc systems.
32497
32498 2008-03-06  Bruno Haible  <bruno@clisp.org>
32499
32500         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
32501         email address.
32502         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
32503
32504 2008-03-06  Bruno Haible  <bruno@clisp.org>
32505
32506         * users.txt: Add libgnupdf.
32507
32508 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
32509
32510         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
32511         (Header File Substitutes, Function Substitutes,
32512         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
32513         (Build robot for gnulib): Fix typo.
32514
32515 2008-03-06  Bruno Haible  <bruno@clisp.org>
32516
32517         * doc/gnulib-tool.texi (VCS Issues): Small updates.
32518         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
32519
32520 2008-03-06  Bruno Haible  <bruno@clisp.org>
32521
32522         * doc/func.texi: New file, extracted from doc/gnulib.texi.
32523         * doc/gnulib.texi: Include it.
32524
32525 2008-03-06  Simon Josefsson  <simon@josefsson.org>
32526
32527         * modules/func (License): Change license to unlimited; there was
32528         no LGPL parts in the module anyway.
32529
32530 2008-03-06  Simon Josefsson  <simon@josefsson.org>
32531
32532         * modules/__func__: Renamed to modules/func.
32533         * modules/__func__-tests: Renamed to modules/func-tests.
32534         * tests/test-__func__.c: Renamed to tests/test-func.c.
32535         * m4/__func__.m4: Renamed to m4/func.m4.
32536         * doc/gnulib.texi (__func__): Section renamed to func.
32537         Suggested by Eric Blake <ebb9@byu.net>.
32538
32539 2008-03-06  Simon Josefsson  <simon@josefsson.org>
32540
32541         * doc/gnulib.texi (__func__): Use C99 terminology when talking
32542         about __func__.  Make example self-contained.  Suggested by Eric
32543         Blake <ebb9@byu.net>.
32544
32545         * tests/test-__func__.c (main): Avoid extraneous () around __func.
32546         Suggested by Eric Blake <ebb9@byu.net>.
32547
32548 2008-03-06  Simon Josefsson  <simon@josefsson.org>
32549
32550         * modules/__func__: New file.
32551         * modules/__func__-tests: New file.
32552         * tests/test-__func__.c: New file.
32553         * m4/__func__.m4: New file.
32554         * doc/gnulib.texi (__func__): Document __func__ module.
32555
32556 2008-03-05  Simon Josefsson  <simon@josefsson.org>
32557
32558         * modules/byteswap (License): Re-license as LGPLv2+.
32559
32560 2008-03-05  Simon Josefsson  <simon@josefsson.org>
32561
32562         * doc/Makefile: Add pdf target.
32563
32564 2008-03-05  Simon Josefsson  <simon@josefsson.org>
32565
32566         * modules/inline (License): Use 'unlimited', since there are only
32567         *.m4 files in this module.
32568
32569 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
32570             Bruno Haible  <bruno@clisp.org>
32571
32572         Add support for HP C 7.1 on OpenVMS 8.3.
32573         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
32574
32575 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
32576
32577         Update VMS specifics.
32578         * lib/getopt.c [VMS]: Remove include of unixlib.h.
32579
32580 2008-03-02  Jim Meyering  <meyering@redhat.com>
32581
32582         Remove the last dependency on the "free" module.
32583         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
32584         Reported by Bob Proulx.
32585
32586         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
32587
32588         Remove useless "if" tests before free.  Deprecate "free" module.
32589         * doc/posix-functions/free.texi: Mention that this
32590         module is no longer useful.
32591         * modules/free (Notice): Say this module is obsolete.
32592         * modules/readutmp (Depends-on): Remove free.
32593         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
32594         * lib/putenv.c (putenv): Likewise.
32595         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
32596         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
32597         * tests/test-c-strcasestr.c (main): Likewise.
32598         * tests/test-c-strstr.c (main): Likewise.
32599         * tests/test-mbscasestr1.c (main): Likewise.
32600         * tests/test-mbscasestr2.c (main): Likewise.
32601         * tests/test-mbsstr1.c (main): Likewise.
32602         * tests/test-mbsstr2.c (main): Likewise.
32603         * tests/test-memmem.c (main): Likewise.
32604         * tests/test-strcasestr.c (main): Likewise.
32605         * tests/test-striconv.c (main): Likewise.
32606         * tests/test-striconveh.c (main): Likewise.
32607         * tests/test-striconveha.c (main): Likewise.
32608         * tests/test-strstr.c (main): Likewise.
32609
32610         * build-aux/git-version-gen: Adjust a comment and the Usage string.
32611
32612         bootstrap: sync from coreutils again
32613         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
32614
32615 2008-03-01  Jim Meyering  <meyering@redhat.com>
32616
32617         bootstrap: sync from coreutils
32618         * build-aux/bootstrap (update_po_files): Copy a .po file into place
32619         also when the target doesn't exist.
32620
32621 2008-03-01  Eric Blake  <ebb9@byu.net>
32622
32623         Fix bugs in last patch.
32624         * lib/memchr2.c (memchr2): Fix typo.
32625         * tests/test-memchr2.c: Test previous bug, and don't use GNU
32626         extension.
32627         Reported by Bruce Korb.
32628
32629         New module 'memchr2'.
32630         * modules/memchr2: New file.
32631         * modules/memchr2-tests: Likewise.
32632         * lib/memchr2.h: Likewise.
32633         * lib/memchr2.c: Likewise, based on memchr.c.
32634         * tests/test-memchr2.c: New test.
32635         * MODULES.html.sh (String handling): Add memchr2.
32636
32637 2008-02-29  Bruno Haible  <bruno@clisp.org>
32638
32639         * modules/freadseek-tests: New file.
32640         * tests/test-freadseek.sh: New file.
32641         * tests/test-freadseek.c: New file.
32642
32643         New module 'freadseek'.
32644         * modules/freadseek: New file.
32645         * lib/freadseek.h: New file.
32646         * lib/freadseek.c: New file.
32647         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
32648
32649 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
32650
32651         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
32652         wydawca.
32653
32654         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
32655         program_invocation_name and program_invocation_short_name are
32656         present.
32657
32658 2008-02-28  Bruno Haible  <bruno@clisp.org>
32659
32660         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
32661         * tests/test-freadptr.sh: Also test non-seekable stdin.
32662
32663 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
32664
32665         * build-aux/bootstrap (source_base, m4_base)
32666         (doc_base, tests_base): New variables.
32667         (gnulib_tool_options): Do not hardcode base directories, use
32668         the above variables instead.
32669
32670 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
32671
32672         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
32673
32674 2008-02-28  Bruno Haible  <bruno@clisp.org>
32675
32676         * modules/freadptr-tests: New file.
32677         * tests/test-freadptr.sh: New file.
32678         * tests/test-freadptr.c: New file.
32679
32680         New module 'freadptr'.
32681         * modules/freadptr: New file.
32682         * lib/freadptr.h: New file.
32683         * lib/freadptr.c: New file.
32684         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
32685
32686 2008-02-26  Karl Berry  <karl@freefriends.org>
32687
32688         Sync from Libtool:
32689         * libltdl/argz.c (argz_add, argz_count): New functions.
32690         * libltdl/argz.in.h: Declare them.
32691         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
32692
32693 2008-02-22  Bruno Haible  <bruno@clisp.org>
32694
32695         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
32696         is a pointer type.  Needed for HP-UX 10.
32697         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
32698         * doc/posix-functions/gmtime_r.texi: Likewise.
32699         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
32700
32701 2008-02-24  Bruno Haible  <bruno@clisp.org>
32702
32703         * modules/environ-tests: New file.
32704         * tests/test-environ.c: New file.
32705
32706         New module 'environ'.
32707         * modules/environ: New file.
32708         * lib/unistd.in.h (environ): New declaration.
32709         * m4/environ.m4: New file.
32710         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
32711         after use.
32712         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
32713         HAVE_DECL_ENVIRON.
32714         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
32715         HAVE_DECL_ENVIRON.
32716         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
32717         wrong claim that 'environ' is missing on some systems.
32718         * modules/execute (Depends-on): Add environ.
32719         * lib/execute.c (environ): Remove fallback declaration.
32720         * modules/pipe (Depends-on): Add environ.
32721         * lib/pipe.c (environ): Remove fallback declaration.
32722         * modules/setenv (Depends-on): Add environ.
32723         * lib/setenv.c (environ): Remove fallback declaration.
32724         * modules/unsetenv (Depends-on): Add environ.
32725         * lib/unsetenv.c (environ): Remove fallback declaration.
32726         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
32727         m4/environ.m4.
32728         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
32729         (gl_PREREQ_UNSETENV): Likewise.
32730
32731 2008-02-24  Bruno Haible  <bruno@clisp.org>
32732
32733         * doc/posix-functions/environ.texi: Document the MacOS X problem.
32734
32735 2008-02-20  Bob Proulx  <bob@proulx.com>
32736
32737         Enable use of older two part flavor 'git describe'.
32738         * build-aux/git-version-gen: If using the older two part flavor of
32739         git version then recreate the third part now present in the
32740         newer three part flavor of git describe.
32741
32742 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
32743
32744         * lib/fts.c (fts_build): Typo correction to comment.
32745
32746 2008-02-17  Bruno Haible  <bruno@clisp.org>
32747
32748         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
32749         generating no-op conflicts.
32750
32751 2008-02-17  Bruno Haible  <bruno@clisp.org>
32752
32753         Speed up by 10%.
32754         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
32755         result_entries, rather than an index-based loop.
32756
32757 2008-02-17  Bruno Haible  <bruno@clisp.org>
32758
32759         Speed up by 25%.
32760         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
32761         'hashcode_cached'.
32762         (entry_create): New function.
32763         (entry_hashcode): Use the cached hashcode if possible.
32764         (read_changelog_file, try_split_merged_entry): Use entry_create.
32765
32766 2008-02-17  Bruno Haible  <bruno@clisp.org>
32767
32768         Speed up from O(n^2) to O(n) for long ChangeLog files.
32769         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
32770         (read_changelog_file): Change implementation of entries_reversed list
32771         to rbtreehash.
32772         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
32773
32774 2008-02-17  Bruno Haible  <bruno@clisp.org>
32775
32776         New option --split-merged-entry.
32777         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
32778         (find_paragraph_end, try_split_merged_entry): New functions.
32779         (long_options): Add option --split-merged-entry.
32780         (usage): Document option --split-merged-entry.
32781         (main): Implement option --split-merged-entry.
32782         Reported by Eric Blake.
32783
32784 2008-02-17  Bruno Haible  <bruno@clisp.org>
32785
32786         * lib/git-merge-changelog.c: Include c-strstr.h.
32787         (main): Support the "git pull --rebase" situation.
32788         * modules/git-merge-changelog (Depends-on): Add c-strstr.
32789         Reported by Eric Blake.
32790
32791 2008-02-16  Eric Blake  <ebb9@byu.net>
32792
32793         Avoid doubling \ in common case of "c-maybe" quoting style.
32794         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
32795         eliding outer quotes.
32796         * lib/quotearg.h: Document this.
32797         * tests/test-quotearg.c (result_strings, inputs, results_g)
32798         (flag_results, locale_results): Test it by adding a new string to
32799         each test group.
32800         (compare_strings): Test new string.
32801
32802 2008-02-13  Eric Blake  <ebb9@byu.net>
32803
32804         Avoid trigraph quoting in default output.
32805         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
32806         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
32807         unless explicitly requested.
32808         * tests/test-quotearg.c (flag_results, main): Add additional tests.
32809
32810 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
32811
32812         Don't rely on signed integer overflowing to negative value.
32813         * lib/getugroups.c (getugroups): Include <limits.h>.
32814         Instead, compare against INT_MAX, and increment only if the test passes.
32815
32816 2008-02-13  Jim Meyering  <meyering@redhat.com>
32817         and Eric Blake  <ebb9@byu.net>
32818
32819         Avoid shadowing warning and compile errors on Linux.
32820         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
32821         forwarding macros on Linux.
32822         (dcgettext): Define a stub, for Linux.
32823         (results_g, main): Avoid warnings.
32824
32825 2008-02-12  Eric Blake  <ebb9@byu.net>
32826
32827         Silence warning in last patch.
32828         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
32829
32830         Quotearg part 4: add tests, fix c-maybe colon quoting.
32831         * lib/quotearg.h: Improve documentation.
32832         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
32833         escapes when adding outer quotes.  When quoting trigraphs, use
32834         valid C notation.  When quoting NUL, omit extra characters if next
32835         character is not digit.  Alter prototype.
32836         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
32837         callers.
32838         * modules/quotearg-tests: New module.
32839         * tests/test-quotearg.c: New test.
32840
32841 2008-02-07  Eric Blake  <ebb9@byu.net>
32842
32843         Quotearg part 3: add flag to control outer quote elision.
32844         * lib/quotearg.h (c_maybe_quoting_style): New style.
32845         (enum quoting_flags): Better documentation of flags.
32846         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
32847         c-maybe style.
32848         (quotearg_buffer_restyled): Handle new flag to elide outer
32849         quotes.
32850
32851         Quotearg part 2: add flag that can control NUL elision.
32852         * lib/quotearg.h (set_quoting_flags): New prototype.
32853         * lib/quotearg.c (struct quoting_options): Add flag field.
32854         (set_quoting_flags): New function.
32855         (quotearg_buffer_restyled): Add flags parameter.
32856         (quotearg_alloc_mem): Set the flag if length cannot be returned.
32857         (quotearg_n_options): Set the flag, since length cannot be
32858         returned.
32859         (quoting_options_from_style): Default flags correctly.
32860
32861         Quotearg part 1: more wrappers, restore quotearg_char state.
32862         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
32863         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
32864         (quotearg_colon_mem): New wrappers.
32865         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
32866         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
32867         functions.
32868         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
32869         (quotearg_colon_mem): New functions.
32870
32871 2008-02-11  Bruno Haible  <bruno@clisp.org>
32872
32873         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
32874         library in the current directory: it does not work with parallel make.
32875         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
32876
32877 2008-02-11  Bruno Haible  <bruno@clisp.org>
32878
32879         * .gitattributes: New file.
32880
32881 2008-02-11  Jim Meyering  <meyering@redhat.com>
32882
32883         useless-if-before-free: Fix reversed exit values.
32884         * build-aux/useless-if-before-free: Use correct values
32885         for EXIT_MATCH and EXIT_NO_MATCH.
32886
32887         * build-aux/useless-if-before-free: Close stdout carefully.
32888
32889 2008-02-10  Bruno Haible  <bruno@clisp.org>
32890
32891         New module 'git-merge-changelog'.
32892         * modules/git-merge-changelog: New file.
32893         * lib/git-merge-changelog.c: New file.
32894
32895 2008-02-10  Jim Meyering  <meyering@redhat.com>
32896
32897         useless-if-before-free: New option: --list (-l).
32898
32899         useless-if-before-free: Don't exit immediately upon open failure.
32900         * build-aux/useless-if-before-free: Exit 2 for errors.
32901         Upon failure to open a file, don't exit immediately.
32902         Rather, just warn and continue with any remaining files.
32903
32904 2008-02-10  Bruno Haible  <bruno@clisp.org>
32905
32906         New abstract list operation 'node_set_value'.
32907         * lib/gl_list.h (gl_list_node_set_value): New function.
32908         (struct gl_list_implementation): New field node_set_value.
32909         * lib/gl_list.c (gl_list_node_set_value): New function.
32910         * lib/gl_array_list.c (gl_array_node_set_value): New function.
32911         (gl_array_list_implementation): Update.
32912         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
32913         (gl_carray_list_implementation): Update.
32914         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
32915         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
32916         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
32917         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
32918         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
32919         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
32920         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
32921         Update.
32922         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
32923         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
32924         (gl_sublist_list_implementation): Update.
32925
32926 2008-02-10  Bruno Haible  <bruno@clisp.org>
32927
32928         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
32929         Needed when ELEMENT is #defined to 'some_type *'.
32930
32931 2008-02-10  Jim Meyering  <meyering@redhat.com>
32932
32933         New script and module: useless-if-before-free
32934         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
32935         * build-aux/useless-if-before-free: New file.
32936         * modules/useless-if-before-free: New file.
32937
32938         * build-aux/gitlog-to-changelog: Use committer date, not author date.
32939
32940         xstrtol_error: Fix typo.
32941         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
32942         s/exit_failure/exit_status/.
32943
32944 2008-02-09  Jim Meyering  <meyering@redhat.com>
32945
32946         New script and module: gitlog-to-changelog
32947         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
32948         * modules/gitlog-to-changelog: New file.
32949         * build-aux/gitlog-to-changelog: New file.
32950
32951 2008-02-08  Jim Meyering  <meyering@redhat.com>
32952
32953         Avoid two "parameter unused" warnings.
32954         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
32955         Mark "st" as used.
32956
32957         Use "git COMMAND", not "git-COMMAND".
32958         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
32959         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
32960         * build-aux/git-version-gen: Use "git status", not "git-status".
32961
32962 2008-02-07  Bruno Haible  <bruno@clisp.org>
32963
32964         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
32965         Avoids a crash on Windows Vista.
32966         Reported by Adam Strzelecki <ono@java.pl> via
32967         Simon Josefsson <simon@josefsson.org>.
32968
32969 2008-02-06  Bruno Haible  <bruno@clisp.org>
32970
32971         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
32972         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
32973         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
32974         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
32975         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
32976         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
32977         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
32978         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
32979         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
32980         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
32981         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
32982         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
32983         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
32984         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
32985         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
32986         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
32987         left-adjust flag.
32988         * tests/test-snprintf-posix.h (test_function): Likewise.
32989         * tests/test-sprintf-posix.h (test_function): Likewise.
32990         * tests/test-vasprintf-posix.c (test_function): Likewise.
32991         * doc/posix-functions/fprintf.texi: Update.
32992         * doc/posix-functions/printf.texi: Update.
32993         * doc/posix-functions/snprintf.texi: Update.
32994         * doc/posix-functions/sprintf.texi: Update.
32995         * doc/posix-functions/vfprintf.texi: Update.
32996         * doc/posix-functions/vprintf.texi: Update.
32997         * doc/posix-functions/vsnprintf.texi: Update.
32998         * doc/posix-functions/vsprintf.texi: Update.
32999         Reported by Peter Fales <psfales@alcatel-lucent.com>.
33000
33001 2008-02-06  Bruno Haible  <bruno@clisp.org>
33002
33003         Fix bug introduced on 2008-01-26.
33004         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
33005
33006 2008-02-06  Bruno Haible  <bruno@clisp.org>
33007
33008         Fix bug introduced on 2007-06-10.
33009         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
33010         !NEED_PRINTF_FLAG_ZERO.
33011
33012 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
33013
33014         getloadavg: use libperfstat on AIX5
33015         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
33016
33017 2008-02-03  Bruno Haible  <bruno@clisp.org>
33018
33019         * lib/diffseq.h: Add comments about required #includes.
33020         Reported by Michael Biggs <gnulib@doubleplum.net>.
33021
33022 2008-02-01  Bruno Haible  <bruno@clisp.org>
33023
33024         * users.txt: Add gnuit.
33025
33026 2008-01-31  Bruno Haible  <bruno@clisp.org>
33027
33028         * lib/md4.c (set_uint32): Mark as inline.
33029         * lib/md5.c (set_uint32): Likewise.
33030         * lib/sha1.c (set_uint32): Likewise.
33031         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
33032         * m4/md5.m4 (gl_MD5): Likewise.
33033         * m4/sha1.m4 (gl_SHA1): Likewise.
33034
33035 2008-01-31  Jim Meyering  <meyering@redhat.com>
33036
33037         Use "sizeof VAR", rather than a literal "4".
33038         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
33039         * lib/md4.c (md4_read_ctx): Likewise.
33040         * lib/sha1.c (sha1_read_ctx): Likewise.
33041
33042 2008-01-31  Simon Josefsson  <simon@josefsson.org>
33043
33044         * tests/test-sha1.c: New file, based on test-md5.c.
33045
33046         * modules/crypto/sha1-tests: New file.
33047
33048 2008-01-31  Simon Josefsson  <simon@josefsson.org>
33049
33050         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
33051
33052 2008-01-31  Jim Meyering  <meyering@redhat.com>
33053
33054         Prefer "sizeof v" over the equivalent "4".
33055         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
33056         * lib/md5.c (set_uint32): Likewise.
33057         * lib/sha1.c (set_uint32): Likewise.
33058
33059 2008-01-31  Simon Josefsson  <simon@josefsson.org>
33060
33061         * lib/sha1.c (set_uint32): Mark function as static.
33062
33063 2008-01-31  Simon Josefsson  <simon@josefsson.org>
33064
33065         md2: clarify comments to say that alignment is not required.
33066         * lib/md2.h: Remove warning about alignment in comment.
33067         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
33068         never been required.
33069
33070 2008-01-31  Simon Josefsson  <simon@josefsson.org>
33071
33072         md4: adapt alignment constraint fix from sha1.
33073         * lib/md4.c (set_uint32): New function, from sha1.c
33074         (md4_read_ctx): Use it.
33075         (md4_finish_ctx): Doc fix.
33076         * lib/md4.h: Doc fix.
33077
33078 2008-01-31  Simon Josefsson  <simon@josefsson.org>
33079
33080         md5: adapt alignment constraint fix from sha1.
33081         * lib/md5.c (set_uint32): New function, from sha1.c
33082         (md5_read_ctx): Use it.
33083         (md5_finish_ctx): Doc fix.
33084         * lib/md5.h: Doc fix.
33085
33086 2008-01-30  Peter Palfrader  <weasel@debian.org>
33087
33088         sha1: remove the result buffer alignment constraint
33089         * lib/sha1.c (set_uint32): New function.
33090         (sha1_read_ctx): Rewrite to remove the result buffer alignment
33091         constraint.
33092         (sha1_finish_ctx): Remove comment warning about alignment constraint.
33093         * lib/sha1.h: Likewise.
33094
33095 2008-01-30  Andreas Schwab  <schwab@suse.de>
33096             Bruno Haible  <bruno@clisp.org>
33097
33098         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
33099         correct definition of LDBL_MIN_EXP.
33100
33101 2008-01-30  Karl Berry  <karl@gnu.org>
33102
33103         * config/srclist-update: try to preserve x bit on updates.
33104         * config/srclistvars.sh: update for karl.
33105
33106 2008-01-29  Jim Meyering  <meyering@redhat.com>
33107
33108         vasnprintf.c: Avoid warning about unused label
33109         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
33110         "overflow" label definition and associated code with the
33111         same cpp condition that guards the sole use of that label.
33112
33113 2008-01-26  Bruno Haible  <bruno@clisp.org>
33114
33115         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
33116         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
33117         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
33118         * lib/isnanl-nolibm.h (isnanl): Likewise.
33119         Reported by Paul Eggert <eggert@cs.ucla.edu>.
33120
33121 2008-01-26  Bruno Haible  <bruno@clisp.org>
33122
33123         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
33124         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
33125
33126 2008-01-26  Bruno Haible  <bruno@clisp.org>
33127
33128         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
33129         GCC >= 4.0 built-in.
33130         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
33131
33132 2008-01-26  Bruno Haible  <bruno@clisp.org>
33133
33134         Rename isnan, applicable to 'double' only, to isnand.
33135         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
33136         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
33137         (configure.ac): Update.
33138         (Include): Replace "isnan.h" with "isnand.h".
33139         * m4/isnand.m4: Renamed from m4/isnan.m4.
33140         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
33141         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
33142         instead of isnan.c.
33143         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
33144         instead of HAVE_ISNAN_IN_LIBC.
33145         (isnand): Renamed from isnan.
33146         * lib/isnand.c: New file.
33147         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
33148         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
33149         (Makefile.am): Update.
33150         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
33151         Include isnand.h instead of isnan.h.
33152         (main): Test isnand instead of isnan.
33153         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
33154         isnan-nolibm.
33155         * modules/frexp (Depends-on): Likewise.
33156         * modules/frexp-tests (Depends-on): Likewise.
33157         * modules/frexp-nolibm (Depends-on): Likewise.
33158         * modules/frexp-nolibm-tests (Depends-on): Likewise.
33159         * modules/isfinite (Depends-on): Likewise.
33160         * modules/round-tests (Depends-on): Likewise.
33161         * modules/signbit (Depends-on): Likewise.
33162         * modules/signbit-tests (Depends-on): Likewise.
33163         * modules/snprintf-posix (Depends-on): Likewise.
33164         * modules/sprintf-posix (Depends-on): Likewise.
33165         * modules/trunc-tests (Depends-on): Likewise.
33166         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
33167         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
33168         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
33169         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
33170         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
33171         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
33172         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
33173         * modules/vasnprintf-posix (Depends-on): Likewise.
33174         * modules/vasprintf-posix (Depends-on): Likewise.
33175         * modules/vfprintf-posix (Depends-on): Likewise.
33176         * modules/vsnprintf-posix (Depends-on): Likewise.
33177         * modules/vsprintf-posix (Depends-on): Likewise.
33178         * lib/frexp.c: Include isnand.h instead of isnan.h.
33179         (ISNAN): Set to isnand instead of isnan.
33180         * lib/isfinite.c: Include isnand.h instead of isnan.h.
33181         (gl_isfinited): Use isnand instead of isnan.
33182         * lib/signbitd.c: Include isnand.h instead of isnan.h.
33183         (gl_signbitd): Use isnand instead of isnan.
33184         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
33185         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
33186         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
33187         (main): Use isnand instead of isnan.
33188         * tests/test-round1.c: Include isnand.h.
33189         (main): Use isnand instead of isnan.
33190         * tests/test-round2.c: Include isnand.h instead of isnan.h.
33191         (ISNAN): Set to isnand instead of isnan.
33192         * tests/test-trunc1.c: Include isnand.h.
33193         (main): Use isnand instead of isnan.
33194         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
33195         (equal): Use isnand instead of isnan.
33196         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
33197         isnand-nolibm.
33198         * NEWS: Mention the change.
33199
33200 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
33201             Bruno Haible  <bruno@clisp.org>
33202
33203         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
33204         the GCC builtins for signbits are present and set
33205         REPLACE_SIGNBIT_USING_GCC if so.
33206         * lib/math.in.h (signbit): Define using GCC builtins if
33207         REPLACE_SIGNBIT_USING_GCC is set.
33208         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
33209         REPLACE_SIGNBIT_USING_GCC.
33210         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
33211
33212 2008-01-25  Jim Meyering  <meyering@redhat.com>
33213
33214         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
33215         * lib/poll.c: Include <config.h>, not "config.h".
33216         * tests/test-getaddrinfo.c: Likewise.
33217
33218 2008-01-25  Simon Josefsson  <simon@josefsson.org>
33219
33220         * modules/sockets-tests: New file.
33221
33222 2008-01-24  Simon Josefsson  <simon@josefsson.org>
33223
33224         * modules/sockets: New module, can be used to call WSA_Startup and
33225         WSA_Cleanup when needed.
33226
33227         * lib/sockets.h, lib/sockets.c: New files.
33228
33229         * m4/sockets.m4: New file.
33230
33231         * tests/test-sockets.c: New file.
33232
33233 2008-01-19  Bruno Haible  <bruno@clisp.org>
33234
33235         * doc/posix-headers: Renamed from doc/headers.
33236         * doc/posix-functions: Renamed from doc/functions.
33237         * doc/gnulib.texi: Update.
33238
33239 2008-01-19  Bruno Haible  <bruno@clisp.org>
33240
33241         * doc/glibc-functions/strcasestr.texi: Include contents of
33242         doc/functions/strcasestr.texi, fixing the list of platforms.
33243         * doc/functions/strcasestr.texi: Remove file.
33244
33245 2008-01-19  Bruno Haible  <bruno@clisp.org>
33246
33247         * doc/glibc-functions/memmem.texi: Include contents of
33248         doc/functions/memmem.texi.
33249         * doc/functions/memmem.texi: Remove file.
33250
33251 2008-01-18  Bruno Haible  <bruno@clisp.org>
33252
33253         * doc/glibc-functions/*.texi: New files.
33254         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
33255         to use the new files.
33256
33257 2008-01-17  Bruno Haible  <bruno@clisp.org>
33258
33259         * tests/test-gethostname.c (main): Fix printf statement.
33260
33261 2008-01-17  Simon Josefsson  <simon@josefsson.org>
33262
33263         * modules/gethostname-tests: New file.
33264
33265         * tests/test-gethostname.c: New file.
33266
33267 2008-01-17  Simon Josefsson  <simon@josefsson.org>
33268
33269         * lib/gethostname.c: Include string.h unconditionally, strncpy is
33270         used by the UNAME case.  Reported by Bruno Haible
33271         <bruno@clisp.org>.
33272
33273 2008-01-17  Eric Blake  <ebb9@byu.net>
33274
33275         Convert c-strcasestr to be more efficient.
33276         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
33277         (Depends-on): Add c-strcase, remove malloca, strnlen.
33278         * tests/test-c-strcasestr.c (main): Enhance test.
33279         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
33280
33281 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
33282
33283         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
33284         Use it in creating po/Makevars.
33285
33286 2008-01-15  Simon Josefsson  <simon@josefsson.org>
33287
33288         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
33289         Applications that requires it should initialize libgcrypt
33290         manually.
33291
33292 2008-01-16  Simon Josefsson  <simon@josefsson.org>
33293
33294         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
33295
33296 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
33297
33298         Fix problem with getdate on mingw32 reported by Simon Josefsson
33299         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
33300         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
33301         tzname", when deciding whether to declare tzname.
33302         * lib/strftime.c (tzname): Likewise.
33303
33304 2008-01-15  Bruno Haible  <bruno@clisp.org>
33305
33306         Work around a MacOS X 10.5 bug in frexpl().
33307         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
33308         * doc/functions/frexpl.texi: Document the bug.
33309         Reported by Elias Pipping <pipping@gentoo.org>.
33310
33311 2008-01-14  Eric Blake  <ebb9@byu.net>
33312
33313         Touch up previous patch.
33314         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
33315         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
33316
33317         Convert strcasestr module to use Two-Way algorithm.
33318         * modules/strcasestr-simple: New module, based on the old
33319         strcasestr, but with Two-Way rather than KMP.
33320         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
33321         * lib/string.in.h (rpl_strcasestr): Declare.
33322         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
33323         performance.
33324         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
33325         * modules/string (Makefile.am): Support strcasestr.
33326         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
33327         * modules/strcasestr-tests (Depends-on): Check for alarm.
33328         * tests/test-strcasestr.c: Augment test.
33329         * lib/str-two-way.h: Clean up stray macro.
33330         * NEWS: Document new module.
33331         * MODULES.html.sh (string handling): Likewise.
33332         * doc/functions/strcasestr.texi: New file.
33333         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
33334         here, since it is not a POSIX function.
33335
33336 2008-01-14  Colin Watson  <cjwatson@debian.org>
33337             Bruno Haible  <bruno@clisp.org>
33338
33339         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
33340         works fine; if not, set REPLACE_STRSIGNAL.
33341         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
33342         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
33343         REPLACE_STRSIGNAL.
33344         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
33345         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
33346         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
33347
33348 2008-01-14  Bruno Haible  <bruno@clisp.org>
33349
33350         * modules/strsignal (Include): Change to <string.h>.
33351
33352 2008-01-14  Colin Watson  <cjwatson@debian.org>
33353
33354         * modules/argp (Notice): Add a notice recommending to change
33355         XGETTEXT_OPTIONS.
33356         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
33357
33358 2008-01-13  Colin Watson  <cjwatson@debian.org>
33359
33360         * modules/strsignal-tests: New file.
33361         * tests/test-strsignal.c: New file.
33362
33363         * lib/strsignal.c: New file, from glibc with modifications.
33364         * lib/siglist.h: New file, from glibc with modifications.
33365         * lib/string.in.h (strsignal): New declaration.
33366         * m4/strsignal.m4: New file.
33367         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
33368         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
33369         * modules/strsignal: New file.
33370         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
33371         HAVE_DECL_STRSIGNAL.
33372
33373 2008-01-13  Bruno Haible  <bruno@clisp.org>
33374
33375         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
33376         locale encoding is not ASCII. Needed for OpenBSD 4.0.
33377         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
33378         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
33379
33380 2008-01-13  Bruno Haible  <bruno@clisp.org>
33381
33382         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
33383         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
33384         * lib/argp.h (__attribute__): Likewise.
33385         * lib/c-stack.c (__attribute__): Likewise.
33386         * lib/error.h (__attribute__): Likewise.
33387         * lib/fts.c (__attribute__): Likewise.
33388         * lib/openat.h (__attribute__): Likewise.
33389         * lib/stdio.in.h (__attribute__): Likewise.
33390         * lib/string.in.h (__attribute__): Likewise.
33391         * lib/utimens.c (__attribute__): Likewise.
33392         * lib/vasnprintf.h (__attribute__): Likewise.
33393         * lib/xalloc.h (__attribute__): Likewise.
33394         * lib/xprintf.h (__attribute__): Likewise.
33395         * lib/xstrtol.h (__attribute__): Likewise.
33396         * lib/xvasprintf.h (__attribute__): Likewise.
33397
33398 2008-01-12  Bruno Haible  <bruno@clisp.org>
33399
33400         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
33401         * doc/glibc-headers/a.out.texi: New file.
33402         * doc/glibc-headers/aliases.texi: New file.
33403         * doc/glibc-headers/alloca.texi: New file.
33404         * doc/glibc-headers/ar.texi: New file.
33405         * doc/glibc-headers/argp.texi: New file.
33406         * doc/glibc-headers/argz.texi: New file.
33407         * doc/glibc-headers/byteswap.texi: New file.
33408         * doc/glibc-headers/crypt.texi: New file.
33409         * doc/glibc-headers/endian.texi: New file.
33410         * doc/glibc-headers/envz.texi: New file.
33411         * doc/glibc-headers/err.texi: New file.
33412         * doc/glibc-headers/error.texi: New file.
33413         * doc/glibc-headers/execinfo.texi: New file.
33414         * doc/glibc-headers/fpu_control.texi: New file.
33415         * doc/glibc-headers/fstab.texi: New file.
33416         * doc/glibc-headers/fts.texi: New file.
33417         * doc/glibc-headers/getopt.texi: New file.
33418         * doc/glibc-headers/ieee754.texi: New file.
33419         * doc/glibc-headers/ifaddrs.texi: New file.
33420         * doc/glibc-headers/libintl.texi: New file.
33421         * doc/glibc-headers/mcheck.texi: New file.
33422         * doc/glibc-headers/mntent.texi: New file.
33423         * doc/glibc-headers/obstack.texi: New file.
33424         * doc/glibc-headers/paths.texi: New file.
33425         * doc/glibc-headers/printf.texi: New file.
33426         * doc/glibc-headers/pty.texi: New file.
33427         * doc/glibc-headers/resolv.texi: New file.
33428         * doc/glibc-headers/shadow.texi: New file.
33429         * doc/glibc-headers/sysexits.texi: New file.
33430         * doc/glibc-headers/ttyent.texi: New file.
33431
33432 2008-01-12  Jim Meyering  <meyering@redhat.com>
33433
33434         announce-gen: emit Gnulib's git-based version string.
33435         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
33436         New option --gnulib-version=V, where V is expected to be
33437         the output of running git describe in the gnulib directory.
33438         (get_tool_versions): Request feedback on xdelta.  I suspect it's
33439         not useful, and plan to stop publishing an xdelta file with each
33440         coreutils release.
33441
33442         * build-aux/announce-gen: Also check for lzma-compressed files.
33443
33444 2008-01-11  Bruno Haible  <bruno@clisp.org>
33445
33446         * tests/test-memmem.c (main): Increase maximum allowed time.
33447         * tests/test-strstr.c (main): Likewise.
33448
33449 2008-01-11  Bruno Haible  <bruno@clisp.org>
33450
33451         * doc/functions/memmem.texi: Add more precisions about platforms.
33452         * doc/functions/strstr.texi: Likewise.
33453
33454 2008-01-10  Eric Blake  <ebb9@byu.net>
33455
33456         * m4/strstr.m4: Delete cruft from copy-n-paste.
33457         Reported by Bruno Haible.
33458
33459 2008-01-10  Bruno Haible  <bruno@clisp.org>
33460
33461         Make c-strstr rely on strstr.
33462         * lib/c-strstr.c: Don't include str-kmp.h.
33463         (c_strstr): Define in terms of strstr.
33464         * modules/c-strstr (Files): Remove lib/str-kmp.h.
33465         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
33466
33467 2008-01-10  Bruno Haible  <bruno@clisp.org>
33468
33469         * doc/gnulib.texi (String Functions in C Locale): New section.
33470         * doc/c-ctype.texi: New file.
33471         * doc/c-strcase.texi: New file.
33472         * doc/c-strcaseeq.texi: New file.
33473         * doc/c-strcasestr.texi: New file.
33474         * doc/c-strstr.texi: New file.
33475         * doc/c-strtod.texi: New file.
33476         * doc/c-strtold.texi: New file.
33477
33478 2008-01-10  Eric Blake  <ebb9@byu.net>
33479
33480         * lib/relocatable.h: Fix a comment.
33481
33482 2008-01-10  Eric Blake  <ebb9@byu.net>
33483
33484         Share two-way algorithm.
33485         * lib/str-two-way.h: New file, merged from...
33486         * lib/memmem.c: ...here...
33487         * lib/strstr.c: ...and here.
33488         * modules/memmem (Files): Use it.
33489         * modules/strstr (Files): Likewise.
33490
33491         Avoid quadratic strstr implementations.
33492         * lib/strstr.c: New file.
33493         * m4/strstr.m4: Likewise.
33494         * modules/strstr: Likewise.
33495         * modules/strstr-tests: Likewise.
33496         * tests/test-strstr.c: Likewise.
33497         * lib/string.in.h (rpl_strstr): Declare.
33498         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
33499         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
33500         * modules/string (Makefile.am): Likewise.
33501         * MODULES.html.sh (string handling): Mention new module.
33502         * doc/functions/strstr.texi (strstr): Document the bug.
33503
33504 2008-01-10  Bruno Haible  <bruno@clisp.org>
33505
33506         * lib/relocatable.h (relocate): State whether result is freshly
33507         allocated or not.
33508         * lib/relocatable.c (relocate): Return a freshly allocated string
33509         instead of a pointer to a privately held string.
33510         Reported by Sylvain Beucler <beuc@gnu.org>.
33511
33512 2008-01-10  Colin Watson  <cjwatson@debian.org>
33513
33514         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
33515         s/S_ISNLK/S_ISLNK/.
33516
33517 2008-01-09  Bruno Haible  <bruno@clisp.org>
33518
33519         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
33520         and other files.
33521         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
33522         if it's only a guess.
33523         * modules/memmem: Simplify by depending on memmem-simple.
33524
33525 2008-01-09  Bruno Haible  <bruno@clisp.org>
33526
33527         Work around OpenBSD 4.0 tdelete() bug.
33528         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
33529         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
33530         macros and don't redefine the enum values.
33531         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
33532         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
33533         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
33534
33535 2008-01-09  Bruno Haible  <bruno@clisp.org>
33536
33537         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
33538         (main): Don't perform the tests if setlocale did not install a UTF-8
33539         locale. Needed on OpenBSD 4.0.
33540         * modules/wcwidth-tests (Depends-on): Add localcharset.
33541
33542 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
33543
33544         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
33545         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
33546         * NEWS: announce this.
33547         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
33548
33549 2008-01-09  Simon Josefsson  <simon@josefsson.org>
33550         and Eric Blake  <ebb9@byu.net>
33551
33552         Add memmem-simple module.
33553         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
33554         (gl_FUNC_MEMMEM): Separate performance from presence checks.
33555         * modules/memmem-simple: New file.
33556         * modules/memmem (Description): Tweak.
33557         * MODULES.html.sh (string handling): Mention new module.
33558         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
33559         addressed by memmem-simple.
33560         * NEWS: Document the difference.
33561
33562 2008-01-09  Eric Blake  <ebb9@byu.net>
33563
33564         Give gcc some memmem optimization hints.
33565         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
33566         (strcasestr): Declare as pure.
33567         * modules/memmem (Maintainer): Claim my implementation.
33568
33569 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33570
33571         Support AIX 6.1 and higher.
33572         * build-aux/config.libpath: Likewise.
33573         * build-aux/config.rpath: Likewise.
33574
33575 2008-01-08  Jim Meyering  <meyering@redhat.com>
33576             Bruno Haible  <bruno@clisp.org>
33577
33578         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
33579         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
33580         Reported by Peter Fales in
33581         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
33582
33583 2008-01-08  Bruno Haible  <bruno@clisp.org>
33584
33585         * modules/unictype/category-of (Depends-on): Add
33586         unictype/category-none.
33587         * modules/unictype/category-and-tests (Depends-on): Add
33588         unictype/category-{L,N,Lu,Nd}.
33589         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
33590         * modules/unictype/category-or-tests (Depends-on): Add
33591         unictype/category-{L,N}.
33592         * modules/unictype/category-name-tests (Depends-on): Add
33593         unictype/category-{Z,Nl}.
33594         Reported by Simon Josefsson.
33595
33596 2008-01-08  Bruno Haible  <bruno@clisp.org>
33597
33598         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
33599         convention better.
33600         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
33601         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
33602         Reported by Peter Miller <millerp@canb.auug.org.au>.
33603
33604 2008-01-08  Eric Blake  <ebb9@byu.net>
33605
33606         Rewrite memmem to guarantee linear complexity without malloc.
33607         * lib/memmem.c (memmem): Use Two-Way rather than
33608         Knuth-Morris-Pratt, to allow O(1) space usage.
33609         (critical_factorization, two_way_short_needle)
33610         (two_way_long_needle): New functions.
33611         (knuth_morris_pratt): Delete.
33612         * modules/memmem (Depends-on): No longer need malloca or stdbool.
33613         Add stdint.
33614         * tests/test-memmem.c (main): Add tests for periodic needle and
33615         sublinear performance.
33616         * doc/functions/memmem.texi (memmem): Document other deficiencies
33617         in cygwin and older glibc.
33618
33619 2008-01-08  Bruno Haible  <bruno@clisp.org>
33620
33621         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
33622         augmentation.
33623
33624 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
33625
33626         Add a configure time option: --disable-acl.
33627         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
33628         AC_ARG_ENABLE(acl).
33629
33630 2008-01-06  Simon Josefsson  <simon@josefsson.org>
33631
33632         * tests/test-localename.c: Don't include obsolete "setenv.h".
33633
33634         * modules/localename-tests (Depends-on): Need unsetenv.
33635
33636 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33637
33638         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
33639
33640 2008-01-06  Colin Watson  <cjwatson@debian.org>
33641
33642         * users.txt: Add man-db.
33643
33644 2008-01-07  Bruno Haible  <bruno@clisp.org>
33645
33646         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
33647         previous section name.
33648
33649 2008-01-07  Bruno Haible  <bruno@clisp.org>
33650
33651         * lib/progname.c (set_program_name): Don't strip off a leading
33652         "lt-" prefix outside a .libs directory.
33653         Suggested by Paul Eggert.
33654
33655 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
33656             Bruno Haible  <bruno@clisp.org>
33657
33658         Improve memory cleanup in 'relocatable' module.
33659         * lib/relocatable.h (compute_curr_prefix): Change return type to
33660         'char *'.
33661         * lib/relocatable.c (compute_curr_prefix): Change return type to
33662         'char *'. Free curr_installdir after use.
33663         (relocate): Free curr_prefix_better after use.
33664         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
33665
33666 2008-01-01  Bruno Haible  <bruno@clisp.org>
33667
33668         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
33669         failure on older glibc systems.
33670         Reported by Peter Fales <psfales@alcatel-lucent.com>.
33671
33672 2008-01-05  Eric Blake  <ebb9@byu.net>
33673
33674         Avoid quadratic system memmem.
33675         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
33676         Reported by Ralf Wildenhues.
33677
33678         Fix memmem test for mingw.
33679         * modules/memmem-tests (configure.ac): Check for alarm.
33680         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
33681         it.
33682         * doc/functions/memmem.texi: New file.
33683         * doc/gnulib.texi (Function Substitutes): Add memmem.
33684         Reported by Bruno Haible.
33685
33686 2008-01-04  Bruno Haible  <bruno@clisp.org>
33687
33688         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
33689         Require gl_HEADER_STRINGS_H_DEFAULTS, not
33690         gl_HEADER_STRING_H_DEFAULTS.
33691
33692 2008-01-04  Eric Blake  <ebb9@byu.net>
33693
33694         Shorten duration of memmem test.
33695         * tests/test-memmem.c (main): Use alarm to declare failure if test
33696         is taking too long.
33697         Reported by Ralf Wildenhues.
33698
33699 2007-12-21  Simon Josefsson  <simon@josefsson.org>
33700
33701         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
33702         string, needed by strerror.
33703
33704 2008-01-03  Colin Watson  <cjwatson@debian.org>
33705             Bruno Haible  <bruno@clisp.org>
33706
33707         * doc/gnulib-tool.texi (Localization): New section.
33708
33709 2008-01-02  Bruno Haible  <bruno@clisp.org>
33710
33711         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
33712         variables to 'unsigned char *' type.
33713         Reported by Paul Eggert.
33714
33715 2008-01-02  Jim Meyering  <jim@meyering.net>
33716
33717         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
33718
33719 2007-12-31  Jim Meyering  <jim@meyering.net>
33720
33721         Avoid use of private FTS type name.
33722         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
33723
33724 2007-12-30  Karl Berry  <karl@gnu.org>
33725
33726         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
33727         work around defect in Texinfo and/or the standalone Info browser.
33728
33729 2007-12-30  Bruno Haible  <bruno@clisp.org>
33730
33731         Unify 5 copies of the KMP code.
33732         * lib/str-kmp.h: New file.
33733         * lib/c-strcasestr.c: Include str-kmp.h.
33734         (knuth_morris_pratt): Remove function.
33735         (c_strcasestr): Update.
33736         * lib/c-strstr.c: Include str-kmp.h.
33737         (knuth_morris_pratt): Remove function.
33738         (c_strcasestr): Update.
33739         * lib/mbscasestr.c: Include str-kmp.h.
33740         (knuth_morris_pratt_unibyte): Remove function.
33741         * lib/mbsstr.c: Include str-kmp.h.
33742         (knuth_morris_pratt_unibyte): Remove function.
33743         * lib/strcasestr.c: Include str-kmp.h.
33744         (knuth_morris_pratt): Remove function.
33745         (strcasestr): Update.
33746         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
33747         * modules/c-strstr (Files): Likewise.
33748         * modules/mbscasestr (Files): Likewise.
33749         * modules/mbsstr (Files): Likewise.
33750         * modules/strcasestr (Files): Likewise.
33751         Suggested by Paul Eggert.
33752
33753 2007-12-30  Bruno Haible  <bruno@clisp.org>
33754
33755         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
33756         defined.
33757
33758 2007-12-30  Bruno Haible  <bruno@clisp.org>
33759
33760         * lib/xmalloca.h: Include xalloc.h.
33761         (xnmalloca): New macro.
33762
33763 2007-12-30  Bruno Haible  <bruno@clisp.org>
33764
33765         * lib/malloca.h (nmalloca): New macro.
33766         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
33767         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
33768         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
33769         knuth_morris_pratt_multibyte): Likewise.
33770         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
33771         knuth_morris_pratt_multibyte): Likewise.
33772         * lib/memmem.c (knuth_morris_pratt): Likewise.
33773         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
33774
33775 2007-12-25  Bruno Haible  <bruno@clisp.org>
33776
33777         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
33778         * lib/glob.c: Don't include openat.h.
33779         (link_exists2_p): Add back the code that deals with the
33780         !GLOB_ALTDIRFUNC case.
33781         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
33782         let it do the filename concatenation.
33783         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
33784         * modules/glob (Depends-on): Remove openat.
33785
33786 2007-12-31  Bruno Haible  <bruno@clisp.org>
33787
33788         * modules/dirfd (License): Change to LGPLv2+.
33789         Approved by Jim Meyering.
33790
33791 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
33792
33793         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
33794         when multiplying M by sizeof (size_t).
33795
33796 2007-12-10  Martin Lambers  <marlam@marlam.de>
33797
33798         Override getpagesize on mingw.
33799         * lib/getpagesize.c: New file.
33800         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
33801         * modules/getpagesize (Files): Add lib/getpagesize.c.
33802         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
33803         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
33804         REPLACE_GETPAGESIZE.
33805         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
33806
33807 2007-12-25  Bruno Haible  <bruno@clisp.org>
33808
33809         * modules/localcharset (Notice): New field.
33810         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
33811         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
33812
33813 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
33814             Bruno Haible  <bruno@clisp.org>
33815
33816         Avoid using the syntax symbol() in formatted documentation.
33817         * MODULES.html.sh (func_module): When replacing symbol() with a
33818         hyperlink, remove the parentheses. Show an error if some remain.
33819         Recognize and render the '...' syntax.
33820         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
33821         Rework. Add paragraph about GCC's inlining.
33822         * doc/alloca.texi: Likewise.
33823         * doc/error.texi: Remove parentheses from symbol reference.
33824         * doc/gnulib-intro.texi: Likewise.
33825         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
33826         * modules/fnmatch (Description): Reword to say "the ... function".
33827         * modules/full-read (Description): Likewise.
33828         * modules/full-write (Description): Likewise.
33829         * modules/safe-read (Description): Likewise.
33830         * modules/safe-write (Description): Likewise.
33831         * modules/strchrnul (Description): Likewise.
33832         * modules/trim (Description): Likewise.
33833         * modules/error (Description): Remove parentheses from symbol
33834         references.
33835         * modules/verror (Description): Likewise.
33836         Reported by Karl Berry.
33837
33838 2007-12-25  Bruno Haible  <bruno@clisp.org>
33839
33840         Fixup after 2007-10-16 commit.
33841         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
33842
33843 2007-12-24  Bruno Haible  <bruno@clisp.org>
33844
33845         Make --enable-relocatable work with DESTDIR.
33846         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
33847         to compute installdir from destprog.
33848         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
33849         also set the RELOC_DESTDIR variable.
33850         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
33851
33852 2007-12-24  Bruno Haible  <bruno@clisp.org>
33853
33854         Fix link error due to xalloc_die().
33855         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
33856         of xreadlink.
33857         * lib/relocwrapper.c: Update comments.
33858         * build-aux/install-reloc: Remove xreadlink.c from file list.
33859         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
33860         xreadlink.c.
33861         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
33862
33863 2007-12-24  Bruno Haible  <bruno@clisp.org>
33864
33865         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
33866         * lib/setenv.h: Remove file.
33867         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
33868         lib/setenv.h.
33869         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
33870         (Depends-on): Add stdlib.
33871         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
33872         gl_FUNC_UNSETENV.
33873         (Include): Replace setenv.h with <stdlib.h>.
33874         * modules/unsetenv: New file.
33875         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
33876         * lib/unsetenv.c: Include <stdlib.h> first.
33877         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
33878         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
33879         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
33880         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
33881         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
33882         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
33883         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
33884         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
33885         * doc/functions/unsetenv.texi: Update.
33886         * modules/xsetenv (Depends-on): Add unsetenv.
33887         * modules/getdate (Depends-on): Likewise.
33888         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
33889         * lib/xsetenv.c: Don't include setenv.h.
33890         * lib/getdate.y: Likewise.
33891         * lib/relocwrapper.c: Likewise.
33892         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
33893         (Depends-on): Add stdlib.
33894         * NEWS: Mention the changes.
33895         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
33896
33897 2007-12-23  Bruno Haible  <bruno@clisp.org>
33898
33899         * lib/memmem.c (memmem): Use lowercase variable names. Tab
33900         indentation.
33901
33902 2007-12-23  Bruno Haible  <bruno@clisp.org>
33903
33904         * lib/c-strcasestr.c: Add more comments.
33905         * lib/c-strstr.c: Likewise.
33906         * lib/mbscasestr.c: Likewise.
33907         * lib/mbsstr.c: Likewise.
33908         * lib/strcasestr.c: Likewise.
33909         * lib/memmem.c: Likewise.
33910
33911 2007-12-23  Bruno Haible  <bruno@clisp.org>
33912
33913         * tests/test-memmem.c: Include <string.h> first.
33914
33915 2007-12-22  Bruno Haible  <bruno@clisp.org>
33916
33917         * gnulib-tool (func_create_testdir): Change $auxdir while generating
33918         the contents of $testsbase.
33919         Reported by Ralf Wildenhues.
33920
33921 2007-12-22  Bruno Haible  <bruno@clisp.org>
33922
33923         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
33924         two variables local_ldadd_before, local_ldadd_last.
33925
33926 2007-12-20  Eric Blake  <ebb9@byu.net>
33927
33928         Work around circular library issue when cross-compiling.
33929         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
33930         that progname.o does not need to pull in rpl_memcmp.
33931
33932 2007-12-19  Eric Blake  <ebb9@byu.net>
33933
33934         Fix memmem to avoid O(n^2) worst-case complexity.
33935         * lib/memmem.c (knuth_morris_pratt): New function.
33936         (memmem): Use it if first few naive iterations fail.
33937         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
33938         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
33939         * modules/memchr (License): Likewise.
33940         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
33941         malloca.
33942         * tests/test-memmem.c: Rewrite, borrowing ideas from
33943         test-mbsstr1.c; the old version wouldn't even compile!
33944         * modules/memmem-tests: New file.
33945         * lib/string.in.h (rpl_memmem): Add declaration.
33946         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
33947         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
33948         REPLACE_MEMMEM.
33949
33950 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
33951
33952         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
33953         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
33954         before any system include files, and undef after them all.  This
33955         should fix a problem on VMS reported by John E. Malmberg in
33956         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
33957
33958 2007-12-17  Eric Blake  <ebb9@byu.net>
33959
33960         Revert addition of verify, for BSD/OS.
33961         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
33962         can't handle large files, for the sake of obsolete platforms.
33963         * modules/fseeko (Depends-on): Remove verify.
33964         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
33965         * doc/functions/ftello.texi (ftello): Likewise.
33966         * doc/functions/fgetpos.texi (fgetpos): Likewise.
33967         Reported by Larry Jones.
33968
33969 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
33970
33971         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
33972         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
33973
33974 2007-12-17  Jim Meyering  <meyering@redhat.com>
33975
33976         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
33977         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
33978         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
33979         * modules/getcwd (Depends-on): Add openat.
33980         Reported by Petr Salinger.
33981
33982 2007-12-17  Bruno Haible  <bruno@clisp.org>
33983
33984         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
33985         avoid a segmentation fault of the configure test on x86_64 systems.
33986
33987 2007-12-15  Jim Meyering  <meyering@redhat.com>
33988
33989         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
33990
33991 2007-12-13  Eric Blake  <ebb9@byu.net>
33992
33993         Another fseek test.
33994         * tests/test-fseek.c (main): Also test ungetc handling.
33995         * tests/test-fseeko.c (main): Likewise.
33996         * modules/fseeko (Depends-on): Add verify.
33997         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
33998         large.
33999         Reported by Larry Jones.
34000
34001         Fix fseeko on mingw.
34002         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
34003         seek.
34004
34005         Beef up fseek tests.
34006         * tests/test-fseek.c (main): Also test eof handling.
34007         * tests/test-fseeko.c (main): Likewise.
34008         Reported by Larry Jones.
34009
34010 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
34011
34012         Fix fseeko on BSD-based platforms.
34013         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
34014         successful seek.
34015
34016 2007-12-12  Eric Blake  <ebb9@byu.net>
34017
34018         Allow circular dependency of separate libtests.a
34019         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
34020         when use_libtests.
34021
34022 2007-12-11  Eric Blake  <ebb9@byu.net>
34023
34024         Fix bug with -0.0L in previous patch.
34025         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
34026         * tests/test-isnan.c (main): Also test on zeroes.
34027         * tests/test-isnanf.c (main): Likewise.
34028         * tests/test-isnanl.h (main): Likewise.
34029
34030         Detect pseudo-denormals on x86 even when cross-compiling.
34031         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
34032         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
34033         invalid bit patterns that happen to satisfy ==.
34034
34035         Avoid link failures with separate libtests.a.
34036         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
34037         last, to satisfy circular dependencies.
34038
34039 2007-12-11  Eric Blake  <ebb9@byu.net>
34040         and Bruno Haible  <bruno@clisp.org>
34041
34042         Fix OpenBSD 4.0 <float.h> handling of long double.
34043         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
34044         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
34045         * doc/headers/float.texi (float.h): Document OpenBSD bug.
34046
34047 2007-12-11  Jim Meyering  <meyering@redhat.com>
34048
34049         * users.txt: Add libvirt.
34050
34051         Support versions of autoconf prior to 2.59c.
34052         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
34053         if it is not already defined.
34054
34055 2007-12-09  Bruno Haible  <bruno@clisp.org>
34056
34057         Let 'gnulib-tool --import' collect sources needed for the tests in
34058         tests/ rather than in lib/.
34059         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
34060         argument. If true, add rules to generate libtests.a, and put libtests.a
34061         into $(LDADD). Consider source files in subdirectories and set
34062         uses_subdirs.
34063         (func_emit_initmacro_start, func_emit_initmacro_end,
34064         func_emit_initmacro_done): Pass all arguments explicitly.
34065         (func_import): Determine two module lists main_modules,
34066         testsrelated_modules. Determine use_libtests. Determine two variables
34067         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
34068         instead of just sed_transform_lib_file. Determine two variables
34069         main_files and testsrelated_files. Compute 'files' as the union of
34070         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
34071         func_add_or_update. In the generated gnulib-comp.m4, collect the
34072         object files for tests/ in different variables than those for lib/.
34073         Substitute LIBTESTS_LIBDEPS.
34074         (func_create_testdir): Combine the uses_subdirs results from
34075         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
34076
34077 2007-12-09  Bruno Haible  <bruno@clisp.org>
34078
34079         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
34080         the build-aux directory.
34081
34082 2007-12-09  Bruno Haible  <bruno@clisp.org>
34083
34084         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
34085         introduced on 2006-09-09.
34086
34087 2007-12-07  Jim Meyering  <meyering@redhat.com>
34088
34089         Let these macros work also with autoconf-2.59.
34090         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
34091         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
34092         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
34093
34094 2007-12-06  Jim Meyering  <meyering@redhat.com>
34095
34096         Avoid a configure-time syntax error in gl_FUNC_ACL.
34097         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
34098         function in each branch, before testing the cache variable.
34099
34100 2007-12-04  Eric Blake  <ebb9@byu.net>
34101
34102         Make scripts executable.
34103         * build-aux/config.guess: Add execute permissions.
34104         * build-aux/config.sub: Likewise.
34105         * build-aux/gendocs.sh: Likewise.
34106
34107         Fix frexp on mingw.
34108         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
34109         cross-compiling.
34110         * doc/functions/frexp.texi (frexp): Document the bug.
34111
34112         Make cygwin fseeko check more reliable.
34113         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
34114         version numbers, rather than unrelated feature check.
34115         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
34116         * doc/functions/ftello.texi (ftello): Likewise.
34117         Reported by Bruno Haible.
34118
34119         * m4/strerror.m4: Bump version number.
34120
34121 2007-12-03  Bruno Haible  <bruno@clisp.org>
34122
34123         * doc/functions/mprotect.texi: Mention the mingw problem.
34124
34125 2007-12-03  Eric Blake  <ebb9@byu.net>
34126
34127         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
34128         REPLACE_STRERROR is initialized before this macro.
34129
34130 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
34131
34132         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
34133         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
34134         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
34135         put -lsec in even for programs other than 'ls'.  This fixes a problem
34136         for gettext reported by Bruno Haible in
34137         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
34138         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
34139         Add support for Solaris 10.  This isn't efficient, but should get the
34140         job done for now.
34141
34142 2007-12-03  James Youngman  <jay@gnu.org>
34143
34144         * doc/regexprops-generic.texi: change "an close-group" to "a
34145         close-group" and "illegal" to "not allowed".
34146
34147 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34148
34149         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
34150         pr_byname.h. Needed for the rare case when the maintainer has done
34151         "make maintainer-clean" in the source directory and then attempts a
34152         build outside the source directory.
34153         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
34154         scripts_byname.h.
34155
34156 2007-12-02  Martin Lambers <marlam@marlam.de>
34157             Bruno Haible  <bruno@clisp.org>
34158
34159         * lib/getpagesize.h: Remove file.
34160         * lib/unistd.in.h: Include declaration of getpagesize here.
34161         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
34162         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
34163         HAVE_SYS_PARAM_H.
34164         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
34165         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
34166         * modules/getpagesize (Files): Remove lib/getpagesize.h.
34167         (Depends-on): Add unistd.
34168         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
34169         (Include): Use <unistd.h> instead of getpagesize.h.
34170         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
34171         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
34172         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
34173         gl_GETPAGESIZE invocation, already handled by module dependency.
34174         * lib/pagealign_alloc.c: Don't include getpagesize.h.
34175
34176 2007-12-02  Bruno Haible  <bruno@clisp.org>
34177
34178         * modules/strings-tests: New file.
34179         * tests/test-strings.c: New file.
34180
34181         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
34182         * lib/strings.in.h: New file.
34183         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
34184         * m4/strings_h.m4: New file.
34185         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
34186         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
34187         * modules/strings: New file.
34188         * modules/string (Makefile.am): Update.
34189         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
34190         Reported by Karl Berry.
34191
34192 2007-12-01  Eric Blake  <ebb9@byu.net>
34193
34194         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
34195         accomodate fix in cygwin 1.5.25.
34196
34197 2007-12-01  Jim Meyering  <meyering@redhat.com>
34198
34199         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
34200         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
34201         that would inhibit utf8-optimization of a regexp containing line-
34202         or buffer-anchors, e.g., `^', `$'.
34203
34204 2007-11-30  Bruno Haible  <bruno@clisp.org>
34205
34206         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
34207         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
34208         glthread_recursive_lock_init.
34209         * lib/lock.c (glthread_recursive_lock_init)
34210         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
34211         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
34212
34213 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
34214
34215         New function qset_acl, like set_acl but with syscall semantics.
34216         * lib/acl.h (qset_acl): New decl.
34217         * lib/acl.c (qset_acl): New function.
34218         (set_acl): Use new function.  Use more-consistent diagnostics.
34219
34220 2007-11-28  Jim Meyering  <meyering@redhat.com>
34221
34222         * modules/physmem (License): Change from GPL to LGPLv2+.
34223
34224 2007-11-26  Bruno Haible  <bruno@clisp.org>
34225
34226         * lib/vasnprintf.c (decode_long_double): Don't abort if the
34227         'long double' type has excess precision.
34228         Reported by Jim Meyering in
34229         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
34230
34231 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34232
34233         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
34234         Sync from <http://gnu.org/licenses>.
34235         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
34236         with license text from same location.
34237         * doc/maintain.texi, doc/standards.texi:  Sync from
34238         <http://savannah.gnu.org/projects/gnustandards>.
34239
34240 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
34241         and Jim Meyering  <meyering@redhat.com>
34242
34243         Adjust getdate' grammar to accept a slightly more regular language.
34244         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
34245         Before, the former was rejected.
34246         * lib/getdate.y (digits_to_date_time): New function, factored
34247         out of ...
34248         (number): ...here.  Just call digits_to_date_time.
34249         (hybrid): New non-terminal to handle an <unsigned number,
34250         signed relative offset> sequence consistently.
34251
34252 2007-11-18  Jim Meyering  <meyering@redhat.com>
34253
34254         Pull my changes from coreutils:
34255         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
34256         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
34257         use of $gnulib_tool_option_extras, so that it's separated from the
34258         preceding argument.
34259
34260         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
34261         * build-aux/bootstrap (cp_mark_as_generated): Create any required
34262         parent destination directories before copying a file into place.
34263
34264 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
34265
34266         bootstrap: work also with 4-argument variant of AC_INIT
34267         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
34268
34269 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
34270
34271         Port test-getaddrinfo to Solaris.
34272         Problem reported by Bruno Haible in
34273         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
34274         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
34275         explanation of setting 'hints'.
34276         Don't reject an implementation merely because it returns EAI_SERVICE.
34277         (EAI_SERVICE): Define to 0 if not defined.
34278
34279 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
34280
34281         The license of gnu-make and posix-shell is now "GPLed build tool".
34282         * modules/gnu-make (License): Likewise.
34283         * modules/posix-shell (License): Likewise.
34284
34285         New module posix-shell, for determining a POSIX shell
34286         or perhaps something that is close enough to a POSIX shell.
34287         * m4/posix-shell.m4: New file.
34288         * modules/posix-shell: New file.
34289
34290         * MODULES.html.sh: Mention new module.
34291
34292         New module gnu-make, for determining whether we're using GNU Make.
34293         * m4/gnu-make.m4: New file.
34294         * modules/gnu-make: New file.
34295         * MODULES.html.sh: Mention new module.
34296
34297 2007-11-14  Jim Meyering  <meyering@redhat.com>
34298
34299         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
34300         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
34301         use this macro to create a function _definition_.
34302         Remove useless "#undef ARGMATCH_DIE".
34303
34304 2007-11-14  Bruno Haible  <bruno@clisp.org>
34305
34306         * lib/config.charset: Update for OpenBSD 4.1.
34307         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
34308
34309 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
34310
34311         Document 64-bit #if problems in stdint.texi.
34312         * doc/headers/stdint.texi (stdint.h): Mention problems with
34313         64-bit-#if, and how to work around them.
34314
34315         Don't insist on 'long long int' support in the preprocessor.  It
34316         breaks too many things.  For example, PRIdMAX still uses a 'long
34317         long int' format with the latest Sun compiler, even though
34318         HAVE_LONG_LONG_INT isn't defined due to that compiler's
34319         preprocessor problem.  This causes the latest coreutils to dump
34320         core on Solaris 10 sparc with the Sun C compiler.
34321         Instead, fix the 2007-10-16 problem in a different way, by evaluating
34322         the troublesome expressions at configure-time, not at #if-time.
34323         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
34324         preprocessor.
34325         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
34326         compile-time C checks, done at 'configure'-time.
34327         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
34328         * modules/inttypes (Makefile): Substitute the new symbols that
34329         gl_INTTYPES_H now generates.
34330         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
34331
34332 2007-11-12  Bruno Haible  <bruno@clisp.org>
34333
34334         Tests for Unicode character classification functions.
34335
34336         * modules/unictype/bidicategory-byname-tests: New file.
34337         * modules/unictype/bidicategory-name-tests: New file.
34338         * modules/unictype/bidicategory-of-tests: New file.
34339         * modules/unictype/bidicategory-test-tests: New file.
34340         * modules/unictype/block-list-tests: New file.
34341         * modules/unictype/block-of-tests: New file.
34342         * modules/unictype/block-test-tests: New file.
34343         * modules/unictype/category-C-tests: New file.
34344         * modules/unictype/category-Cc-tests: New file.
34345         * modules/unictype/category-Cf-tests: New file.
34346         * modules/unictype/category-Cn-tests: New file.
34347         * modules/unictype/category-Co-tests: New file.
34348         * modules/unictype/category-Cs-tests: New file.
34349         * modules/unictype/category-L-tests: New file.
34350         * modules/unictype/category-Ll-tests: New file.
34351         * modules/unictype/category-Lm-tests: New file.
34352         * modules/unictype/category-Lo-tests: New file.
34353         * modules/unictype/category-Lt-tests: New file.
34354         * modules/unictype/category-Lu-tests: New file.
34355         * modules/unictype/category-M-tests: New file.
34356         * modules/unictype/category-Mc-tests: New file.
34357         * modules/unictype/category-Me-tests: New file.
34358         * modules/unictype/category-Mn-tests: New file.
34359         * modules/unictype/category-N-tests: New file.
34360         * modules/unictype/category-Nd-tests: New file.
34361         * modules/unictype/category-Nl-tests: New file.
34362         * modules/unictype/category-No-tests: New file.
34363         * modules/unictype/category-P-tests: New file.
34364         * modules/unictype/category-Pc-tests: New file.
34365         * modules/unictype/category-Pd-tests: New file.
34366         * modules/unictype/category-Pe-tests: New file.
34367         * modules/unictype/category-Pf-tests: New file.
34368         * modules/unictype/category-Pi-tests: New file.
34369         * modules/unictype/category-Po-tests: New file.
34370         * modules/unictype/category-Ps-tests: New file.
34371         * modules/unictype/category-S-tests: New file.
34372         * modules/unictype/category-Sc-tests: New file.
34373         * modules/unictype/category-Sk-tests: New file.
34374         * modules/unictype/category-Sm-tests: New file.
34375         * modules/unictype/category-So-tests: New file.
34376         * modules/unictype/category-Z-tests: New file.
34377         * modules/unictype/category-Zl-tests: New file.
34378         * modules/unictype/category-Zp-tests: New file.
34379         * modules/unictype/category-Zs-tests: New file.
34380         * modules/unictype/category-and-not-tests: New file.
34381         * modules/unictype/category-and-tests: New file.
34382         * modules/unictype/category-byname-tests: New file.
34383         * modules/unictype/category-name-tests: New file.
34384         * modules/unictype/category-none-tests: New file.
34385         * modules/unictype/category-of-tests: New file.
34386         * modules/unictype/category-or-tests: New file.
34387         * modules/unictype/category-test-withtable-tests: New file.
34388         * modules/unictype/combining-class-tests: New file.
34389         * modules/unictype/ctype-alnum-tests: New file.
34390         * modules/unictype/ctype-alpha-tests: New file.
34391         * modules/unictype/ctype-blank-tests: New file.
34392         * modules/unictype/ctype-cntrl-tests: New file.
34393         * modules/unictype/ctype-digit-tests: New file.
34394         * modules/unictype/ctype-graph-tests: New file.
34395         * modules/unictype/ctype-lower-tests: New file.
34396         * modules/unictype/ctype-print-tests: New file.
34397         * modules/unictype/ctype-punct-tests: New file.
34398         * modules/unictype/ctype-space-tests: New file.
34399         * modules/unictype/ctype-upper-tests: New file.
34400         * modules/unictype/ctype-xdigit-tests: New file.
34401         * modules/unictype/decimal-digit-tests: New file.
34402         * modules/unictype/digit-tests: New file.
34403         * modules/unictype/mirror-tests: New file.
34404         * modules/unictype/numeric-tests: New file.
34405         * modules/unictype/property-alphabetic-tests: New file.
34406         * modules/unictype/property-ascii-hex-digit-tests: New file.
34407         * modules/unictype/property-bidi-arabic-digit-tests: New file.
34408         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
34409         * modules/unictype/property-bidi-block-separator-tests: New file.
34410         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
34411         * modules/unictype/property-bidi-common-separator-tests: New file.
34412         * modules/unictype/property-bidi-control-tests: New file.
34413         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
34414         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
34415         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
34416         * modules/unictype/property-bidi-european-digit-tests: New file.
34417         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
34418         * modules/unictype/property-bidi-left-to-right-tests: New file.
34419         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
34420         * modules/unictype/property-bidi-other-neutral-tests: New file.
34421         * modules/unictype/property-bidi-pdf-tests: New file.
34422         * modules/unictype/property-bidi-segment-separator-tests: New file.
34423         * modules/unictype/property-bidi-whitespace-tests: New file.
34424         * modules/unictype/property-byname-tests: New file.
34425         * modules/unictype/property-combining-tests: New file.
34426         * modules/unictype/property-composite-tests: New file.
34427         * modules/unictype/property-currency-symbol-tests: New file.
34428         * modules/unictype/property-dash-tests: New file.
34429         * modules/unictype/property-decimal-digit-tests: New file.
34430         * modules/unictype/property-default-ignorable-code-point-tests: New file.
34431         * modules/unictype/property-deprecated-tests: New file.
34432         * modules/unictype/property-diacritic-tests: New file.
34433         * modules/unictype/property-extender-tests: New file.
34434         * modules/unictype/property-format-control-tests: New file.
34435         * modules/unictype/property-grapheme-base-tests: New file.
34436         * modules/unictype/property-grapheme-extend-tests: New file.
34437         * modules/unictype/property-grapheme-link-tests: New file.
34438         * modules/unictype/property-hex-digit-tests: New file.
34439         * modules/unictype/property-hyphen-tests: New file.
34440         * modules/unictype/property-id-continue-tests: New file.
34441         * modules/unictype/property-id-start-tests: New file.
34442         * modules/unictype/property-ideographic-tests: New file.
34443         * modules/unictype/property-ids-binary-operator-tests: New file.
34444         * modules/unictype/property-ids-trinary-operator-tests: New file.
34445         * modules/unictype/property-ignorable-control-tests: New file.
34446         * modules/unictype/property-iso-control-tests: New file.
34447         * modules/unictype/property-join-control-tests: New file.
34448         * modules/unictype/property-left-of-pair-tests: New file.
34449         * modules/unictype/property-line-separator-tests: New file.
34450         * modules/unictype/property-logical-order-exception-tests: New file.
34451         * modules/unictype/property-lowercase-tests: New file.
34452         * modules/unictype/property-math-tests: New file.
34453         * modules/unictype/property-non-break-tests: New file.
34454         * modules/unictype/property-not-a-character-tests: New file.
34455         * modules/unictype/property-numeric-tests: New file.
34456         * modules/unictype/property-other-alphabetic-tests: New file.
34457         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
34458         * modules/unictype/property-other-grapheme-extend-tests: New file.
34459         * modules/unictype/property-other-id-continue-tests: New file.
34460         * modules/unictype/property-other-id-start-tests: New file.
34461         * modules/unictype/property-other-lowercase-tests: New file.
34462         * modules/unictype/property-other-math-tests: New file.
34463         * modules/unictype/property-other-uppercase-tests: New file.
34464         * modules/unictype/property-paired-punctuation-tests: New file.
34465         * modules/unictype/property-paragraph-separator-tests: New file.
34466         * modules/unictype/property-pattern-syntax-tests: New file.
34467         * modules/unictype/property-pattern-white-space-tests: New file.
34468         * modules/unictype/property-private-use-tests: New file.
34469         * modules/unictype/property-punctuation-tests: New file.
34470         * modules/unictype/property-quotation-mark-tests: New file.
34471         * modules/unictype/property-radical-tests: New file.
34472         * modules/unictype/property-sentence-terminal-tests: New file.
34473         * modules/unictype/property-soft-dotted-tests: New file.
34474         * modules/unictype/property-space-tests: New file.
34475         * modules/unictype/property-terminal-punctuation-tests: New file.
34476         * modules/unictype/property-test-tests: New file.
34477         * modules/unictype/property-titlecase-tests: New file.
34478         * modules/unictype/property-unassigned-code-value-tests: New file.
34479         * modules/unictype/property-unified-ideograph-tests: New file.
34480         * modules/unictype/property-uppercase-tests: New file.
34481         * modules/unictype/property-variation-selector-tests: New file.
34482         * modules/unictype/property-white-space-tests: New file.
34483         * modules/unictype/property-xid-continue-tests: New file.
34484         * modules/unictype/property-xid-start-tests: New file.
34485         * modules/unictype/property-zero-width-tests: New file.
34486         * modules/unictype/scripts-tests: New file.
34487         * modules/unictype/syntax-c-ident-tests: New file.
34488         * modules/unictype/syntax-c-whitespace-tests: New file.
34489         * modules/unictype/syntax-java-ident-tests: New file.
34490         * modules/unictype/syntax-java-whitespace-tests: New file.
34491         * tests/unictype/test-bidi_byname.c: New file.
34492         * tests/unictype/test-bidi_name.c: New file.
34493         * tests/unictype/test-bidi_of.c: New file.
34494         * tests/unictype/test-bidi_test.c: New file.
34495         * tests/unictype/test-block_list.c: New file.
34496         * tests/unictype/test-block_of.c: New file.
34497         * tests/unictype/test-block_test.c: New file.
34498         * tests/unictype/test-categ_and.c: New file.
34499         * tests/unictype/test-categ_and_not.c: New file.
34500         * tests/unictype/test-categ_byname.c: New file.
34501         * tests/unictype/test-categ_name.c: New file.
34502         * tests/unictype/test-categ_none.c: New file.
34503         * tests/unictype/test-categ_of.c: New file.
34504         * tests/unictype/test-categ_or.c: New file.
34505         * tests/unictype/test-categ_test_withtable.c: New file.
34506         * tests/unictype/test-combining.c: New file.
34507         * tests/unictype/test-decdigit.c: New file.
34508         * tests/unictype/test-digit.c: New file.
34509         * tests/unictype/test-mirror.c: New file.
34510         * tests/unictype/test-numeric.c: New file.
34511         * tests/unictype/test-pr_byname.c: New file.
34512         * tests/unictype/test-pr_test.c: New file.
34513         * tests/unictype/test-predicate-part1.h: New file.
34514         * tests/unictype/test-predicate-part2.h: New file.
34515         * tests/unictype/test-scripts.c: New file.
34516         * tests/unictype/test-sy_c_ident.c: New file.
34517         * tests/unictype/test-sy_java_ident.c: New file.
34518
34519         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
34520         for Unicode 5.0.0.
34521         * tests/unictype/test-categ_Cc.c: Likewise.
34522         * tests/unictype/test-categ_Cf.c: Likewise.
34523         * tests/unictype/test-categ_Cn.c: Likewise.
34524         * tests/unictype/test-categ_Co.c: Likewise.
34525         * tests/unictype/test-categ_Cs.c: Likewise.
34526         * tests/unictype/test-categ_L.c: Likewise.
34527         * tests/unictype/test-categ_Ll.c: Likewise.
34528         * tests/unictype/test-categ_Lm.c: Likewise.
34529         * tests/unictype/test-categ_Lo.c: Likewise.
34530         * tests/unictype/test-categ_Lt.c: Likewise.
34531         * tests/unictype/test-categ_Lu.c: Likewise.
34532         * tests/unictype/test-categ_M.c: Likewise.
34533         * tests/unictype/test-categ_Mc.c: Likewise.
34534         * tests/unictype/test-categ_Me.c: Likewise.
34535         * tests/unictype/test-categ_Mn.c: Likewise.
34536         * tests/unictype/test-categ_N.c: Likewise.
34537         * tests/unictype/test-categ_Nd.c: Likewise.
34538         * tests/unictype/test-categ_Nl.c: Likewise.
34539         * tests/unictype/test-categ_No.c: Likewise.
34540         * tests/unictype/test-categ_P.c: Likewise.
34541         * tests/unictype/test-categ_Pc.c: Likewise.
34542         * tests/unictype/test-categ_Pd.c: Likewise.
34543         * tests/unictype/test-categ_Pe.c: Likewise.
34544         * tests/unictype/test-categ_Pf.c: Likewise.
34545         * tests/unictype/test-categ_Pi.c: Likewise.
34546         * tests/unictype/test-categ_Po.c: Likewise.
34547         * tests/unictype/test-categ_Ps.c: Likewise.
34548         * tests/unictype/test-categ_S.c: Likewise.
34549         * tests/unictype/test-categ_Sc.c: Likewise.
34550         * tests/unictype/test-categ_Sk.c: Likewise.
34551         * tests/unictype/test-categ_Sm.c: Likewise.
34552         * tests/unictype/test-categ_So.c: Likewise.
34553         * tests/unictype/test-categ_Z.c: Likewise.
34554         * tests/unictype/test-categ_Zl.c: Likewise.
34555         * tests/unictype/test-categ_Zp.c: Likewise.
34556         * tests/unictype/test-categ_Zs.c: Likewise.
34557         * tests/unictype/test-ctype_alnum.c: Likewise.
34558         * tests/unictype/test-ctype_alpha.c: Likewise.
34559         * tests/unictype/test-ctype_blank.c: Likewise.
34560         * tests/unictype/test-ctype_cntrl.c: Likewise.
34561         * tests/unictype/test-ctype_digit.c: Likewise.
34562         * tests/unictype/test-ctype_graph.c: Likewise.
34563         * tests/unictype/test-ctype_lower.c: Likewise.
34564         * tests/unictype/test-ctype_print.c: Likewise.
34565         * tests/unictype/test-ctype_punct.c: Likewise.
34566         * tests/unictype/test-ctype_space.c: Likewise.
34567         * tests/unictype/test-ctype_upper.c: Likewise.
34568         * tests/unictype/test-ctype_xdigit.c: Likewise.
34569         * tests/unictype/test-decdigit.h: Likewise.
34570         * tests/unictype/test-digit.h: Likewise.
34571         * tests/unictype/test-numeric.h: Likewise.
34572         * tests/unictype/test-pr_alphabetic.c: Likewise.
34573         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
34574         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
34575         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
34576         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
34577         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
34578         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
34579         * tests/unictype/test-pr_bidi_control.c: Likewise.
34580         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
34581         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
34582         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
34583         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
34584         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
34585         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
34586         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
34587         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
34588         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
34589         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
34590         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
34591         * tests/unictype/test-pr_combining.c: Likewise.
34592         * tests/unictype/test-pr_composite.c: Likewise.
34593         * tests/unictype/test-pr_currency_symbol.c: Likewise.
34594         * tests/unictype/test-pr_dash.c: Likewise.
34595         * tests/unictype/test-pr_decimal_digit.c: Likewise.
34596         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
34597         * tests/unictype/test-pr_deprecated.c: Likewise.
34598         * tests/unictype/test-pr_diacritic.c: Likewise.
34599         * tests/unictype/test-pr_extender.c: Likewise.
34600         * tests/unictype/test-pr_format_control.c: Likewise.
34601         * tests/unictype/test-pr_grapheme_base.c: Likewise.
34602         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
34603         * tests/unictype/test-pr_grapheme_link.c: Likewise.
34604         * tests/unictype/test-pr_hex_digit.c: Likewise.
34605         * tests/unictype/test-pr_hyphen.c: Likewise.
34606         * tests/unictype/test-pr_id_continue.c: Likewise.
34607         * tests/unictype/test-pr_id_start.c: Likewise.
34608         * tests/unictype/test-pr_ideographic.c: Likewise.
34609         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
34610         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
34611         * tests/unictype/test-pr_ignorable_control.c: Likewise.
34612         * tests/unictype/test-pr_iso_control.c: Likewise.
34613         * tests/unictype/test-pr_join_control.c: Likewise.
34614         * tests/unictype/test-pr_left_of_pair.c: Likewise.
34615         * tests/unictype/test-pr_line_separator.c: Likewise.
34616         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
34617         * tests/unictype/test-pr_lowercase.c: Likewise.
34618         * tests/unictype/test-pr_math.c: Likewise.
34619         * tests/unictype/test-pr_non_break.c: Likewise.
34620         * tests/unictype/test-pr_not_a_character.c: Likewise.
34621         * tests/unictype/test-pr_numeric.c: Likewise.
34622         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
34623         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
34624         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
34625         * tests/unictype/test-pr_other_id_continue.c: Likewise.
34626         * tests/unictype/test-pr_other_id_start.c: Likewise.
34627         * tests/unictype/test-pr_other_lowercase.c: Likewise.
34628         * tests/unictype/test-pr_other_math.c: Likewise.
34629         * tests/unictype/test-pr_other_uppercase.c: Likewise.
34630         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
34631         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
34632         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
34633         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
34634         * tests/unictype/test-pr_private_use.c: Likewise.
34635         * tests/unictype/test-pr_punctuation.c: Likewise.
34636         * tests/unictype/test-pr_quotation_mark.c: Likewise.
34637         * tests/unictype/test-pr_radical.c: Likewise.
34638         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
34639         * tests/unictype/test-pr_soft_dotted.c: Likewise.
34640         * tests/unictype/test-pr_space.c: Likewise.
34641         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
34642         * tests/unictype/test-pr_titlecase.c: Likewise.
34643         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
34644         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
34645         * tests/unictype/test-pr_uppercase.c: Likewise.
34646         * tests/unictype/test-pr_variation_selector.c: Likewise.
34647         * tests/unictype/test-pr_white_space.c: Likewise.
34648         * tests/unictype/test-pr_xid_continue.c: Likewise.
34649         * tests/unictype/test-pr_xid_start.c: Likewise.
34650         * tests/unictype/test-pr_zero_width.c: Likewise.
34651         * tests/unictype/test-sy_c_whitespace.c: Likewise.
34652         * tests/unictype/test-sy_java_whitespace.c: Likewise.
34653
34654 2007-11-12  Bruno Haible  <bruno@clisp.org>
34655
34656         Unicode character classification functions.
34657         * lib/unictype.h: New file.
34658         * modules/unictype/base: New file.
34659         * modules/unictype/category-L: New file.
34660         * modules/unictype/category-Lu: New file.
34661         * modules/unictype/category-Ll: New file.
34662         * modules/unictype/category-Lt: New file.
34663         * modules/unictype/category-Lm: New file.
34664         * modules/unictype/category-Lo: New file.
34665         * modules/unictype/category-M: New file.
34666         * modules/unictype/category-Mn: New file.
34667         * modules/unictype/category-Mc: New file.
34668         * modules/unictype/category-Me: New file.
34669         * modules/unictype/category-N: New file.
34670         * modules/unictype/category-Nd: New file.
34671         * modules/unictype/category-Nl: New file.
34672         * modules/unictype/category-No: New file.
34673         * modules/unictype/category-P: New file.
34674         * modules/unictype/category-Pc: New file.
34675         * modules/unictype/category-Pd: New file.
34676         * modules/unictype/category-Ps: New file.
34677         * modules/unictype/category-Pe: New file.
34678         * modules/unictype/category-Pi: New file.
34679         * modules/unictype/category-Pf: New file.
34680         * modules/unictype/category-Po: New file.
34681         * modules/unictype/category-S: New file.
34682         * modules/unictype/category-Sm: New file.
34683         * modules/unictype/category-Sc: New file.
34684         * modules/unictype/category-Sk: New file.
34685         * modules/unictype/category-So: New file.
34686         * modules/unictype/category-Z: New file.
34687         * modules/unictype/category-Zs: New file.
34688         * modules/unictype/category-Zl: New file.
34689         * modules/unictype/category-Zp: New file.
34690         * modules/unictype/category-C: New file.
34691         * modules/unictype/category-Cc: New file.
34692         * modules/unictype/category-Cf: New file.
34693         * modules/unictype/category-Cs: New file.
34694         * modules/unictype/category-Co: New file.
34695         * modules/unictype/category-Cn: New file.
34696         * modules/unictype/category-or: New file.
34697         * modules/unictype/category-of: New file.
34698         * modules/unictype/category-test: New file.
34699         * modules/unictype/category-test-withtable: New file.
34700         * modules/unictype/category-byname: New file.
34701         * modules/unictype/category-none: New file.
34702         * modules/unictype/category-and: New file.
34703         * modules/unictype/category-and-not: New file.
34704         * modules/unictype/category-name: New file.
34705         * modules/unictype/combining-class: New file.
34706         * modules/unictype/category-all: New file.
34707         * modules/unictype/bidicategory-all: New file.
34708         * modules/unictype/bidicategory-byname: New file.
34709         * modules/unictype/bidicategory-name: New file.
34710         * modules/unictype/bidicategory-of: New file.
34711         * modules/unictype/bidicategory-test: New file.
34712         * modules/unictype/decimal-digit: New file.
34713         * modules/unictype/digit: New file.
34714         * modules/unictype/numeric: New file.
34715         * modules/unictype/mirror: New file.
34716         * modules/unictype/property-white-space: New file.
34717         * modules/unictype/property-alphabetic: New file.
34718         * modules/unictype/property-other-alphabetic: New file.
34719         * modules/unictype/property-not-a-character: New file.
34720         * modules/unictype/property-default-ignorable-code-point: New file.
34721         * modules/unictype/property-other-default-ignorable-code-point: New
34722         file.
34723         * modules/unictype/property-deprecated: New file.
34724         * modules/unictype/property-logical-order-exception: New file.
34725         * modules/unictype/property-variation-selector: New file.
34726         * modules/unictype/property-private-use: New file.
34727         * modules/unictype/property-unassigned-code-value: New file.
34728         * modules/unictype/property-uppercase: New file.
34729         * modules/unictype/property-other-uppercase: New file.
34730         * modules/unictype/property-lowercase: New file.
34731         * modules/unictype/property-other-lowercase: New file.
34732         * modules/unictype/property-titlecase: New file.
34733         * modules/unictype/property-soft-dotted: New file.
34734         * modules/unictype/property-id-start: New file.
34735         * modules/unictype/property-other-id-start: New file.
34736         * modules/unictype/property-id-continue: New file.
34737         * modules/unictype/property-other-id-continue: New file.
34738         * modules/unictype/property-xid-start: New file.
34739         * modules/unictype/property-xid-continue: New file.
34740         * modules/unictype/property-pattern-white-space: New file.
34741         * modules/unictype/property-pattern-syntax: New file.
34742         * modules/unictype/property-join-control: New file.
34743         * modules/unictype/property-grapheme-base: New file.
34744         * modules/unictype/property-grapheme-extend: New file.
34745         * modules/unictype/property-other-grapheme-extend: New file.
34746         * modules/unictype/property-grapheme-link: New file.
34747         * modules/unictype/property-bidi-control: New file.
34748         * modules/unictype/property-bidi-left-to-right: New file.
34749         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
34750         * modules/unictype/property-bidi-arabic-right-to-left: New file.
34751         * modules/unictype/property-bidi-european-digit: New file.
34752         * modules/unictype/property-bidi-eur-num-separator: New file.
34753         * modules/unictype/property-bidi-eur-num-terminator: New file.
34754         * modules/unictype/property-bidi-arabic-digit: New file.
34755         * modules/unictype/property-bidi-common-separator: New file.
34756         * modules/unictype/property-bidi-block-separator: New file.
34757         * modules/unictype/property-bidi-segment-separator: New file.
34758         * modules/unictype/property-bidi-whitespace: New file.
34759         * modules/unictype/property-bidi-non-spacing-mark: New file.
34760         * modules/unictype/property-bidi-boundary-neutral: New file.
34761         * modules/unictype/property-bidi-pdf: New file.
34762         * modules/unictype/property-bidi-embedding-or-override: New file.
34763         * modules/unictype/property-bidi-other-neutral: New file.
34764         * modules/unictype/property-hex-digit: New file.
34765         * modules/unictype/property-ascii-hex-digit: New file.
34766         * modules/unictype/property-ideographic: New file.
34767         * modules/unictype/property-unified-ideograph: New file.
34768         * modules/unictype/property-radical: New file.
34769         * modules/unictype/property-ids-binary-operator: New file.
34770         * modules/unictype/property-ids-trinary-operator: New file.
34771         * modules/unictype/property-zero-width: New file.
34772         * modules/unictype/property-space: New file.
34773         * modules/unictype/property-non-break: New file.
34774         * modules/unictype/property-iso-control: New file.
34775         * modules/unictype/property-format-control: New file.
34776         * modules/unictype/property-dash: New file.
34777         * modules/unictype/property-hyphen: New file.
34778         * modules/unictype/property-punctuation: New file.
34779         * modules/unictype/property-line-separator: New file.
34780         * modules/unictype/property-paragraph-separator: New file.
34781         * modules/unictype/property-quotation-mark: New file.
34782         * modules/unictype/property-sentence-terminal: New file.
34783         * modules/unictype/property-terminal-punctuation: New file.
34784         * modules/unictype/property-currency-symbol: New file.
34785         * modules/unictype/property-math: New file.
34786         * modules/unictype/property-other-math: New file.
34787         * modules/unictype/property-paired-punctuation: New file.
34788         * modules/unictype/property-left-of-pair: New file.
34789         * modules/unictype/property-combining: New file.
34790         * modules/unictype/property-composite: New file.
34791         * modules/unictype/property-decimal-digit: New file.
34792         * modules/unictype/property-numeric: New file.
34793         * modules/unictype/property-diacritic: New file.
34794         * modules/unictype/property-extender: New file.
34795         * modules/unictype/property-ignorable-control: New file.
34796         * modules/unictype/property-test: New file.
34797         * modules/unictype/property-byname: New file.
34798         * modules/unictype/property-all: New file.
34799         * modules/unictype/scripts: New file.
34800         * modules/unictype/scripts-all: New file.
34801         * modules/unictype/block-of: New file.
34802         * modules/unictype/block-test: New file.
34803         * modules/unictype/block-list: New file.
34804         * modules/unictype/block-all: New file.
34805         * modules/unictype/syntax-c-whitespace: New file.
34806         * modules/unictype/syntax-java-whitespace: New file.
34807         * modules/unictype/syntax-c-ident: New file.
34808         * modules/unictype/syntax-java-ident: New file.
34809         * modules/unictype/ctype-alnum: New file.
34810         * modules/unictype/ctype-alpha: New file.
34811         * modules/unictype/ctype-cntrl: New file.
34812         * modules/unictype/ctype-digit: New file.
34813         * modules/unictype/ctype-graph: New file.
34814         * modules/unictype/ctype-lower: New file.
34815         * modules/unictype/ctype-print: New file.
34816         * modules/unictype/ctype-punct: New file.
34817         * modules/unictype/ctype-space: New file.
34818         * modules/unictype/ctype-upper: New file.
34819         * modules/unictype/ctype-xdigit: New file.
34820         * modules/unictype/ctype-blank: New file.
34821         * lib/unictype/bidi_byname.c: New file.
34822         * lib/unictype/bidi_name.c: New file.
34823         * lib/unictype/bidi_of.c: New file.
34824         * lib/unictype/bidi_test.c: New file.
34825         * lib/unictype/bitmap.h: New file.
34826         * lib/unictype/block_test.c: New file.
34827         * lib/unictype/blocks.c: New file.
34828         * lib/unictype/categ_C.c: New file.
34829         * lib/unictype/categ_Cc.c: New file.
34830         * lib/unictype/categ_Cf.c: New file.
34831         * lib/unictype/categ_Cn.c: New file.
34832         * lib/unictype/categ_Co.c: New file.
34833         * lib/unictype/categ_Cs.c: New file.
34834         * lib/unictype/categ_L.c: New file.
34835         * lib/unictype/categ_Ll.c: New file.
34836         * lib/unictype/categ_Lm.c: New file.
34837         * lib/unictype/categ_Lo.c: New file.
34838         * lib/unictype/categ_Lt.c: New file.
34839         * lib/unictype/categ_Lu.c: New file.
34840         * lib/unictype/categ_M.c: New file.
34841         * lib/unictype/categ_Mc.c: New file.
34842         * lib/unictype/categ_Me.c: New file.
34843         * lib/unictype/categ_Mn.c: New file.
34844         * lib/unictype/categ_N.c: New file.
34845         * lib/unictype/categ_Nd.c: New file.
34846         * lib/unictype/categ_Nl.c: New file.
34847         * lib/unictype/categ_No.c: New file.
34848         * lib/unictype/categ_P.c: New file.
34849         * lib/unictype/categ_Pc.c: New file.
34850         * lib/unictype/categ_Pd.c: New file.
34851         * lib/unictype/categ_Pe.c: New file.
34852         * lib/unictype/categ_Pf.c: New file.
34853         * lib/unictype/categ_Pi.c: New file.
34854         * lib/unictype/categ_Po.c: New file.
34855         * lib/unictype/categ_Ps.c: New file.
34856         * lib/unictype/categ_S.c: New file.
34857         * lib/unictype/categ_Sc.c: New file.
34858         * lib/unictype/categ_Sk.c: New file.
34859         * lib/unictype/categ_Sm.c: New file.
34860         * lib/unictype/categ_So.c: New file.
34861         * lib/unictype/categ_Z.c: New file.
34862         * lib/unictype/categ_Zl.c: New file.
34863         * lib/unictype/categ_Zp.c: New file.
34864         * lib/unictype/categ_Zs.c: New file.
34865         * lib/unictype/categ_and.c: New file.
34866         * lib/unictype/categ_and_not.c: New file.
34867         * lib/unictype/categ_byname.c: New file.
34868         * lib/unictype/categ_name.c: New file.
34869         * lib/unictype/categ_none.c: New file.
34870         * lib/unictype/categ_of.c: New file.
34871         * lib/unictype/categ_or.c: New file.
34872         * lib/unictype/categ_test.c: New file.
34873         * lib/unictype/combining.c: New file.
34874         * lib/unictype/ctype_alnum.c: New file.
34875         * lib/unictype/ctype_alpha.c: New file.
34876         * lib/unictype/ctype_blank.c: New file.
34877         * lib/unictype/ctype_cntrl.c: New file.
34878         * lib/unictype/ctype_digit.c: New file.
34879         * lib/unictype/ctype_graph.c: New file.
34880         * lib/unictype/ctype_lower.c: New file.
34881         * lib/unictype/ctype_print.c: New file.
34882         * lib/unictype/ctype_punct.c: New file.
34883         * lib/unictype/ctype_space.c: New file.
34884         * lib/unictype/ctype_upper.c: New file.
34885         * lib/unictype/ctype_xdigit.c: New file.
34886         * lib/unictype/decdigit.c: New file.
34887         * lib/unictype/digit.c: New file.
34888         * lib/unictype/identsyntaxmap.h: New file.
34889         * lib/unictype/mirror.c: New file.
34890         * lib/unictype/numeric.c: New file.
34891         * lib/unictype/pr_alphabetic.c: New file.
34892         * lib/unictype/pr_ascii_hex_digit.c: New file.
34893         * lib/unictype/pr_bidi_arabic_digit.c: New file.
34894         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
34895         * lib/unictype/pr_bidi_block_separator.c: New file.
34896         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
34897         * lib/unictype/pr_bidi_common_separator.c: New file.
34898         * lib/unictype/pr_bidi_control.c: New file.
34899         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
34900         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
34901         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
34902         * lib/unictype/pr_bidi_european_digit.c: New file.
34903         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
34904         * lib/unictype/pr_bidi_left_to_right.c: New file.
34905         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
34906         * lib/unictype/pr_bidi_other_neutral.c: New file.
34907         * lib/unictype/pr_bidi_pdf.c: New file.
34908         * lib/unictype/pr_bidi_segment_separator.c: New file.
34909         * lib/unictype/pr_bidi_whitespace.c: New file.
34910         * lib/unictype/pr_byname.c: New file.
34911         * lib/unictype/pr_byname.gperf: New file.
34912         * lib/unictype/pr_combining.c: New file.
34913         * lib/unictype/pr_composite.c: New file.
34914         * lib/unictype/pr_currency_symbol.c: New file.
34915         * lib/unictype/pr_dash.c: New file.
34916         * lib/unictype/pr_decimal_digit.c: New file.
34917         * lib/unictype/pr_default_ignorable_code_point.c: New file.
34918         * lib/unictype/pr_deprecated.c: New file.
34919         * lib/unictype/pr_diacritic.c: New file.
34920         * lib/unictype/pr_extender.c: New file.
34921         * lib/unictype/pr_format_control.c: New file.
34922         * lib/unictype/pr_grapheme_base.c: New file.
34923         * lib/unictype/pr_grapheme_extend.c: New file.
34924         * lib/unictype/pr_grapheme_link.c: New file.
34925         * lib/unictype/pr_hex_digit.c: New file.
34926         * lib/unictype/pr_hyphen.c: New file.
34927         * lib/unictype/pr_id_continue.c: New file.
34928         * lib/unictype/pr_id_start.c: New file.
34929         * lib/unictype/pr_ideographic.c: New file.
34930         * lib/unictype/pr_ids_binary_operator.c: New file.
34931         * lib/unictype/pr_ids_trinary_operator.c: New file.
34932         * lib/unictype/pr_ignorable_control.c: New file.
34933         * lib/unictype/pr_iso_control.c: New file.
34934         * lib/unictype/pr_join_control.c: New file.
34935         * lib/unictype/pr_left_of_pair.c: New file.
34936         * lib/unictype/pr_line_separator.c: New file.
34937         * lib/unictype/pr_logical_order_exception.c: New file.
34938         * lib/unictype/pr_lowercase.c: New file.
34939         * lib/unictype/pr_math.c: New file.
34940         * lib/unictype/pr_non_break.c: New file.
34941         * lib/unictype/pr_not_a_character.c: New file.
34942         * lib/unictype/pr_numeric.c: New file.
34943         * lib/unictype/pr_other_alphabetic.c: New file.
34944         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
34945         * lib/unictype/pr_other_grapheme_extend.c: New file.
34946         * lib/unictype/pr_other_id_continue.c: New file.
34947         * lib/unictype/pr_other_id_start.c: New file.
34948         * lib/unictype/pr_other_lowercase.c: New file.
34949         * lib/unictype/pr_other_math.c: New file.
34950         * lib/unictype/pr_other_uppercase.c: New file.
34951         * lib/unictype/pr_paired_punctuation.c: New file.
34952         * lib/unictype/pr_paragraph_separator.c: New file.
34953         * lib/unictype/pr_pattern_syntax.c: New file.
34954         * lib/unictype/pr_pattern_white_space.c: New file.
34955         * lib/unictype/pr_private_use.c: New file.
34956         * lib/unictype/pr_punctuation.c: New file.
34957         * lib/unictype/pr_quotation_mark.c: New file.
34958         * lib/unictype/pr_radical.c: New file.
34959         * lib/unictype/pr_sentence_terminal.c: New file.
34960         * lib/unictype/pr_soft_dotted.c: New file.
34961         * lib/unictype/pr_space.c: New file.
34962         * lib/unictype/pr_terminal_punctuation.c: New file.
34963         * lib/unictype/pr_test.c: New file.
34964         * lib/unictype/pr_titlecase.c: New file.
34965         * lib/unictype/pr_unassigned_code_value.c: New file.
34966         * lib/unictype/pr_unified_ideograph.c: New file.
34967         * lib/unictype/pr_uppercase.c: New file.
34968         * lib/unictype/pr_variation_selector.c: New file.
34969         * lib/unictype/pr_white_space.c: New file.
34970         * lib/unictype/pr_xid_continue.c: New file.
34971         * lib/unictype/pr_xid_start.c: New file.
34972         * lib/unictype/pr_zero_width.c: New file.
34973         * lib/unictype/scripts.c: New file.
34974         * lib/unictype/sy_c_ident.c: New file.
34975         * lib/unictype/sy_c_whitespace.c: New file.
34976         * lib/unictype/sy_java_ident.c: New file.
34977         * lib/unictype/sy_java_whitespace.c: New file.
34978
34979         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
34980         Unicode 5.0.0.
34981         * lib/unictype/blocks.h: Likewise.
34982         * lib/unictype/categ_C.h: Likewise.
34983         * lib/unictype/categ_Cc.h: Likewise.
34984         * lib/unictype/categ_Cf.h: Likewise.
34985         * lib/unictype/categ_Cn.h: Likewise.
34986         * lib/unictype/categ_Co.h: Likewise.
34987         * lib/unictype/categ_Cs.h: Likewise.
34988         * lib/unictype/categ_L.h: Likewise.
34989         * lib/unictype/categ_Ll.h: Likewise.
34990         * lib/unictype/categ_Lm.h: Likewise.
34991         * lib/unictype/categ_Lo.h: Likewise.
34992         * lib/unictype/categ_Lt.h: Likewise.
34993         * lib/unictype/categ_Lu.h: Likewise.
34994         * lib/unictype/categ_M.h: Likewise.
34995         * lib/unictype/categ_Mc.h: Likewise.
34996         * lib/unictype/categ_Me.h: Likewise.
34997         * lib/unictype/categ_Mn.h: Likewise.
34998         * lib/unictype/categ_N.h: Likewise.
34999         * lib/unictype/categ_Nd.h: Likewise.
35000         * lib/unictype/categ_Nl.h: Likewise.
35001         * lib/unictype/categ_No.h: Likewise.
35002         * lib/unictype/categ_P.h: Likewise.
35003         * lib/unictype/categ_Pc.h: Likewise.
35004         * lib/unictype/categ_Pd.h: Likewise.
35005         * lib/unictype/categ_Pe.h: Likewise.
35006         * lib/unictype/categ_Pf.h: Likewise.
35007         * lib/unictype/categ_Pi.h: Likewise.
35008         * lib/unictype/categ_Po.h: Likewise.
35009         * lib/unictype/categ_Ps.h: Likewise.
35010         * lib/unictype/categ_S.h: Likewise.
35011         * lib/unictype/categ_Sc.h: Likewise.
35012         * lib/unictype/categ_Sk.h: Likewise.
35013         * lib/unictype/categ_Sm.h: Likewise.
35014         * lib/unictype/categ_So.h: Likewise.
35015         * lib/unictype/categ_Z.h: Likewise.
35016         * lib/unictype/categ_Zl.h: Likewise.
35017         * lib/unictype/categ_Zp.h: Likewise.
35018         * lib/unictype/categ_Zs.h: Likewise.
35019         * lib/unictype/categ_of.h: Likewise.
35020         * lib/unictype/combining.h: Likewise.
35021         * lib/unictype/ctype_alnum.h: Likewise.
35022         * lib/unictype/ctype_alpha.h: Likewise.
35023         * lib/unictype/ctype_blank.h: Likewise.
35024         * lib/unictype/ctype_cntrl.h: Likewise.
35025         * lib/unictype/ctype_digit.h: Likewise.
35026         * lib/unictype/ctype_graph.h: Likewise.
35027         * lib/unictype/ctype_lower.h: Likewise.
35028         * lib/unictype/ctype_print.h: Likewise.
35029         * lib/unictype/ctype_punct.h: Likewise.
35030         * lib/unictype/ctype_space.h: Likewise.
35031         * lib/unictype/ctype_upper.h: Likewise.
35032         * lib/unictype/ctype_xdigit.h: Likewise.
35033         * lib/unictype/decdigit.h: Likewise.
35034         * lib/unictype/digit.h: Likewise.
35035         * lib/unictype/mirror.h: Likewise.
35036         * lib/unictype/numeric.h: Likewise.
35037         * lib/unictype/pr_alphabetic.h: Likewise.
35038         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
35039         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
35040         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
35041         * lib/unictype/pr_bidi_block_separator.h: Likewise.
35042         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
35043         * lib/unictype/pr_bidi_common_separator.h: Likewise.
35044         * lib/unictype/pr_bidi_control.h: Likewise.
35045         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
35046         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
35047         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
35048         * lib/unictype/pr_bidi_european_digit.h: Likewise.
35049         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
35050         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
35051         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
35052         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
35053         * lib/unictype/pr_bidi_pdf.h: Likewise.
35054         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
35055         * lib/unictype/pr_bidi_whitespace.h: Likewise.
35056         * lib/unictype/pr_combining.h: Likewise.
35057         * lib/unictype/pr_composite.h: Likewise.
35058         * lib/unictype/pr_currency_symbol.h: Likewise.
35059         * lib/unictype/pr_dash.h: Likewise.
35060         * lib/unictype/pr_decimal_digit.h: Likewise.
35061         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
35062         * lib/unictype/pr_deprecated.h: Likewise.
35063         * lib/unictype/pr_diacritic.h: Likewise.
35064         * lib/unictype/pr_extender.h: Likewise.
35065         * lib/unictype/pr_format_control.h: Likewise.
35066         * lib/unictype/pr_grapheme_base.h: Likewise.
35067         * lib/unictype/pr_grapheme_extend.h: Likewise.
35068         * lib/unictype/pr_grapheme_link.h: Likewise.
35069         * lib/unictype/pr_hex_digit.h: Likewise.
35070         * lib/unictype/pr_hyphen.h: Likewise.
35071         * lib/unictype/pr_id_continue.h: Likewise.
35072         * lib/unictype/pr_id_start.h: Likewise.
35073         * lib/unictype/pr_ideographic.h: Likewise.
35074         * lib/unictype/pr_ids_binary_operator.h: Likewise.
35075         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
35076         * lib/unictype/pr_ignorable_control.h: Likewise.
35077         * lib/unictype/pr_iso_control.h: Likewise.
35078         * lib/unictype/pr_join_control.h: Likewise.
35079         * lib/unictype/pr_left_of_pair.h: Likewise.
35080         * lib/unictype/pr_line_separator.h: Likewise.
35081         * lib/unictype/pr_logical_order_exception.h: Likewise.
35082         * lib/unictype/pr_lowercase.h: Likewise.
35083         * lib/unictype/pr_math.h: Likewise.
35084         * lib/unictype/pr_non_break.h: Likewise.
35085         * lib/unictype/pr_not_a_character.h: Likewise.
35086         * lib/unictype/pr_numeric.h: Likewise.
35087         * lib/unictype/pr_other_alphabetic.h: Likewise.
35088         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
35089         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
35090         * lib/unictype/pr_other_id_continue.h: Likewise.
35091         * lib/unictype/pr_other_id_start.h: Likewise.
35092         * lib/unictype/pr_other_lowercase.h: Likewise.
35093         * lib/unictype/pr_other_math.h: Likewise.
35094         * lib/unictype/pr_other_uppercase.h: Likewise.
35095         * lib/unictype/pr_paired_punctuation.h: Likewise.
35096         * lib/unictype/pr_paragraph_separator.h: Likewise.
35097         * lib/unictype/pr_pattern_syntax.h: Likewise.
35098         * lib/unictype/pr_pattern_white_space.h: Likewise.
35099         * lib/unictype/pr_private_use.h: Likewise.
35100         * lib/unictype/pr_punctuation.h: Likewise.
35101         * lib/unictype/pr_quotation_mark.h: Likewise.
35102         * lib/unictype/pr_radical.h: Likewise.
35103         * lib/unictype/pr_sentence_terminal.h: Likewise.
35104         * lib/unictype/pr_soft_dotted.h: Likewise.
35105         * lib/unictype/pr_space.h: Likewise.
35106         * lib/unictype/pr_terminal_punctuation.h: Likewise.
35107         * lib/unictype/pr_titlecase.h: Likewise.
35108         * lib/unictype/pr_unassigned_code_value.h: Likewise.
35109         * lib/unictype/pr_unified_ideograph.h: Likewise.
35110         * lib/unictype/pr_uppercase.h: Likewise.
35111         * lib/unictype/pr_variation_selector.h: Likewise.
35112         * lib/unictype/pr_white_space.h: Likewise.
35113         * lib/unictype/pr_xid_continue.h: Likewise.
35114         * lib/unictype/pr_xid_start.h: Likewise.
35115         * lib/unictype/pr_zero_width.h: Likewise.
35116         * lib/unictype/scripts.h: Likewise.
35117         * lib/unictype/scripts_byname.gperf: Likewise.
35118         * lib/unictype/sy_c_ident.h: Likewise.
35119         * lib/unictype/sy_c_whitespace.h: Likewise.
35120         * lib/unictype/sy_java_ident.h: Likewise.
35121         * lib/unictype/sy_java_whitespace.h: Likewise.
35122
35123         * lib/unictype/Makefile: New file.
35124         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
35125         glibc.
35126         * lib/unictype/3level.h: New file, copied from glibc.
35127         * lib/unictype/3levelbit.h: New file.
35128
35129 2007-11-11  Bruno Haible  <bruno@clisp.org>
35130
35131         * modules/gperf: New file.
35132         * modules/iconv_open (Depends-on): Add it.
35133         (Makefile.am): Remove the GPERF definition.
35134
35135 2007-11-11  Bruno Haible  <bruno@clisp.org>
35136
35137         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
35138         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
35139
35140 2007-11-11  Bruno Haible  <bruno@clisp.org>
35141
35142         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
35143         (usage): Remove function.
35144
35145 2007-11-11  Bruno Haible  <bruno@clisp.org>
35146
35147         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
35148         gl_FUNC_CEILF_LIBS.
35149         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
35150         gl_FUNC_CEIL_LIBS.
35151         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
35152         gl_FUNC_CEILL_LIBS.
35153         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
35154         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
35155         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
35156
35157 2007-11-11  Bruno Haible  <bruno@clisp.org>
35158
35159         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
35160         roundf were declared but do not exist on functions.
35161         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
35162         roundl were declared but do not exist on functions.
35163         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
35164         HAVE_FLOORL_AND_CEILL, respectively.
35165         Needed for Sun C on Solaris 10.
35166
35167 2007-11-11  Bruno Haible  <bruno@clisp.org>
35168
35169         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
35170         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
35171         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
35172         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
35173         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
35174         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
35175         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
35176         HAVE_DECL_ROUNDF.
35177         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
35178         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
35179         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
35180         of HAVE_DECL_ROUND*.
35181         * modules/math (Makefile.am): Update.
35182
35183 2007-11-10  Bruno Haible  <bruno@clisp.org>
35184
35185         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
35186         ptrdiff_t as m4/intl.m4.
35187
35188 2007-11-10  Jim Meyering  <meyering@redhat.com>
35189
35190         Avoid link failure for the argmatch test.
35191         * tests/test-argmatch.c (usage): Define function to avoid a link
35192         failure: argmatch_die requires a usage function.
35193
35194 2007-11-09  Bruno Haible  <bruno@clisp.org>
35195
35196         * doc/functions/snprintf.texi: Mention BeOS deficiency.
35197         * doc/functions/vsnprintf.texi: Likewise.
35198         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
35199         with a size argument < 2.
35200
35201 2007-11-09  Bruno Haible  <bruno@clisp.org>
35202
35203         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
35204         buffer. Fixes an inefficiency introduced on 2007-11-03.
35205
35206 2007-11-09  Bruno Haible  <bruno@clisp.org>
35207
35208         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
35209         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
35210
35211 2007-11-08  Jim Meyering  <meyering@redhat.com>
35212
35213         Change cache variable name prefix "jm_" to "gl_" everywhere.
35214         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
35215         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
35216         * m4/uptime.m4: s/gl_/jm_/
35217
35218 2007-11-07  Bruno Haible  <bruno@clisp.org>
35219
35220         Update to GNU gettext 0.17.
35221         * m4/intl.m4: Update to GNU gettext 0.17.
35222         * m4/po.m4: Likewise.
35223         * modules/gettext (Files): Remove m4/ulonglong.m4.
35224         (configure.ac): Require gettext infrastructure from version 0.17.
35225
35226 2007-11-06  Bruno Haible  <bruno@clisp.org>
35227
35228         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
35229         symbolic values are not defined in a public header.
35230         * lib/freadable.c (freadable) [QNX]: Likewise.
35231         * lib/freadahead.c (freadahead) [QNX]: Likewise.
35232         * lib/freading.c (freading) [QNX]: Likewise.
35233         * lib/fseterr.c (fseterr) [QNX]: Likewise.
35234         * lib/fwritable.c (fwritable) [QNX]: Likewise.
35235         * lib/fwriting.c (fwriting) [QNX]: Likewise.
35236         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
35237         Reported by Alain Magloire.
35238
35239         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
35240
35241 2007-11-05  Bruno Haible  <bruno@clisp.org>
35242
35243         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
35244         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
35245         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
35246         Reported by Eric Blake.
35247
35248 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35249             Bruno Haible  <bruno@clisp.org>
35250
35251         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
35252         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
35253         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
35254         (malloc): Undefine also before including <stdlib.h>.
35255         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
35256         Needed on OSF/1 4.0.
35257
35258 2007-11-05  Jim Meyering  <meyering@redhat.com>
35259
35260         git-version-gen: sync from coreutils.
35261         * build-aux/git-version-gen: Add comments.
35262         Change the first '-' to '.' in the snapshot version string,
35263         e.g., 6.9-377-08144 -> 6.9.377-08144
35264         Remove first parameter.
35265         Don't declare a version "-dirty" merely because a time
35266         stamp has changed.
35267
35268 2007-11-04  Bruno Haible  <bruno@clisp.org>
35269
35270         * lib/lock.h: Protect all macro definitions containing an 'if'
35271         statement through a "do { ... } while (0)".
35272         * lib/tls.h: Likewise.
35273
35274 2007-11-04  Bruno Haible  <bruno@clisp.org>
35275
35276         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
35277
35278 2007-11-04  Bruno Haible  <bruno@clisp.org>
35279
35280         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
35281         * modules/fprintf-posix (Depends-on): Add nocrash.
35282         * modules/snprintf-posix (Depends-on): Likewise.
35283         * modules/sprintf-posix (Depends-on): Likewise.
35284         * modules/vasnprintf-posix (Depends-on): Likewise.
35285         * modules/vasprintf-posix (Depends-on): Likewise.
35286         * modules/vfprintf-posix (Depends-on): Likewise.
35287         * modules/vsnprintf-posix (Depends-on): Likewise.
35288         * modules/vsprintf-posix (Depends-on): Likewise.
35289         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
35290         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
35291         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
35292         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
35293         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
35294         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
35295         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
35296
35297 2007-11-04  Bruno Haible  <bruno@clisp.org>
35298
35299         * modules/nocrash: New file.
35300         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
35301         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
35302
35303 2007-11-04  Bruno Haible  <bruno@clisp.org>
35304
35305         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
35306         precision handling.
35307         * tests/test-vasprintf-posix.c (test_function): Likewise.
35308         * tests/test-snprintf-posix.h (test_function): Likewise.
35309         * tests/test-sprintf-posix.h (test_function): Likewise.
35310
35311         Fix *printf behaviour for large precisions on mingw and BeOS.
35312         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
35313         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
35314         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
35315         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
35316         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35317         gl_PRINTF_PRECISION and test its result. Invoke
35318         gl_PREREQ_VASNPRINTF_PRECISION.
35319         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35320         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35321         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35322         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35323         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35324         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35325         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35326         * doc/functions/fprintf.texi: Update.
35327         * doc/functions/printf.texi: Update.
35328         * doc/functions/snprintf.texi: Update.
35329         * doc/functions/sprintf.texi: Update.
35330         * doc/functions/vfprintf.texi: Update.
35331         * doc/functions/vprintf.texi: Update.
35332         * doc/functions/vsnprintf.texi: Update.
35333         * doc/functions/vsprintf.texi: Update.
35334
35335 2007-11-04  Bruno Haible  <bruno@clisp.org>
35336
35337         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
35338
35339 2007-11-04  Bruno Haible  <bruno@clisp.org>
35340
35341         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
35342         Reported by Sylvain Beucler <beuc@gnu.org>.
35343
35344 2007-11-03  Bruno Haible  <bruno@clisp.org>
35345
35346         * tests/test-fprintf-posix2.sh: New file.
35347         * tests/test-fprintf-posix2.c: New file.
35348         * modules/fprintf-posix-tests (Files): Add them.
35349         (TESTS): Add test-fprintf-posix2.sh.
35350         (configure.ac): Check for getrlimit and setrlimit.
35351         (check_PROGRAMS): Add test-fprintf-posix2.
35352
35353         * tests/test-printf-posix2.sh: New file.
35354         * tests/test-printf-posix2.c: New file.
35355         * modules/printf-posix-tests (Files): Add them.
35356         (TESTS): Add test-printf-posix2.sh.
35357         (configure.ac): Check for getrlimit and setrlimit.
35358         (check_PROGRAMS): Add test-printf-posix2.
35359
35360         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
35361         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
35362         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
35363         (decode_double): New function, copied from decode_long_double.
35364         (scale10_round_decimal_decoded): New function, extracted from
35365         scale10_round_decimal_long_double.
35366         (scale10_round_decimal_long_double): Use it.
35367         (scale10_round_decimal_double): New function.
35368         (floorlog10): New function.
35369         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
35370         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
35371         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
35372         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
35373         gl_PRINTF_ENOMEM and test its result. Invoke
35374         gl_PREREQ_VASNPRINTF_ENOMEM.
35375         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
35376         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
35377         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
35378         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
35379         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
35380         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
35381         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
35382         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
35383         * modules/snprintf-posix (Depends-on): Likewise.
35384         * modules/sprintf-posix (Depends-on): Likewise.
35385         * modules/vasnprintf-posix (Depends-on): Likewise.
35386         * modules/vasprintf-posix (Depends-on): Likewise.
35387         * modules/vfprintf-posix (Depends-on): Likewise.
35388         * modules/vsnprintf-posix (Depends-on): Likewise.
35389         * modules/vsprintf-posix (Depends-on): Likewise.
35390         * doc/functions/fprintf.texi: Update.
35391         * doc/functions/printf.texi: Update.
35392         * doc/functions/snprintf.texi: Update.
35393         * doc/functions/sprintf.texi: Update.
35394         * doc/functions/vfprintf.texi: Update.
35395         * doc/functions/vprintf.texi: Update.
35396         * doc/functions/vsnprintf.texi: Update.
35397         * doc/functions/vsprintf.texi: Update.
35398
35399 2007-11-03  Bruno Haible  <bruno@clisp.org>
35400
35401         * modules/frexp-nolibm-tests: New file.
35402
35403         * modules/frexp-nolibm: New file.
35404         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
35405
35406 2007-11-03  Bruno Haible  <bruno@clisp.org>
35407
35408         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
35409         value is C99 compliant.
35410         Needed for OSF/1 5.1.
35411
35412 2007-11-03  Bruno Haible  <bruno@clisp.org>
35413
35414         Fix out-of-memory handling of vasnprintf.
35415         * lib/printf-parse.c: Include <errno.h>.
35416         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
35417         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
35418         is already set.
35419
35420 2007-11-02  Eric Blake  <ebb9@byu.net>
35421
35422         Fix tests on cygwin.
35423         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
35424
35425 2007-11-01  Bruno Haible  <bruno@clisp.org>
35426
35427         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
35428         warning.
35429         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
35430         needed for POSIX compatibility.
35431
35432 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
35433
35434         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
35435         for compatibility with GNU.
35436
35437 2007-11-01  Bruno Haible  <bruno@clisp.org>
35438
35439         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
35440         (putenv): Renamed from rpl_putenv. Change argument type from
35441         'const char *' to 'char *'.
35442         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
35443         of defining putenv in config.h, just set REPLACE_PUTENV.
35444         * modules/putenv (Depends-on): Add stdlib.
35445         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
35446         (Include): Use <stdlib.h>.
35447         * lib/stdlib.in.h (putenv): New declaration.
35448         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
35449         REPLACE_PUTENV.
35450         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
35451         REPLACE_PUTENV.
35452         Needed for MacOS X 10.5.0.
35453         Reported by Peter O'Gorman <peter@pogma.com>.
35454
35455 2007-11-01  Jim Meyering  <meyering@redhat.com>
35456
35457         Treat an empty date string exactly like "0".
35458         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
35459         if the remaining date string (to be parsed) is empty, use "0".
35460         Reported by Mischa Molhoek and discussed in this thread:
35461         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
35462
35463 2007-10-31  Bruno Haible  <bruno@clisp.org>
35464
35465         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
35466         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
35467         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
35468         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
35469         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
35470         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
35471
35472 2007-10-31  Bruno Haible  <bruno@clisp.org>
35473
35474         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
35475         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
35476         (AC_TYPE_LONG_LONG_INT): Use it.
35477         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
35478         it as well.
35479         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
35480         to m4/longlong.m4.
35481         * modules/stdint (Files): Remove m4/ulonglong.m4.
35482         * modules/strtoull (Files): Use m4/longlong.m4 instead of
35483         m4/ulonglong.m4.
35484         * modules/strtoumax (Files): Likewise.
35485
35486 2007-10-30  Bruno Haible  <bruno@clisp.org>
35487
35488         * modules/xvasprintf-posix: New file.
35489         Suggested by Eric Blake.
35490
35491 2007-10-30  Bruno Haible  <bruno@clisp.org>
35492
35493         * modules/xprintf-posix-tests: New file.
35494         * tests/test-xprintf-posix.sh: New file.
35495         * tests/test-xprintf-posix.c: New file.
35496         * tests/test-xfprintf-posix.c: New file.
35497
35498         * modules/xprintf-posix: New file.
35499
35500 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35501
35502         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
35503         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
35504         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
35505
35506 2007-10-29  Bruno Haible  <bruno@clisp.org>
35507
35508         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
35509         contain the special marker '_cv_'.
35510         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
35511         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
35512         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
35513         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
35514         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
35515         Reported by Ralf Wildenhues.
35516
35517 2007-10-29  Bruno Haible  <bruno@clisp.org>
35518
35519         * gnulib-tool (func_import): When --lgpl is not specified, set
35520         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
35521         GPLv3.
35522         Reported by Simon Josefsson.
35523
35524 2007-10-28  Bruno Haible  <bruno@clisp.org>
35525
35526         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
35527         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
35528         HAVE_DECL_ISFINITE.
35529         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
35530         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
35531         HAVE_DECL_ISFINITE.
35532
35533 2007-10-28  Bruno Haible  <bruno@clisp.org>
35534
35535         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
35536         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
35537
35538 2007-10-28  Bruno Haible  <bruno@clisp.org>
35539
35540         Fix link errors with Sun C 5.0 on Solaris 10.
35541         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
35542         function is declared but not present in the compiler's libm.
35543         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
35544         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
35545         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
35546         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
35547         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
35548         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
35549         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
35550         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
35551         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
35552         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
35553         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
35554         HAVE_DECL_FLOORL.
35555
35556 2007-10-28  Bruno Haible  <bruno@clisp.org>
35557
35558         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
35559         gl_FUNC_FLOORL. Cache the result.
35560         (gl_FUNC_FLOORL): Use it.
35561         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
35562         gl_FUNC_CEILL. Cache the result.
35563         (gl_FUNC_CEILL): Use it.
35564
35565         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
35566         gl_FUNC_FLOOR. Cache the result.
35567         (gl_FUNC_FLOOR): Use it.
35568         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
35569         gl_FUNC_CEIL. Cache the result.
35570         (gl_FUNC_CEIL): Use it.
35571
35572         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
35573         gl_FUNC_FLOORF. Cache the result.
35574         (gl_FUNC_FLOORF): Use it.
35575         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
35576         gl_FUNC_CEILF. Cache the result.
35577         (gl_FUNC_CEILF): Use it.
35578
35579 2007-10-28  Bruno Haible  <bruno@clisp.org>
35580
35581         * gnulib-tool: Allow specifying the LGPL version number through
35582         --lgpl=2 or --lgpl=3.
35583         (func_usage): Document --lgpl with argument.
35584         Handle --lgpl=... arguments.
35585         (func_import): Recognize also gl_LGPL calls with an argument. When
35586         --lgpl=2 is used and the module's license is just LGPL, report an
35587         error. Set sed_transform_lib_file according to the lgpl variable. In
35588         the generated files, use --lgpl or gl_LGPL invocations with argument,
35589         if necessary.
35590         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
35591         an LGPv2+ license.
35592         * doc/gnulib-tool.texi (Modified imports): Update explanation of
35593         gl_LGPL macro.
35594
35595 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35596             Bruno Haible  <bruno@clisp.org>
35597
35598         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
35599         (u16_uctomb_aux): Likewise.
35600         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
35601         !HAVE_INLINE.
35602         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
35603
35604 2007-10-28  Bruno Haible  <bruno@clisp.org>
35605
35606         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
35607         Invoke AM_GETTEXT_OPTION if it exists.
35608         * modules/vasprintf: Likewise.
35609         * modules/verror: Likewise.
35610         * modules/xprintf: Likewise.
35611         * modules/xvasprintf: Likewise.
35612
35613 2007-10-27  Ben Pfaff  <blp@gnu.org>
35614
35615         * lib/math.in.h: Define isfinite macro and prototypes for
35616         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
35617         implementations.
35618         * m4/math_h.m4: New substitutions for isfinite module.
35619         * lib/isfinite.c: New file.
35620         * m4/isfinite.m4: New file.
35621         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
35622         * modules/isfinite: New file.
35623         * modules/isfinite-tests: New file.
35624         * tests/tests-isfinite.c: New file.
35625         * doc/functions/isfinite.texi: Mention isfinite module.
35626         * MODULES.html.sh: Mention new module.
35627
35628 2007-10-27  Ben Pfaff  <blp@gnu.org>
35629
35630         Ralf Wildenhues reported that Tru64 4.0D declares the round
35631         functions but does not have definitions.
35632         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
35633         cannot be found in any library, set the output variable to
35634         "missing" instead of "".
35635         * m4/round.m4: Also use our substitute if we cannot find round in
35636         any library, even if it is declared.
35637         * m4/roundf.m4: Likewise for roundf.
35638         * m4/roundl.m4: Likewise for roundl.
35639         * lib/math.in.h: Undefine roundf, round, roundl before defining
35640         their replacements, to allow for hypothetical systems where these
35641         may be defined as macros but not available in libraries.
35642
35643 2007-10-27  Bruno Haible  <bruno@clisp.org>
35644
35645         * doc/gnulib.texi: Invoke @firstparagraphindent.
35646         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
35647         changes in gnulib.
35648         (Source changes): New section.
35649
35650 2007-10-26  Bruno Haible  <bruno@clisp.org>
35651
35652         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
35653         borrowed from autoconf.
35654
35655 2007-10-26  Bruno Haible  <bruno@clisp.org>
35656
35657         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
35658         strerror returned the empty string. Needed on HP-UX 11.00.
35659
35660 2007-10-24  Micah Cowan  <micah@cowan.name>
35661
35662         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
35663         * build-aux/bootstrap: Remove support for now-unnecessary option,
35664         --cvs-user, and envvars CVS_USER, CVS_RSH.
35665
35666 2007-10-24  Jim Meyering  <meyering@redhat.com>
35667
35668         Avoid diagnostics from sha1sum when there is no cached checksum.
35669         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
35670         if the po.s1 file hasn't been created yet.
35671
35672         * build-aux/bootstrap: Sync from coreutils:
35673         2007-10-24  Jim Meyering  <meyering@redhat.com>
35674         Get gnulib from the git repository, not from an obsolete cvs one.
35675         * build-aux/bootstrap: Suggestion from Micah Cowan.
35676         2007-10-04  Jim Meyering  <jim@meyering.net>
35677         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
35678         (update_po_files): Work also when there are no .po files in po/.
35679
35680 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
35681
35682         * README: Append ".git" to git and cg examples.
35683         Problem reported by Benoit Sigoure.
35684
35685 2007-10-23  Micah Cowan  <micah@cowan.name>
35686
35687         * users.txt: Add wget.
35688
35689 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35690
35691         Fix linking of some unistdio tests on FreeBSD.
35692         * modules/unistdio/u16-vsnprintf-tests
35693         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
35694         * modules/unistdio/u16-vsprintf-tests
35695         (test_u16_vsnprintf1_LDADD): Likewise.
35696         * modules/unistdio/u32-vsnprintf-tests
35697         (test_u32_vsnprintf1_LDADD): Likewise.
35698         * modules/unistdio/u32-vsprintf-tests
35699         (test_u32_vsprintf1_LDADD): Likewise.
35700         * modules/unistdio/u8-vsnprintf-tests
35701         (test_u8_vsnprintf1_LDADD): Likewise.
35702         * modules/unistdio/u8-vsprintf-tests
35703         (test_u8_vsprintf1_LDADD): Likewise.
35704         * modules/unistdio/ulc-vsnprintf-tests
35705         (test_ulc_vsnprintf1_LDADD): Likewise.
35706         * modules/unistdio/ulc-vsprintf-tests
35707         (test_ulc_vsprintf1_LDADD): Likewise.
35708
35709         Fix linking of some uniconv tests on FreeBSD.
35710         * modules/uniconv/u16-conv-from-enc-tests
35711         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
35712         * modules/uniconv/u16-conv-to-enc-tests
35713         (test_u16_conv_to_enc_LDADD): Likewise.
35714         * modules/uniconv/u16-strconv-from-enc-tests
35715         (test_u16_strconv_from_enc_LDADD): Likewise.
35716         * modules/uniconv/u16-strconv-to-enc-tests
35717         (test_u16_strconv_to_enc_LDADD): Likewise.
35718         * modules/uniconv/u32-conv-from-enc-tests
35719         (test_u32_conv_from_enc_LDADD): Likewise.
35720         * modules/uniconv/u32-conv-to-enc-tests
35721         (test_u32_conv_to_enc_LDADD): Likewise.
35722         * modules/uniconv/u32-strconv-from-enc-tests
35723         (test_u32_strconv_from_enc_LDADD): Likewise.
35724         * modules/uniconv/u32-strconv-to-enc-tests
35725         (test_u32_strconv_to_enc_LDADD): Likewise.
35726         * modules/uniconv/u8-conv-from-enc-tests
35727         (test_u8_conv_from_enc_LDADD): Likewise.
35728         * modules/uniconv/u8-conv-to-enc-tests
35729         (test_u8_conv_to_enc_LDADD): Likewise.
35730         * modules/uniconv/u8-strconv-from-enc-tests
35731         (test_u8_strconv_from_enc_LDADD): Likewise.
35732         * modules/uniconv/u8-strconv-to-enc-tests
35733         (test_u8_strconv_to_enc_LDADD): Likewise.
35734
35735 2007-10-22  Bruno Haible  <bruno@clisp.org>
35736
35737         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
35738         size.
35739
35740 2007-10-22  Eric Blake  <ebb9@byu.net>
35741
35742         Tweak x*printf documentation.
35743         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
35744         variable name and comments.
35745         Suggested by Bruno Haible.
35746
35747 2007-10-22  Bruno Haible  <bruno@clisp.org>
35748
35749         * lib/acl.c (copy_acl): Fix file name in comment.
35750
35751 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
35752
35753         Fix Tru64 problem with stdbool.h.
35754         * lib/stdbool.in.h (false, true):
35755         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
35756         Don't declare as an enum in this situation; it runs afoul of Tru64.
35757         Problem reported by Steven M. Schweda in
35758         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
35759
35760 2007-10-22  Eric Blake  <ebb9@byu.net>
35761
35762         Also wrap vf?printf.
35763         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
35764         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
35765         (xvprintf, xvfprintf): New functions.
35766
35767 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35768
35769         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
35770         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
35771
35772         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
35773         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
35774
35775 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
35776
35777         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
35778         by Bruno Haible.
35779
35780 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35781
35782         * lib/getloadavg.c
35783         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
35784         Undef `sys' after including sys/table.h, for Tru64 4.0D.
35785
35786         * tests/test-i-ring.c: Work for C89.
35787
35788 2007-10-22  Bruno Haible  <bruno@clisp.org>
35789
35790         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
35791         -1u, in preprocessor expression, so that we don't test for the bug
35792         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
35793         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
35794
35795 2007-10-22  Eric Blake  <ebb9@byu.net>
35796
35797         * tests/test-yesno.sh: Silence stderr during test.
35798
35799 2007-10-22  Simon Josefsson  <simon@josefsson.org>
35800
35801         * modules/crypto/gc-camellia: New file.
35802
35803         * m4/gc-camellia.m4: New file.
35804
35805         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
35806
35807         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
35808
35809 2007-10-22  Simon Josefsson  <simon@josefsson.org>
35810
35811         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
35812         --help to stdout.  Reported by sms@antinode.org (Steven
35813         M. Schweda).
35814
35815 2007-10-22  Simon Josefsson  <simon@josefsson.org>
35816
35817         * users.txt: Fix link to libksba.
35818
35819 2007-10-21  Ben Pfaff  <blp@gnu.org>
35820
35821         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
35822         round.c roundf implementation that depends on floorf and ceilf to
35823         be tested unconditionally.
35824
35825 2007-10-21  Ben Pfaff  <blp@gnu.org>
35826
35827         * m4/check-libm-func.m4: Removed.
35828         * m4/check-math-lib.m4: New file.
35829         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
35830         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
35831         definition and lack of AC_LIBOBJ([roundf]).
35832         * m4/roundl.m4: Ditto, and similarly for roundl.
35833         * modules/round: Reference new m4 file.
35834         * modules/roundf: Ditto.
35835         * modules/roundl: Ditto.
35836         * tests/test-round2.c (main): Use ROUND instead of round.
35837         Bug report from Bruno Haible.
35838
35839 2007-10-21  Bruno Haible  <bruno@clisp.org>
35840
35841         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
35842         context.
35843
35844 2007-10-21  Bruno Haible  <bruno@clisp.org>
35845
35846         * tests/test-wcwidth.c (main): Allow negative result for some control
35847         characters.
35848
35849         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
35850         Needed on OSF/1 5.1.
35851
35852 2007-10-21  Bruno Haible  <bruno@clisp.org>
35853
35854         * tests/test-floorf1.c: Include isnanf.h.
35855         (main): Use isnanf() instead of isnan().
35856         * tests/test-ceilf1.c: Include isnanf.h.
35857         (main): Use isnanf() instead of isnan().
35858         * tests/test-truncf1.c: Include isnanf.h.
35859         (main): Use isnanf() instead of isnan().
35860         * tests/test-roundf1.c: Include isnanf.h.
35861         (main): Use isnanf() instead of isnan().
35862
35863 2007-10-21  Eric Blake  <ebb9@byu.net>
35864
35865         * users.txt: Update URL for m4.
35866
35867 2007-10-21  Bruno Haible  <bruno@clisp.org>
35868
35869         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
35870
35871 2007-10-21  Bruno Haible  <bruno@clisp.org>
35872
35873         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
35874         Git's management files if the CVS files are not present.
35875
35876 2007-10-20  Bruno Haible  <bruno@clisp.org>
35877
35878         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
35879         gcc-3.4.x.
35880
35881 2007-10-20  Ben Pfaff  <blp@gnu.org>
35882
35883         * lib/math.in.h: Declare round, roundf, roundl if we are providing
35884         implementations.
35885         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
35886         * lib/round.c: New file.
35887         * lib/roundf.c: New file.
35888         * lib/roundl.c: New file.
35889         * m4/round.m4: New file.
35890         * m4/roundf.m4: New file.
35891         * m4/roundl.m4: New file.
35892         * m4/check-libm-func-m4: New file.
35893         * modules/math: Replace round, roundf, roundl related @VARS@ in
35894         math.in.h.
35895         * modules/round: New file.
35896         * modules/round-tests: New file.
35897         * modules/roundf: New file.
35898         * modules/roundf-tests: New file.
35899         * modules/roundl: New file.
35900         * modules/roundl-tests: New file.
35901         * tests/test-round1.c: New file.
35902         * tests/test-round2.c: New file.
35903         * tests/test-roundf1.c: New file.
35904         * tests/test-roundf2.c: New file.
35905         * tests/test-roundl.c: New file.
35906         * doc/functions/round.texi: Mention round module.
35907         * doc/functions/roundf.texi: Mention roundf module.
35908         * doc/functions/roundl.texi: Mention roundl module.
35909         * MODULES.html.sh: Mention new modules.
35910         Thanks to Bruno Haible for suggestions.
35911
35912 2007-10-20  Jim Meyering  <meyering@redhat.com>
35913
35914         * lib/xprintf.c: Include <config.h> unconditionally.
35915
35916         Change xprintf's license to GPL.
35917         * modules/xprintf (License): s/LGPL/GPL/, since this module
35918         depends on modules (exit and exitfail) which are GPL.
35919         Suggestion from Bruno Haible.
35920
35921         xprintf fixes.
35922         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
35923         Use a clearer diagnostic.
35924         Patch from Bruno Haible.
35925
35926 2007-10-20  Bruno Haible  <bruno@clisp.org>
35927
35928         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
35929         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
35930         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
35931
35932 2007-10-20  Bruno Haible  <bruno@clisp.org>
35933
35934         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
35935         precision in the comparison result > x - 1 or similar.
35936         * tests/test-ceilf2.c (correct_result_p): Likewise.
35937         * tests/test-truncf2.c (correct_result_p): Likewise.
35938         * tests/test-trunc2.c (correct_result_p): Likewise.
35939         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
35940
35941 2007-10-20  Bruno Haible  <bruno@clisp.org>
35942
35943         * modules/ceil: New file.
35944         * m4/ceil.m4: New file.
35945         * doc/functions/ceil.texi: Mention the 'ceil' module.
35946
35947 2007-10-20  Bruno Haible  <bruno@clisp.org>
35948
35949         * modules/floor: New file.
35950         * m4/floor.m4: New file.
35951         * doc/functions/floor.texi: Mention the 'floor' module.
35952
35953 2007-10-20  Bruno Haible  <bruno@clisp.org>
35954
35955         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
35956         of %a.
35957         * modules/floorf-tests (Depends-on): Likewise.
35958         * modules/truncf-tests (Depends-on): Likewise.
35959         * modules/trunc-tests (Depends-on): Likewise.
35960         Reported by Ben Pfaff.
35961
35962 2007-10-19  Jim Meyering  <meyering@redhat.com>
35963
35964         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
35965         Don't bother testing specific errno values.  Just test ferror.
35966
35967         New module: xprintf
35968         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
35969
35970 2007-10-19  Bruno Haible  <bruno@clisp.org>
35971
35972         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
35973         syntax.
35974         * modules/javaexec (Makefile.am): Likewise.
35975         * modules/relocatable-prog (Makefile.am): Likewise.
35976         Suggested by Jim Meyering.
35977
35978 2007-10-18  Bruno Haible  <bruno@clisp.org>
35979
35980         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
35981         Reported by Jim Meyering.
35982
35983 2007-10-18  Eric Blake  <ebb9@byu.net>
35984
35985         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
35986
35987 2007-10-18  Bruno Haible  <bruno@clisp.org>
35988
35989         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
35990         the format string into writable memory. Needed in Fortify conditions.
35991
35992 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
35993             Bruno Haible  <bruno@clisp.org>
35994
35995         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
35996         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
35997         * modules/trim (Depends-on): Add mbchar.
35998         (configure.ac): Add gl_FUNC_MBRTOWC.
35999         (Makefile.am): Augment lib_SOURCES.
36000
36001 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
36002
36003         Modify glob.c to use fstatat and dirfd, to simplify it.
36004         Suggested by Eric Blake.
36005         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
36006         Don't include <stdbool.h>; not used.
36007         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
36008         (link_exists_p): Simplify implementation, since we can now assume
36009         dirfd and fstatat.
36010         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
36011
36012 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36013
36014         * gnulib-tool (func_get_dependencies): Fix sed script to
36015         match only tests.
36016
36017 2007-10-17  Bruno Haible  <bruno@clisp.org>
36018
36019         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
36020         allow locale names without encoding suffix.
36021         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
36022         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
36023
36024 2007-10-16  Bruno Haible  <bruno@clisp.org>
36025
36026         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
36027         * lib/getgroups.c (getgroups): Likewise.
36028         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
36029
36030 2007-10-16  Bruno Haible  <bruno@clisp.org>
36031
36032         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
36033         * modules/malloc-posix (License): Likewise.
36034         * modules/realloc-posix (License): Likewise.
36035         * modules/calloc-posix (License): Likewise.
36036         * modules/intprops (License): Change from GPL to LGPL, with
36037         Paul Eggert's approval.
36038
36039 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
36040
36041         Merge glibc changes into lib/glob.c.
36042
36043         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
36044         2007-10-15 04:59:03 UTC.  Here are the changes:
36045
36046         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
36047
36048         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
36049
36050         * lib/glob.c: Add some branch prediction throughout.
36051
36052         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
36053
36054         [BZ #5103]
36055         * lib/glob.c (glob): Recognize patterns starting \/.
36056
36057         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
36058
36059         [BZ #3996]
36060         * lib/glob.c (attribute_hidden): Define if not defined.
36061         (glob): Unescape dirname, filename or username when needed and not
36062         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
36063         is NULL.  Handle unescaped [ in pattern without closing ].
36064         Don't pass GLOB_CHECK down to recursive glob for directories.
36065         (__glob_pattern_type): New function.
36066         (__glob_pattern_p): Implement using __glob_pattern_type.
36067         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
36068         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
36069         Remove unreachable code.
36070
36071         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
36072
36073         * lib/glob.c (glob_in_dir): Add some comments and asserts to
36074         explain why there are no leaks.
36075
36076         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
36077
36078         [BZ #3253]
36079         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
36080         time, rather allocate increasingly bigger arrays of pointers, if
36081         possible with alloca, if too large with malloc.
36082
36083 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
36084
36085         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
36086         Problem reported by H.Merijn Brand in
36087         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
36088         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
36089         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
36090
36091 2007-10-15  Bruno Haible  <bruno@clisp.org>
36092
36093         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
36094         with explicit rpl_ prefix.
36095         * lib/fopen.c (fopen): Likewise.
36096         * lib/freopen.c (freopen): Likewise.
36097         * lib/iconv.c (iconv): Likewise.
36098         * lib/iconv_close.c (iconv_close): Likewise.
36099
36100 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36101
36102         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
36103
36104 2007-10-15  Bruno Haible  <bruno@clisp.org>
36105
36106         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
36107         <stddef.h> instead of <stdlib.h> since we only need NULL.
36108         Reported by Ben Pfaff <blp@cs.stanford.edu>.
36109
36110 2007-10-15  Bruno Haible  <bruno@clisp.org>
36111
36112         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
36113         Replace paragraph talking about LIBOBJS.
36114         Reported by Colin Watson <cjwatson@debian.org>.
36115
36116 2007-10-15  Bruno Haible  <bruno@clisp.org>
36117
36118         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
36119         <stdlib.h> before using NULL.
36120
36121 2007-10-15  Simon Josefsson  <simon@josefsson.org>
36122
36123         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
36124         Reported by Albert Chin <china@thewrittenword.com>.
36125
36126 2007-10-14  Bruno Haible  <bruno@clisp.org>
36127
36128         * modules/iconv_open-utf-tests: New file.
36129         * tests/test-iconv-utf.c: New file.
36130
36131         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
36132         * modules/iconv_open-utf: New file.
36133         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
36134         (iconv, iconv_close): New declarations.
36135         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
36136         be defined.
36137         (iconv_open): Add special handling of conversion between UTF-8 and
36138         UTF-{16,32}{BE,LE}.
36139         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
36140         * lib/iconv_close.c: New file.
36141         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
36142         gl_FUNC_ICONV_OPEN.
36143         (gl_FUNC_ICONV_OPEN): Use it.
36144         (gl_FUNC_ICONV_OPEN_UTF): New macro.
36145         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
36146         and REPLACE_ICONV_UTF.
36147         * modules/iconv_open (Depends-on): Add c-strcase.
36148         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
36149         ICONV_CONST.
36150         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
36151
36152 2007-10-13  Albert Chin  <china@thewrittenword.com>
36153             Bruno Haible  <bruno@clisp.org>
36154
36155         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
36156         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
36157
36158 2007-10-13  Bruno Haible  <bruno@clisp.org>
36159
36160         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
36161         defined, use the ISO C99 inline semantics.
36162         * lib/argp.h (ARGP_EI): Likewise.
36163
36164 2007-10-13  Bruno Haible  <bruno@clisp.org>
36165
36166         Handle 'inline' change in gcc 4.3.0.
36167         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
36168         argp_fmtstream_write, argp_fmtstream_set_lmargin,
36169         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
36170         argp_fmtstream_point): Disable 'extern' declaration if the function
36171         definition is going to be provided inline.
36172         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
36173         semantics, not the ISO C99 inline semantics.
36174         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
36175         'extern' declaration if the function definition is going to be provided
36176         inline.
36177         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
36178         the GNU C inline semantics, not the ISO C99 inline semantics. With
36179         GCC 4.2, avoid a warning.
36180
36181 2007-10-13  Bruno Haible  <bruno@clisp.org>
36182
36183         * lib/freading.h (freading): Enable the use of __freading for
36184         glibc >= 2.7.
36185         * lib/freading.c (freading): Likewise.
36186
36187 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
36188
36189         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
36190         "warning: C99 inline functions are not supported; using GNU89".
36191
36192 2007-10-12  Bruno Haible  <bruno@clisp.org>
36193
36194         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
36195         of 2.
36196         * tests/test-ceilf2.c: New file.
36197         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
36198
36199         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
36200         * modules/ceilf-tests: Update.
36201
36202 2007-10-12  Bruno Haible  <bruno@clisp.org>
36203
36204         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
36205         of 2.
36206         * tests/test-floorf2.c: New file.
36207         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
36208
36209         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
36210         * modules/floorf-tests: Update.
36211
36212 2007-10-12  Bruno Haible  <bruno@clisp.org>
36213
36214         * tests/test-trunc2.c: New file.
36215         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
36216
36217         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
36218         * modules/trunc-tests: Update.
36219
36220 2007-10-12  Bruno Haible  <bruno@clisp.org>
36221
36222         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
36223         of 2.
36224         * tests/test-truncf2.c: New file.
36225         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
36226
36227         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
36228         * modules/truncf-tests: Update.
36229
36230 2007-10-11  Eric Blake  <ebb9@byu.net>
36231
36232         Don't claim strerror is broken on Interix.
36233         * doc/functions/strerror.texi (strerror): Known broken systems are
36234         now Solaris 8, and not Interix.
36235         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
36236         Interix on cross-compile.
36237         Reported by Martin Koeppe in
36238         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
36239
36240 2007-10-11  Bruno Haible  <bruno@clisp.org>
36241
36242         * modules/i-ring-tests: New file.
36243         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
36244         instead of assert.
36245
36246 2007-10-11  Bruno Haible  <bruno@clisp.org>
36247
36248         * modules/filenamecat-tests: New file.
36249         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
36250         * lib/filenamecat.c: Remove test code.
36251
36252 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
36253
36254         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
36255
36256         * lib/strerror.c: Include <string.h> always, to test interface,
36257         and to remove the need for the dummy.
36258         Include intprops.h to compute width instead of doing it ourselves
36259         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
36260         (strerror): Define it to return NULL if there's no system strerror.
36261         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
36262         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
36263         ancient pre-strerror Unix systems well any more.  Saying "unknown
36264         system error" is enough.
36265         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
36266         simpler strerror.c implementation.
36267         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
36268         Simplify the tests to reflect the simpler strerror implementation.
36269         * modules/strerror (Depends-on): Add intprops.
36270
36271 2007-10-09  Eric Blake  <ebb9@byu.net>
36272
36273         Silence test-fpending.
36274         * modules/fpending-tests (Files): Add wrapper script.
36275         * tests/test-fpending.sh: New file.
36276
36277 2007-10-09  Bruno Haible  <bruno@clisp.org>
36278
36279         * MODULES.html.sh (func_module): Don't create a hyperlink for
36280         function names like 'printf_frexp'.
36281         (Misc): Add crc, memxor.
36282         (Characteristics of floating types): New section.
36283         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
36284         isnanf-nolibm, signbit, trunc, truncf, truncl.
36285         (Enhancements for ISO C 99 functions): New subsection Input/output.
36286         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
36287         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
36288         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
36289         (Compatibility checks for POSIX:2001 functions): Add clock-time.
36290         (Enhancements for POSIX:2001 functions): Add chdir-long.
36291         (File system functions): Add areadlink, chdir-safer, read-file.
36292         Remove cycle-check.
36293         (File system as inode set): New section.
36294         (Date and time): Add gethrxtime.
36295         (Multithreading): Add openmp.
36296         (Internationalization functions): Add localename.
36297         (Unicode string functions): Add unistr/u*-mbsnlen.
36298         (Support for maintaining and releasing projects): Add git-version-gen.
36299         (Lone files): Remove directories.
36300
36301 2007-10-08  Ben Pfaff  <blp@gnu.org>
36302
36303         * lib/xmalloca.h: Fix typo in comment.
36304
36305 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
36306
36307         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
36308         when avoiding problems with integer overflow.  Use a portable test
36309         instead.
36310
36311 2007-10-08  Simon Josefsson  <simon@josefsson.org>
36312
36313         * modules/dummy (License): Change to LGPLv2+.
36314         * modules/float (License): Likewise
36315         * modules/realloc (License): Likewise
36316         * modules/stdlib (License): Likewise
36317
36318 2007-10-07  Bruno Haible  <bruno@clisp.org>
36319
36320         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
36321         * floor.c (TWO_MANT_DIG): Likewise.
36322         * ceil.c (TWO_MANT_DIG): Likewise.
36323         Reported by Ben Pfaff.
36324
36325 2007-10-07  Bruno Haible  <bruno@clisp.org>
36326
36327         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
36328         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
36329         * lib/frexp.c (FUNC): Likewise.
36330         * lib/printf-frexp.h (printf_frexp): Likewise.
36331         * lib/printf-frexpl.h (printf_frexpl): Likewise.
36332         * lib/printf-frexp.c (FUNC): Likewise.
36333         Suggested by Jim Meyering.
36334
36335 2007-10-07  Jim Meyering  <meyering@redhat.com>
36336
36337         Make xnanosleep's integer overflow test more robust.
36338         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
36339         so that gcc-4.3.0 doesn't optimize away this test for overflow.
36340
36341 2007-10-07  Bruno Haible  <bruno@clisp.org>
36342
36343         * NEWS: Mention the license change.
36344
36345         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
36346         abbreviations in the modules files.
36347
36348         Change copyright notice from GPLv2+ to GPLv3+.
36349         * README: Change copyright notice.
36350         * MODULES.html.sh: Likewise.
36351         * build-aux/bootstrap.conf: Likewise.
36352         * build-aux/config.libpath: Likewise.
36353         * build-aux/csharpcomp.sh.in: Likewise.
36354         * build-aux/csharpexec.sh.in: Likewise.
36355         * build-aux/install-reloc: Likewise.
36356         * build-aux/javacomp.sh.in: Likewise.
36357         * build-aux/javaexec.sh.in: Likewise.
36358         * build-aux/ldd.sh.in: Likewise.
36359         * build-aux/reloc-ldflags: Likewise.
36360         * build-aux/relocatable.sh.in: Likewise.
36361         * build-aux/x-to-1.in: Likewise.
36362         * check-module: Likewise.
36363         * config/srclistvars.sh: Likewise.
36364         * gnulib-tool: Likewise.
36365         * lib/acl-internal.h: Likewise.
36366         * lib/acl.c: Likewise.
36367         * lib/acl.h: Likewise.
36368         * lib/acl_entries.c: Likewise.
36369         * lib/areadlink-with-size.c: Likewise.
36370         * lib/areadlink.c: Likewise.
36371         * lib/areadlink.h: Likewise.
36372         * lib/argmatch.c: Likewise.
36373         * lib/argmatch.h: Likewise.
36374         * lib/argp-ba.c: Likewise.
36375         * lib/argp-eexst.c: Likewise.
36376         * lib/argp-fmtstream.c: Likewise.
36377         * lib/argp-fmtstream.h: Likewise.
36378         * lib/argp-fs-xinl.c: Likewise.
36379         * lib/argp-help.c: Likewise.
36380         * lib/argp-namefrob.h: Likewise.
36381         * lib/argp-parse.c: Likewise.
36382         * lib/argp-pin.c: Likewise.
36383         * lib/argp-pv.c: Likewise.
36384         * lib/argp-pvh.c: Likewise.
36385         * lib/argp-xinl.c: Likewise.
36386         * lib/argp.h: Likewise.
36387         * lib/at-func.c: Likewise.
36388         * lib/atanl.c: Likewise.
36389         * lib/backupfile.c: Likewise.
36390         * lib/backupfile.h: Likewise.
36391         * lib/basename.c: Likewise.
36392         * lib/binary-io.h: Likewise.
36393         * lib/byteswap.in.h: Likewise.
36394         * lib/c-stack.c: Likewise.
36395         * lib/c-stack.h: Likewise.
36396         * lib/c-strcasestr.c: Likewise.
36397         * lib/c-strcasestr.h: Likewise.
36398         * lib/c-strstr.c: Likewise.
36399         * lib/c-strstr.h: Likewise.
36400         * lib/c-strtod.c: Likewise.
36401         * lib/calloc.c: Likewise.
36402         * lib/canon-host.c: Likewise.
36403         * lib/canon-host.h: Likewise.
36404         * lib/canonicalize-lgpl.c: Likewise.
36405         * lib/canonicalize.c: Likewise.
36406         * lib/canonicalize.h: Likewise.
36407         * lib/ceil.c: Likewise.
36408         * lib/ceilf.c: Likewise.
36409         * lib/ceill.c: Likewise.
36410         * lib/chdir-long.c: Likewise.
36411         * lib/chdir-long.h: Likewise.
36412         * lib/chdir-safer.c: Likewise.
36413         * lib/chdir-safer.h: Likewise.
36414         * lib/chown.c: Likewise.
36415         * lib/classpath.c: Likewise.
36416         * lib/classpath.h: Likewise.
36417         * lib/clean-temp.c: Likewise.
36418         * lib/clean-temp.h: Likewise.
36419         * lib/cloexec.c: Likewise.
36420         * lib/close-stream.c: Likewise.
36421         * lib/closein.c: Likewise.
36422         * lib/closein.h: Likewise.
36423         * lib/closeout.c: Likewise.
36424         * lib/closeout.h: Likewise.
36425         * lib/concat-filename.c: Likewise.
36426         * lib/copy-file.c: Likewise.
36427         * lib/copy-file.h: Likewise.
36428         * lib/count-one-bits.h: Likewise.
36429         * lib/crc.c: Likewise.
36430         * lib/crc.h: Likewise.
36431         * lib/creat-safer.c: Likewise.
36432         * lib/csharpcomp.c: Likewise.
36433         * lib/csharpcomp.h: Likewise.
36434         * lib/csharpexec.c: Likewise.
36435         * lib/csharpexec.h: Likewise.
36436         * lib/cycle-check.c: Likewise.
36437         * lib/cycle-check.h: Likewise.
36438         * lib/diacrit.c: Likewise.
36439         * lib/diacrit.h: Likewise.
36440         * lib/diffseq.h: Likewise.
36441         * lib/dirchownmod.c: Likewise.
36442         * lib/dirent.in.h: Likewise.
36443         * lib/dirfd.c: Likewise.
36444         * lib/dirfd.h: Likewise.
36445         * lib/dirname.c: Likewise.
36446         * lib/dirname.h: Likewise.
36447         * lib/dummy.c: Likewise.
36448         * lib/dup-safer.c: Likewise.
36449         * lib/dup2.c: Likewise.
36450         * lib/eealloc.h: Likewise.
36451         * lib/error.c: Likewise.
36452         * lib/error.h: Likewise.
36453         * lib/euidaccess.c: Likewise.
36454         * lib/exclude.c: Likewise.
36455         * lib/exclude.h: Likewise.
36456         * lib/execute.c: Likewise.
36457         * lib/execute.h: Likewise.
36458         * lib/exitfail.c: Likewise.
36459         * lib/exitfail.h: Likewise.
36460         * lib/expl.c: Likewise.
36461         * lib/fatal-signal.c: Likewise.
36462         * lib/fatal-signal.h: Likewise.
36463         * lib/fbufmode.c: Likewise.
36464         * lib/fbufmode.h: Likewise.
36465         * lib/fchdir.c: Likewise.
36466         * lib/fchmodat.c: Likewise.
36467         * lib/fchownat.c: Likewise.
36468         * lib/fcntl--.h: Likewise.
36469         * lib/fcntl-safer.h: Likewise.
36470         * lib/fcntl.in.h: Likewise.
36471         * lib/fd-safer.c: Likewise.
36472         * lib/fflush.c: Likewise.
36473         * lib/file-has-acl.c: Likewise.
36474         * lib/file-set.c: Likewise.
36475         * lib/file-type.c: Likewise.
36476         * lib/file-type.h: Likewise.
36477         * lib/fileblocks.c: Likewise.
36478         * lib/filemode.c: Likewise.
36479         * lib/filemode.h: Likewise.
36480         * lib/filename.h: Likewise.
36481         * lib/filenamecat.c: Likewise.
36482         * lib/filenamecat.h: Likewise.
36483         * lib/findprog.c: Likewise.
36484         * lib/findprog.h: Likewise.
36485         * lib/float.in.h: Likewise.
36486         * lib/floor.c: Likewise.
36487         * lib/floorf.c: Likewise.
36488         * lib/floorl.c: Likewise.
36489         * lib/fopen-safer.c: Likewise.
36490         * lib/fopen.c: Likewise.
36491         * lib/fpending.c: Likewise.
36492         * lib/fpending.h: Likewise.
36493         * lib/fprintf.c: Likewise.
36494         * lib/fprintftime.h: Likewise.
36495         * lib/fpucw.h: Likewise.
36496         * lib/fpurge.c: Likewise.
36497         * lib/fpurge.h: Likewise.
36498         * lib/freadable.c: Likewise.
36499         * lib/freadable.h: Likewise.
36500         * lib/freadahead.c: Likewise.
36501         * lib/freadahead.h: Likewise.
36502         * lib/freading.c: Likewise.
36503         * lib/freading.h: Likewise.
36504         * lib/free.c: Likewise.
36505         * lib/freopen.c: Likewise.
36506         * lib/frexp.c: Likewise.
36507         * lib/frexpl.c: Likewise.
36508         * lib/fseek.c: Likewise.
36509         * lib/fseterr.c: Likewise.
36510         * lib/fseterr.h: Likewise.
36511         * lib/fstatat.c: Likewise.
36512         * lib/fstrcmp.c: Likewise.
36513         * lib/fstrcmp.h: Likewise.
36514         * lib/fsusage.c: Likewise.
36515         * lib/fsusage.h: Likewise.
36516         * lib/ftell.c: Likewise.
36517         * lib/ftello.c: Likewise.
36518         * lib/fts-cycle.c: Likewise.
36519         * lib/fts.c: Likewise.
36520         * lib/fts_.h: Likewise.
36521         * lib/full-read.c: Likewise.
36522         * lib/full-read.h: Likewise.
36523         * lib/full-write.c: Likewise.
36524         * lib/full-write.h: Likewise.
36525         * lib/fwritable.c: Likewise.
36526         * lib/fwritable.h: Likewise.
36527         * lib/fwriteerror.c: Likewise.
36528         * lib/fwriteerror.h: Likewise.
36529         * lib/fwriting.c: Likewise.
36530         * lib/fwriting.h: Likewise.
36531         * lib/gcd.c: Likewise.
36532         * lib/gcd.h: Likewise.
36533         * lib/getcwd.c: Likewise.
36534         * lib/getdate.h: Likewise.
36535         * lib/getdate.y: Likewise.
36536         * lib/getdomainname.c: Likewise.
36537         * lib/getdomainname.h: Likewise.
36538         * lib/getgroups.c: Likewise.
36539         * lib/gethostname.c: Likewise.
36540         * lib/gethrxtime.c: Likewise.
36541         * lib/gethrxtime.h: Likewise.
36542         * lib/getloadavg.c: Likewise.
36543         * lib/getndelim2.c: Likewise.
36544         * lib/getndelim2.h: Likewise.
36545         * lib/getnline.c: Likewise.
36546         * lib/getnline.h: Likewise.
36547         * lib/getopt.c: Likewise.
36548         * lib/getopt.in.h: Likewise.
36549         * lib/getopt1.c: Likewise.
36550         * lib/getopt_int.h: Likewise.
36551         * lib/getpagesize.h: Likewise.
36552         * lib/getsubopt.c: Likewise.
36553         * lib/gettime.c: Likewise.
36554         * lib/getugroups.c: Likewise.
36555         * lib/getugroups.h: Likewise.
36556         * lib/getusershell.c: Likewise.
36557         * lib/gl_anyavltree_list1.h: Likewise.
36558         * lib/gl_anyavltree_list2.h: Likewise.
36559         * lib/gl_anyhash_list1.h: Likewise.
36560         * lib/gl_anyhash_list2.h: Likewise.
36561         * lib/gl_anylinked_list1.h: Likewise.
36562         * lib/gl_anylinked_list2.h: Likewise.
36563         * lib/gl_anyrbtree_list1.h: Likewise.
36564         * lib/gl_anyrbtree_list2.h: Likewise.
36565         * lib/gl_anytree_list1.h: Likewise.
36566         * lib/gl_anytree_list2.h: Likewise.
36567         * lib/gl_anytree_oset.h: Likewise.
36568         * lib/gl_anytreehash_list1.h: Likewise.
36569         * lib/gl_anytreehash_list2.h: Likewise.
36570         * lib/gl_array_list.c: Likewise.
36571         * lib/gl_array_list.h: Likewise.
36572         * lib/gl_array_oset.c: Likewise.
36573         * lib/gl_array_oset.h: Likewise.
36574         * lib/gl_avltree_list.c: Likewise.
36575         * lib/gl_avltree_list.h: Likewise.
36576         * lib/gl_avltree_oset.c: Likewise.
36577         * lib/gl_avltree_oset.h: Likewise.
36578         * lib/gl_avltreehash_list.c: Likewise.
36579         * lib/gl_avltreehash_list.h: Likewise.
36580         * lib/gl_carray_list.c: Likewise.
36581         * lib/gl_carray_list.h: Likewise.
36582         * lib/gl_linked_list.c: Likewise.
36583         * lib/gl_linked_list.h: Likewise.
36584         * lib/gl_linkedhash_list.c: Likewise.
36585         * lib/gl_linkedhash_list.h: Likewise.
36586         * lib/gl_list.c: Likewise.
36587         * lib/gl_list.h: Likewise.
36588         * lib/gl_oset.c: Likewise.
36589         * lib/gl_oset.h: Likewise.
36590         * lib/gl_rbtree_list.c: Likewise.
36591         * lib/gl_rbtree_list.h: Likewise.
36592         * lib/gl_rbtree_oset.c: Likewise.
36593         * lib/gl_rbtree_oset.h: Likewise.
36594         * lib/gl_rbtreehash_list.c: Likewise.
36595         * lib/gl_rbtreehash_list.h: Likewise.
36596         * lib/gl_sublist.c: Likewise.
36597         * lib/gl_sublist.h: Likewise.
36598         * lib/group-member.c: Likewise.
36599         * lib/group-member.h: Likewise.
36600         * lib/hard-locale.c: Likewise.
36601         * lib/hard-locale.h: Likewise.
36602         * lib/hash-pjw.c: Likewise.
36603         * lib/hash-pjw.h: Likewise.
36604         * lib/hash-triple.c: Likewise.
36605         * lib/hash.c: Likewise.
36606         * lib/hash.h: Likewise.
36607         * lib/human.c: Likewise.
36608         * lib/human.h: Likewise.
36609         * lib/i-ring.c: Likewise.
36610         * lib/i-ring.h: Likewise.
36611         * lib/idcache.c: Likewise.
36612         * lib/imaxabs.c: Likewise.
36613         * lib/imaxdiv.c: Likewise.
36614         * lib/inet_pton.c: Likewise.
36615         * lib/inet_pton.h: Likewise.
36616         * lib/intprops.h: Likewise.
36617         * lib/inttostr.c: Likewise.
36618         * lib/inttostr.h: Likewise.
36619         * lib/inttypes.in.h: Likewise.
36620         * lib/isapipe.c: Likewise.
36621         * lib/isdir.c: Likewise.
36622         * lib/isnan.c: Likewise.
36623         * lib/isnan.h: Likewise.
36624         * lib/isnanf.c: Likewise.
36625         * lib/isnanf.h: Likewise.
36626         * lib/isnanl-nolibm.h: Likewise.
36627         * lib/isnanl.c: Likewise.
36628         * lib/isnanl.h: Likewise.
36629         * lib/javacomp.c: Likewise.
36630         * lib/javacomp.h: Likewise.
36631         * lib/javaexec.c: Likewise.
36632         * lib/javaexec.h: Likewise.
36633         * lib/javaversion.c: Likewise.
36634         * lib/javaversion.h: Likewise.
36635         * lib/javaversion.java: Likewise.
36636         * lib/lbrkprop.h: Likewise.
36637         * lib/lchmod.h: Likewise.
36638         * lib/lchown.c: Likewise.
36639         * lib/ldexpl.c: Likewise.
36640         * lib/linebreak.c: Likewise.
36641         * lib/linebreak.h: Likewise.
36642         * lib/linebuffer.c: Likewise.
36643         * lib/linebuffer.h: Likewise.
36644         * lib/locale.in.h: Likewise.
36645         * lib/logl.c: Likewise.
36646         * lib/long-options.c: Likewise.
36647         * lib/long-options.h: Likewise.
36648         * lib/lstat.c: Likewise.
36649         * lib/lstat.h: Likewise.
36650         * lib/math.in.h: Likewise.
36651         * lib/mbchar.c: Likewise.
36652         * lib/mbchar.h: Likewise.
36653         * lib/mbfile.h: Likewise.
36654         * lib/mbiter.h: Likewise.
36655         * lib/mbscasecmp.c: Likewise.
36656         * lib/mbscasestr.c: Likewise.
36657         * lib/mbschr.c: Likewise.
36658         * lib/mbscspn.c: Likewise.
36659         * lib/mbslen.c: Likewise.
36660         * lib/mbsncasecmp.c: Likewise.
36661         * lib/mbsnlen.c: Likewise.
36662         * lib/mbspbrk.c: Likewise.
36663         * lib/mbspcasecmp.c: Likewise.
36664         * lib/mbsrchr.c: Likewise.
36665         * lib/mbssep.c: Likewise.
36666         * lib/mbsspn.c: Likewise.
36667         * lib/mbsstr.c: Likewise.
36668         * lib/mbstok_r.c: Likewise.
36669         * lib/mbswidth.c: Likewise.
36670         * lib/mbswidth.h: Likewise.
36671         * lib/mbuiter.h: Likewise.
36672         * lib/memcasecmp.c: Likewise.
36673         * lib/memcasecmp.h: Likewise.
36674         * lib/memchr.c: Likewise.
36675         * lib/memcmp.c: Likewise.
36676         * lib/memcoll.c: Likewise.
36677         * lib/memcoll.h: Likewise.
36678         * lib/memcpy.c: Likewise.
36679         * lib/memrchr.c: Likewise.
36680         * lib/mkancesdirs.c: Likewise.
36681         * lib/mkdir-p.c: Likewise.
36682         * lib/mkdir-p.h: Likewise.
36683         * lib/mkdir.c: Likewise.
36684         * lib/mkdirat.c: Likewise.
36685         * lib/mkdtemp.c: Likewise.
36686         * lib/mkstemp-safer.c: Likewise.
36687         * lib/mkstemp.c: Likewise.
36688         * lib/modechange.c: Likewise.
36689         * lib/modechange.h: Likewise.
36690         * lib/mountlist.c: Likewise.
36691         * lib/mountlist.h: Likewise.
36692         * lib/mpsort.c: Likewise.
36693         * lib/nanosleep.c: Likewise.
36694         * lib/obstack.c: Likewise.
36695         * lib/obstack.h: Likewise.
36696         * lib/open-safer.c: Likewise.
36697         * lib/open.c: Likewise.
36698         * lib/openat-die.c: Likewise.
36699         * lib/openat-priv.h: Likewise.
36700         * lib/openat-proc.c: Likewise.
36701         * lib/openat.c: Likewise.
36702         * lib/openat.h: Likewise.
36703         * lib/pagealign_alloc.c: Likewise.
36704         * lib/pagealign_alloc.h: Likewise.
36705         * lib/physmem.c: Likewise.
36706         * lib/physmem.h: Likewise.
36707         * lib/pipe-safer.c: Likewise.
36708         * lib/pipe.c: Likewise.
36709         * lib/pipe.h: Likewise.
36710         * lib/posixtm.c: Likewise.
36711         * lib/posixtm.h: Likewise.
36712         * lib/posixver.c: Likewise.
36713         * lib/printf-frexp.c: Likewise.
36714         * lib/printf-frexp.h: Likewise.
36715         * lib/printf-frexpl.c: Likewise.
36716         * lib/printf-frexpl.h: Likewise.
36717         * lib/printf.c: Likewise.
36718         * lib/progname.c: Likewise.
36719         * lib/progname.h: Likewise.
36720         * lib/progreloc.c: Likewise.
36721         * lib/putenv.c: Likewise.
36722         * lib/quote.c: Likewise.
36723         * lib/quote.h: Likewise.
36724         * lib/quotearg.c: Likewise.
36725         * lib/quotearg.h: Likewise.
36726         * lib/raise.c: Likewise.
36727         * lib/readline.c: Likewise.
36728         * lib/readline.h: Likewise.
36729         * lib/readlink.c: Likewise.
36730         * lib/readtokens.c: Likewise.
36731         * lib/readtokens.h: Likewise.
36732         * lib/readtokens0.c: Likewise.
36733         * lib/readtokens0.h: Likewise.
36734         * lib/readutmp.c: Likewise.
36735         * lib/readutmp.h: Likewise.
36736         * lib/realloc.c: Likewise.
36737         * lib/relocwrapper.c: Likewise.
36738         * lib/rename-dest-slash.c: Likewise.
36739         * lib/rename.c: Likewise.
36740         * lib/rmdir.c: Likewise.
36741         * lib/rpmatch.c: Likewise.
36742         * lib/safe-read.c: Likewise.
36743         * lib/safe-read.h: Likewise.
36744         * lib/safe-write.c: Likewise.
36745         * lib/safe-write.h: Likewise.
36746         * lib/same-inode.h: Likewise.
36747         * lib/same.c: Likewise.
36748         * lib/same.h: Likewise.
36749         * lib/save-cwd.c: Likewise.
36750         * lib/save-cwd.h: Likewise.
36751         * lib/savedir.c: Likewise.
36752         * lib/savedir.h: Likewise.
36753         * lib/savewd.c: Likewise.
36754         * lib/savewd.h: Likewise.
36755         * lib/search.in.h: Likewise.
36756         * lib/setenv.c: Likewise.
36757         * lib/setenv.h: Likewise.
36758         * lib/settime.c: Likewise.
36759         * lib/sh-quote.c: Likewise.
36760         * lib/sh-quote.h: Likewise.
36761         * lib/sig2str.c: Likewise.
36762         * lib/sig2str.h: Likewise.
36763         * lib/signal.in.h: Likewise.
36764         * lib/signbitd.c: Likewise.
36765         * lib/signbitf.c: Likewise.
36766         * lib/signbitl.c: Likewise.
36767         * lib/sigprocmask.c: Likewise.
36768         * lib/sincosl.c: Likewise.
36769         * lib/sleep.c: Likewise.
36770         * lib/sprintf.c: Likewise.
36771         * lib/sqrtl.c: Likewise.
36772         * lib/stat-time.h: Likewise.
36773         * lib/stdio--.h: Likewise.
36774         * lib/stdio-safer.h: Likewise.
36775         * lib/stdlib--.h: Likewise.
36776         * lib/stdlib-safer.h: Likewise.
36777         * lib/stdlib.in.h: Likewise.
36778         * lib/stpcpy.c: Likewise.
36779         * lib/stpncpy.c: Likewise.
36780         * lib/strchrnul.c: Likewise.
36781         * lib/strcspn.c: Likewise.
36782         * lib/strerror.c: Likewise.
36783         * lib/strftime.c: Likewise.
36784         * lib/strftime.h: Likewise.
36785         * lib/striconveh.c: Likewise.
36786         * lib/striconveh.h: Likewise.
36787         * lib/striconveha.c: Likewise.
36788         * lib/striconveha.h: Likewise.
36789         * lib/stripslash.c: Likewise.
36790         * lib/strnlen1.c: Likewise.
36791         * lib/strnlen1.h: Likewise.
36792         * lib/strtod.c: Likewise.
36793         * lib/strtoimax.c: Likewise.
36794         * lib/strtok_r.c: Likewise.
36795         * lib/strtol.c: Likewise.
36796         * lib/strtoll.c: Likewise.
36797         * lib/strtoul.c: Likewise.
36798         * lib/strtoull.c: Likewise.
36799         * lib/sysexits.in.h: Likewise.
36800         * lib/tempname.c: Likewise.
36801         * lib/tempname.h: Likewise.
36802         * lib/timespec.h: Likewise.
36803         * lib/tls.c: Likewise.
36804         * lib/tls.h: Likewise.
36805         * lib/tmpdir.c: Likewise.
36806         * lib/tmpdir.h: Likewise.
36807         * lib/tmpfile-safer.c: Likewise.
36808         * lib/tmpfile.c: Likewise.
36809         * lib/trigl.c: Likewise.
36810         * lib/trigl.h: Likewise.
36811         * lib/trim.c: Likewise.
36812         * lib/trim.h: Likewise.
36813         * lib/trunc.c: Likewise.
36814         * lib/truncf.c: Likewise.
36815         * lib/truncl.c: Likewise.
36816         * lib/tsearch.c: Likewise.
36817         * lib/unicodeio.c: Likewise.
36818         * lib/unicodeio.h: Likewise.
36819         * lib/unistd--.h: Likewise.
36820         * lib/unistd-safer.h: Likewise.
36821         * lib/unistdio/ulc-fprintf.c: Likewise.
36822         * lib/unistdio/ulc-vfprintf.c: Likewise.
36823         * lib/unlinkdir.c: Likewise.
36824         * lib/unlinkdir.h: Likewise.
36825         * lib/unlocked-io.h: Likewise.
36826         * lib/unsetenv.c: Likewise.
36827         * lib/userspec.c: Likewise.
36828         * lib/utime.c: Likewise.
36829         * lib/utimecmp.c: Likewise.
36830         * lib/utimecmp.h: Likewise.
36831         * lib/utimens.c: Likewise.
36832         * lib/verify.h: Likewise.
36833         * lib/verror.c: Likewise.
36834         * lib/verror.h: Likewise.
36835         * lib/version-etc-fsf.c: Likewise.
36836         * lib/version-etc.c: Likewise.
36837         * lib/version-etc.h: Likewise.
36838         * lib/vfprintf.c: Likewise.
36839         * lib/vprintf.c: Likewise.
36840         * lib/vsprintf.c: Likewise.
36841         * lib/w32spawn.h: Likewise.
36842         * lib/wait-process.c: Likewise.
36843         * lib/wait-process.h: Likewise.
36844         * lib/wcwidth.c: Likewise.
36845         * lib/write-any-file.c: Likewise.
36846         * lib/xalloc-die.c: Likewise.
36847         * lib/xalloc.h: Likewise.
36848         * lib/xasprintf.c: Likewise.
36849         * lib/xgetcwd.c: Likewise.
36850         * lib/xgetcwd.h: Likewise.
36851         * lib/xgetdomainname.c: Likewise.
36852         * lib/xgetdomainname.h: Likewise.
36853         * lib/xgethostname.c: Likewise.
36854         * lib/xmalloc.c: Likewise.
36855         * lib/xmalloca.c: Likewise.
36856         * lib/xmalloca.h: Likewise.
36857         * lib/xmemcoll.c: Likewise.
36858         * lib/xnanosleep.c: Likewise.
36859         * lib/xreadlink.c: Likewise.
36860         * lib/xreadlink.h: Likewise.
36861         * lib/xsetenv.c: Likewise.
36862         * lib/xsetenv.h: Likewise.
36863         * lib/xstriconv.c: Likewise.
36864         * lib/xstriconv.h: Likewise.
36865         * lib/xstrndup.c: Likewise.
36866         * lib/xstrndup.h: Likewise.
36867         * lib/xstrtod.c: Likewise.
36868         * lib/xstrtod.h: Likewise.
36869         * lib/xstrtol-error.c: Likewise.
36870         * lib/xstrtol.c: Likewise.
36871         * lib/xstrtol.h: Likewise.
36872         * lib/xtime.h: Likewise.
36873         * lib/xvasprintf.c: Likewise.
36874         * lib/xvasprintf.h: Likewise.
36875         * lib/yesno.c: Likewise.
36876         * lib/yesno.h: Likewise.
36877         * posix-modules: Likewise.
36878         * tests/test-alloca-opt.c: Likewise.
36879         * tests/test-arcfour.c: Likewise.
36880         * tests/test-arctwo.c: Likewise.
36881         * tests/test-argmatch.c: Likewise.
36882         * tests/test-argp-2.sh: Likewise.
36883         * tests/test-argp.c: Likewise.
36884         * tests/test-arpa_inet.c: Likewise.
36885         * tests/test-array_list.c: Likewise.
36886         * tests/test-array_oset.c: Likewise.
36887         * tests/test-atexit.c: Likewise.
36888         * tests/test-avltree_list.c: Likewise.
36889         * tests/test-avltree_oset.c: Likewise.
36890         * tests/test-avltreehash_list.c: Likewise.
36891         * tests/test-base64.c: Likewise.
36892         * tests/test-binary-io.c: Likewise.
36893         * tests/test-byteswap.c: Likewise.
36894         * tests/test-c-ctype.c: Likewise.
36895         * tests/test-c-strcasecmp.c: Likewise.
36896         * tests/test-c-strcasestr.c: Likewise.
36897         * tests/test-c-strncasecmp.c: Likewise.
36898         * tests/test-c-strstr.c: Likewise.
36899         * tests/test-canonicalize-lgpl.c: Likewise.
36900         * tests/test-canonicalize.c: Likewise.
36901         * tests/test-carray_list.c: Likewise.
36902         * tests/test-ceilf.c: Likewise.
36903         * tests/test-ceill.c: Likewise.
36904         * tests/test-count-one-bits.c: Likewise.
36905         * tests/test-crc.c: Likewise.
36906         * tests/test-dirname.c: Likewise.
36907         * tests/test-fbufmode.c: Likewise.
36908         * tests/test-fcntl.c: Likewise.
36909         * tests/test-fflush.c: Likewise.
36910         * tests/test-floorf.c: Likewise.
36911         * tests/test-floorl.c: Likewise.
36912         * tests/test-fopen.c: Likewise.
36913         * tests/test-fprintf-posix.c: Likewise.
36914         * tests/test-fprintf-posix.h: Likewise.
36915         * tests/test-fpurge.c: Likewise.
36916         * tests/test-freadable.c: Likewise.
36917         * tests/test-freadahead.c: Likewise.
36918         * tests/test-freading.c: Likewise.
36919         * tests/test-freopen.c: Likewise.
36920         * tests/test-frexp.c: Likewise.
36921         * tests/test-frexpl.c: Likewise.
36922         * tests/test-fseek.c: Likewise.
36923         * tests/test-fseeko.c: Likewise.
36924         * tests/test-fseterr.c: Likewise.
36925         * tests/test-fstrcmp.c: Likewise.
36926         * tests/test-ftell.c: Likewise.
36927         * tests/test-ftello.c: Likewise.
36928         * tests/test-fwritable.c: Likewise.
36929         * tests/test-fwriting.c: Likewise.
36930         * tests/test-getaddrinfo.c: Likewise.
36931         * tests/test-getpass.c: Likewise.
36932         * tests/test-gettimeofday.c: Likewise.
36933         * tests/test-hmac-md5.c: Likewise.
36934         * tests/test-hmac-sha1.c: Likewise.
36935         * tests/test-iconv.c: Likewise.
36936         * tests/test-iconvme.c: Likewise.
36937         * tests/test-inttypes.c: Likewise.
36938         * tests/test-isnan.c: Likewise.
36939         * tests/test-isnanf.c: Likewise.
36940         * tests/test-isnanl-nolibm.c: Likewise.
36941         * tests/test-isnanl.c: Likewise.
36942         * tests/test-isnanl.h: Likewise.
36943         * tests/test-ldexpl.c: Likewise.
36944         * tests/test-linked_list.c: Likewise.
36945         * tests/test-linkedhash_list.c: Likewise.
36946         * tests/test-locale.c: Likewise.
36947         * tests/test-localename.c: Likewise.
36948         * tests/test-lock.c: Likewise.
36949         * tests/test-lseek.c: Likewise.
36950         * tests/test-malloca.c: Likewise.
36951         * tests/test-math.c: Likewise.
36952         * tests/test-mbscasecmp.c: Likewise.
36953         * tests/test-mbscasestr1.c: Likewise.
36954         * tests/test-mbscasestr2.c: Likewise.
36955         * tests/test-mbscasestr3.c: Likewise.
36956         * tests/test-mbscasestr4.c: Likewise.
36957         * tests/test-mbschr.c: Likewise.
36958         * tests/test-mbscspn.c: Likewise.
36959         * tests/test-mbsncasecmp.c: Likewise.
36960         * tests/test-mbspbrk.c: Likewise.
36961         * tests/test-mbspcasecmp.c: Likewise.
36962         * tests/test-mbsrchr.c: Likewise.
36963         * tests/test-mbsspn.c: Likewise.
36964         * tests/test-mbsstr1.c: Likewise.
36965         * tests/test-mbsstr2.c: Likewise.
36966         * tests/test-mbsstr3.c: Likewise.
36967         * tests/test-md5.c: Likewise.
36968         * tests/test-memmem.c: Likewise.
36969         * tests/test-netinet_in.c: Likewise.
36970         * tests/test-open.c: Likewise.
36971         * tests/test-printf-frexp.c: Likewise.
36972         * tests/test-printf-frexpl.c: Likewise.
36973         * tests/test-printf-posix.c: Likewise.
36974         * tests/test-printf-posix.h: Likewise.
36975         * tests/test-rbtree_list.c: Likewise.
36976         * tests/test-rbtree_oset.c: Likewise.
36977         * tests/test-rbtreehash_list.c: Likewise.
36978         * tests/test-read-file.c: Likewise.
36979         * tests/test-rijndael.c: Likewise.
36980         * tests/test-search.c: Likewise.
36981         * tests/test-signbit.c: Likewise.
36982         * tests/test-sleep.c: Likewise.
36983         * tests/test-snprintf-posix.c: Likewise.
36984         * tests/test-snprintf-posix.h: Likewise.
36985         * tests/test-snprintf.c: Likewise.
36986         * tests/test-sprintf-posix.c: Likewise.
36987         * tests/test-sprintf-posix.h: Likewise.
36988         * tests/test-stat-time.c: Likewise.
36989         * tests/test-stdbool.c: Likewise.
36990         * tests/test-stdint.c: Likewise.
36991         * tests/test-stdio.c: Likewise.
36992         * tests/test-stdlib.c: Likewise.
36993         * tests/test-stpncpy.c: Likewise.
36994         * tests/test-strcasestr.c: Likewise.
36995         * tests/test-striconv.c: Likewise.
36996         * tests/test-striconveh.c: Likewise.
36997         * tests/test-striconveha.c: Likewise.
36998         * tests/test-string.c: Likewise.
36999         * tests/test-sys_select.c: Likewise.
37000         * tests/test-sys_socket.c: Likewise.
37001         * tests/test-sys_stat.c: Likewise.
37002         * tests/test-sys_time.c: Likewise.
37003         * tests/test-sysexits.c: Likewise.
37004         * tests/test-time.c: Likewise.
37005         * tests/test-tls.c: Likewise.
37006         * tests/test-trunc.c: Likewise.
37007         * tests/test-truncf.c: Likewise.
37008         * tests/test-truncl.c: Likewise.
37009         * tests/test-unistd.c: Likewise.
37010         * tests/test-vasnprintf-posix.c: Likewise.
37011         * tests/test-vasnprintf-posix2.c: Likewise.
37012         * tests/test-vasnprintf.c: Likewise.
37013         * tests/test-vasprintf-posix.c: Likewise.
37014         * tests/test-vasprintf.c: Likewise.
37015         * tests/test-verify.c: Likewise.
37016         * tests/test-vfprintf-posix.c: Likewise.
37017         * tests/test-vprintf-posix.c: Likewise.
37018         * tests/test-vsnprintf-posix.c: Likewise.
37019         * tests/test-vsnprintf.c: Likewise.
37020         * tests/test-vsprintf-posix.c: Likewise.
37021         * tests/test-wchar.c: Likewise.
37022         * tests/test-wctype.c: Likewise.
37023         * tests/test-wcwidth.c: Likewise.
37024         * tests/test-xstrtol.c: Likewise.
37025         * tests/test-xvasprintf.c: Likewise.
37026         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
37027         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
37028         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
37029         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
37030         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
37031         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
37032         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
37033         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
37034         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
37035         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
37036         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
37037         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
37038         * tests/uniname/test-uninames.c: Likewise.
37039         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
37040         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
37041         * tests/unistdio/test-u16-printf1.h: Likewise.
37042         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
37043         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
37044         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
37045         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
37046         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
37047         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
37048         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
37049         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
37050         * tests/unistdio/test-u32-printf1.h: Likewise.
37051         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
37052         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
37053         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
37054         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
37055         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
37056         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
37057         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
37058         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
37059         * tests/unistdio/test-u8-printf1.h: Likewise.
37060         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
37061         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
37062         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
37063         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
37064         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
37065         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
37066         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
37067         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
37068         * tests/unistdio/test-ulc-printf1.h: Likewise.
37069         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
37070         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
37071         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
37072         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
37073         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
37074         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
37075         * tests/uniwidth/test-u16-strwidth.c: Likewise.
37076         * tests/uniwidth/test-u16-width.c: Likewise.
37077         * tests/uniwidth/test-u32-strwidth.c: Likewise.
37078         * tests/uniwidth/test-u32-width.c: Likewise.
37079         * tests/uniwidth/test-u8-strwidth.c: Likewise.
37080         * tests/uniwidth/test-u8-width.c: Likewise.
37081         * tests/uniwidth/test-uc_width.c: Likewise.
37082         * config/srclist-update: Likewise.
37083         (fixlicense): Update to GPLv3+.
37084
37085         Change copyright notice from LGPLv2.1+ to LGPLv3+.
37086         * tests/test-tsearch.c: Change copyright notice.
37087
37088         Change copyright notice from LGPLv2.0+ to LGPLv3+.
37089         * lib/c-strcaseeq.h: Change copyright notice.
37090         * lib/streq.h: Likewise.
37091         * lib/uniconv.h: Likewise.
37092         * lib/uniconv/u-conv-from-enc.h: Likewise.
37093         * lib/uniconv/u-conv-to-enc.h: Likewise.
37094         * lib/uniconv/u-strconv-from-enc.h: Likewise.
37095         * lib/uniconv/u-strconv-to-enc.h: Likewise.
37096         * lib/uniconv/u16-conv-from-enc.c: Likewise.
37097         * lib/uniconv/u16-conv-to-enc.c: Likewise.
37098         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
37099         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
37100         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
37101         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
37102         * lib/uniconv/u32-conv-from-enc.c: Likewise.
37103         * lib/uniconv/u32-conv-to-enc.c: Likewise.
37104         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
37105         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
37106         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
37107         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
37108         * lib/uniconv/u8-conv-from-enc.c: Likewise.
37109         * lib/uniconv/u8-conv-to-enc.c: Likewise.
37110         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
37111         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
37112         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
37113         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
37114         * lib/uniname.h: Likewise.
37115         * lib/uniname/uniname.c: Likewise.
37116         * lib/unistdio.h: Likewise.
37117         * lib/unistdio/u-asnprintf.h: Likewise.
37118         * lib/unistdio/u-asprintf.h: Likewise.
37119         * lib/unistdio/u-printf-args.c: Likewise.
37120         * lib/unistdio/u-printf-args.h: Likewise.
37121         * lib/unistdio/u-printf-parse.h: Likewise.
37122         * lib/unistdio/u-snprintf.h: Likewise.
37123         * lib/unistdio/u-sprintf.h: Likewise.
37124         * lib/unistdio/u-vasprintf.h: Likewise.
37125         * lib/unistdio/u-vsnprintf.h: Likewise.
37126         * lib/unistdio/u-vsprintf.h: Likewise.
37127         * lib/unistdio/u16-asnprintf.c: Likewise.
37128         * lib/unistdio/u16-asprintf.c: Likewise.
37129         * lib/unistdio/u16-printf-parse.c: Likewise.
37130         * lib/unistdio/u16-snprintf.c: Likewise.
37131         * lib/unistdio/u16-sprintf.c: Likewise.
37132         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
37133         * lib/unistdio/u16-u16-asprintf.c: Likewise.
37134         * lib/unistdio/u16-u16-snprintf.c: Likewise.
37135         * lib/unistdio/u16-u16-sprintf.c: Likewise.
37136         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
37137         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
37138         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
37139         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
37140         * lib/unistdio/u16-vasnprintf.c: Likewise.
37141         * lib/unistdio/u16-vasprintf.c: Likewise.
37142         * lib/unistdio/u16-vsnprintf.c: Likewise.
37143         * lib/unistdio/u16-vsprintf.c: Likewise.
37144         * lib/unistdio/u32-asnprintf.c: Likewise.
37145         * lib/unistdio/u32-asprintf.c: Likewise.
37146         * lib/unistdio/u32-printf-parse.c: Likewise.
37147         * lib/unistdio/u32-snprintf.c: Likewise.
37148         * lib/unistdio/u32-sprintf.c: Likewise.
37149         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
37150         * lib/unistdio/u32-u32-asprintf.c: Likewise.
37151         * lib/unistdio/u32-u32-snprintf.c: Likewise.
37152         * lib/unistdio/u32-u32-sprintf.c: Likewise.
37153         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
37154         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
37155         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
37156         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
37157         * lib/unistdio/u32-vasnprintf.c: Likewise.
37158         * lib/unistdio/u32-vasprintf.c: Likewise.
37159         * lib/unistdio/u32-vsnprintf.c: Likewise.
37160         * lib/unistdio/u32-vsprintf.c: Likewise.
37161         * lib/unistdio/u8-asnprintf.c: Likewise.
37162         * lib/unistdio/u8-asprintf.c: Likewise.
37163         * lib/unistdio/u8-printf-parse.c: Likewise.
37164         * lib/unistdio/u8-snprintf.c: Likewise.
37165         * lib/unistdio/u8-sprintf.c: Likewise.
37166         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
37167         * lib/unistdio/u8-u8-asprintf.c: Likewise.
37168         * lib/unistdio/u8-u8-snprintf.c: Likewise.
37169         * lib/unistdio/u8-u8-sprintf.c: Likewise.
37170         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
37171         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
37172         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
37173         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
37174         * lib/unistdio/u8-vasnprintf.c: Likewise.
37175         * lib/unistdio/u8-vasprintf.c: Likewise.
37176         * lib/unistdio/u8-vsnprintf.c: Likewise.
37177         * lib/unistdio/u8-vsprintf.c: Likewise.
37178         * lib/unistdio/ulc-asnprintf.c: Likewise.
37179         * lib/unistdio/ulc-asprintf.c: Likewise.
37180         * lib/unistdio/ulc-printf-parse.c: Likewise.
37181         * lib/unistdio/ulc-snprintf.c: Likewise.
37182         * lib/unistdio/ulc-sprintf.c: Likewise.
37183         * lib/unistdio/ulc-vasnprintf.c: Likewise.
37184         * lib/unistdio/ulc-vasprintf.c: Likewise.
37185         * lib/unistdio/ulc-vsnprintf.c: Likewise.
37186         * lib/unistdio/ulc-vsprintf.c: Likewise.
37187         * lib/unistr.h: Likewise.
37188         * lib/unistr/u-cpy-alloc.h: Likewise.
37189         * lib/unistr/u-cpy.h: Likewise.
37190         * lib/unistr/u-endswith.h: Likewise.
37191         * lib/unistr/u-move.h: Likewise.
37192         * lib/unistr/u-set.h: Likewise.
37193         * lib/unistr/u-startswith.h: Likewise.
37194         * lib/unistr/u-stpcpy.h: Likewise.
37195         * lib/unistr/u-stpncpy.h: Likewise.
37196         * lib/unistr/u-strcat.h: Likewise.
37197         * lib/unistr/u-strcpy.h: Likewise.
37198         * lib/unistr/u-strcspn.h: Likewise.
37199         * lib/unistr/u-strdup.h: Likewise.
37200         * lib/unistr/u-strlen.h: Likewise.
37201         * lib/unistr/u-strncat.h: Likewise.
37202         * lib/unistr/u-strncpy.h: Likewise.
37203         * lib/unistr/u-strnlen.h: Likewise.
37204         * lib/unistr/u-strpbrk.h: Likewise.
37205         * lib/unistr/u-strspn.h: Likewise.
37206         * lib/unistr/u-strstr.h: Likewise.
37207         * lib/unistr/u-strtok.h: Likewise.
37208         * lib/unistr/u16-check.c: Likewise.
37209         * lib/unistr/u16-chr.c: Likewise.
37210         * lib/unistr/u16-cmp.c: Likewise.
37211         * lib/unistr/u16-cpy-alloc.c: Likewise.
37212         * lib/unistr/u16-cpy.c: Likewise.
37213         * lib/unistr/u16-endswith.c: Likewise.
37214         * lib/unistr/u16-mblen.c: Likewise.
37215         * lib/unistr/u16-mbsnlen.c: Likewise.
37216         * lib/unistr/u16-mbtouc-aux.c: Likewise.
37217         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
37218         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
37219         * lib/unistr/u16-mbtouc.c: Likewise.
37220         * lib/unistr/u16-mbtoucr.c: Likewise.
37221         * lib/unistr/u16-move.c: Likewise.
37222         * lib/unistr/u16-next.c: Likewise.
37223         * lib/unistr/u16-prev.c: Likewise.
37224         * lib/unistr/u16-set.c: Likewise.
37225         * lib/unistr/u16-startswith.c: Likewise.
37226         * lib/unistr/u16-stpcpy.c: Likewise.
37227         * lib/unistr/u16-stpncpy.c: Likewise.
37228         * lib/unistr/u16-strcat.c: Likewise.
37229         * lib/unistr/u16-strchr.c: Likewise.
37230         * lib/unistr/u16-strcmp.c: Likewise.
37231         * lib/unistr/u16-strcpy.c: Likewise.
37232         * lib/unistr/u16-strcspn.c: Likewise.
37233         * lib/unistr/u16-strdup.c: Likewise.
37234         * lib/unistr/u16-strlen.c: Likewise.
37235         * lib/unistr/u16-strmblen.c: Likewise.
37236         * lib/unistr/u16-strmbtouc.c: Likewise.
37237         * lib/unistr/u16-strncat.c: Likewise.
37238         * lib/unistr/u16-strncmp.c: Likewise.
37239         * lib/unistr/u16-strncpy.c: Likewise.
37240         * lib/unistr/u16-strnlen.c: Likewise.
37241         * lib/unistr/u16-strpbrk.c: Likewise.
37242         * lib/unistr/u16-strrchr.c: Likewise.
37243         * lib/unistr/u16-strspn.c: Likewise.
37244         * lib/unistr/u16-strstr.c: Likewise.
37245         * lib/unistr/u16-strtok.c: Likewise.
37246         * lib/unistr/u16-to-u32.c: Likewise.
37247         * lib/unistr/u16-to-u8.c: Likewise.
37248         * lib/unistr/u16-uctomb-aux.c: Likewise.
37249         * lib/unistr/u16-uctomb.c: Likewise.
37250         * lib/unistr/u32-check.c: Likewise.
37251         * lib/unistr/u32-chr.c: Likewise.
37252         * lib/unistr/u32-cmp.c: Likewise.
37253         * lib/unistr/u32-cpy-alloc.c: Likewise.
37254         * lib/unistr/u32-cpy.c: Likewise.
37255         * lib/unistr/u32-endswith.c: Likewise.
37256         * lib/unistr/u32-mblen.c: Likewise.
37257         * lib/unistr/u32-mbsnlen.c: Likewise.
37258         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
37259         * lib/unistr/u32-mbtouc.c: Likewise.
37260         * lib/unistr/u32-mbtoucr.c: Likewise.
37261         * lib/unistr/u32-move.c: Likewise.
37262         * lib/unistr/u32-next.c: Likewise.
37263         * lib/unistr/u32-prev.c: Likewise.
37264         * lib/unistr/u32-set.c: Likewise.
37265         * lib/unistr/u32-startswith.c: Likewise.
37266         * lib/unistr/u32-stpcpy.c: Likewise.
37267         * lib/unistr/u32-stpncpy.c: Likewise.
37268         * lib/unistr/u32-strcat.c: Likewise.
37269         * lib/unistr/u32-strchr.c: Likewise.
37270         * lib/unistr/u32-strcmp.c: Likewise.
37271         * lib/unistr/u32-strcpy.c: Likewise.
37272         * lib/unistr/u32-strcspn.c: Likewise.
37273         * lib/unistr/u32-strdup.c: Likewise.
37274         * lib/unistr/u32-strlen.c: Likewise.
37275         * lib/unistr/u32-strmblen.c: Likewise.
37276         * lib/unistr/u32-strmbtouc.c: Likewise.
37277         * lib/unistr/u32-strncat.c: Likewise.
37278         * lib/unistr/u32-strncmp.c: Likewise.
37279         * lib/unistr/u32-strncpy.c: Likewise.
37280         * lib/unistr/u32-strnlen.c: Likewise.
37281         * lib/unistr/u32-strpbrk.c: Likewise.
37282         * lib/unistr/u32-strrchr.c: Likewise.
37283         * lib/unistr/u32-strspn.c: Likewise.
37284         * lib/unistr/u32-strstr.c: Likewise.
37285         * lib/unistr/u32-strtok.c: Likewise.
37286         * lib/unistr/u32-to-u16.c: Likewise.
37287         * lib/unistr/u32-to-u8.c: Likewise.
37288         * lib/unistr/u32-uctomb.c: Likewise.
37289         * lib/unistr/u8-check.c: Likewise.
37290         * lib/unistr/u8-chr.c: Likewise.
37291         * lib/unistr/u8-cmp.c: Likewise.
37292         * lib/unistr/u8-cpy-alloc.c: Likewise.
37293         * lib/unistr/u8-cpy.c: Likewise.
37294         * lib/unistr/u8-endswith.c: Likewise.
37295         * lib/unistr/u8-mblen.c: Likewise.
37296         * lib/unistr/u8-mbsnlen.c: Likewise.
37297         * lib/unistr/u8-mbtouc-aux.c: Likewise.
37298         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
37299         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
37300         * lib/unistr/u8-mbtouc.c: Likewise.
37301         * lib/unistr/u8-mbtoucr.c: Likewise.
37302         * lib/unistr/u8-move.c: Likewise.
37303         * lib/unistr/u8-next.c: Likewise.
37304         * lib/unistr/u8-prev.c: Likewise.
37305         * lib/unistr/u8-set.c: Likewise.
37306         * lib/unistr/u8-startswith.c: Likewise.
37307         * lib/unistr/u8-stpcpy.c: Likewise.
37308         * lib/unistr/u8-stpncpy.c: Likewise.
37309         * lib/unistr/u8-strcat.c: Likewise.
37310         * lib/unistr/u8-strchr.c: Likewise.
37311         * lib/unistr/u8-strcmp.c: Likewise.
37312         * lib/unistr/u8-strcpy.c: Likewise.
37313         * lib/unistr/u8-strcspn.c: Likewise.
37314         * lib/unistr/u8-strdup.c: Likewise.
37315         * lib/unistr/u8-strlen.c: Likewise.
37316         * lib/unistr/u8-strmblen.c: Likewise.
37317         * lib/unistr/u8-strmbtouc.c: Likewise.
37318         * lib/unistr/u8-strncat.c: Likewise.
37319         * lib/unistr/u8-strncmp.c: Likewise.
37320         * lib/unistr/u8-strncpy.c: Likewise.
37321         * lib/unistr/u8-strnlen.c: Likewise.
37322         * lib/unistr/u8-strpbrk.c: Likewise.
37323         * lib/unistr/u8-strrchr.c: Likewise.
37324         * lib/unistr/u8-strspn.c: Likewise.
37325         * lib/unistr/u8-strstr.c: Likewise.
37326         * lib/unistr/u8-strtok.c: Likewise.
37327         * lib/unistr/u8-to-u16.c: Likewise.
37328         * lib/unistr/u8-to-u32.c: Likewise.
37329         * lib/unistr/u8-uctomb-aux.c: Likewise.
37330         * lib/unistr/u8-uctomb.c: Likewise.
37331         * lib/unitypes.h: Likewise.
37332         * lib/uniwidth.h: Likewise.
37333         * lib/uniwidth/cjk.h: Likewise.
37334         * lib/uniwidth/u16-strwidth.c: Likewise.
37335         * lib/uniwidth/u16-width.c: Likewise.
37336         * lib/uniwidth/u32-strwidth.c: Likewise.
37337         * lib/uniwidth/u32-width.c: Likewise.
37338         * lib/uniwidth/u8-strwidth.c: Likewise.
37339         * lib/uniwidth/u8-width.c: Likewise.
37340         * lib/uniwidth/width.c: Likewise.
37341
37342 2007-10-07  Bruno Haible  <bruno@clisp.org>
37343
37344         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
37345         The file is still under LGPL (see modules/inttypes).
37346
37347 2007-10-06  Bruno Haible  <bruno@clisp.org>
37348
37349         * modules/trunc (Dependencies): Add 'extensions'.
37350         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
37351         Reported by Ben Pfaff <blp@gnu.org>.
37352
37353 2007-10-06  Bruno Haible  <bruno@clisp.org>
37354
37355         * modules/freopen-tests: New file.
37356         * tests/test-freopen.c: New file.
37357
37358         * modules/fopen-tests: New file.
37359         * tests/test-fopen.c: New file.
37360
37361         * modules/fopen: New file.
37362         * lib/fopen.c: New file.
37363         * m4/fopen.m4: New file.
37364         * modules/freopen: New file.
37365         * lib/freopen.c: New file.
37366         * m4/freopen.m4: New file.
37367         * lib/stdio.in.h (fopen, freopen): New declarations.
37368         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
37369         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
37370         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
37371         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
37372         * doc/functions/fopen.texi: Mention the 'fopen' module.
37373         * doc/functions/freopen.texi: Mention the 'freopen' module.
37374
37375 2007-10-06  Bruno Haible  <bruno@clisp.org>
37376
37377         * modules/open-tests: New file.
37378         * tests/test-open.c: New file.
37379
37380         * modules/open: New file.
37381         * lib/open.c: New file.
37382         * m4/open.m4: New file.
37383         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
37384         lib/open.c does.
37385         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
37386         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
37387         macros.
37388         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
37389         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
37390         REPLACE_OPEN.
37391         * doc/functions/open.texi: Mention the 'open' module.
37392
37393 2007-10-04  Bruno Haible  <bruno@clisp.org>
37394
37395         * modules/ceill-tests: New file.
37396         * tests/test-ceill.c: New file.
37397
37398         * modules/ceill: New file.
37399         * lib/ceill.c: Replace entire file.
37400         * m4/ceill.m4: New file.
37401         * lib/math.in.h (ceill): Replace declaration.
37402         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
37403         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
37404         * doc/functions/ceill.texi: Mention the 'ceill' module.
37405         * modules/mathl (Files): Remove lib/ceill.c.
37406         (Depends-on): Add ceill.
37407
37408 2007-10-04  Bruno Haible  <bruno@clisp.org>
37409
37410         * modules/ceilf-tests: New file.
37411         * tests/test-ceilf.c: New file.
37412
37413         * modules/ceilf: New file.
37414         * lib/ceil.c: New file.
37415         * lib/ceilf.c: New file.
37416         * m4/ceilf.m4: New file.
37417         * lib/math.in.h (ceilf): New declaration.
37418         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
37419         HAVE_DECL_CEILF.
37420         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
37421         HAVE_DECL_CEILF.
37422         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
37423
37424 2007-10-04  Bruno Haible  <bruno@clisp.org>
37425
37426         * modules/floorl-tests: New file.
37427         * tests/test-floorl.c: New file.
37428
37429         * modules/floorl: New file.
37430         * lib/floorl.c: Replace entire file.
37431         * m4/floorl.m4: New file.
37432         * lib/math.in.h (floorl): Replace declaration.
37433         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
37434         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
37435         * doc/functions/floorl.texi: Mention the 'floorl' module.
37436         * modules/mathl (Files): Remove lib/floorl.c.
37437         (Depends-on): Add floorl.
37438
37439 2007-10-04  Bruno Haible  <bruno@clisp.org>
37440
37441         * modules/floorf-tests: New file.
37442         * tests/test-floorf.c: New file.
37443
37444         * modules/floorf: New file.
37445         * lib/floor.c: New file.
37446         * lib/floorf.c: New file.
37447         * m4/floorf.m4: New file.
37448         * lib/math.in.h (floorf): New declaration.
37449         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
37450         HAVE_DECL_FLOORF.
37451         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
37452         HAVE_DECL_FLOORF.
37453         * doc/functions/floorf.texi: Mention the 'floorf' module.
37454
37455 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
37456             Bruno Haible  <bruno@clisp.org>
37457
37458         Advertise for the Git server instead of the CVS server.
37459         * doc/gnulib-intro.texi (Steady Development): Mention the Git
37460         repository instead of the CVS one.
37461         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
37462         about all VCS systems generically.
37463         * doc/gnulib.texi (Introduction): Capitalize `Git'.
37464
37465 2007-10-04  Bruno Haible  <bruno@clisp.org>
37466
37467         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
37468         means.
37469         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
37470
37471 2007-10-04  Bruno Haible  <bruno@clisp.org>
37472
37473         * modules/truncl-tests: New file.
37474         * tests/test-truncl.c: New file.
37475
37476         * modules/truncl: New file.
37477         * lib/truncl.c: New file.
37478         * m4/truncl.m4: New file.
37479         * lib/math.in.h (truncl): New declaration.
37480         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
37481         HAVE_DECL_TRUNCL.
37482         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
37483         HAVE_DECL_TRUNCL.
37484         * doc/functions/truncl.texi: Mention the 'truncl' module.
37485
37486 2007-10-04  Bruno Haible  <bruno@clisp.org>
37487
37488         * modules/truncf-tests: New file.
37489         * tests/test-truncf.c: New file.
37490
37491         * modules/truncf: New file.
37492         * lib/trunc.c: Make paramerizable through USE_* macros.
37493         * lib/truncf.c: New file.
37494         * m4/truncf.m4: New file.
37495         * lib/math.in.h (truncf): New declaration.
37496         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
37497         HAVE_DECL_TRUNCF.
37498         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
37499         HAVE_DECL_TRUNCF.
37500         * doc/functions/truncf.texi: Mention the 'truncf' module.
37501
37502 2007-10-03  Bruno Haible  <bruno@clisp.org>
37503
37504         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
37505         augmentation also for tests modules.
37506         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
37507         * modules/atexit-tests (Makefile.am): Likewise.
37508         * modules/binary-io-tests (Makefile.am): Likewise.
37509         * modules/c-strcase-tests (Makefile.am): Likewise.
37510         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
37511         * modules/canonicalize-tests (Makefile.am): Likewise.
37512         * modules/closein-tests (Makefile.am): Likewise.
37513         * modules/fprintf-posix-tests (Makefile.am): Likewise.
37514         * modules/freadahead-tests (Makefile.am): Likewise.
37515         * modules/fseek-tests (Makefile.am): Likewise.
37516         * modules/fseeko-tests (Makefile.am): Likewise.
37517         * modules/ftell-tests (Makefile.am): Likewise.
37518         * modules/ftello-tests (Makefile.am): Likewise.
37519         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
37520         * modules/isnanl-tests (Makefile.am): Likewise.
37521         * modules/lseek-tests (Makefile.am): Likewise.
37522         * modules/mbscasecmp-tests (Makefile.am): Likewise.
37523         * modules/mbscasestr-tests (Makefile.am): Likewise.
37524         * modules/mbschr-tests (Makefile.am): Likewise.
37525         * modules/mbscspn-tests (Makefile.am): Likewise.
37526         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
37527         * modules/mbspbrk-tests (Makefile.am): Likewise.
37528         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
37529         * modules/mbsrchr-tests (Makefile.am): Likewise.
37530         * modules/mbsspn-tests (Makefile.am): Likewise.
37531         * modules/mbsstr-tests (Makefile.am): Likewise.
37532         * modules/printf-posix-tests (Makefile.am): Likewise.
37533         * modules/snprintf-posix-tests (Makefile.am): Likewise.
37534         * modules/sprintf-posix-tests (Makefile.am): Likewise.
37535         * modules/tsearch-tests (Makefile.am): Likewise.
37536         * modules/uniname/uniname-tests (Makefile.am): Likewise.
37537         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
37538         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
37539         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
37540         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
37541         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
37542         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
37543         * modules/vprintf-posix-tests (Makefile.am): Likewise.
37544         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
37545         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
37546         * modules/xstrtoimax-tests (Makefile.am): Likewise.
37547         * modules/xstrtol-tests (Makefile.am): Likewise.
37548         * modules/xstrtoumax-tests (Makefile.am): Likewise.
37549         * modules/yesno-tests (Makefile.am): Likewise.
37550
37551 2007-10-03  Bruno Haible  <bruno@clisp.org>
37552
37553         * modules/trunc-tests: New file.
37554         * tests/test-trunc.c: New file.
37555
37556         * modules/trunc: New file.
37557         * lib/trunc.c: New file.
37558         * m4/trunc.m4: New file.
37559         * lib/math.in.h (trunc): New declaration.
37560         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
37561         HAVE_DECL_TRUNC.
37562         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
37563         HAVE_DECL_TRUNC.
37564         * doc/functions/trunc.texi: Mention the 'trunc' module.
37565
37566 2007-10-03  Bruno Haible  <bruno@clisp.org>
37567
37568         * tests/test-fpending.c: New file, mostly copied
37569         from coreutils/lib/t-fpending.c.
37570         * modules/fpending-tests: New file.
37571
37572 2007-10-03  Bruno Haible  <bruno@clisp.org>
37573
37574         Port the stdio extensions to QNX (untested).
37575         * lib/fseterr.c (fseterr): Add support for QNX.
37576         * lib/fbufmode.c (fbufmode): Likewise.
37577         * lib/freadable.c (freadable): Likewise.
37578         * lib/fwritable.c (fwritable): Likewise.
37579         * lib/freading.c (freading): Likewise.
37580         * lib/fwriting.c (fwriting): Likewise.
37581         * lib/freadahead.c (freadahed): Likewise.
37582         * lib/fpurge.c (fpurge): Likewise.
37583         * lib/fseeko.c (rpl_fseeko): Likewise.
37584
37585 2007-10-03  Bruno Haible  <bruno@clisp.org>
37586             Jim Meyering  <jim@meyering.net>
37587             Eric Blake  <ebb9@byu.net>
37588
37589         * doc/relocatable.texi: Use @command instead of @program.
37590
37591 2007-10-02  Jim Meyering  <jim@meyering.net>
37592
37593         Perform one more "_.h" -> ".in.h" substitution.
37594         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
37595         instead of unistd_.h here, too.
37596
37597 2007-10-01  Bruno Haible  <bruno@clisp.org>
37598
37599         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
37600         Needed for the alloca-opt module.
37601
37602 2007-09-30  Bruno Haible  <bruno@clisp.org>
37603
37604         * lib/alloca.in.h: Renamed from lib/alloca_.h.
37605         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
37606         alloca_.h.
37607         * lib/argz.in.h: Renamed from lib/argz_.h.
37608         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
37609         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
37610         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
37611         byteswap_.h.
37612         * lib/dirent.in.h: Renamed from lib/dirent_.h.
37613         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
37614         dirent_.h.
37615         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
37616         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
37617         fcntl_.h.
37618         * lib/float.in.h: Renamed from lib/float_.h.
37619         * modules/float (Files, Makefile.am): Use float.in.h instead of
37620         float_.h.
37621         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
37622         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
37623         fnmatch_.h.
37624         * lib/getopt.in.h: Renamed from lib/getopt_.h.
37625         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
37626         getopt_.h.
37627         * lib/glob.in.h: Renamed from lib/glob_.h.
37628         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
37629         * lib/iconv.in.h: Renamed from lib/iconv_.h.
37630         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
37631         iconv_.h.
37632         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
37633         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
37634         inttypes_.h.
37635         * lib/locale.in.h: Renamed from lib/locale_.h.
37636         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
37637         locale_.h.
37638         * lib/math.in.h: Renamed from lib/math_.h.
37639         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
37640         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
37641         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
37642         of netinet_in_.h. Add dependency.
37643         * lib/poll.in.h: Renamed from lib/poll_.h.
37644         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
37645         * lib/search.in.h: Renamed from lib/search_.h.
37646         * modules/search (Files, Makefile.am): Use search.in.h instead of
37647         search_.h.
37648         * lib/signal.in.h: Renamed from lib/signal_.h.
37649         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
37650         _signal.h.
37651         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
37652         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
37653         stdbool_.h.
37654         * lib/stdint.in.h: Renamed from lib/stdint_.h.
37655         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
37656         stdint_.h.
37657         * lib/stdio.in.h: Renamed from lib/stdio_.h.
37658         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
37659         stdio_.h.
37660         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
37661         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
37662         stdlib_.h.
37663         * lib/string.in.h: Renamed from lib/string_.h.
37664         * modules/string (Files, Makefile.am): Use string.in.h instead of
37665         string_.h.
37666         * doc/gnulib-tool.texi (Initial import): Update.
37667         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
37668         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
37669         of sys_select_.h. Add dependency.
37670         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
37671         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
37672         of sys_socket_.h.
37673         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
37674         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
37675         sys_stat_.h.
37676         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
37677         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
37678         sys_time_.h.
37679         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
37680         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
37681         sysexits_.h.
37682         * lib/time.in.h: Renamed from lib/time_.h.
37683         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
37684         * lib/unistd.in.h: Renamed from lib/unistd_.h.
37685         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
37686         unistd_.h.
37687         * lib/wchar.in.h: Renamed from lib/wchar_.h.
37688         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
37689         wchar_.h.
37690         * lib/wctype.in.h: Renamed from lib/wctype_.h.
37691         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
37692         wctype_.h.
37693         * build-aux/bootstrap (slurp): Update.
37694         * lib/.cppi-disable: Update.
37695
37696 2007-09-30  Bruno Haible  <bruno@clisp.org>
37697
37698         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
37699         Needed on BeOS.
37700
37701 2007-09-30  Bruno Haible  <bruno@clisp.org>
37702
37703         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
37704
37705 2007-09-29  Bruno Haible  <bruno@clisp.org>
37706
37707         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
37708
37709 2007-09-29  Bruno Haible  <bruno@clisp.org>
37710
37711         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
37712         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
37713         * build-aux/install-reloc: Compile also areadlink.c.
37714         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
37715
37716 2007-09-29  Bruno Haible  <bruno@clisp.org>
37717
37718         * gnulib-tool (func_emit_initmacro_done): Indentation.
37719
37720 2007-09-29  Bruno Haible  <bruno@clisp.org>
37721
37722         * README: Add CVS checkout update instructions.
37723         Info from Bob Proulx <bob@proulx.com>.
37724
37725 2007-09-28  Eric Blake  <ebb9@byu.net>
37726
37727         Provide move-if-change.
37728         * build-aux/move-if-change: New file, based on best practice
37729         rather than any canonical upstream location.
37730
37731 2007-09-28  Jim Meyering  <jim@meyering.net>
37732
37733         Fix canonicalize loop-detection corner case.
37734         Do not attempt to stat the symlink values stored via seen_triple.
37735         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
37736         on linux-2.6.18, (but not 2.6.22).
37737         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
37738         triple_compare.  The former compares dev,ino,filename, while the latter
37739         would actually stat dirname(filename) when dev and ino were equal.
37740         * lib/hash-triple.c: Install <string.h>.
37741         (STREQ): Define.
37742         (triple_compare_ino_str): New function.
37743         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
37744
37745 2007-09-28  Eric Blake  <ebb9@byu.net>
37746
37747         Enforce that AC_REPLACE_FUNCS files exist.
37748         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
37749         override check for typos.
37750
37751         Fix test-closein on Solaris 10.
37752         * tests/test-closein.c (main): Don't assume stdin can be inherited
37753         closed on all systems.
37754         * tests/test-closein.sh: Likewise.
37755         Reported by Piotr Tarnowski.
37756
37757 2007-09-28  Jim Meyering  <jim@meyering.net>
37758
37759         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
37760
37761 2007-09-27  Jim Meyering  <jim@meyering.net>
37762
37763         canonicalize: Avoid a false-positive cycle failure.
37764         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
37765         Sort.  Remove cycle-check.
37766         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
37767         not cycle-check.h.
37768         (seen_triple): New function.
37769         (canonicalize_filename_mode): Use it instead of cycle-check.
37770         * tests/test-canonicalize.c: Add a test for this bug.
37771         * tests/test-canonicalize.sh: Set up and run the test.
37772
37773         New module, file-set, from coreutils.
37774         * modules/file-set: Define it.
37775         * lib/file-set.c, lib/file-set.h: Implement.
37776
37777         New module, hash-triple, from coreutils.
37778         * modules/hash-triple: Define it.
37779         * lib/hash-triple.c, lib/hash-triple.h: Implement.
37780
37781 2007-09-25  Eric Blake  <ebb9@byu.net>
37782
37783         Fix strerror on Interix.
37784         * lib/string_.h (strerror): Declare replacement.
37785         * doc/functions/strerror.texi (strerror): Document the Interix
37786         shortcoming.
37787         * modules/string (Makefile.am): Support new hooks.
37788         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
37789         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
37790         gl_FUNC_STRERROR_SEPARATE.
37791         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
37792         * lib/strerror.c (rpl_strerror): Provide replacement.
37793         * modules/strerror (Depends-on): Add string.
37794         (configure.ac): Detect use of module.
37795         * tests/test-strerror.c: New file.
37796         * modules/strerror-tests: New test module.
37797         * modules/argp (Depends-on): Add strerror.
37798         * modules/error (Depends-on): Likewise.
37799         Reported by Martin Koeppe.
37800
37801 2007-09-24  Bruno Haible  <bruno@clisp.org>
37802
37803         * README: Update git instructions.
37804
37805 2007-09-24  Eric Blake  <ebb9@byu.net>
37806
37807         Revert fpending breakage from 2007-09-08.
37808         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
37809         __fpending.c.
37810
37811 2007-09-24  Jim Meyering  <jim@meyering.net>
37812
37813         filenamecat.c: Add a test.
37814         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
37815         showing how the function works when DIR is the empty string.
37816
37817 2007-09-21  Simon Josefsson  <simon@josefsson.org>
37818
37819         * tests/test-canonicalize.sh: Turn on executable bit.
37820
37821 2007-09-19  Eric Blake  <ebb9@byu.net>
37822
37823         * README: Update CVS instructions.
37824
37825 2007-09-18  Bruno Haible  <bruno@clisp.org>
37826
37827         * modules/areadlink: New file.
37828         * lib/areadlink.h (areadlink): New declaration.
37829         * lib/areadlink.c: New file, based on lib/xreadlink.c.
37830
37831 2007-09-17  Jim Meyering  <jim@meyering.net>
37832
37833         * lib/savewd.c (ESTALE) [!defined]: Define.
37834         Reported to be required on Interix by Martin Koeppe.
37835
37836 2007-09-17  Bruno Haible  <bruno@clisp.org>
37837
37838         * gnulib-tool (func_version): Use $version.
37839
37840 2007-09-16  Bruno Haible  <bruno@clisp.org>
37841
37842         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
37843         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
37844         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
37845         Reported by Greg Schafer <gschafer@zip.com.au>.
37846
37847 2007-09-15  Bruno Haible  <bruno@clisp.org>
37848
37849         * gnulib-tool (sed): Try a little harder to make bash understand the
37850         alias.
37851         Reported by Bruce Korb <bruce.korb@gmail.com>.
37852
37853 2007-09-13  Eric Blake  <ebb9@byu.net>
37854
37855         * ChangeLog: Remove conflict markers.
37856
37857 2007-09-13  Simon Josefsson  <simon@josefsson.org>
37858
37859         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
37860         Reported by Bruno Haible <bruno@clisp.org>.
37861
37862 2007-09-12  Bruno Haible  <bruno@clisp.org>
37863
37864         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
37865         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
37866         is not defined.
37867
37868 2007-09-12  Eric Blake  <ebb9@byu.net>
37869
37870         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
37871         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
37872         Autoconf definition.
37873         * modules/euidaccess (Depends-on): Add extensions, for
37874         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
37875         * modules/fnmatch (Depends-on): Likewise.
37876         * modules/getaddrinfo (Depends-on): Likewise.
37877         * modules/getdelim (Depends-on): Likewise.
37878         * modules/getline (Depends-on): Likewise.
37879         * modules/getsubopt (Depends-on): Likewise.
37880         * modules/gettext (Depends-on): Likewise.
37881         * modules/group-member (Depends-on): Likewise.
37882         * modules/mbchar (Depends-on): Likewise.
37883         * modules/memmem (Depends-on): Likewise.
37884         * modules/mempcpy (Depends-on): Likewise.
37885         * modules/memrchr (Depends-on): Likewise.
37886         * modules/pagealign_alloc (Depends-on): Likewise.
37887         * modules/readutmp (Depends-on): Likewise.
37888         * modules/stpcpy (Depends-on): Likewise.
37889         * modules/stpncpy (Depends-on): Likewise.
37890         * modules/strchrnul (Depends-on): Likewise.
37891         * modules/strndup (Depends-on): Likewise.
37892         * modules/strsep (Depends-on): Likewise.
37893         * modules/strverscmp (Depends-on): Likewise.
37894         * modules/vasprintf (Depends-on): Likewise.
37895         * modules/wcwidth (Depends-on): Likewise.
37896         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
37897         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
37898         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
37899         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
37900         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
37901         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
37902         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
37903         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
37904         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
37905         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
37906         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
37907         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
37908         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
37909         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
37910         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
37911         * m4/readutmp.m4 (gl_READUTMP): Likewise.
37912         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
37913         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
37914         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
37915         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
37916         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
37917         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
37918         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
37919         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
37920         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
37921         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
37922         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
37923         so that lock.m4 can be used in gettext without extensions module.
37924
37925 2007-09-11  Bruno Haible  <bruno@clisp.org>
37926
37927         * m4/isc-posix.m4: Remove file.
37928         Suggested by Eric Blake.
37929
37930 2007-09-11  Eric Blake  <ebb9@byu.net>
37931
37932         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
37933
37934 2007-09-10  Bruno Haible  <bruno@clisp.org>
37935
37936         * posix-modules: Fix typo in error message.
37937         Reported by Matt <mkraai@beckman.com>.
37938
37939 2007-09-09  Bruno Haible  <bruno@clisp.org>
37940
37941         * doc/functions/getdelim.texi: Update list of platforms lacking the
37942         function.
37943         * doc/functions/getline.texi: Likewise.
37944
37945 2007-09-09  Jim Meyering  <jim@meyering.net>
37946
37947         * lib/hash.c (hash_initialize): Detect calloc failure.
37948         Reported by Bruno Haible.
37949
37950 2007-09-09  Bruno Haible  <bruno@clisp.org>
37951
37952         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
37953         malloc or realloc fails.
37954
37955 2007-09-09  Bruno Haible  <bruno@clisp.org>
37956
37957         * modules/getcwd (Depends-on): Add malloc-posix.
37958         * modules/glob (Depends-on): Likewise.
37959         * modules/putenv (Depends-on): Likewise.
37960         * modules/strdup (Depends-on): Likewise.
37961         * modules/getdelim (Depends-on): Add realloc-posix.
37962         * modules/read-file (Depends-on): Likewise.
37963
37964 2007-09-09  Bruno Haible  <bruno@clisp.org>
37965
37966         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
37967         (gl_FUNC_MALLOC_POSIX): Require it.
37968         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
37969         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
37970         * modules/realloc (Files): Add m4/malloc.m4.
37971         * modules/calloc (Files): Likewise.
37972
37973 2007-09-09  Bruno Haible  <bruno@clisp.org>
37974
37975         * modules/malloc-posix: New file.
37976         * modules/malloc (Depends-on): Add malloc-posix.
37977         * lib/malloc.c: Include errno.h.
37978         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
37979         and a POSIX-compatible malloc into a single function. Set ENOMEM
37980         when returning NULL.
37981         * m4/malloc.m4: New file.
37982         * doc/functions/malloc.texi: Mention the malloc-posix module.
37983         * lib/stdlib_.h (malloc): New declaration.
37984         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
37985         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
37986         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
37987         and HAVE_MALLOC_POSIX.
37988
37989 2007-09-09  Bruno Haible  <bruno@clisp.org>
37990
37991         * modules/realloc-posix: New file.
37992         * modules/realloc (Depends-on): Add realloc-posix.
37993         * lib/realloc.c: Include errno.h.
37994         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
37995         and a POSIX-compatible realloc into a single function. Set ENOMEM
37996         when returning NULL.
37997         * m4/realloc.m4: New file.
37998         * doc/functions/realloc.texi: Mention the realloc-posix module.
37999         * lib/stdlib_.h (realloc): New declaration.
38000         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
38001         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
38002         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
38003         and HAVE_REALLOC_POSIX.
38004
38005 2007-09-09  Bruno Haible  <bruno@clisp.org>
38006
38007         * modules/calloc-posix: New file.
38008         * modules/calloc (Depends-on): Add calloc-posix.
38009         * lib/calloc.c: Include errno.h.
38010         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
38011         and a POSIX-compatible calloc into a single function. Set ENOMEM
38012         when returning NULL.
38013         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
38014         * doc/functions/calloc.texi: Mention the calloc-posix module.
38015         * lib/stdlib_.h (calloc): New declaration.
38016         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
38017         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
38018         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
38019         and HAVE_CALLOC_POSIX.
38020
38021 2007-09-09  Bruno Haible  <bruno@clisp.org>
38022
38023         Allow for modules to show an arbitrary notice.
38024         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
38025         * gnulib-tool: New option --extract-notice.
38026         (func_usage): Document it.
38027         (sed_extract_prog): Update.
38028         (func_get_notice): New function.
38029         (func_modules_notice): New function.
38030         (func_import, func_create_testdir): Invoke it.
38031         Suggested by Jim Meyering.
38032
38033 2007-09-09  Bruno Haible  <bruno@clisp.org>
38034
38035         * gnulib-tool: New options --verbose, --quiet.
38036         (func_usage): Document them.
38037         (verbose): New variable.
38038         (func_execute_command): New function.
38039         (func_import): Don't show the module list and the file list if
38040         $verbose < 0.
38041         (func_create_testdir): Likewise. Use func_execute_command.
38042         (func_create_megatestdir): Use func_execute_command.
38043
38044 2007-09-08  Bruno Haible  <bruno@clisp.org>
38045
38046         * gnulib-tool (func_import): Prefer rsync over wget when available,
38047         for fetching the PO files.
38048
38049 2007-09-08  Bruno Haible  <bruno@clisp.org>
38050
38051         * posix-modules: New file. Portions copied from gnulib-tool.
38052         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
38053
38054 2007-09-08  Jim Meyering  <jim@meyering.net>
38055
38056         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
38057         * lib/fpending.h: Rename from __fpending.h.
38058         * lib/fpending.c: Rename from __fpending.c.
38059         Include "fpending.h", not "__fpending.h".
38060         * lib/__fpending.h, lib/__fpending.c: Remove files.
38061         * modules/fpending (Files): Reflect new file names.
38062         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
38063
38064 2007-09-08  Bruno Haible  <bruno@clisp.org>
38065
38066         * m4/inttypes-h.m4: Remove stub file.
38067
38068 2007-09-07  Simon Josefsson  <simon@josefsson.org>
38069
38070         * doc/headers/stdint.texi: Discuss #include_next issue.
38071
38072 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
38073
38074         * build-aux/bootstrap: Remove obsolete comment about wget --help.
38075
38076 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38077
38078         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
38079         in variable name.
38080
38081 2007-09-03  Jim Meyering  <jim@meyering.net>
38082
38083         New module: git-version-gen.
38084         * modules/git-version-gen: New file.
38085
38086         Import changes from coreutils for bootstrap script.
38087
38088         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
38089
38090         bootstrap: uses rsync to download the .po files
38091         * build-aux/bootstrap (po_download_command_format): New global.
38092         (download_po_files): Use rsync.
38093         (update_po_files): Don't remove .po files after download,
38094         so future rsync runs can take advantage of the copies.
38095
38096         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
38097
38098         Solve the unnecessary-.po-file-regeneration problem once and for all.
38099         * build-aux/bootstrap (download_po_files): New function, renamed from
38100         get_translations.  Now, downloads, but doesn't update LINGUAS.
38101         (update_po_files): New function.
38102
38103         bootstrap: Ignore more.
38104         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
38105         uniwidth to e.g., lib/.gitignore.
38106         (slurp): Handle the sys_stat_.h -> sys mapping, too.
38107
38108         * build-aux/bootstrap: New setting: vc_ignore.
38109         (insert_sorted_if_absent): Create $file if absent.
38110         Adapt to new, possibly empty, list: $vc_ignore.
38111
38112         bootstrap: generate more ignorable names
38113         * build-aux/bootstrap (slurp): When generating ignorable names,
38114         also map .sin to .sed, .gperf to .c, and .y to .c.
38115
38116 2007-09-03  Jim Meyering  <jim@meyering.net>
38117
38118         * build-aux/git-version-gen: New file, from coreutils.  For details, see
38119         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
38120
38121 2007-09-02  Bruno Haible  <bruno@clisp.org>
38122
38123         Fix mis-recognition of 'mcs' on QNX 6.
38124         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
38125         output contains the string "Mono".
38126         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
38127         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
38128
38129 2007-09-01  Bruno Haible  <bruno@clisp.org>
38130
38131         Fix collision between uniwidth/* and linebreak modules.
38132         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
38133         u32_width): Remove declarations.
38134         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
38135         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
38136         streq3, streq2, streq1, streq0): Remove functions.
38137         (STREQ): Remove macro.
38138         (is_cjk_encoding): Remove function.
38139         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
38140         (uc_width, u8_width, u16_width, u32_width): Remove functions.
38141         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
38142         * NEWS: Document the change.
38143
38144 2007-09-01  Bruno Haible  <bruno@clisp.org>
38145
38146         * lib/streq.h: Add double-inclusion guard.
38147
38148 2007-09-01  Karl Berry  <karl@gnu.org>
38149
38150         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
38151
38152 2007-08-28  Jim Meyering  <jim@meyering.net>
38153
38154         Rename mreadlink_with_size to areadlink_with_size.
38155         * NEWS: Document the change.
38156         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
38157         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
38158         * lib/mreadlink.h: Rename this to...
38159         * lib/areadlink.h: ...this.
38160         * modules/mreadlink-with-size: Rename this to...
38161         * modules/areadlink-with-size: ...this.
38162         * lib/canonicalize.c: Reflect the renaming.
38163         * modules/canonicalize: Likewise.
38164
38165 2007-08-26  Bruno Haible  <bruno@clisp.org>
38166
38167         * gnulib-tool (func_import): When deciding which files to remove,
38168         consider also dangling symbolic links.
38169         Reported by Eric Blake.
38170
38171 2007-08-26  Bruno Haible  <bruno@clisp.org>
38172
38173         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
38174
38175 2007-08-23  Simon Josefsson  <simon@josefsson.org>
38176
38177         * lib/readline.c: Don't include getline.h, the prototype is now
38178         found in stdio.h.
38179
38180 2007-08-23  Jim Meyering  <jim@meyering.net>
38181
38182         Getdelim touchup.
38183         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
38184         around the funlockfile call, since funlockfile never sets errno.
38185         Don't set errno upon failed realloc.
38186
38187 2007-08-22  Eric Blake  <ebb9@byu.net>
38188
38189         Getline touchups.
38190         * lib/getdelim.c (getdelim): Revert regression that required *n to
38191         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
38192         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
38193         getdelim, rather than whether implementation is missing.
38194         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
38195         * lib/stdio_.h (getline): Also declare if replacement is
38196         required.
38197         * doc/functions/getdelim.texi: New file.
38198         * doc/functions/getline.texi: Likewise.
38199         * doc/gnulib.texi (Function Substitutes): Add new files.
38200         Reported by Bruno Haible.
38201
38202 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
38203
38204         * users.txt: Add Guile.
38205
38206 2007-08-22  Eric Blake  <ebb9@byu.net>
38207
38208         * tests/test-getdelim.c (main): Use remove, not unlink.
38209         * tests/test-getline.c (main): Likewise.
38210
38211         Move getline and getdelim into stdio.h, per POSIX 200x.
38212         * modules/getline (Files): Remove getline.h.
38213         (Depends-on): Add stdio.
38214         (configure.ac): Add module indicator.
38215         * modules/getdelim (Files): Remove getdelim.h.
38216         (Depends-on): Add stdio.
38217         (configure.ac): Add module indicator.
38218         * modules/stdio (Makefile.am): Work with new indicators.
38219         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
38220         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
38221         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
38222         * lib/getdelim.h: Delete.
38223         * lib/getline.h: Delete.
38224         * lib/stdio_.h (getdelim, getline): Declare.
38225         * modules/getdelim-tests: New module.
38226         * modules/getline-tests: Likewise.
38227         * tests/test-getdelim.c: New file.
38228         * tests/test-getline.c: Likewise.
38229         * NEWS: Document the change.
38230         * lib/getline.c: Update choice of header.
38231         * lib/csharpcomp.c: Likewise.
38232         * lib/getpass.c: Likewise.
38233         * lib/javacomp.c: Likewise.
38234         * lib/javaversion.c: Likewise.
38235         * lib/yesno.c: Likewise.
38236         * lib/getdelim.c: Likewise.
38237         (getdelim): Set errno on failure, and avoid memory leak.
38238
38239 2007-08-19  Bruno Haible  <bruno@clisp.org>
38240
38241         * modules/closein (Depends-on): Add freadahead.
38242         * lib/closein.c: Include freadahead.h.
38243         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
38244         is zero.
38245
38246 2007-08-19  Bruno Haible  <bruno@clisp.org>
38247
38248         * modules/freadahead-tests: New file.
38249         * tests/test-freadahead.sh: New file.
38250         * tests/test-freadahead.c: New file.
38251
38252         * modules/freadahead: New file.
38253         * lib/freadahead.h: New file.
38254         * lib/freadahead.c: New file.
38255         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
38256         fbufmode, fpurge, freadable, fwritable.
38257
38258 2007-08-19  Eric Blake  <ebb9@byu.net>
38259
38260         Test yesno in combination with closein.
38261         * lib/yesno.c (yesno): Document use of stdin.
38262         * modules/yesno-tests (Files): New module.
38263         * tests/test-yesno.c (main): New file.
38264         * tests/test-yesno.sh: Likewise.
38265
38266 2007-08-19  Bruno Haible  <bruno@clisp.org>
38267
38268         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
38269         * lib/fseeko.c (rpl_fseeko): Likewise.
38270         * lib/fseterr.c (fseterr): Likewise.
38271
38272 2007-08-19  Bruno Haible  <bruno@clisp.org>
38273
38274         * tests/test-lseek.c (main): Disable a test for BeOS.
38275         * doc/functions/lseek.texi: Document the BeOS bug.
38276
38277 2007-08-19  Bruno Haible  <bruno@clisp.org>
38278             Eric Blake  <ebb9@byu.net>
38279
38280         * lib/lseek.c: Include <sys/stat.h>.
38281         (rpl_lseek): Add workaround code also for Unix platforms.
38282         Needed for BeOS.
38283         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
38284         * doc/functions/lseek.texi: Document BeOS definiency.
38285
38286 2007-08-18  Bruno Haible  <bruno@clisp.org>
38287
38288         * modules/fstrcmp-tests: New file.
38289         * tests/test-fstrcmp.c: New file.
38290
38291 2007-08-18  Bruno Haible  <bruno@clisp.org>
38292
38293         * modules/fstrcmp: New file, from GNU gettext with modifications.
38294         * lib/fstrcmp.h: New file, from GNU gettext.
38295         * lib/fstrcmp.c: New file, from GNU gettext.
38296         * MODULES.html.sh (String handling): Add fstrcmp.
38297
38298 2007-08-18  Bruno Haible  <bruno@clisp.org>
38299
38300         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
38301         'bool'.
38302         (diag, compareseq): Remove const from the ctxt argument.
38303         (USE_HEURISTIC): Undefine at the end.
38304
38305 2007-08-18  Jim Meyering  <jim@meyering.net>
38306
38307         New file: lib/idcache.h
38308         * NEWS: Mention the addition.
38309         * modules/idcache (Files): Add lib/idcache.h
38310         * lib/idcache.c: Include "idcache.h".
38311         Don't include <sys/types.h>.
38312         Add a FIXME comment.
38313         Move file-scoped "static" declarations to the top.
38314         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
38315
38316 2007-08-17  Bruno Haible  <bruno@clisp.org>
38317         and Paul Eggert  <eggert@cs.ucla.edu>
38318
38319         * MODULES.html.sh: Add diffseq.
38320         * modules/diffseq: New file.
38321         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
38322         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
38323
38324 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
38325
38326         Import changes from coreutils for bootstrap script.
38327
38328         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
38329
38330         * build-aux/bootstrap (slurp): Work even in environments where
38331         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
38332         current code does not slurp files whose names start with ".", and
38333         this looks like it might be a troublesome area.
38334
38335         2007-07-11  Jim Meyering  <jim@meyering.net>
38336
38337         If there's a GPL vN copyright comment, require that N == 3.
38338
38339         2007-07-08  Jim Meyering  <jim@meyering.net>
38340
38341         Run the coreutils-specific code only if tests/Makefile.am.in exists.
38342         * build-aux/bootstrap (mam_template): Move definition out of loop.
38343
38344         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
38345
38346         * build-aux/bootstrap (symlink_to_dir): Rename function from
38347         symlink_to_gnulib.  Add a directory parameter.  Update all
38348         callers.
38349         (cp_mark_as_generated): Also check for -- and link to -- files in
38350         gl/.
38351
38352         2007-07-08  Jim Meyering  <jim@meyering.net>
38353
38354         Adapt to deeper hierarchy in gnulib.
38355         * build-aux/bootstrap (symlink_to_dir): If the destination
38356         directory doesn't exist, create it. This is required at least for
38357         "lib/uniwidth/cjk.h".
38358
38359         2007-05-15  Jim Meyering  <jim@meyering.net>
38360
38361         * build-aux/bootstrap: Now that generated Makefile.am files
38362         are no longer under version control, they must be created at
38363         bootstrap time.
38364
38365 2007-08-14  Ben Pfaff  <blp@gnu.org>
38366
38367         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
38368
38369 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
38370
38371         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
38372         given the changes below.
38373         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
38374         even on hosts that have padding bits beyond the supported 64.
38375
38376 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
38377
38378         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
38379         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
38380         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
38381         depends on it.
38382         (xstrtol_error): Remove.
38383         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
38384         but with a different signature.
38385         (ATTRIBUTE_NORETURN, __attribute__): New macros.
38386         * lib/xstrtol-error.c: Include exitfail.h.
38387         (xstrtol_fatal): New function, with a different signature from the
38388         old xstrtol_error, so that the caller need not worry about passing
38389         in an exit status, or about storage management of the option argument.
38390         (xstrtol_error): Now a static function.  Redo signature to
38391         implement xstrtol_fatal.  Output the correct number of hyphens in
38392         front of the option so that the caller need not worry about
38393         storage management.
38394         (N_): New macro.
38395         (_): Remove; not used now.
38396         * modules/xstrtol: Depend on getopt.
38397         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
38398         of old STRTOL_FATAL_ERROR macro.
38399         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
38400         of test program.
38401         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
38402         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
38403
38404 2007-08-08  Eric Blake  <ebb9@byu.net>
38405
38406         * lib/xstrtol-error.c: Add missing include.
38407
38408         Move xstrtol messages into gnulib domain, when --pobase is used.
38409         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
38410         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
38411         * modules/xstrtol (Files): Distribute new file.
38412         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
38413         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
38414         * tests/test-xstrtol.c: ...into new file.
38415         * tests/test-xstrtoul.c: Also test xstrtoul.
38416         * tests/test-xstrtoimax.c: Also test xstrtoimax.
38417         * tests/test-xstrtoumax.c: Also test xstrtoumax.
38418         * tests/test-xstrtol.sh: Drive the tests.
38419         * tests/test-xstrtoimax.sh: Likewise.
38420         * tests/test-xstrtoumax.sh: Likewise.
38421         * modules/xstrtol-tests: New module.
38422         * modules/xstrtoimax-tests: Likewise.
38423         * modules/xstrtoumax-tests: Likewise.
38424
38425 2007-08-08  Jim Meyering  <jim@meyering.net>
38426
38427         New function: mfile_name_concat.
38428         * lib/filenamecat.c (mfile_name_concat): New function, just like
38429         file_name_concat, but return NULL upon failure rather than exiting
38430         with a diagnostic.
38431         * lib/filenamecat.h: Declare it.
38432
38433 2007-08-07  Bruno Haible  <bruno@clisp.org>
38434
38435         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
38436         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
38437         warning from gcc.
38438         Reported by Eric Blake.
38439
38440 2007-08-07  Simon Josefsson  <simon@josefsson.org>
38441
38442         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
38443         * modules/crypto/arcfour (License): Likewise.
38444         * modules/crypto/des-tests (License): Likewise.
38445         * modules/crypto/gc-arctwo-tests (License): Likewise.
38446         * modules/crypto/gc-des-tests (License): Likewise.
38447         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
38448         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
38449         * modules/crypto/gc-md2-tests (License): Likewise.
38450         * modules/crypto/gc-md4-tests (License): Likewise.
38451         * modules/crypto/gc-md5-tests (License): Likewise.
38452         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
38453         * modules/crypto/gc-rijndael-tests (License): Likewise.
38454         * modules/crypto/gc-sha1-tests (License): Likewise.
38455         * modules/crypto/gc-tests (License): Likewise.
38456         * modules/crypto/hmac-md5 (License): Likewise.
38457         * modules/crypto/hmac-sha1 (License): Likewise.
38458         * modules/crypto/md2-tests (License): Likewise.
38459         * modules/crypto/md4-tests (License): Likewise.
38460         * modules/crypto/md5 (License): Likewise.
38461         * modules/crypto/rijndael (License): Likewise.
38462         * modules/crypto/sha1 (License): Likewise.
38463         * modules/memxor (License): Likewise.
38464
38465 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
38466         and Bruno Haible  <bruno@clisp.org>
38467
38468         * NEWS: Describe interface changes to human, xstrtol.
38469         * lib/human.h: Include <xstrtol.h>.
38470         (human_options): Return enum strtol_error, not int.  Remove
38471         bool arg; take int * instead.
38472         * lib/human.c: Don't include "gettext.h".
38473         (_): Remove; no longer used.
38474         Don't include <xstrtol.h>, since human.h does it.
38475         (human_options): Adjust to abovementioned interface changes.
38476         Do not report error to stderr; that's now the caller's
38477         responsibility.
38478         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
38479         interface change.
38480         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
38481         Str, Argument_type_string.  All uses changed.  Put " argument"
38482         in diagnostics to make them clearer.  Change wording of suffix
38483         message for clarity.
38484         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
38485         Argument_type_string.
38486         (STRTOL_FATAL_WARN): Remove; no longer used.
38487         * modules/human (Depends-on): Remove gettext-h.
38488
38489 2007-08-06  Simon Josefsson  <simon@josefsson.org>
38490
38491         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
38492
38493 2007-07-31  Bruno Haible  <bruno@clisp.org>
38494
38495         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
38496         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
38497         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
38498
38499 2007-07-31  Bruno Haible  <bruno@clisp.org>
38500
38501         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
38502         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
38503
38504 2007-07-30  Bruno Haible  <bruno@clisp.org>
38505
38506         * modules/base64 (License): Use the synonymous term "LGPLv2+".
38507         * modules/c-ctype (License): Likewise.
38508         * modules/c-strcase (License): Likewise.
38509         * modules/check-version (License): Likewise.
38510         * modules/iconv (License): Likewise.
38511         * modules/iconv_open (License): Likewise.
38512         * modules/read-file (License): Likewise.
38513         * modules/striconv (License): Likewise.
38514         * modules/strverscmp (License): Likewise.
38515         * modules/vasprintf (License): Likewise.
38516         * modules/crypto/des (License): Likewise.
38517         * modules/crypto/gc (License): Likewise.
38518         * modules/crypto/gc-arcfour (License): Likewise.
38519         * modules/crypto/gc-arctwo (License): Likewise.
38520         * modules/crypto/gc-des (License): Likewise.
38521         * modules/crypto/gc-hmac-md5 (License): Likewise.
38522         * modules/crypto/gc-hmac-sha1 (License): Likewise.
38523         * modules/crypto/gc-md2 (License): Likewise.
38524         * modules/crypto/gc-md4 (License): Likewise.
38525         * modules/crypto/gc-md5 (License): Likewise.
38526         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
38527         * modules/crypto/gc-random (License): Likewise.
38528         * modules/crypto/gc-rijndael (License): Likewise.
38529         * modules/crypto/gc-sha1 (License): Likewise.
38530         * modules/crypto/md2 (License): Likewise.
38531         * modules/crypto/md4 (License): Likewise.
38532
38533 2007-07-30  Jim Meyering  <jim@meyering.net>
38534
38535         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
38536         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
38537         it has valid stat data.  This bug would cause du not to count the
38538         sizes of inaccessible directories.
38539         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
38540         in <http://bugzilla.redhat.com/250077>.
38541
38542 2007-07-25  Peter O'Gorman  <peter@pogma.com>
38543             Bruno Haible  <bruno@clisp.org>
38544
38545         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
38546         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
38547         #include_next, gives a diagnostic about it, but reports no error in
38548         the exit code.
38549         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
38550
38551 2007-07-24  Ben Pfaff  <blp@gnu.org>
38552
38553         Improve name: "count-one-bits" is better than "popcount".
38554         * MODULES.html.sh: Update name.
38555         * lib/popcount.h: Renamed lib/count-one-bits.h.
38556         (popcount): Renamed count_one_bits.
38557         (popcountl): Renamed count_one_bits_l.
38558         (popcountll): Renamed count_one_bits_ll.
38559         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
38560         * modules/popcount: Renamed module/count-one-bits.
38561         * modules/popcount-tests: Renamed module/count-one-bits-tests.
38562         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
38563
38564 2007-07-23  Ben Pfaff  <blp@gnu.org>
38565
38566         * lib/popcount.h (popcount32): Reduce size of constants, to allow
38567         better code generation, and add U to large constants to avoid
38568         warnings, in non-GCC case.
38569         Suggested by Bruno Haible.
38570
38571 2007-07-23  Ben Pfaff  <blp@gnu.org>
38572
38573         * lib/popcount.h: Use verify_true instead of if...abort.
38574         * modules/popcount: Depend on verify module.
38575         Suggested by Jim Meyering.
38576
38577 2007-07-23  Bruno Haible  <bruno@clisp.org>
38578
38579         * gnulib-tool (func_import): Create a .cvsignore file also when the
38580         directory is not yet in CVS but the toplevel directory is. When
38581         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
38582         Reported by Karl Berry.
38583
38584 2007-07-22  Ben Pfaff  <blp@gnu.org>
38585
38586         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
38587         case.
38588         Suggested by Eric Blake.
38589
38590 2007-07-22  Ben Pfaff  <blp@gnu.org>
38591
38592         New module: popcount.
38593         * MODULES.html.sh: Add popcount.
38594         * modules/popcount: New file.
38595         * modules/popcount-tests: New file.
38596         * tests/test-popcount.c: New file.
38597         * lib/popcount.h: New file.
38598         * m4/popcount.m4: New file.
38599
38600 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38601
38602         * build-aux/announce-gen: Update to GPLv3.
38603
38604         * build-aux/config.guess: Update from config.
38605
38606 2007-07-21  Bruno Haible  <bruno@clisp.org>
38607
38608         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
38609         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
38610
38611 2007-07-20  Jim Meyering  <jim@meyering.net>
38612
38613         * check-module: Diagnose a self-dependency.
38614
38615 2007-07-19  Bruno Haible  <bruno@clisp.org>
38616
38617         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
38618         empty.
38619         Reported by Eric Blake.
38620
38621 2007-07-18  Bruno Haible  <bruno@clisp.org>
38622
38623         * gnulib-tool: New options --po-base, --po-domain.
38624         (func_usage): Document them.
38625         (pobase, po_domain): New variables.
38626         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
38627         DEFAULT_TEXT_DOMAIN.
38628         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
38629         (func_import): Consider pobase and po_domain. Create a po/ directory.
38630         (func_create_testdir): Set pobase and po_domain to empty.
38631         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
38632         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
38633
38634 2007-07-18  Bruno Haible  <bruno@clisp.org>
38635
38636         * gnulib-tool (func_get_automake_snippet): Synthesize also an
38637         EXTRA_DIST augmentation for files in build-aux/.
38638
38639 2007-07-16  Bruno Haible  <bruno@clisp.org>
38640
38641         * modules/lseek (License): Use the synonymous term "LGPLv2+".
38642         * modules/getdelim (License): Likewise.
38643
38644 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
38645
38646         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
38647         * modules/d-type (License): Likewise.
38648         * modules/extensions (License): Likewise.
38649         * modules/fnmatch (License): Likewise.
38650         * modules/fseeko (License): Likewise.
38651         * modules/getaddrinfo (License): Likewise.
38652         * modules/getline (License): Likewise.
38653         * modules/getlogin_r (License): Likewise.
38654         * modules/getpass (License): Likewise.
38655         * modules/gettimeofday (License): Likewise.
38656         * modules/glob (License): Likewise.
38657         * modules/inet_ntop (License): Likewise.
38658         * modules/malloc (License): Likewise.
38659         * modules/malloca (License): Likewise.
38660         * modules/memmem (License): Likewise.
38661         * modules/mempcpy (License): Likewise.
38662         * modules/memset (License): Likewise.
38663         * modules/minmax (License): Likewise.
38664         * modules/mktime (License): Likewise.
38665         * modules/netinet_in (License): Likewise.
38666         * modules/pathmax (License): Likewise.
38667         * modules/poll (License): Likewise.
38668         * modules/regex (License): Likewise.
38669         * modules/snprintf (License): Likewise.
38670         * modules/stdbool (License): Likewise.
38671         * modules/stdint (License): Likewise.
38672         * modules/stdio (License): Likewise.
38673         * modules/strcase (License): Likewise.
38674         * modules/strcasestr (License): Likewise.
38675         * modules/strdup (License): Likewise.
38676         * modules/string (License): Likewise.
38677         * modules/strndup (License): Likewise.
38678         * modules/strnlen (License): Likewise.
38679         * modules/strpbrk (License): Likewise.
38680         * modules/strptime (License): Likewise.
38681         * modules/strsep (License): Likewise.
38682         * modules/sys_select (License): Likewise.
38683         * modules/sys_socket (License): Likewise.
38684         * modules/sys_stat (License): Likewise.
38685         * modules/sys_time (License): Likewise.
38686         * modules/time (License): Likewise.
38687         * modules/time_r (License): Likewise.
38688         * modules/timegm (License): Likewise.
38689         * modules/unistd (License): Likewise.
38690         * modules/vsnprintf (License): Likewise.
38691         * modules/wctype (License): Likewise.
38692
38693 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38694
38695         * modules/argz (License): LGPLv2+.
38696
38697 2007-07-15  Karl Berry  <karl@gnu.org>
38698
38699         * doc/gnulib.texi: revise node structure per new fdl.texi.
38700
38701 2007-07-14  Bruno Haible  <bruno@clisp.org>
38702
38703         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
38704         the output file.
38705         * lib/uniname/uninames.h: Regenerated.
38706
38707 2007-07-14  Karl Berry  <karl@gnu.org>
38708
38709         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
38710         omitting sectioning and index commands.
38711
38712 2007-07-13  Bruno Haible  <bruno@clisp.org>
38713
38714         New gnulib-tool option --more-symlinks.
38715         * gnulib-tool (func_usage): Document --more-symlinks.
38716         (do_copyrights): New variable.
38717         Recognize option --more-symlinks.
38718         (func_import): Don't add a copyright notice transform to
38719         sed_transform_lib_file if do_copyrights is empty.
38720
38721 2007-07-13  Bruno Haible  <bruno@clisp.org>
38722
38723         * lib/vasnprintf.c (decimal_point_char): Define also if
38724         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
38725         && !NEED_PRINTF_DIRECTIVE_A.
38726         Reported by Clemens Koller <clemens.koller@anagramm.de> via
38727         Gary V. Vaughan <gary@gnu.org>.
38728
38729 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
38730
38731         * lib/inttypes_.h: Undo previous change, since it was fixed
38732         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
38733
38734 2007-07-13  Bruno Haible  <bruno@clisp.org>
38735
38736         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
38737         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
38738
38739 2007-07-13  Jim Meyering  <jim@meyering.net>
38740
38741         df: Don't fail for Tru64's "file-on-file mount".
38742         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
38743         so we fall through and use statfs instead.  Details here:
38744         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
38745         Reported by Albert Chin.
38746
38747 2007-07-13  Bruno Haible  <bruno@clisp.org>
38748
38749         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
38750         * modules/configmake (License): Likewise.
38751         * modules/gettext (License): Likewise.
38752         * modules/gettext-h (License): Likewise.
38753         * modules/include_next (License): Likewise.
38754         * modules/link-warning (License): Likewise.
38755         * modules/localcharset (License): Likewise.
38756         * modules/localename (License): Likewise.
38757         * modules/lock (License): Likewise.
38758         * modules/relocatable-lib-lgpl (License): Likewise.
38759         * modules/size_max (License): Likewise.
38760         * modules/vasnprintf (License): Likewise.
38761         * modules/wchar (License): Likewise.
38762         * modules/xsize (License): Likewise.
38763
38764 2007-07-13  Bruno Haible  <bruno@clisp.org>
38765
38766         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
38767         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
38768
38769 2007-07-12  Bruno Haible  <bruno@clisp.org>
38770
38771         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
38772         in the modules files.
38773
38774 2007-07-11  Karl Berry  <karl@gnu.org>
38775
38776         * MODULES.html.sh (func_module): use
38777          sed -e '\|^'"${includefile}"'$|d'
38778          instead of /.../d, to avoid errors on $includefile's containing /.
38779
38780 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
38781
38782         * gnulib-tool (func_import): Avoid duplication of --avoid
38783         statements
38784         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
38785         names to `_' in variable names.
38786
38787 2007-07-10  Eric Blake  <ebb9@byu.net>
38788
38789         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
38790         * NEWS: Document this change.
38791
38792 2007-07-08  Bruno Haible  <bruno@clisp.org>
38793
38794         Update to Unicode 5.0.
38795         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
38796         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
38797         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
38798         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
38799         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
38800         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
38801         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
38802         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
38803         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
38804         U+10A3F, U+1D242..U+1D244.
38805         (nonspacing_table_ind): Update.
38806         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
38807         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
38808
38809 2007-07-08  Bruno Haible  <bruno@clisp.org>
38810
38811         Update to Unicode 5.0.
38812         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
38813         code transform. Extend the name index field of unicode_name_to_code and
38814         unicode_code_to_name from 16 to 24 bits.
38815         * lib/uniname/uniname.c (unicode_character_name,
38816         unicode_name_character): Add the range 0x12xxx to the code transform.
38817         * lib/uniname/uninames.h: Regenerated.
38818         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
38819
38820 2007-07-07  Bruno Haible  <bruno@clisp.org>
38821
38822         * modules/wcwidth-tests: New file.
38823         * tests/test-wcwidth.c: New file.
38824
38825         Work around MacOS X wcwidth() bug.
38826         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
38827         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
38828         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
38829         original wcwidth in non-UTF-8 locales.
38830         * modules/wcwidth (Depends-on): Add localcharset, streq,
38831         uniwidth/width.
38832         * doc/functions/wcwidth.texi: Update.
38833
38834 2007-07-07  Bruno Haible  <bruno@clisp.org>
38835
38836         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
38837         (wcwidth): New declaration.
38838         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
38839         macros.
38840         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
38841         here. Prepare for creating <wchar.h> unconditionally.
38842         * modules/wchar (Depends-on): Add link-warning.
38843         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
38844         REPLACE_WCWIDTH, and GL_LINK_WARNING.
38845         * lib/wcwidth.h: Remove file.
38846         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
38847         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
38848         * modules/wcwidth (Files): Remove lib/wcwidth.h.
38849         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
38850         (Include): Replace wcwidth.h with <wchar.h>.
38851         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
38852         * lib/mbchar.h: Don't include wcwidth.h.
38853         * lib/mbswidth.c: Likewise.
38854         * NEWS: Mention the change.
38855
38856 2007-07-07  Bruno Haible  <bruno@clisp.org>
38857
38858         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
38859         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
38860         definition with an external declaration.
38861         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
38862         defined as a function. Remove AC_C_INLINE requirement.
38863         * modules/wcwidth (Files): Add lib/wcwidth.c.
38864         (Makefile.am): Remove redundant statement.
38865
38866 2007-07-07  Bruno Haible  <bruno@clisp.org>
38867
38868         * MODULES.html.sh (Unicode string functions): Add the new modules.
38869
38870         * tests/uniwidth/test-u32-strwidth.c: New file.
38871         * modules/uniwidth/u32-strwidth-tests: New file.
38872
38873         * lib/uniwidth/u32-strwidth.c: New file.
38874         * modules/uniwidth/u32-strwidth: New file.
38875
38876         * tests/uniwidth/test-u16-strwidth.c: New file.
38877         * modules/uniwidth/u16-strwidth-tests: New file.
38878
38879         * lib/uniwidth/u16-strwidth.c: New file.
38880         * modules/uniwidth/u16-strwidth: New file.
38881
38882         * tests/uniwidth/test-u8-strwidth.c: New file.
38883         * modules/uniwidth/u8-strwidth-tests: New file.
38884
38885         * lib/uniwidth/u8-strwidth.c: New file.
38886         * modules/uniwidth/u8-strwidth: New file.
38887
38888         * tests/uniwidth/test-u32-width.c: New file.
38889         * modules/uniwidth/u32-width-tests: New file.
38890
38891         * lib/uniwidth/u32-width.c: New file.
38892         * modules/uniwidth/u32-width: New file.
38893
38894         * tests/uniwidth/test-u16-width.c: New file.
38895         * modules/uniwidth/u16-width-tests: New file.
38896
38897         * lib/uniwidth/u16-width.c: New file.
38898         * modules/uniwidth/u16-width: New file.
38899
38900         * tests/uniwidth/test-u8-width.c: New file.
38901         * modules/uniwidth/u8-width-tests: New file.
38902
38903         * lib/uniwidth/u8-width.c: New file.
38904         * modules/uniwidth/u8-width: New file.
38905
38906         * tests/uniwidth/test-uc_width.c: New file.
38907         * modules/uniwidth/width-tests: New file.
38908
38909         * lib/uniwidth/width.c: New file, from GNU libiconv.
38910         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
38911         * modules/uniwidth/width: New file.
38912
38913         * lib/uniwidth.h: New file, from GNU libiconv.
38914         * modules/uniwidth/base: New file.
38915
38916 2007-07-07  Bruno Haible  <bruno@clisp.org>
38917
38918         * lib/uniname.h: New file, from GNU gettext.
38919         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
38920         * lib/uniname/uninames.h: New file, from GNU gettext.
38921         * lib/uniname/uniname.c: New file, from GNU gettext.
38922         * tests/uniname/test-uninames.sh: New file.
38923         * tests/uniname/test-uninames.c: New file, from GNU gettext.
38924         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
38925         * modules/uniname/base: New file.
38926         * modules/uniname/uniname: New file.
38927         * modules/uniname/uniname-tests: New file.
38928         * MODULES.html.sh (Unicode string functions): Add the new modules.
38929
38930 2007-07-06  Bruno Haible  <bruno@clisp.org>
38931
38932         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
38933
38934 2007-07-06  Bruno Haible  <bruno@clisp.org>
38935
38936         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
38937         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
38938         includes <cygwin/sys_time.h> which includes <sys/select.h> which
38939         include <sys/time.h>.
38940         Reported by Eric Blake.
38941
38942 2007-07-06  Eric Blake  <ebb9@byu.net>
38943
38944         Fix testing canonicalize on cygwin.
38945         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
38946         Revert patch from 2007-06-19.
38947         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
38948         canonicalize module is also in use.
38949         * tests/test-canonicalize.c: New file.
38950         * tests/test-canonicalize.sh: Likewise.
38951         * modules/canonicalize-tests: Likewise.
38952
38953 2007-07-06  Jim Meyering  <jim@meyering.net>
38954
38955         * lib/getugroups.c (getugroups): Detect getgrent failure.
38956         Adjust comment to reflect reality: this function may return -1.
38957
38958 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
38959
38960         * build-aux/bootstrap (TP_URL,get_translations): Update to use
38961         the new TP address.
38962         (usage): Fix typo
38963         (gnulib_mk): New variable.
38964
38965 2007-07-05  Jim Meyering  <jim@meyering.net>
38966
38967         Don't let endgrent clobber errno, no matter how improbable.
38968         * lib/getugroups.c (getugroups): Save and restore errno around
38969         endgrent call.
38970
38971         Close the group DB even when failing with 2^31 or more members.
38972         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
38973
38974 2007-07-04  Jim Meyering  <jim@meyering.net>
38975
38976         * lib/getugroups.h: New file.
38977         * lib/getugroups.c: Include "getugroups.h".
38978         Remove uses of "register" keyword.
38979         Move local variable, "cp", down into scope where used.
38980         Give "username" parameter the "const" attribute.
38981         * modules/getugroups (Files): Add lib/getugroups.h
38982
38983 2007-07-04  Karl Berry  <karl@gnu.org>
38984
38985         * MODULES.html.sh (func_all_modules): Complete rename of
38986         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
38987
38988 2007-07-02  Bruno Haible  <bruno@clisp.org>
38989
38990         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
38991         mode, when inttypes.h comes from gnulib.
38992         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
38993
38994 2007-07-02  Simon Josefsson  <simon@josefsson.org>
38995
38996         * NEWS: Mention lgpl module name change.
38997
38998         * modules/lgpl-2.1: Renamed from lgpl.
38999
39000         * NEWS: Mention gpl module name change.
39001
39002         * modules/gpl-3.0: New file, based on gpl-2.0.
39003
39004         * modules/gpl-2.0: Renamed from gpl.
39005
39006         * modules/gpl: Fix filename, doc/gpl.texi is now found at
39007         doc/gpl-2.0.texi.
39008
39009 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
39010
39011         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
39012         #define __STDC_LIMIT_MACROS temporarily while including
39013         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
39014         Problem reported by Joel E. Denny in
39015         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
39016
39017 2007-07-01  Bruno Haible  <bruno@clisp.org>
39018
39019         * lib/unistdio.h: New file.
39020         * lib/unistdio/u-asnprintf.h: New file.
39021         * lib/unistdio/u-asprintf.h: New file.
39022         * lib/unistdio/u-printf-args.c: New file.
39023         * lib/unistdio/u-printf-args.h: New file.
39024         * lib/unistdio/u-printf-parse.h: New file.
39025         * lib/unistdio/u-snprintf.h: New file.
39026         * lib/unistdio/u-sprintf.h: New file.
39027         * lib/unistdio/u-vasprintf.h: New file.
39028         * lib/unistdio/u-vsnprintf.h: New file.
39029         * lib/unistdio/u-vsprintf.h: New file.
39030         * lib/unistdio/ulc-asnprintf.c: New file.
39031         * lib/unistdio/ulc-asprintf.c: New file.
39032         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
39033         * lib/unistdio/ulc-printf-parse.c: New file.
39034         * lib/unistdio/ulc-snprintf.c: New file.
39035         * lib/unistdio/ulc-sprintf.c: New file.
39036         * lib/unistdio/ulc-vasnprintf.c: New file.
39037         * lib/unistdio/ulc-vasprintf.c: New file.
39038         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
39039         * lib/unistdio/ulc-vsnprintf.c: New file.
39040         * lib/unistdio/ulc-vsprintf.c: New file.
39041         * lib/unistdio/u8-asnprintf.c: New file.
39042         * lib/unistdio/u8-asprintf.c: New file.
39043         * lib/unistdio/u8-printf-parse.c: New file.
39044         * lib/unistdio/u8-snprintf.c: New file.
39045         * lib/unistdio/u8-sprintf.c: New file.
39046         * lib/unistdio/u8-vasnprintf.c: New file.
39047         * lib/unistdio/u8-vasprintf.c: New file.
39048         * lib/unistdio/u8-vsnprintf.c: New file.
39049         * lib/unistdio/u8-vsprintf.c: New file.
39050         * lib/unistdio/u8-u8-asnprintf.c: New file.
39051         * lib/unistdio/u8-u8-asprintf.c: New file.
39052         * lib/unistdio/u8-u8-snprintf.c: New file.
39053         * lib/unistdio/u8-u8-sprintf.c: New file.
39054         * lib/unistdio/u8-u8-vasnprintf.c: New file.
39055         * lib/unistdio/u8-u8-vasprintf.c: New file.
39056         * lib/unistdio/u8-u8-vsnprintf.c: New file.
39057         * lib/unistdio/u8-u8-vsprintf.c: New file.
39058         * lib/unistdio/u16-asnprintf.c: New file.
39059         * lib/unistdio/u16-asprintf.c: New file.
39060         * lib/unistdio/u16-printf-parse.c: New file.
39061         * lib/unistdio/u16-snprintf.c: New file.
39062         * lib/unistdio/u16-sprintf.c: New file.
39063         * lib/unistdio/u16-vasnprintf.c: New file.
39064         * lib/unistdio/u16-vasprintf.c: New file.
39065         * lib/unistdio/u16-vsnprintf.c: New file.
39066         * lib/unistdio/u16-vsprintf.c: New file.
39067         * lib/unistdio/u16-u16-asnprintf.c: New file.
39068         * lib/unistdio/u16-u16-asprintf.c: New file.
39069         * lib/unistdio/u16-u16-snprintf.c: New file.
39070         * lib/unistdio/u16-u16-sprintf.c: New file.
39071         * lib/unistdio/u16-u16-vasnprintf.c: New file.
39072         * lib/unistdio/u16-u16-vasprintf.c: New file.
39073         * lib/unistdio/u16-u16-vsnprintf.c: New file.
39074         * lib/unistdio/u16-u16-vsprintf.c: New file.
39075         * lib/unistdio/u32-asnprintf.c: New file.
39076         * lib/unistdio/u32-asprintf.c: New file.
39077         * lib/unistdio/u32-printf-parse.c: New file.
39078         * lib/unistdio/u32-snprintf.c: New file.
39079         * lib/unistdio/u32-sprintf.c: New file.
39080         * lib/unistdio/u32-vasnprintf.c: New file.
39081         * lib/unistdio/u32-vasprintf.c: New file.
39082         * lib/unistdio/u32-vsnprintf.c: New file.
39083         * lib/unistdio/u32-vsprintf.c: New file.
39084         * lib/unistdio/u32-u32-asnprintf.c: New file.
39085         * lib/unistdio/u32-u32-asprintf.c: New file.
39086         * lib/unistdio/u32-u32-snprintf.c: New file.
39087         * lib/unistdio/u32-u32-sprintf.c: New file.
39088         * lib/unistdio/u32-u32-vasnprintf.c: New file.
39089         * lib/unistdio/u32-u32-vasprintf.c: New file.
39090         * lib/unistdio/u32-u32-vsnprintf.c: New file.
39091         * lib/unistdio/u32-u32-vsprintf.c: New file.
39092         * tests/unistdio/test-ulc-asnprintf1.c: New file.
39093         * tests/unistdio/test-ulc-asnprintf1.h: New file.
39094         * tests/unistdio/test-ulc-printf1.h: New file.
39095         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
39096         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
39097         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
39098         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
39099         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
39100         * tests/unistdio/test-ulc-vasprintf1.c: New file.
39101         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
39102         * tests/unistdio/test-ulc-vsprintf1.c: New file.
39103         * tests/unistdio/test-u8-asnprintf1.c: New file.
39104         * tests/unistdio/test-u8-asnprintf1.h: New file.
39105         * tests/unistdio/test-u8-printf1.h: New file.
39106         * tests/unistdio/test-u8-vasnprintf1.c: New file.
39107         * tests/unistdio/test-u8-vasnprintf2.c: New file.
39108         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
39109         * tests/unistdio/test-u8-vasnprintf3.c: New file.
39110         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
39111         * tests/unistdio/test-u8-vasprintf1.c: New file.
39112         * tests/unistdio/test-u8-vsnprintf1.c: New file.
39113         * tests/unistdio/test-u8-vsprintf1.c: New file.
39114         * tests/unistdio/test-u16-asnprintf1.c: New file.
39115         * tests/unistdio/test-u16-asnprintf1.h: New file.
39116         * tests/unistdio/test-u16-printf1.h: New file.
39117         * tests/unistdio/test-u16-vasnprintf1.c: New file.
39118         * tests/unistdio/test-u16-vasnprintf2.c: New file.
39119         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
39120         * tests/unistdio/test-u16-vasnprintf3.c: New file.
39121         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
39122         * tests/unistdio/test-u16-vasprintf1.c: New file.
39123         * tests/unistdio/test-u16-vsnprintf1.c: New file.
39124         * tests/unistdio/test-u16-vsprintf1.c: New file.
39125         * tests/unistdio/test-u32-asnprintf1.c: New file.
39126         * tests/unistdio/test-u32-asnprintf1.h: New file.
39127         * tests/unistdio/test-u32-printf1.h: New file.
39128         * tests/unistdio/test-u32-vasnprintf1.c: New file.
39129         * tests/unistdio/test-u32-vasnprintf2.c: New file.
39130         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
39131         * tests/unistdio/test-u32-vasnprintf3.c: New file.
39132         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
39133         * tests/unistdio/test-u32-vasprintf1.c: New file.
39134         * tests/unistdio/test-u32-vsnprintf1.c: New file.
39135         * tests/unistdio/test-u32-vsprintf1.c: New file.
39136         * modules/unistdio/base: New file.
39137         * modules/unistdio/u-printf-args: New file.
39138         * modules/unistdio/ulc-asnprintf: New file.
39139         * modules/unistdio/ulc-asprintf: New file.
39140         * modules/unistdio/ulc-fprintf: New file.
39141         * modules/unistdio/ulc-printf-parse: New file.
39142         * modules/unistdio/ulc-snprintf: New file.
39143         * modules/unistdio/ulc-sprintf: New file.
39144         * modules/unistdio/ulc-vasnprintf: New file.
39145         * modules/unistdio/ulc-vasprintf: New file.
39146         * modules/unistdio/ulc-vfprintf: New file.
39147         * modules/unistdio/ulc-vsnprintf: New file.
39148         * modules/unistdio/ulc-vsprintf: New file.
39149         * modules/unistdio/u8-asnprintf: New file.
39150         * modules/unistdio/u8-asprintf: New file.
39151         * modules/unistdio/u8-printf-parse: New file.
39152         * modules/unistdio/u8-snprintf: New file.
39153         * modules/unistdio/u8-sprintf: New file.
39154         * modules/unistdio/u8-vasnprintf: New file.
39155         * modules/unistdio/u8-vasprintf: New file.
39156         * modules/unistdio/u8-vsnprintf: New file.
39157         * modules/unistdio/u8-vsprintf: New file.
39158         * modules/unistdio/u8-u8-asnprintf: New file.
39159         * modules/unistdio/u8-u8-asprintf: New file.
39160         * modules/unistdio/u8-u8-snprintf: New file.
39161         * modules/unistdio/u8-u8-sprintf: New file.
39162         * modules/unistdio/u8-u8-vasnprintf: New file.
39163         * modules/unistdio/u8-u8-vasprintf: New file.
39164         * modules/unistdio/u8-u8-vsnprintf: New file.
39165         * modules/unistdio/u8-u8-vsprintf: New file.
39166         * modules/unistdio/u16-asnprintf: New file.
39167         * modules/unistdio/u16-asprintf: New file.
39168         * modules/unistdio/u16-printf-parse: New file.
39169         * modules/unistdio/u16-snprintf: New file.
39170         * modules/unistdio/u16-sprintf: New file.
39171         * modules/unistdio/u16-vasnprintf: New file.
39172         * modules/unistdio/u16-vasprintf: New file.
39173         * modules/unistdio/u16-vsnprintf: New file.
39174         * modules/unistdio/u16-vsprintf: New file.
39175         * modules/unistdio/u16-u16-asnprintf: New file.
39176         * modules/unistdio/u16-u16-asprintf: New file.
39177         * modules/unistdio/u16-u16-snprintf: New file.
39178         * modules/unistdio/u16-u16-sprintf: New file.
39179         * modules/unistdio/u16-u16-vasnprintf: New file.
39180         * modules/unistdio/u16-u16-vasprintf: New file.
39181         * modules/unistdio/u16-u16-vsnprintf: New file.
39182         * modules/unistdio/u16-u16-vsprintf: New file.
39183         * modules/unistdio/u32-asnprintf: New file.
39184         * modules/unistdio/u32-asprintf: New file.
39185         * modules/unistdio/u32-printf-parse: New file.
39186         * modules/unistdio/u32-snprintf: New file.
39187         * modules/unistdio/u32-sprintf: New file.
39188         * modules/unistdio/u32-vasnprintf: New file.
39189         * modules/unistdio/u32-vasprintf: New file.
39190         * modules/unistdio/u32-vsnprintf: New file.
39191         * modules/unistdio/u32-vsprintf: New file.
39192         * modules/unistdio/u32-u32-asnprintf: New file.
39193         * modules/unistdio/u32-u32-asprintf: New file.
39194         * modules/unistdio/u32-u32-snprintf: New file.
39195         * modules/unistdio/u32-u32-sprintf: New file.
39196         * modules/unistdio/u32-u32-vasnprintf: New file.
39197         * modules/unistdio/u32-u32-vasprintf: New file.
39198         * modules/unistdio/u32-u32-vsnprintf: New file.
39199         * modules/unistdio/u32-u32-vsprintf: New file.
39200         * modules/unistdio/ulc-asnprintf-tests: New file.
39201         * modules/unistdio/ulc-vasnprintf-tests: New file.
39202         * modules/unistdio/ulc-vasprintf-tests: New file.
39203         * modules/unistdio/ulc-vsnprintf-tests: New file.
39204         * modules/unistdio/ulc-vsprintf-tests: New file.
39205         * modules/unistdio/u8-asnprintf-tests: New file.
39206         * modules/unistdio/u8-vasnprintf-tests: New file.
39207         * modules/unistdio/u8-vasprintf-tests: New file.
39208         * modules/unistdio/u8-vsnprintf-tests: New file.
39209         * modules/unistdio/u8-vsprintf-tests: New file.
39210         * modules/unistdio/u16-asnprintf-tests: New file.
39211         * modules/unistdio/u16-vasnprintf-tests: New file.
39212         * modules/unistdio/u16-vasprintf-tests: New file.
39213         * modules/unistdio/u16-vsnprintf-tests: New file.
39214         * modules/unistdio/u16-vsprintf-tests: New file.
39215         * modules/unistdio/u32-asnprintf-tests: New file.
39216         * modules/unistdio/u32-vasnprintf-tests: New file.
39217         * modules/unistdio/u32-vasprintf-tests: New file.
39218         * modules/unistdio/u32-vsnprintf-tests: New file.
39219         * modules/unistdio/u32-vsprintf-tests: New file.
39220         * MODULES.html.sh (Unicode string functions): Add the new modules.
39221
39222 2007-07-01  Bruno Haible  <bruno@clisp.org>
39223
39224         * lib/sprintf.c (sprintf): Limit the available length estimation,
39225         to avoid address wraparound.
39226         * lib/vsprintf.c (vsprintf): Likewise.
39227         * modules/sprintf-posix (Dependencies): Add stdint.
39228         * modules/vsprintf-posix (Dependencies): Likewise.
39229
39230 2007-07-01  Bruno Haible  <bruno@clisp.org>
39231
39232         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
39233         Windows PATH as well. Conservative double-quoting. Comments.
39234
39235 2007-07-01  Bruno Haible  <bruno@clisp.org>
39236             Eric Blake  <ebb9@byu.net>
39237             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39238
39239         * gnulib-tool (self_abspathname): Fix algorithm to cope with
39240         empty components in $PATH, denoting '.'.
39241
39242 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39243
39244         * gnulib-tool: Fix indentation.
39245         (func_create_megatestdir): Likewise.
39246         Report by Bruno Haible.
39247
39248 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39249
39250         Sync from Automake.
39251         * build-aux/gnupload: Fix shell portability issues with for loops.
39252         Report by Karl Berry.
39253
39254 2007-06-29  Simon Josefsson  <simon@josefsson.org>
39255
39256         * build-aux/maint.mk (POURL): Use translationproject.org.
39257
39258 2007-06-27  Simon Josefsson  <simon@josefsson.org>
39259             Bruno Haible  <bruno@clisp.org>
39260
39261         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
39262         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
39263         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
39264         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
39265         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
39266
39267 2007-06-27  Bruno Haible  <bruno@clisp.org>
39268
39269         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
39270         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
39271
39272 2007-06-26  Karl Berry  <karl@gnu.org>
39273
39274         * MODULES.html.sh: remove xreadlink-with-size.
39275
39276 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
39277
39278         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
39279         method that I hope also handles the double-include problem noted
39280         by Bruno Haible in
39281         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
39282
39283 2007-06-23  Bruno Haible  <bruno@clisp.org>
39284
39285         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
39286         Don't let the 'mostlyclean' target fail if the last subdirectory could
39287         not be removed.
39288         Reported by Karl Berry.
39289
39290 2007-06-23  Bruno Haible  <bruno@clisp.org>
39291
39292         * gnulib-tool (echo): Add a speedier workaround for ksh.
39293         * tests/test-echo.sh: Likewise.
39294
39295 2007-06-23  Bruno Haible  <bruno@clisp.org>
39296
39297         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
39298         * tests/test-echo.sh: Likewise.
39299
39300 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39301
39302         * gnulib-tool (IFS): Initialize early, so we don't set it to
39303         empty later.
39304         (self_abspathname): Rewrite algorithm to set it, reindent.
39305         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
39306         (func_create_megatestdir): Merge some sed scripts.
39307
39308 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
39309
39310         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
39311         exposed by Sun Studio 11 cc on Solaris 8.
39312
39313 2007-06-22  Bruno Haible  <bruno@clisp.org>
39314
39315         * gnulib-tool (echo): Ensure the echo primitive does not interpret
39316         backslashes.
39317         * tests/test-echo.sh: New file.
39318
39319 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39320
39321         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
39322         simplify `sed_replace_build_aux' scripts, they are portable but
39323         echoing them with `echo' is not.
39324         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
39325
39326 2007-06-21  Karl Berry  <karl@gnu.org>
39327
39328         * config/srclist.txt: guess we can't handle the licenses via
39329         srclist at the moment.
39330
39331 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
39332
39333         * MODULES.html.sh: Add include_next.
39334         * modules/include_next: New file.
39335
39336 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
39337
39338         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
39339         INCLUDE_NEXT.
39340         (gl_CHECK_NEXT_HEADERS): New macro.
39341         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
39342         the obsolescent gl_ABSOLUTE_HEADER.
39343         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
39344         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
39345         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
39346         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
39347         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
39348         * m4/math_h.m4 (gl_MATH_H): Likewise.
39349         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
39350         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
39351         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
39352         * m4/stdint.m4 (gl_STDINT_H): Likewise.
39353         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
39354         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
39355         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
39356         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
39357         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
39358         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
39359         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
39360         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
39361         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
39362         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
39363         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
39364         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
39365         * m4/inttypes.m4 (gl_INTTYPES_H): Define
39366         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
39367         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
39368         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
39369         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
39370         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
39371         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
39372         * lib/float_.h: Likewise.
39373         * lib/inttypes_.h: Likewise.
39374         * lib/math_.h: Likewise.
39375         * lib/search_.h: Likewise.
39376         * lib/signal_.h: Likewise.
39377         * lib/stdint_.h: Likewise.
39378         * lib/stdio_.h: Likewise.
39379         * lib/stdlib_.h: Likewise.
39380         * lib/string_.h: Likewise.
39381         * lib/sys_stat_.h: Likewise.
39382         * lib/sys_time_.h: Likewise.
39383         * lib/time_.h: Likewise.
39384         * lib/unistd_.h: Likewise.
39385         * lib/wchar_.h: Likewise.
39386         * lib/wctype_.h: Likewise.
39387         * lib/dirent_.h: Likewise.
39388         * lib/iconv_.h: Likewise.
39389         * lib/locale_.h: Likewise.
39390         * lib/netinet_in_.h: Likewise.
39391         * lib/sys_select_.h: Likewise.
39392         * lib/sys_socket_.h: Likewise.
39393         * lib/sysexits_.h: Likewise.
39394         * modules/fcntl (Depends-on): Depend on include_next, not
39395         absolute_header.
39396         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
39397         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
39398         * modules/fchdir: Likewise.
39399         * modules/float: Likewise.
39400         * modules/iconv_open: Likewise.
39401         * modules/inttypes: Likewise.
39402         * modules/locale: Likewise.
39403         * modules/math: Likewise.
39404         * modules/netinet_in: Likewise.
39405         * modules/search: Likewise.
39406         * modules/signal: Likewise.
39407         * modules/stdint: Likewise.
39408         * modules/stdio: Likewise.
39409         * modules/stdlib: Likewise.
39410         * modules/string: Likewise.
39411         * modules/sys_select: Likewise.
39412         * modules/sys_socket: Likewise.
39413         * modules/sys_stat: Likewise.
39414         * modules/sys_time: Likewise.
39415         * modules/sysexits: Likewise.
39416         * modules/time: Likewise.
39417         * modules/unistd: Likewise.
39418         * modules/wchar: Likewise.
39419         * modules/wctype: Likewise.
39420         * modules/sys_stat: Change maintainer to "all".
39421         * modules/unistd: Likewise.
39422
39423 2007-06-20  Karl Berry  <karl@gnu.org>
39424
39425         * config/srclist.txt: track www changes in license files.
39426
39427 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
39428
39429         * build-aux/bootstrap: Remove stray dot.
39430         Make sure build_aux settings are honored when linking
39431         gnulib_extra_files.
39432
39433 2007-06-19  Eric Blake  <ebb9@byu.net>
39434
39435         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
39436         Allow compilation on cygwin.
39437
39438 2007-06-19  Jim Meyering  <jim@meyering.net>
39439
39440         xreadlink-with-size: Remove module.  No longer used.
39441         Ex-callers now use xreadlink or mreadlink-with-size.
39442         * modules/xreadlink-with-size: Remove module.
39443         * lib/xreadlink-with-size.c: Remove file.
39444         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
39445         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
39446         just before the function definition *is* accurate.
39447
39448         Eliminate one way canonicalize_filename_mode could exit.
39449         * lib/canonicalize.c (canonicalize_filename_mode):
39450         Use mreadlink_with_size, not xreadlink_with_size.
39451
39452 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
39453
39454         Detect porting problems to FreeBSD/arm, which has time_t wider than
39455         long int.  Original problem reported for GNU diff by Xin Li in
39456         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
39457         * modules/getdate (Depends-on): Add intprops, verify.
39458         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
39459         is an integer type no wider than long int.
39460
39461 2007-06-18  Jim Meyering  <jim@meyering.net>
39462
39463         New module: mreadlink-with-size.
39464         * MODULES.html.sh: Add mreadlink-with-size.
39465         * modules/mreadlink-with-size: New module
39466         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
39467         not xreadlink-with-size.
39468         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
39469
39470 2007-06-16  Bruno Haible  <bruno@clisp.org>
39471
39472         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
39473         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
39474         Reported by Gary V. Vaughan <gary@gnu.org>.
39475
39476 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
39477
39478         Revamp lchown so that it lives in unistd.h where it belongs.
39479         * lib/lchown.h: Remove.
39480         * lib/dirchownmod.c: Don't include lib/lchown.h.
39481         * lib/fchownat.c: Likewise.
39482         * lib/openat.c: Likewise.
39483         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
39484         does not follow symlinks.
39485         (EOPNOTSUPP): Define if not defined.
39486         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
39487         is defined to 0.
39488         (lchown): New decl.
39489         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
39490         Do not check for lchown decl.
39491         Set REPLACE_LCHOWN.
39492         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
39493         REPLACE_LCHOWN.
39494         * modules/chown: Make it clear it follows symlinks.
39495         * modules/lchown: Make it clear it doesn't follow symlinks.
39496         (Files): Remove lib/lchown.h
39497         (Depends-on): Add unistd.
39498         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
39499         (Include): Include <unistd.h>, not "lchown.h".
39500         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
39501         REPLACE_LCHOWN.
39502
39503 2007-06-15  Jim Meyering  <jim@meyering.net>
39504
39505         Change license (GPL to LGPL) of fsusage and dependents.
39506         * modules/fsusage (License): Change to LGPL.
39507         * modules/full-read (License): Likewise.
39508         * modules/full-write (License): Likewise.
39509         * modules/safe-read (License): Likewise.
39510         * modules/safe-write (License): Likewise.
39511
39512 2007-06-14  Ben Pfaff  <blp@gnu.org>
39513
39514         Missing part of allocsa -> malloca transition.
39515         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
39516         gl_MALLOCA.
39517
39518 2007-06-12  Bruno Haible  <bruno@clisp.org>
39519
39520         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
39521         to ia64, x86_64, i386.
39522         Reported by Eric Blake.
39523
39524 2007-06-12  Bruno Haible  <bruno@clisp.org>
39525
39526         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
39527         cross-compiling to x86_64.
39528
39529 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
39530
39531         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
39532         glitch reported by Ralf Wildenhues in
39533         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
39534
39535         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
39536         Vin Shelton.
39537
39538 2007-06-11  Bruno Haible  <bruno@clisp.org>
39539
39540         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
39541         replacement string.
39542         Reported by Eric Blake.
39543
39544 2007-06-10  Bruno Haible  <bruno@clisp.org>
39545
39546         Prepare vasnprintf code for use with Unicode strings.
39547         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
39548         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
39549         TYPE_U32_STRING.
39550         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
39551         a_u32_string variants.
39552         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
39553         * lib/printf-args.c: Don't include config.h and the specification
39554         header if PRINTF_FETCHARGS is already defined.
39555         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
39556         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
39557         TYPE_U16_STRING, TYPE_U32_STRING.
39558         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
39559         u16_directive, u16_directives, u32_directive, u32_directives): New
39560         types.
39561         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
39562         New declarations.
39563         * lib/printf-parse.c: Don't include config.h and the specification
39564         header if PRINTF_PARSE is already defined. Eliminate the set of
39565         parameters for WIDE_CHAR_VERSION; the user of this file must provide
39566         them now. Include c-ctype.h.
39567         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
39568         directive and CHAR_T_ONLY_ASCII.
39569         * lib/vasnprintf.c: Don't include config.h and the specification header
39570         if VASNPRINTF is already defined.
39571         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
39572         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
39573         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
39574         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
39575         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
39576         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
39577         code accordingly.
39578         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
39579         pad_ourselves also in this case, with the 'c' and 's' directives, and
39580         with a different notion of "width".
39581         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
39582
39583 2007-06-10  Bruno Haible  <bruno@clisp.org>
39584
39585         * modules/unistr/u32-mbsnlen: New file.
39586         * lib/unistr/u32-mbsnlen.c: New file.
39587
39588         * modules/unistr/u16-mbsnlen: New file.
39589         * lib/unistr/u16-mbsnlen.c: New file.
39590
39591         * modules/unistr/u8-mbsnlen: New file.
39592         * lib/unistr/u8-mbsnlen.c: New file.
39593
39594         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
39595         declarations.
39596
39597 2007-06-10  Bruno Haible  <bruno@clisp.org>
39598
39599         * lib/string_.h (mbsnlen): New declaration.
39600         * lib/mbsnlen.c: New file.
39601         * m4/mbsnlen.m4: New file.
39602         * modules/mbsnlen: New file.
39603         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
39604         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
39605         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
39606
39607 2007-06-10  Bruno Haible  <bruno@clisp.org>
39608
39609         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
39610
39611 2007-06-10  Bruno Haible  <bruno@clisp.org>
39612
39613         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
39614         * lib/mbuiter.h: Likewise.
39615
39616 2007-06-10  Bruno Haible  <bruno@clisp.org>
39617
39618         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
39619         declaration.
39620
39621 2007-06-10  Karl Berry  <karl@gnu.org>
39622
39623         * config/srclist.txt: remove gettext entries, Bruno prefers
39624         to update individually.
39625
39626 2007-06-10  Bruno Haible  <bruno@clisp.org>
39627
39628         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
39629         'maxlen'. Ensure only length + width bytes are allocated, not
39630         length + 1 + width.
39631
39632 2007-06-09  Bruno Haible  <bruno@clisp.org>
39633
39634         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
39635         (CHAR_T): Remove macro.
39636         (VASNPRINTF): Update.
39637
39638 2007-06-09  Bruno Haible  <bruno@clisp.org>
39639
39640         * MODULES.html.sh (Unicode string functions): Add the new modules.
39641
39642         * modules/uniconv/u32-conv-to-enc: New file.
39643         * lib/uniconv/u32-conv-to-enc.c: New file.
39644         * modules/uniconv/u32-conv-to-enc-tests: New file.
39645         * tests/uniconv/test-u32-conv-to-enc.c: New file.
39646
39647         * modules/uniconv/u16-conv-to-enc: New file.
39648         * lib/uniconv/u16-conv-to-enc.c: New file.
39649         * lib/uniconv/u-conv-to-enc.h: New file.
39650         * modules/uniconv/u16-conv-to-enc-tests: New file.
39651         * tests/uniconv/test-u16-conv-to-enc.c: New file.
39652
39653         * modules/uniconv/u8-conv-to-enc: New file.
39654         * lib/uniconv/u8-conv-to-enc.c: New file.
39655         * modules/uniconv/u8-conv-to-enc-tests: New file.
39656         * tests/uniconv/test-u8-conv-to-enc.c: New file.
39657
39658         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
39659         u32_conv_to_encoding): New declarations.
39660
39661 2007-06-09  Bruno Haible  <bruno@clisp.org>
39662
39663         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
39664
39665 2007-06-09  Bruno Haible  <bruno@clisp.org>
39666
39667         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
39668         * modules/malloca: Renamed from modules/allocsa, updated.
39669         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
39670         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
39671         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
39672         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
39673         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
39674         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
39675         * modules/xmalloca: Renamed from modules/xallocsa, updated.
39676         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
39677         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
39678         * modules/c-strcasestr (Depends-on): Update.
39679         * lib/c-strcasestr.c: Update.
39680         * modules/c-strstr (Depends-on): Update.
39681         * lib/c-strstr.c: Update.
39682         * modules/canonicalize-lgpl (Depends-on): Update.
39683         * lib/canonicalize-lgpl.c: Update.
39684         * modules/clean-temp (Depends-on): Update.
39685         * lib/clean-temp.c: Update.
39686         * modules/csharpcomp (Depends-on): Update.
39687         * lib/csharpcomp.c: Update.
39688         * modules/csharpexec (Depends-on): Update.
39689         * lib/csharpexec.c: Update.
39690         * modules/javacomp (Depends-on): Update.
39691         * lib/javacomp.c: Update.
39692         * modules/javaexec (Depends-on): Update.
39693         * lib/javaexec.c: Update.
39694         * modules/mbscasestr (Depends-on): Update.
39695         * lib/mbscasestr.c: Update.
39696         * modules/mbsstr (Depends-on): Update.
39697         * lib/mbsstr.c: Update.
39698         * modules/setenv (Depends-on): Update.
39699         * lib/setenv.c: Update.
39700         * modules/strcasestr (Depends-on): Update.
39701         * lib/strcasestr.c: Update.
39702         * modules/striconveha (Depends-on): Update.
39703         * lib/striconveha.c: Update.
39704         * modules/relocatable-prog-wrapper (Files): Update.
39705         * lib/relocwrapper.c: Update.
39706         * build-aux/install-reloc: Update.
39707         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
39708
39709 2007-06-08  Bruno Haible  <bruno@clisp.org>
39710
39711         Port to uClibc.
39712         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
39713         * lib/fpurge.c (fpurge): Likewise.
39714         * lib/freading.c (freading): Likewise.
39715         * lib/fseeko.c (rpl_fseeko): Likewise.
39716         * lib/fseterr.c (fseterr): Likewise.
39717         * lib/fwriting.c (fwriting): Likewise.
39718         * tests/test-fflush.c (main): Avoid a failure on uClibc.
39719
39720 2007-06-08  Bruno Haible  <bruno@clisp.org>
39721
39722         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
39723         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
39724         * modules/gettext (Files): Add m4/intlmacosx.m4.
39725
39726 2007-06-07  Bruno Haible  <bruno@clisp.org>
39727
39728         * modules/localename-tests: New file.
39729         * tests/test-localename.c: New file.
39730
39731         New module 'localename'.
39732         * lib/localename.h: New file.
39733         * lib/localename.c: New file, from GNU gettext.
39734         * m4/localename.m4: New file.
39735         * modules/localename: New file.
39736
39737 2007-06-07  Bruno Haible  <bruno@clisp.org>
39738
39739         Work around the lack of <wchar.h> on some builds of uClibc.
39740         * doc/headers/wchar.texi: Update.
39741         * lib/wchar_.h: Include <wchar.h> only if it exists.
39742         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
39743         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
39744         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
39745         doesn't exist.
39746         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
39747         * modules/mbfile (Depends-on): Add wchar.
39748         * modules/mbiter (Depends-on): Likewise.
39749         * modules/mbuiter (Depends-on): Likewise.
39750         Reported by Simon Josefsson.
39751
39752 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
39753
39754         Work around problem reported by Steven M. Schweda in
39755         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
39756         Tru64 5.1B with the Compaq compiler environment installed declares
39757         an 'isblank' function but does not define it in the C library.
39758         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
39759         * lib/regex_internal.h (isblank): Likewise.
39760         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
39761         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
39762
39763 2007-06-05  Bruno Haible  <bruno@clisp.org>
39764
39765         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
39766         ia64.
39767         * modules/printf-safe: New file.
39768         * modules/fprintf-posix (Depends-on): Add printf-safe.
39769         * modules/printf-posix (Depends-on): Likewise.
39770         * modules/snprintf-posix (Depends-on): Likewise.
39771         * modules/sprintf-posix (Depends-on): Likewise.
39772         * modules/vasnprintf-posix (Depends-on): Likewise.
39773         * modules/vasprintf-posix (Depends-on): Likewise.
39774         * modules/vfprintf-posix (Depends-on): Likewise.
39775         * modules/vprintf-posix (Depends-on): Likewise.
39776         * modules/vsnprintf-posix (Depends-on): Likewise.
39777         * modules/vsprintf-posix (Depends-on): Likewise.
39778         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
39779         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
39780         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
39781         "no" on i386, x86_64, ia64.
39782         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
39783         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
39784         on i386, x86_64, ia64.
39785         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
39786         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
39787         on i386, x86_64, ia64.
39788         * tests/test-vasnprintf-posix.c: Include float.h.
39789         (LDBL80_WORDS): New macro.
39790         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
39791         on i386, x86_64, ia64.
39792         * tests/test-vasprintf-posix.c: Include float.h.
39793         (LDBL80_WORDS): New macro.
39794         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
39795         on i386, x86_64, ia64.
39796         * tests/test-snprintf-posix.c: Include float.h.
39797         * tests/test-sprintf-posix.c: Likewise.
39798         * tests/test-vsnprintf-posix.c: Likewise.
39799         * tests/test-vsprintf-posix.c: Likewise.
39800
39801 2007-06-05  Bruno Haible  <bruno@clisp.org>
39802
39803         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
39804         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
39805         non-IEEE numbers on i386, x86_64, ia64.
39806         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
39807         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
39808         * tests/test-isnanl.h: Include float.h.
39809         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
39810
39811 2007-06-05  Bruno Haible  <bruno@clisp.org>
39812
39813         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
39814         also the %a / %A. Handle the %a / %A code before this extra handling.
39815
39816 2007-06-05  Bruno Haible  <bruno@clisp.org>
39817
39818         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
39819         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
39820
39821 2007-06-05  Bruno Haible  <bruno@clisp.org>
39822
39823         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
39824         typo in variable name.
39825
39826 2007-06-05  Eric Blake  <ebb9@byu.net>
39827
39828         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
39829         Reported by Simon Josefsson.
39830
39831 2007-06-04  Bruno Haible  <bruno@clisp.org>
39832
39833         Avoid test failures on some PowerPC platforms.
39834         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
39835         Define differently for PowerPC.
39836         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
39837         Reported by Gary V. Vaughan <gary@gnu.org>.
39838
39839 2007-06-02  Bruno Haible  <bruno@clisp.org>
39840
39841         Fix test-stdint failure on FreeBSD/ia64.
39842         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
39843         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
39844         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
39845         * doc/headers/stdint.texi: Update.
39846
39847 2007-06-01  Bruno Haible  <bruno@clisp.org>
39848
39849         * tests/test-binary-io.c (main): Pass a third argument to open().
39850         Reported by Gary V. Vaughan <gary@gnu.org>.
39851
39852 2007-06-01  Bruno Haible  <bruno@clisp.org>
39853
39854         * doc/functions/frexpl.texi: Update for mingw.
39855
39856 2007-06-01  Bruno Haible  <bruno@clisp.org>
39857
39858         * tests/test-lseek.c (main): Disable test of errno for invalid third
39859         argument.
39860         * doc/functions/lseek.texi: Update.
39861         Reported by Gary V. Vaughan <gary@gnu.org>.
39862
39863 2007-05-28  Bruno Haible  <bruno@clisp.org>
39864
39865         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
39866
39867 2007-05-31  Eric Blake  <ebb9@byu.net>
39868
39869         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
39870         cross compiling.
39871
39872 2007-05-30  Eric Blake  <ebb9@byu.net>
39873         and Bruno Haible  <bruno@clisp.org>
39874
39875         Work around mingw test failures exposed by m4-1.4.9b.
39876         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
39877         * tests/test-unistd.c: Disable uid_t and git_t tests for the
39878         moment.
39879
39880 2007-05-30  Bruno Haible  <bruno@clisp.org>
39881
39882         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
39883         assuming that they are closed. Needed on HP-UX 11.
39884
39885 2007-05-29  Bruno Haible  <bruno@clisp.org>
39886
39887         Fix a problem with #include_next.
39888         * lib/dirent_.h: Split the double-inclusion guard.
39889         * lib/fcntl_.h: Likewise.
39890         * lib/float_.h: Likewise.
39891         * lib/iconv_.h: Likewise.
39892         * lib/inttypes_.h: Likewise.
39893         * lib/locale_.h: Likewise.
39894         * lib/math_.h: Likewise.
39895         * lib/netinet_in_.h: Likewise.
39896         * lib/search_.h: Likewise.
39897         * lib/signal_.h: Likewise.
39898         * lib/stdint_.h: Likewise.
39899         * lib/stdio_.h: Likewise.
39900         * lib/stdlib_.h: Likewise.
39901         * lib/string_.h: Likewise.
39902         * lib/sys_select_.h: Likewise.
39903         * lib/sys_socket_.h: Likewise.
39904         * lib/sys_stat_.h: Likewise.
39905         * lib/sys_time_.h: Likewise.
39906         * lib/sysexits_.h: Likewise.
39907         * lib/time_.h: Likewise.
39908         * lib/unistd_.h: Likewise.
39909         * lib/wchar_.h: Likewise.
39910         * lib/wctype_.h: Likewise.
39911
39912 2007-05-29  Bruno Haible  <bruno@clisp.org>
39913
39914         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
39915         for the moment.
39916
39917 2007-05-29  Bruno Haible  <bruno@clisp.org>
39918
39919         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
39920         invocation.
39921         Reported by Eric Blake.
39922
39923 2007-05-29  Bruno Haible  <bruno@clisp.org>
39924
39925         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
39926         compiling case.
39927
39928 2007-05-29  Eric Blake  <ebb9@byu.net>
39929             Bruno Haible  <bruno@clisp.org>
39930
39931         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
39932         cross compiles.
39933
39934 2007-05-28  Eric Blake  <ebb9@byu.net>
39935
39936         * modules/closein-tests (test_closein_LDADD): Support test on
39937         cygwin with libtool.
39938
39939 2007-05-28  Bruno Haible  <bruno@clisp.org>
39940
39941         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
39942         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
39943         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
39944         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
39945         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
39946         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
39947         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
39948         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
39949         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
39950
39951 2007-05-28  Eric Blake  <ebb9@byu.net>
39952
39953         Unconditionally include <config.h> in unit tests.
39954         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
39955         * tests/test-allocsa.c, tests/test-arcfour.c,
39956         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
39957         tests/test-array_list.c, tests/test-array_oset.c,
39958         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
39959         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
39960         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
39961         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
39962         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
39963         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
39964         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
39965         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
39966         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
39967         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
39968         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
39969         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
39970         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
39971         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
39972         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
39973         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
39974         test-md5.c, test-memmem.c, test-printf-posix.c,
39975         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
39976         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
39977         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
39978         test-strcasestr.c, test-striconv.c, test-striconveh.c,
39979         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
39980         test-vasnprintf-posix2.c, test-vasnprintf.c,
39981         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
39982         test-vfprintf-posix.c, test-vprintf-posix.c,
39983         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
39984         test-xvasprintf.c: Likewise.
39985
39986 2007-05-28  Bruno Haible  <bruno@clisp.org>
39987
39988         * gnulib-tool (func_import): Remember the --with-tests command-line
39989         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
39990         Reported by Eric Blake.
39991
39992 2007-05-28  Bruno Haible  <bruno@clisp.org>
39993
39994         * modules/ftell-tests: New file.
39995         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
39996         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
39997
39998         * lib/ftell.c: New file.
39999         * modules/ftell: New file.
40000         * m4/ftell.m4: New file.
40001         * doc/functions/ftell.texi: Update.
40002         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
40003         REPLACE_FTELL.
40004         * lib/stdio_.h (rpl_ftell): New declaration.
40005         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
40006         REPLACE_FTELL.
40007
40008 2007-05-28  Eric Blake  <ebb9@byu.net>
40009
40010         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
40011
40012 2007-05-28  Bruno Haible  <bruno@clisp.org>
40013
40014         * modules/fseek-tests: New file.
40015         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
40016         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
40017
40018         * lib/fseek.c: New file.
40019         * modules/fseek: New file.
40020         * m4/fseek.m4: New file.
40021         * doc/functions/fseek.texi: Update.
40022         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
40023         REPLACE_FSEEK.
40024         * lib/stdio_.h (rpl_fseek): New declaration.
40025         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
40026         REPLACE_FSEEK.
40027
40028 2007-05-28  Bruno Haible  <bruno@clisp.org>
40029
40030         * lib/stdio_.h (fflush): More comments.
40031
40032 2007-05-28  Bruno Haible  <bruno@clisp.org>
40033
40034         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
40035         runtime test.
40036
40037 2007-05-28  Eric Blake  <ebb9@byu.net>
40038
40039         Improve lseek module.
40040         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
40041         * lib/unistd_.h (lseek): Scale back link warning message.
40042         * tests/test-lseek.c: Beef up test.
40043         * tests/test-lseek.sh: Exercise more facets of lseek.
40044         Reported by Bruno Haible.
40045
40046 2007-05-28  Bruno Haible  <bruno@clisp.org>
40047
40048         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
40049         to define.
40050
40051 2007-05-27  Bruno Haible  <bruno@clisp.org>
40052
40053         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
40054
40055 2007-05-27  Bruno Haible  <bruno@clisp.org>
40056
40057         * modules/openmp: New file.
40058         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
40059         Noah Misch.
40060
40061 2007-05-26  Bruno Haible  <bruno@clisp.org>
40062
40063         * modules/chdir-long (Depends-on): Add fchdir.
40064         * modules/chdir-safer (Depends-on): Likewise.
40065         * modules/fts (Depends-on): Likewise.
40066         * modules/fts-lgpl (Depends-on): Likewise.
40067         * modules/openat (Depends-on): Likewise.
40068         * modules/savewd (Depends-on): Likewise.
40069
40070 2007-05-24  Eric Blake  <ebb9@byu.net>
40071
40072         Fix lseek on mingw.
40073         * modules/lseek: New module.
40074         * m4/lseek.m4: New file.
40075         * lib/lseek.c: New file.
40076         * modules/lseek-tests: New file.
40077         * tests/test-lseek.c: New file.
40078         * tests/test-lseek.sh: New file.
40079         * MODULES.html.sh: Document lseek module.
40080         * modules/fflush (Depends-on): Add lseek, fseeko.
40081         * modules/fseeko (Depends-on): Likewise.
40082         * modules/ftello (Depends-on): Likewise.
40083         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
40084         broken.
40085         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
40086         broken.
40087         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
40088         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
40089         * lib/ftello.c (rpl_ftello): Likewise.
40090         * tests/test-fseeko.c (main): Test this.
40091         * tests/test-fseeko.sh: Likewise.
40092         * tests/test-ftello.c (main): Likewise.
40093         * tests/test-ftello.sh: Likewise.
40094         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
40095         implies replacing fseek.
40096         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
40097         HAVE_FTELLO.
40098         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
40099         * modules/unistd (Makefile.am): Likewise.
40100         * lib/unistd_.h (lseek): Declare a replacement.
40101         * doc/functions/lseek.texi (lseek): Document this fix.
40102         * doc/functions/fseek.texi (fseek): Likewise.
40103         * doc/functions/ftell.texi (ftell): Likewise.
40104
40105 2007-05-24  Bruno Haible  <bruno@clisp.org>
40106
40107         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
40108         in the printed representation of a NaN.
40109         * tests/test-vasprintf-posix.c (test_function): Likewise.
40110         * tests/test-snprintf-posix.h (test_function): Likewise.
40111         * tests/test-sprintf-posix.h (test_function): Likewise.
40112         Reported by Eric Blake.
40113
40114 2007-05-23  Eric Blake  <ebb9@byu.net>
40115
40116         Fix fseeko/ftello on cygwin 1.5.24.
40117         * doc/functions/fseeko.texi (fseeko): Document the fix.
40118         * doc/functions/ftello.texi (ftello): Document the fix.
40119         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
40120         * doc/functions/stdout.text (stdout): New file.
40121         * doc/functions/stderr.text (stderr): New file.
40122         * doc/gnulib.texi (Function Substitutes): Use new files.
40123         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
40124         prior to 1.7.0.
40125         * tests/test-ftello.c (main): Likewise for ftello.
40126         * tests/test-fseeko.sh: New file.
40127         * tests/test-ftello.sh: New file.
40128         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
40129         with seekable stdin.
40130         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
40131         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
40132         (gl_REPLACE_FSEEKO): New macro.
40133         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
40134         * modules/fseeko (Files): Distribute fseeko.c.
40135         * modules/ftello (Files): Distribute ftello.c.
40136         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
40137         mode.
40138         * lib/ftello.c (rpl_ftello): New file.
40139         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
40140         fseeko, ftello.
40141         (gl_STDIN_LARGE_OFFSET): New macro.
40142         * modules/stdio (Makefile.am): Perform the replacement.
40143         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
40144
40145 2007-05-23  Bruno Haible  <bruno@clisp.org>
40146
40147         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
40148         GNULIB_POSIXCHECK is defined.
40149
40150 2007-05-21  Bruno Haible  <bruno@clisp.org>
40151
40152         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
40153         Check also the output for NaN arguments. When cross-compiling, guess
40154         no on IRIX.
40155         * lib/vasnprintf.c: Update comments.
40156         * tests/test-vasnprintf-posix.c (strisnan): New function.
40157         (test_function): Use it.
40158         * tests/test-vasprintf-posix.c (strisnan): New function.
40159         (test_function): Use it.
40160         * tests/test-snprintf-posix.h (strisnan): New function.
40161         (test_function): Use it.
40162         * tests/test-sprintf-posix.h (strisnan): New function.
40163         (test_function): Use it.
40164         Reported by Eric Blake.
40165
40166 2007-05-20  Bruno Haible  <bruno@clisp.org>
40167
40168         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
40169         numbers that fails on BeOS.
40170         * doc/functions/frexpl.texi: Update.
40171
40172 2007-05-20  Jim Meyering  <jim@meyering.net>
40173
40174         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
40175         forced upon us by glibc-2.6.
40176
40177 2007-05-20  Bruno Haible  <bruno@clisp.org>
40178
40179         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
40180         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
40181         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
40182         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
40183         NEED_PRINTF_INFINITE.
40184         (is_infinitel): New function.
40185         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
40186         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
40187         gl_PREREQ_VASNPRINTF_INFINITE.
40188         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
40189         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
40190         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
40191         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
40192         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
40193         gl_PREREQ_VASNPRINTF_INFINITE.
40194         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
40195         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
40196         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
40197         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
40198         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
40199         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
40200         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
40201         * doc/functions/fprintf.texi: Update.
40202         * doc/functions/printf.texi: Update.
40203         * doc/functions/snprintf.texi: Update.
40204         * doc/functions/sprintf.texi: Update.
40205         * doc/functions/vfprintf.texi: Update.
40206         * doc/functions/vprintf.texi: Update.
40207         * doc/functions/vsnprintf.texi: Update.
40208         * doc/functions/vsprintf.texi: Update.
40209
40210 2007-05-20  Bruno Haible  <bruno@clisp.org>
40211
40212         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
40213         was not found in libc.
40214         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
40215
40216 2007-05-20  Bruno Haible  <bruno@clisp.org>
40217
40218         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
40219         printed as "-nan" instead of "nan".
40220         * tests/test-vasprintf-posix.c (test_function): Likewise.
40221         * tests/test-snprintf-posix.h (test_function): Likewise.
40222         * tests/test-sprintf-posix.h (test_function): Likewise.
40223         Needed for HP-UX 11.
40224
40225 2007-05-20  Jim Meyering  <jim@meyering.net>
40226
40227         Fix buggy test for the fchownat-deref bug.
40228         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
40229         symlink required for the run-test.  Without it, this test would
40230         always declare that fchownat doesn't work, and client code would
40231         unnecessarily use the replacement function with fixed libc.
40232         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
40233         Reported by Greg Schafer.
40234
40235 2007-05-19  Bruno Haible  <bruno@clisp.org>
40236
40237         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
40238         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
40239         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
40240         Needed for IRIX 6.5 and Solaris 2.5.1.
40241
40242 2007-05-19  Bruno Haible  <bruno@clisp.org>
40243
40244         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
40245         (test_function): Skip tests involving -0.0 on platforms where
40246         -0.0 = 0.0.
40247         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
40248         (test_function): Skip tests involving -0.0 on platforms where
40249         -0.0 = 0.0.
40250         * tests/test-snprintf-posix.h (have_minus_zero): New function.
40251         (test_function): Skip tests involving -0.0 on platforms where
40252         -0.0 = 0.0.
40253         * tests/test-sprintf-posix.h (have_minus_zero): New function.
40254         (test_function): Skip tests involving -0.0 on platforms where
40255         -0.0 = 0.0.
40256         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
40257         tests.
40258         * tests/test-printf-posix.h (test_function): Likewise.
40259         * tests/test-printf-posix.output: Remove all -0.0 related results.
40260         Needed for IRIX 6.5.
40261
40262 2007-05-19  Bruno Haible  <bruno@clisp.org>
40263
40264         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
40265         printed as "nan0x7fffffff" instead of "nan".
40266         * tests/test-vasprintf-posix.c (test_function): Likewise.
40267         * tests/test-snprintf-posix.h (test_function): Likewise.
40268         * tests/test-sprintf-posix.h (test_function): Likewise.
40269         * tests/test-fprintf-posix.h (NaN): Remove macro.
40270         (test_function): Remove all NaN related tests.
40271         * tests/test-printf-posix.h (NaN): Remove macro.
40272         (test_function): Remove all NaN related tests.
40273         * tests/test-printf-posix.output: Remove all NaN related results.
40274         Needed for IRIX 6.5.
40275
40276 2007-05-19  Bruno Haible  <bruno@clisp.org>
40277
40278         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
40279         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
40280
40281 2007-05-19  Bruno Haible  <bruno@clisp.org>
40282
40283         * lib/float_.h: New file.
40284         * m4/float_h.m4: New file.
40285         * modules/float: New file.
40286         * modules/isnanl (Dependencies): Add float.
40287         * modules/isnanl-nolibm (Dependencies): Likewise.
40288         * modules/mathl (Dependencies): Likewise.
40289         * modules/printf-frexpl (Dependencies): Likewise.
40290         * modules/signbit (Dependencies): Likewise.
40291         * modules/vasnprintf (Dependencies): Likewise.
40292         * doc/headers/float.texi: Update.
40293
40294 2007-05-19  Jim Meyering  <jim@meyering.net>
40295
40296         * lib/utimens.c (gl_futimens): Rename from futimens,
40297         now that glibc-2.6 declares futimens.
40298         * lib/utimens.h: Likewise.
40299
40300 2007-05-19  Bruno Haible  <bruno@clisp.org>
40301
40302         Avoid test failures on mingw.
40303         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
40304         * tests/test-printf-posix.sh: Likewise.
40305         * tests/test-vfprintf-posix.sh: Likewise.
40306         * tests/test-vprintf-posix.sh: Likewise.
40307
40308 2007-05-19  Bruno Haible  <bruno@clisp.org>
40309
40310         Fix *printf result for NaN, Inf, -0.0 on mingw.
40311         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
40312         * lib/vasnprintf.c: Include math.h and isnan.h.
40313         (is_infinite_or_zero): New function.
40314         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
40315         values in the %f, %F, %e, %E, %g, %G directives.
40316         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
40317         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
40318         gl_PRINTF_INFINITE and test its result. Invoke
40319         gl_PREREQ_VASNPRINTF_INFINITE.
40320         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
40321         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
40322         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
40323         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
40324         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
40325         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
40326         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
40327         * doc/functions/fprintf.texi: Update.
40328         * doc/functions/printf.texi: Update.
40329         * doc/functions/snprintf.texi: Update.
40330         * doc/functions/sprintf.texi: Update.
40331         * doc/functions/vfprintf.texi: Update.
40332         * doc/functions/vprintf.texi: Update.
40333         * doc/functions/vsnprintf.texi: Update.
40334         * doc/functions/vsprintf.texi: Update.
40335
40336 2007-05-19  Bruno Haible  <bruno@clisp.org>
40337
40338         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
40339         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
40340         Instead of multiplying with 10^k, set extra_zeroes to k.
40341         (scale10_round_long_double): Remove function.
40342
40343 2007-05-18  Bruno Haible  <bruno@clisp.org>
40344
40345         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
40346         introduced on 2007-05-06.
40347
40348 2007-05-18  Bruno Haible  <bruno@clisp.org>
40349
40350         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
40351         %g directives.
40352         * tests/test-vasprintf-posix.c (test_function): Likewise.
40353         * tests/test-snprintf-posix.h (test_function): Likewise.
40354         * tests/test-sprintf-posix.h (test_function): Likewise.
40355
40356 2007-05-18  Bruno Haible  <bruno@clisp.org>
40357
40358         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
40359         (strmatch): New function.
40360         (test_function): Test the %f directive on numbers of various exponents.
40361         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
40362         (strmatch): New function.
40363         (test_function): Test the %f directive on numbers of various exponents.
40364         * tests/test-snprintf-posix.h (strmatch): New function.
40365         (test_function): Test the %f directive on numbers of various exponents.
40366         * tests/test-sprintf-posix.h (strmatch): New function.
40367         (test_function): Test the %f directive on numbers of various exponents.
40368         * tests/test-snprintf-posix.c (SIZEOF): New macro.
40369         * tests/test-sprintf-posix.c (SIZEOF): New macro.
40370         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
40371         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
40372
40373 2007-05-18  Bruno Haible  <bruno@clisp.org>
40374
40375         Add support for 'long double' number output.
40376         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
40377         * lib/vasnprintf.c: Include math.h and float+.h.
40378         (mp_limb_t): New type.
40379         (GMP_LIMB_BITS): New macro.
40380         (mp_twolimb_t): New type.
40381         (GMP_TWOLIMB_BITS): New macro.
40382         (mpn_t): New type.
40383         (multiply, divide, convert_to_decimal, decode_long_double,
40384         scale10_round_long_double, scale10_round_decimal_long_double,
40385         floorlog10l): New functions.
40386         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
40387         for the %f, %F, %e, %E, %g, %G directives.
40388         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
40389         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
40390         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
40391         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
40392         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
40393         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
40394         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
40395         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
40396         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
40397         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
40398         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
40399         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
40400         * modules/snprintf-posix (Depends-on): Likewise.
40401         * modules/sprintf-posix (Depends-on): Likewise.
40402         * modules/vasnprintf-posix (Depends-on): Likewise.
40403         * modules/vasprintf-posix (Depends-on): Likewise.
40404         * modules/vfprintf-posix (Depends-on): Likewise.
40405         * modules/vsnprintf-posix (Depends-on): Likewise.
40406         * modules/vsprintf-posix (Depends-on): Likewise.
40407         * modules/vasnprintf (Files): Add lib/float+.h.
40408         * doc/functions/fprintf.texi: Update.
40409         * doc/functions/printf.texi: Update.
40410         * doc/functions/snprintf.texi: Update.
40411         * doc/functions/sprintf.texi: Update.
40412         * doc/functions/vfprintf.texi: Update.
40413         * doc/functions/vprintf.texi: Update.
40414         * doc/functions/vsnprintf.texi: Update.
40415         * doc/functions/vsprintf.texi: Update.
40416
40417 2007-05-18  Bruno Haible  <bruno@clisp.org>
40418
40419         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
40420
40421 2007-05-18  Bruno Haible  <bruno@clisp.org>
40422
40423         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
40424         for printing 64-bit integers. Needed for mingw.
40425
40426 2007-05-18  Bruno Haible  <bruno@clisp.org>
40427
40428         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
40429         gl_FUNC_FREXPL_WORKS.
40430         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
40431
40432 2007-05-18  Bruno Haible  <bruno@clisp.org>
40433
40434         * modules/frexpl-nolibm-tests: New file.
40435
40436         * modules/frexpl-nolibm: New file.
40437         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
40438
40439 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
40440
40441         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
40442         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
40443         GCC 4.2, which otherwise issues a lot of warnings.
40444         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
40445         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
40446         Likewise.
40447         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
40448         * modules/iconv_open (iconv.h): Likewise.
40449         * modules/locale (locale.h): Likewise.
40450         * modules/netinet_in (netinet/in.h): Likewise.
40451         * modules/sys_select (sys_select.h): Likewise.
40452         * modules/sys_socket (sys/socket.h): Likewise.
40453         * modules/sys_stat (sys/stat.h): Likewise.
40454         * modules/sysexits (sysexits.h): Likewise.
40455         * modules/unistd (unistd.h): Likewise.
40456
40457 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40458
40459         * modules/closein-tests (Makefile.am): Distribute
40460         `test-closein.sh'.
40461
40462 2007-05-17  Bruno Haible  <bruno@clisp.org>
40463
40464         * tests/test-printf-posix.output: Renamed from
40465         tests/test-fprintf-posix.out.
40466         * modules/fprintf-posix-tests: Update.
40467         * modules/printf-posix-tests: Update.
40468         * modules/vfprintf-posix-tests: Update.
40469         * modules/vprintf-posix-tests: Update.
40470         * tests/test-fprintf-posix.sh: Update.
40471         * tests/test-printf-posix.sh: Update.
40472         * tests/test-vfprintf-posix.sh: Update.
40473         * tests/test-vprintf-posix.sh: Update.
40474         Reported by Ralf Wildenhues.
40475
40476 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
40477
40478         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
40479         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
40480         GCC 4.2, which otherwise issues a lot of warnings.
40481         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
40482         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
40483         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
40484         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
40485         it should no longer be needed.
40486         * lib/string_.h: Likewise.
40487         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
40488         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
40489         * modules/inttypes (inttypes.h): Likewise.
40490         * modules/math (math.h): Likewise.
40491         * modules/search (search.h): Likewise.
40492         * modules/signal (signal.h): Likewise.
40493         * modules/stdint (stdint.h): Likewise.
40494         * modules/stdio (stdio.h): Likewise.
40495         * modules/stdlib (stdlib.h): Likewise.
40496         * modules/string (string.h): Likewise.
40497         * modules/sys_time (sys/time.h): Likewise.
40498         * modules/time (time.h): Likewise.
40499         * modules/wchar (wchar.h): Likewise.
40500         * modules/wctype (wtype.h): Likewise.
40501
40502 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
40503
40504         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
40505
40506 2007-05-13  Bruno Haible  <bruno@clisp.org>
40507
40508         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
40509         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
40510         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
40511         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
40512         (gl_PREREQ_STRTOK_R): Don't require it here.
40513
40514 2007-05-13  Bruno Haible  <bruno@clisp.org>
40515
40516         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
40517         when used in C++ mode.
40518
40519 2007-05-12  Bruno Haible  <bruno@clisp.org>
40520
40521         * lib/linebuffer.h: Tweak doc.
40522         * lib/linebuffer.c: Likewise.
40523
40524 2007-05-12  James Youngman  <jay@gnu.org>
40525
40526         * lib/linebuffer.c (readlinebuffer_delim): New function,
40527         like readlinebuffer, but use a caller-specified delimiter.
40528         (readlinebuffer): Just call readlinebuffer_delim with '\n'
40529         as the delimiter.
40530         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
40531
40532 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
40533
40534         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
40535         * modules/openat (Files): Remove openat-die.c.
40536         (Depends-on): Add openat-die.
40537         * modules/openat-die: New module.
40538
40539 2007-05-06  Bruno Haible  <bruno@clisp.org>
40540
40541         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
40542         Update with info about Cygwin.
40543         * doc/functions/fprintf.texi: Update.
40544         * doc/functions/printf.texi: Update.
40545         * doc/functions/snprintf.texi: Update.
40546         * doc/functions/sprintf.texi: Update.
40547         * doc/functions/vfprintf.texi: Update.
40548         * doc/functions/vprintf.texi: Update.
40549         * doc/functions/vsnprintf.texi: Update.
40550         * doc/functions/vsprintf.texi: Update.
40551         Reported by Eric Blake.
40552
40553 2007-05-06  Bruno Haible  <bruno@clisp.org>
40554
40555         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
40556         padding ourselves for the floating-point directives.
40557         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
40558         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
40559         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
40560         gl_PRINTF_FLAG_ZERO and test its result. Invoke
40561         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
40562         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
40563         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
40564         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
40565         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
40566         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
40567         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
40568         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
40569         * tests/test-snprintf-posix.h (test_function): Also check the width
40570         and some flags in the %f directive.
40571         * tests/test-sprintf-posix.h (test_function): Likewise.
40572         * tests/test-vasnprintf-posix.c (test_function): Likewise.
40573         * tests/test-vasprintf-posix.c (test_function): Likewise.
40574         * doc/functions/fprintf.texi: Update.
40575         * doc/functions/printf.texi: Update.
40576         * doc/functions/snprintf.texi: Update.
40577         * doc/functions/sprintf.texi: Update.
40578         * doc/functions/vfprintf.texi: Update.
40579         * doc/functions/vprintf.texi: Update.
40580         * doc/functions/vsnprintf.texi: Update.
40581         * doc/functions/vsprintf.texi: Update.
40582
40583 2007-05-06  Bruno Haible  <bruno@clisp.org>
40584
40585         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
40586         pass the ' flag character to sprintf or snprintf.
40587         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
40588         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
40589         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
40590         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
40591         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
40592         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
40593         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
40594         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
40595         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
40596         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
40597         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
40598         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
40599         * tests/test-snprintf-posix.h (test_function): Also check the grouping
40600         flag.
40601         * tests/test-sprintf-posix.h (test_function): Likewise.
40602         * tests/test-vasnprintf-posix.c (test_function): Likewise.
40603         * tests/test-vasprintf-posix.c (test_function): Likewise.
40604         * doc/functions/fprintf.texi: Update.
40605         * doc/functions/printf.texi: Update.
40606         * doc/functions/snprintf.texi: Update.
40607         * doc/functions/sprintf.texi: Update.
40608         * doc/functions/vfprintf.texi: Update.
40609         * doc/functions/vprintf.texi: Update.
40610         * doc/functions/vsnprintf.texi: Update.
40611         * doc/functions/vsprintf.texi: Update.
40612
40613 2007-05-01  Bruno Haible  <bruno@clisp.org>
40614
40615         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
40616
40617 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
40618
40619         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
40620         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
40621
40622 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
40623
40624         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
40625         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
40626         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
40627
40628 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
40629
40630         * lib/argp-help.c (struct hol_entry): New member `ord'.
40631         (HOL_ENTRY_PTRCMP): Use ord for comparison
40632         (hol_sort): Initialize ord.
40633
40634 2007-05-01  Bruno Haible  <bruno@clisp.org>
40635
40636         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
40637         Reported by Eric Blake.
40638         * doc/gnulib.texi (Function Substitutes): Update.
40639
40640 2007-05-01  Bruno Haible  <bruno@clisp.org>
40641
40642         * doc/functions.texi: Remove file, now redundant through
40643         doc/functions/*.texi.
40644
40645 2007-05-01  Bruno Haible  <bruno@clisp.org>
40646
40647         * modules/argp (Depends-on): Add sleep.
40648
40649 2007-05-01  Bruno Haible  <bruno@clisp.org>
40650
40651         * modules/sleep-tests: New file.
40652         * tests/test-sleep.c: New file.
40653
40654         * modules/sleep: New file.
40655         * lib/sleep.c: New file.
40656         * m4/sleep.m4: New file.
40657         * lib/unistd_.h (sleep): New declaration.
40658         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
40659         HAVE_SLEEP.
40660         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
40661         * doc/functions/sleep.texi: Document the sleep module.
40662
40663 2007-05-01  Bruno Haible  <bruno@clisp.org>
40664
40665         * lib/sigprocmask.h: Remove file.
40666         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
40667         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
40668         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
40669         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
40670         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
40671         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
40672         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
40673         HAVE_SIGSET_T as a shell variable.
40674         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
40675         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
40676         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
40677         (Depends-on): Add signal. Remove verify.
40678         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
40679         (Include): Mention <signal.h> instead of sigprocmask.h.
40680         * NEWS: Mention the change.
40681         * lib/fatal-signal.c: Don't include sigprocmask.h.
40682
40683 2007-05-01  Bruno Haible  <bruno@clisp.org>
40684
40685         * modules/signal: New file.
40686         * lib/signal_.h: New file.
40687         * m4/signal_h.m4: New file.
40688
40689 2007-05-01  Bruno Haible  <bruno@clisp.org>
40690
40691         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
40692         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
40693         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
40694         HAVE_WCTYPE_CTMP_BUG into wctype.h.
40695
40696 2007-05-01  Bruno Haible  <bruno@clisp.org>
40697
40698         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
40699         configure time.
40700         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
40701         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
40702         * modules/sys_stat (Makefile.am): Substitute their values into
40703         sys/stat.h.
40704
40705 2007-05-01  Bruno Haible  <bruno@clisp.org>
40706
40707         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
40708         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
40709         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
40710
40711 2007-05-01  Bruno Haible  <bruno@clisp.org>
40712
40713         * doc/header/assert.texi: Undo last change: don't mention the gnulib
40714         'assert' module here.
40715
40716 2007-05-01  Bruno Haible  <bruno@clisp.org>
40717
40718         * doc/functions/*.texi: New files.
40719         * doc/functions/google-ranking.txt: New file.
40720         * doc/gnulib.texi (Function Substitutes): New chapter.
40721         (ctime, inet_ntoa): Remove sections.
40722         * doc/ctime.texi: Remove file.
40723         * doc/inet_ntoa.texi: Remove file.
40724         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
40725         dependencies.
40726         (%.info): New rule, specifying a --reference-limit.
40727
40728 2007-05-01  Bruno Haible  <bruno@clisp.org>
40729
40730         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
40731
40732 2007-05-01  Bruno Haible  <bruno@clisp.org>
40733
40734         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
40735         the portability of 'mkdir' to mingw systems.
40736
40737 2007-05-01  Bruno Haible  <bruno@clisp.org>
40738
40739         * doc/headers/google-ranking.txt: New file.
40740
40741 2007-04-30  Eric Blake  <ebb9@byu.net>
40742
40743         Prefer fseeko to fseek.
40744         * modules/getpass (Depends-on): Add fseeko.
40745         * lib/getpass.c (getpass): Use fseeko, not fseek.
40746
40747 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
40748
40749         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
40750         assumes the sorting is stable, while most qsort implementations
40751         are not.  Use argument addresses to ensure they never compare as
40752         equal.
40753
40754         * tests/test-argp-2.sh (usage-indent test): Fix output
40755         (func_compare): Restore diff options
40756         * tests/test-argp.c: Restore #include "progname.h"
40757
40758 2007-04-29  Bruno Haible  <bruno@clisp.org>
40759
40760         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
40761         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
40762         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
40763         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
40764         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
40765         (configure.ac): Define CHECK_SNPRINTF_POSIX.
40766         (TESTS, check_PROGRAMS): Add test-snprintf.
40767         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
40768         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
40769         (TESTS, check_PROGRAMS): Add test-vsnprintf.
40770         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
40771         assertions that fail on HP-UX, OSF/1, or IRIX.
40772         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
40773
40774 2007-04-29  Bruno Haible  <bruno@clisp.org>
40775
40776         * MODULES.html.sh (posix_functions): Remove 'contents'.
40777
40778 2007-04-29  Karl Berry  <karl@gnu.org>
40779
40780         * config/srclist.txt (gendocs_template_min): new entry.
40781
40782 2007-04-29  Bruno Haible  <bruno@clisp.org>
40783
40784         Work around fpurge bug on BSD systems.
40785         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
40786         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
40787         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
40788         fpurge to rpl_fpurge if the system already has this function.
40789         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
40790         the case where the system already has this function. Correct invariants
40791         on BSD systems.
40792         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
40793         BSD systems.
40794
40795 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
40796
40797         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
40798         proposed by Sven Verdoolaege.
40799
40800         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
40801         options.
40802         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
40803         (usage and help tests): Update
40804
40805 2007-04-29  Bruno Haible  <bruno@clisp.org>
40806
40807         * tests/test-fflush.c (main): Use a file of size 17, not 10.
40808         Print more information in case of failure. Disable a test on BeOS.
40809
40810 2007-04-29  Bruno Haible  <bruno@clisp.org>
40811
40812         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
40813         This helps debugging on systems on which no gdb is available.
40814
40815 2007-04-29  Bruno Haible  <bruno@clisp.org>
40816
40817         * lib/freading.h: Improve comments.
40818         * lib/fwriting.h: Likewise.
40819         * tests/test-freading.c (main): Don't check freading immediately after
40820         repositioning. Needed for glibc.
40821
40822 2007-04-29  Bruno Haible  <bruno@clisp.org>
40823
40824         * lib/freading.c (freading): Trivial simplification.
40825
40826 2007-04-28  Bruno Haible  <bruno@clisp.org>
40827
40828         * tests/test-fwriting.c (main): Also test the interaction between
40829         fflush and fwriting.
40830         * modules/fwriting-tests (Depends-on): Add fflush.
40831
40832         * tests/test-freading.c (main): Also test the interaction between
40833         fflush and freading.
40834         * modules/freading-tests (Depends-on): Add fflush.
40835
40836 2007-04-28  Bruno Haible  <bruno@clisp.org>
40837
40838         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
40839         fseeko and ftello.
40840         Suggested by Eric Blake.
40841
40842 2007-04-28  Jim Meyering  <jim@meyering.net>
40843
40844         Avoid false-negative in gl_STDINT_H's C99 conformance test.
40845         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
40846         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
40847
40848 2007-04-27  Eric Blake  <ebb9@byu.net>
40849
40850         * doc/headers/assert.texi (assert.h): Document assert module use.
40851
40852 2007-04-27  Bruno Haible  <bruno@clisp.org>
40853
40854         * doc/headers/*.texi: New files.
40855         * doc/gnulib.texi (Header File Substitutes): New chapter.
40856         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
40857         dependencies.
40858         (standards.info ,standards.html, standards.dvi): Update dependencies.
40859         (mostlyclean, clean): New targets.
40860
40861 2007-04-27  Bruno Haible  <bruno@clisp.org>
40862
40863         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
40864         * modules/sysexits (Files, Makefile.am): Update.
40865
40866         * lib/sys_socket_.h: Renamed from lib/socket_.h.
40867         * modules/sys_socket (Files, Makefile.am): Update.
40868
40869         * lib/sys_stat_.h: Renamed from lib/stat_.h.
40870         * modules/sys_stat (Files, Makefile.am): Update.
40871
40872 2007-04-27  Eric Blake  <ebb9@byu.net>
40873
40874         * lib/freading.h: Improve comments.
40875         * lib/fwriting.h: Likewise.
40876         * lib/fflush.c: Likewise.
40877
40878         Fix closein for mingw.
40879         * modules/closein-tests: Add tests for closein.
40880         * tests/test-closein.c: New file.
40881         * tests/test-closein.sh: Likewise.
40882         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
40883         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
40884
40885 2007-04-27  Bruno Haible  <bruno@clisp.org>
40886
40887         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
40888         version is < 6.
40889         * lib/math_.h [__DECC]: Likewise.
40890         * lib/stdio_.h [__DECC]: Likewise.
40891         * lib/stdlib_.h [__DECC]: Likewise.
40892         * lib/string_.h [__DECC]: Likewise.
40893         * lib/time_.h [__DECC]: Likewise.
40894         * lib/wchar_.h [__DECC]: Likewise.
40895         * lib/wctype_.h [__DECC]: Likewise.
40896
40897 2007-04-27  Bruno Haible  <bruno@clisp.org>
40898
40899         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
40900
40901 2007-04-27  Bruno Haible  <bruno@clisp.org>
40902
40903         * lib/fflush.c: Add comments.
40904         * modules/fpurge-tests (Depends-on): Add fflush.
40905         * modules/freadable-tests (Depends-on): Likewise.
40906         * modules/fwritable-tests (Depends-on): Likewise.
40907
40908 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
40909
40910         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
40911         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
40912         Report by Bruno Haible <bruno@clisp.org>.
40913
40914 2007-04-26  Eric Blake  <ebb9@byu.net>
40915
40916         Fix fflush on mingw.
40917         * modules/fflush (Depends-on): Add freading.
40918         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
40919         but unread data.
40920
40921 2007-04-26  Eric Blake  <ebb9@byu.net>
40922         and Bruno Haible  <bruno@clisp.org>
40923
40924         Implement freading and fwriting.
40925         * lib/freading.c: New file.
40926         * lib/freading.h: Likewise.
40927         * m4/freading.m4: Likewise.
40928         * modules/freading: Likewise.
40929         * modules/freading-tests: Likewise.
40930         * tests/test-freading.c: Likewise.
40931         * lib/fwriting.c: New file.
40932         * lib/fwriting.h: Likewise.
40933         * m4/fwriting.m4: Likewise.
40934         * modules/fwriting: Likewise.
40935         * modules/fwriting-tests: Likewise.
40936         * tests/test-fwriting.c: Likewise.
40937         * MODULES.html.sh (File stream based Input/Output): Mention them.
40938
40939 2007-04-26  Bruno Haible  <bruno@clisp.org>
40940
40941         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
40942         'long' when we assume it.
40943         Suggested by Eric Blake.
40944
40945 2007-04-26  Bruno Haible  <bruno@clisp.org>
40946
40947         Ensure fseeko, ftello are declared on glibc systems.
40948         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
40949         * modules/fseeko (configure.ac-early): Likewise.
40950         * modules/ftello (configure.ac-early): Likewise.
40951         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
40952         AC_FUNC_FSEEKO for this.
40953         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
40954         (gl_CHECK_FSEEKO): Remove macro.
40955
40956 2007-04-26  Bruno Haible  <bruno@clisp.org>
40957
40958         * tests/test-fflush.c (main): Also check the ftell result after
40959         fflush and fseek/fseeko.
40960         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
40961         file descriptor position cache in the stream.
40962         * lib/fseeko.c (rpl_fseeko): Likewise.
40963
40964 2007-04-26  Bruno Haible  <bruno@clisp.org>
40965
40966         * modules/fflush-tests (Depends-on): Add fseeko.
40967
40968 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
40969             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40970
40971         * lib/argz_.h: ensure error_t definition is obtained in same
40972         mechanism system argz.h would have.
40973         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
40974         argz facilities are known bad.  Err on the side of caution if
40975         cross-compiling.
40976
40977 2007-04-25  Eric Blake  <ebb9@byu.net>
40978
40979         * lib/fpurge.c (includes): Use stdlib.h for free.
40980         * tests/test-fflush.c (main): Also test fflush-fseeko.
40981
40982 2007-04-25  Bruno Haible  <bruno@clisp.org>
40983
40984         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
40985         * lib/fseeko.c: New file.
40986         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
40987         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
40988         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
40989         gl_FUNC_FSEEKO.
40990         (gl_FUNC_FSEEKO): Invoke it.
40991         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
40992         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
40993         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
40994
40995 2007-04-25  Bruno Haible  <bruno@clisp.org>
40996
40997         * modules/fflush (Depends-on): Add ftello.
40998
40999 2007-04-25  Bruno Haible  <bruno@clisp.org>
41000
41001         * modules/ftello-tests: New file.
41002         * tests/test-ftello.c: New file.
41003
41004         * modules/ftello: New file.
41005         * m4/ftello.m4: New file.
41006         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
41007         HAVE_FTELLO.
41008         * lib/stdio_.h (ftello): New declaration.
41009         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
41010         HAVE_FTELLO.
41011
41012 2007-04-25  Bruno Haible  <bruno@clisp.org>
41013
41014         * modules/fseeko-tests: New file.
41015         * tests/test-fseeko.c: New file.
41016
41017         * modules/fseeko: New file.
41018         * m4/fseeko.m4: New file.
41019         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
41020         HAVE_FSEEKO.
41021         * lib/stdio_.h (fseeko): New declaration.
41022         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
41023         HAVE_FSEEKO.
41024
41025 2007-04-25  Bruno Haible  <bruno@clisp.org>
41026
41027         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
41028
41029 2007-04-25  Bruno Haible  <bruno@clisp.org>
41030
41031         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
41032         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
41033         * tests/test-unistd.c: Likewise.
41034         * tests/test-fcntl.c: Likewise.
41035
41036 2007-04-23  Eric Blake  <ebb9@byu.net>
41037
41038         * lib/fflush.c: Fix missing include.
41039         Reported by Bruno Haible.
41040
41041 2007-04-23  Bruno Haible  <bruno@clisp.org>
41042
41043         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
41044         Reported by Eric Blake.
41045
41046 2007-04-23  Bruno Haible  <bruno@clisp.org>
41047
41048         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
41049
41050 2007-04-23  Bruno Haible  <bruno@clisp.org>
41051
41052         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
41053
41054 2007-04-23  Bruno Haible  <bruno@clisp.org>
41055
41056         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
41057         Needed on HP-UX 11.
41058
41059 2007-04-16  Eric Blake  <ebb9@byu.net>
41060
41061         Make fflush rely on fpurge.
41062         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
41063         open coding all variants.
41064         * modules/fflush (Depends-on): Add fpurge and unistd.
41065         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
41066         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
41067
41068         Fix --with-tests compilation on cygwin.
41069         * modules/argmatch-tests (Makefile.am): List gnulib library first
41070         in LDADD.
41071         * modules/argp-tests (Makefile.am): Likewise.
41072         * modules/array-list-tests (Makefile.am): Likewise.
41073         * modules/array-oset-tests (Makefile.am): Likewise.
41074         * modules/avltree-list-tests (Makefile.am): Likewise.
41075         * modules/avltree-oset-tests (Makefile.am): Likewise.
41076         * modules/avltreehash-list-tests (Makefile.am): Likewise.
41077         * modules/carray-list-tests (Makefile.am): Likewise.
41078         * modules/dirname-tests (Makefile.am): Likewise.
41079         * modules/frexp-tests (Makefile.am): Likewise.
41080         * modules/isnanl-tests (Makefile.am): Likewise.
41081         * modules/linked-list-tests (Makefile.am): Likewise.
41082         * modules/linkedhash-list-tests (Makefile.am): Likewise.
41083         * modules/lock-tests (Makefile.am): Likewise.
41084         * modules/rbtree-list-tests (Makefile.am): Likewise.
41085         * modules/rbtree-oset-tests (Makefile.am): Likewise.
41086         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
41087         * modules/tls-tests (Makefile.am): Likewise.
41088         * modules/tsearch-tests (Makefile.am): Likewise.
41089         * modules/xvasprintf-tests (Makefile.am): Likewise.
41090
41091         Fix fpurge for cygwin.
41092         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
41093         value.
41094         * modules/fpurge-tests (Depends-on): Clean up trash.
41095
41096 2007-04-16  Simon Josefsson  <simon@josefsson.org>
41097
41098         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
41099
41100         * m4/autobuild.m4: Re-indent.
41101
41102 2007-04-13  Bruno Haible  <bruno@clisp.org>
41103
41104         * modules/fpurge-tests: New file.
41105         * tests/test-fpurge.c: New file.
41106
41107         * modules/fpurge: New file.
41108         * lib/fpurge.h: New file.
41109         * lib/fpurge.c: New file.
41110         * m4/fpurge.m4: New file.
41111
41112 2007-04-13  Bruno Haible  <bruno@clisp.org>
41113
41114         * modules/fbufmode-tests: New file.
41115         * tests/test-fbufmode.c: New file.
41116
41117         * modules/fbufmode: New file.
41118         * lib/fbufmode.h: New file.
41119         * lib/fbufmode.c: New file.
41120         * m4/fbufmode.m4: New file.
41121
41122 2007-04-13  Bruno Haible  <bruno@clisp.org>
41123
41124         * modules/fwritable-tests: New file.
41125         * tests/test-fwritable.c: New file.
41126
41127         * modules/fwritable: New file.
41128         * lib/fwritable.h: New file.
41129         * lib/fwritable.c: New file.
41130         * m4/fwritable.m4: New file.
41131
41132 2007-04-13  Bruno Haible  <bruno@clisp.org>
41133
41134         * modules/freadable-tests: New file.
41135         * tests/test-freadable.c: New file.
41136
41137         * modules/freadable: New file.
41138         * lib/freadable.h: New file.
41139         * lib/freadable.c: New file.
41140         * m4/freadable.m4: New file.
41141
41142 2007-04-13  Bruno Haible  <bruno@clisp.org>
41143
41144         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
41145         MOSTLYCLEANFILES.
41146
41147 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
41148
41149         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
41150         gzip bootstrap.conf to avoid dragging in i18n machinery.
41151         (gnulib_tool_option): Use it.
41152
41153 2007-04-13  Bruno Haible  <bruno@clisp.org>
41154
41155         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
41156         %F directives.
41157         * tests/test-vasprintf-posix.c (test_function): Likewise.
41158         * tests/test-snprintf-posix.h (test_function): Likewise.
41159         * tests/test-sprintf-posix.h (test_function): Likewise.
41160         * tests/test-fprintf-posix.h (test_function): Likewise.
41161         * tests/test-printf-posix.h (test_function): Likewise.
41162         * tests/test-fprintf-posix.out: Likewise.
41163
41164 2007-04-13  Bruno Haible  <bruno@clisp.org>
41165
41166         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
41167         * modules/tls-tests (configure.ac): Likewise.
41168         Reported by Arto C. Nirkko <anirkko@insel.ch>.
41169
41170 2007-04-13  Bruno Haible  <bruno@clisp.org>
41171
41172         * lib/tls.c (glthread_tls_get): Fix return type.
41173         Patch by Arto C. Nirkko <anirkko@insel.ch>.
41174
41175 2007-04-12  Eric Blake  <ebb9@byu.net>
41176
41177         * modules/gettime (Depends-on): Remove gettime.
41178         Reported by Dmitry V. Levin.
41179
41180 2007-04-12  Bruno Haible  <bruno@clisp.org>
41181
41182         * modules/fflush (Include): Mention <stdio.h>.
41183         * modules/strtoimax (Include): Mention <inttypes.h>.
41184         * modules/strtoumax (Include): Likewise.
41185
41186 2007-04-12  Eric Blake  <ebb9@byu.net>
41187
41188         * .cvsignore: New file.
41189         * .gitignore: Likewise.
41190
41191 2007-04-12  Bruno Haible  <bruno@clisp.org>
41192
41193         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
41194         not before, since $(LDADD) often contains libgnu.a.
41195         * modules/striconv-tests (test_striconv_LDADD): Likewise.
41196         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
41197         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
41198         Needed on Cygwin.
41199
41200 2007-04-12  Eric Blake  <ebb9@byu.net>
41201
41202         Work around glibc's failure to flush stdin on fclose.
41203         * lib/closein.c (close_stdin): Flush stdin before closing.
41204
41205         Work around glibc's failure to reset seekable stdin on exit.
41206         * modules/closein: New module.
41207         * lib/closein.c: New file.
41208         * lib/closein.h: Likewise.
41209         * m4/closein.m4: Likewise.
41210         * MODULES.html.sh (File stream based Input/Output): Document it.
41211
41212 2007-04-12  Simon Josefsson  <simon@josefsson.org>
41213
41214         * gnulib-tool: Rename generated 'autobuild' script to
41215         'do-autobuild' in --create-megatestdir output.
41216
41217         * doc/gnulib.texi (Build robot for gnulib): Fix.
41218
41219 2007-04-12  Simon Josefsson  <simon@josefsson.org>
41220
41221         * modules/sysexits (Depends-on): Add absolute-header.
41222
41223 2007-04-12  Eric Blake  <ebb9@byu.net>
41224
41225         No need to preserve errno on success.
41226         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
41227         Reported by Bruno Haible.
41228
41229 2007-04-12  Simon Josefsson  <simon@josefsson.org>
41230
41231         * MODULES.html.sh (Support for maintaining and releasing
41232         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
41233
41234 2007-04-12  Simon Josefsson  <simon@josefsson.org>
41235
41236         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
41237
41238 2007-04-12  Simon Josefsson  <simon@josefsson.org>
41239
41240         * modules/autobuild: New module.
41241
41242         * m4/autobuild.m4: New file.
41243
41244 2007-04-11  Bruno Haible  <bruno@clisp.org>
41245
41246         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
41247         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
41248         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
41249         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
41250         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
41251         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
41252         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
41253         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
41254         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
41255         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
41256         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
41257         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
41258         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
41259         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
41260         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
41261         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
41262         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
41263         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
41264         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
41265         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
41266         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
41267         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
41268         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
41269         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
41270         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
41271         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
41272         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
41273         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
41274         Reported by Eric Blake.
41275
41276 2007-04-11  Bruno Haible  <bruno@clisp.org>
41277
41278         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
41279
41280 2007-04-10  Bruno Haible  <bruno@clisp.org>
41281
41282         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
41283         for NaN and Infinity. Needed on FreeBSD 6.1.
41284         * tests/test-vasnprintf-posix.c (test_function): Undo last change
41285         regarding results for "%010a" of Infinity and NaN.
41286         * tests/test-vasprintf-posix.c (test_function): Likewise.
41287         * tests/test-snprintf-posix.h (test_function): Likewise.
41288         * tests/test-sprintf-posix.h (test_function): Likewise.
41289         * tests/test-fprintf-posix.h (test_function): Likewise.
41290         * tests/test-printf-posix.h (test_function): Likewise.
41291         * tests/test-fprintf-posix.out: Likewise.
41292
41293 2007-04-10  Bruno Haible  <bruno@clisp.org>
41294
41295         * modules/locale-tests: New file.
41296         * tests/test-locale.c: New file.
41297
41298         * modules/locale: New file.
41299         * lib/locale_.h: New file.
41300         * m4/locale_h.m4: New file.
41301
41302 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
41303             Bruno Haible  <bruno@clisp.org>
41304
41305         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
41306         be determined, test for availability of the copysignf, copysign,
41307         copysignl functions.
41308         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
41309         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
41310         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
41311
41312 2007-04-09  Eric Blake  <ebb9@byu.net>
41313
41314         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
41315         * modules/stdio (Makefile.am): Support fflush.
41316         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
41317         * modules/fflush: New file.
41318         * lib/fflush.c: Likewise.
41319         * m4/fflush.m4: Likewise.
41320         * modules/fflush-tests: New test.
41321         * tests/test-fflush.c: Likewise.
41322         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
41323
41324 2007-04-06  Bruno Haible  <bruno@clisp.org>
41325
41326         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
41327         (VASNPRINTF): Use signbit for faster determination whether to print a
41328         minus sign.
41329         * modules/vasnprintf (Files): Remove lib/float+.h.
41330         * modules/fprintf-posix (Depends-on): Add signbit.
41331         * modules/snprintf-posix (Depends-on): Likewise.
41332         * modules/sprintf-posix (Depends-on): Likewise.
41333         * modules/vasnprintf-posix (Depends-on): Likewise.
41334         * modules/vasprintf-posix (Depends-on): Likewise.
41335         * modules/vfprintf-posix (Depends-on): Likewise.
41336         * modules/vsnprintf-posix (Depends-on): Likewise.
41337         * modules/vsprintf-posix (Depends-on): Likewise.
41338
41339 2007-04-06  Bruno Haible  <bruno@clisp.org>
41340
41341         * tests/test-frexp.c (main): Test also the sign bit of zero results.
41342         * tests/test-frexpl.c (main): Likewise.
41343         * tests/test-ldexpl.c (main): Likewise.
41344         * modules/frexp-tests (Depends-on): Add signbit.
41345         * modules/frexpl-tests (Depdends-on): Likewise.
41346         * modules/ldexpl-tests (Depdends-on): Likewise.
41347
41348 2007-04-06  Bruno Haible  <bruno@clisp.org>
41349
41350         * modules/signbit-tests: New file.
41351         * tests/test-signbit.c: New file.
41352
41353         * modules/signbit: New file.
41354         * lib/signbitf.c: New file.
41355         * lib/signbitd.c: New file.
41356         * lib/signbitl.c: New file.
41357         * m4/signbit.m4: New file.
41358         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
41359         (signbit): New macro.
41360         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
41361         REPLACE_SIGNBIT.
41362         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
41363         REPLACE_FREXPL into math.h.
41364
41365 2007-04-06  Bruno Haible  <bruno@clisp.org>
41366
41367         * modules/isnanf-nolibm-tests: New file.
41368         * tests/test-isnanf.c: New file.
41369
41370         * modules/isnanf-nolibm: New file.
41371         * lib/isnanf.h: New file.
41372         * lib/isnanf.c: New file.
41373         * lib/isnan.c: Consider the USE_FLOAT macro.
41374         * m4/isnanf.m4: New file.
41375
41376 2007-04-06  Bruno Haible  <bruno@clisp.org>
41377
41378         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
41379         (Link): New section.
41380
41381         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
41382
41383 2007-04-06  Bruno Haible  <bruno@clisp.org>
41384
41385         Assume the 'long double' type.
41386         * m4/longdouble.m4: Remove file.
41387         * config/srclist.txt: Don't mention longdouble.m4.
41388         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
41389         * lib/float+.h: Likewise.
41390         * lib/frexp.c: Likewise.
41391         * lib/printf-args.h: Likewise.
41392         * lib/printf-args.c: Likewise.
41393         * lib/printf-frexp.c: Likewise.
41394         * lib/printf-parse.c: Likewise.
41395         * lib/vasnprintf.c: Likewise.
41396         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
41397         * m4/intl.m4: Likewise.
41398         * m4/isnanl.m4: Likewise.
41399         * m4/printf.m4: Likewise.
41400         * m4/printf-frexpl.m4: Likewise.
41401         * m4/vasnprintf.m4: Likewise.
41402         * modules/allocsa (Files): Remove m4/longdouble.m4.
41403         * modules/gettext (Files): Likewise.
41404         * modules/relocatable-prog-wrapper (Files): Likewise.
41405         * modules/vasnprintf (Files): Likewise.
41406         * modules/isnanl (Files): Likewise.
41407         (Include): Simplify.
41408         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
41409         (Include): Simplify.
41410         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
41411         (Include): Simplify.
41412         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
41413         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
41414         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
41415         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
41416         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
41417         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
41418         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
41419         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
41420         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
41421         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
41422         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
41423         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
41424         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
41425         * tests/test-isnanl.c: Likewise.
41426         * tests/test-snprintf-posix.h: Likewise.
41427         * tests/test-sprintf-posix.h: Likewise.
41428         * tests/test-vasnprintf-posix.c: Likewise.
41429         * tests/test-vasnprintf-posix2.c: Likewise.
41430         * tests/test-vasprintf-posix.c: Likewise.
41431
41432 2007-04-06  Bruno Haible  <bruno@clisp.org>
41433
41434         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
41435         * lib/math_.h [__DECC]: Include the overridden include file through
41436         #include_next, outside the double-inclusion guard.
41437         * lib/stdio_.h [__DECC]: Likewise.
41438         * lib/stdlib_.h [__DECC]: Likewise.
41439         * lib/string_.h [__DECC]: Likewise.
41440         * lib/time_.h [__DECC]: Likewise.
41441         * lib/wchar_.h [__DECC]: Likewise.
41442         * lib/wctype_.h [__DECC]: Likewise.
41443         * lib/inttypes_.h [__DECC]: Likewise.
41444         Reported by Albert Chin <china@thewrittenword.com> in
41445         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
41446
41447 2007-04-04  Eric Blake  <ebb9@byu.net>
41448
41449         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
41450         1.5.x.
41451
41452 2007-04-04  Bruno Haible  <bruno@clisp.org>
41453
41454         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
41455         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
41456
41457 2007-04-04  Bruno Haible  <bruno@clisp.org>
41458
41459         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
41460         results for "%010a" of Infinity and NaN.
41461         * tests/test-vasprintf-posix.c (test_function): Likewise.
41462         * tests/test-snprintf-posix.h (test_function): Likewise.
41463         * tests/test-sprintf-posix.h (test_function): Likewise.
41464         * tests/test-fprintf-posix.h (test_function): Remove these tests.
41465         * tests/test-printf-posix.h (test_function): Likewise.
41466         * tests/test-fprintf-posix.out: Update.
41467         Needed for FreeBSD 6.1.
41468
41469 2007-04-04  Bruno Haible  <bruno@clisp.org>
41470
41471         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
41472         directly used by the gnulib modules nor by gnulib-tool.
41473
41474 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
41475
41476         * DEPENDENCIES: Give overall description of version dependency
41477         desirability.  Use more-typical names for apps.
41478         Add shell, coreutils, diffutils, grep, tar, gzip.
41479
41480 2007-04-04  Simon Josefsson  <simon@josefsson.org>
41481
41482         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
41483
41484 2007-04-04  Karl Berry  <karl@gnu.org>
41485
41486         * MODULES.html.sh (func_module): missing '.
41487
41488 2007-04-03  Bruno Haible  <bruno@clisp.org>
41489
41490         * modules/argmatch-tests (Makefile.am): New variable
41491         test_argmatch_LDADD.
41492         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
41493         * modules/array-list-tests (Makefile.am): New variable
41494         test_array_list_LDADD.
41495         * modules/array-oset-tests (Makefile.am): New variable
41496         test_array_oset_LDADD.
41497         * modules/avltree-list-tests (Makefile.am): New variable
41498         test_avltree_list_LDADD.
41499         * modules/avltree-oset-tests (Makefile.am): New variable
41500         test_avltree_oset_LDADD.
41501         * modules/avltreehash-list-tests (Makefile.am): New variable
41502         test_avltreehash_list_LDADD.
41503         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
41504         test_canonicalize_lgpl_LDADD.
41505         * modules/carray-list-tests (Makefile.am): New variable
41506         test_carray_list_LDADD.
41507         * modules/dirname-tests (Makefile.am): New variable
41508         test_dirname_LDADD.
41509         * modules/linked-list-tests (Makefile.am): New variable
41510         test_linked_list_LDADD.
41511         * modules/linkedhash-list-tests (Makefile.am): New variable
41512         test_linkedhash_list_LDADD.
41513         * modules/rbtree-list-tests (Makefile.am): New variable
41514         test_rbtree_list_LDADD.
41515         * modules/rbtree-oset-tests (Makefile.am): New variable
41516         test_rbtree_oset_LDADD.
41517         * modules/rbtreehash-list-tests (Makefile.am): New variable
41518         test_rbtreehash_list_LDADD.
41519         * modules/xvasprintf-tests (Makefile.am): New variable
41520         test_xvasprintf_LDADD.
41521         Reported by Eric Blake.
41522
41523 2007-04-03  Eric Blake  <ebb9@byu.net>
41524
41525         * DEPENDENCIES: Weaken m4 requirements.
41526
41527 2007-04-03  Bruno Haible  <bruno@clisp.org>
41528
41529         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
41530         * modules/isnanl-tests (configure.ac): Likewise.
41531
41532 2007-04-03  Ben Pfaff  <blp@gnu.org>
41533
41534         * modules/iconv_open: Add $(srcdir)/ to source directory
41535         references in Makefile fragments that call gperf, to fix VPATH
41536         builds.
41537
41538 2007-04-03  Bruno Haible  <bruno@clisp.org>
41539
41540         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
41541         * lib/ldexpl.c: Undo last change.
41542
41543 2007-04-03  Bruno Haible  <bruno@clisp.org>
41544
41545         * modules/printf-frexpl (Depends-on): Undo last change.
41546         (Files): Add m4/ldexpl.m4.
41547
41548 2007-04-03  Bruno Haible  <bruno@clisp.org>
41549
41550         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
41551         * modules/isnanl (Link): New section.
41552
41553         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
41554         * modules/frexp (Link): New section.
41555
41556         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
41557         * modules/frexpl (Link): New section.
41558
41559         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
41560         * modules/ldexpl (Link): New section.
41561
41562 2007-04-03  Bruno Haible  <bruno@clisp.org>
41563
41564         * modules/TEMPLATE-EXTENDED: New file.
41565         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
41566
41567 2007-04-03  Bruno Haible  <bruno@clisp.org>
41568
41569         * DEPENDENCIES: New file.
41570         Suggested by Simon Josefsson.
41571
41572 2007-04-03  Bruno Haible  <bruno@clisp.org>
41573
41574         * doc/gnulib.texi: Escape @.
41575
41576 2007-04-03  James Youngman  <jay@gnu.org>
41577         and Paul Eggert  <eggert@cs.ucla.edu>
41578
41579         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
41580         birthtime on all systems that have birthtime, not just those which
41581         use st_birthtimensec rather than st_birthtim.  Putting zero in
41582         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
41583         that the birth time is not available for files on an NFS mount.
41584
41585 2007-04-03  Simon Josefsson  <simon@josefsson.org>
41586
41587         * modules/memxor: Move back from crypto/, suggested by Bruno.
41588         * modules/crypto/hmac-sha1: Fix memxor dependency.
41589
41590         * modules/crypto/gc: Moved from ../.
41591
41592 2007-04-02  Eric Blake  <ebb9@byu.net>
41593
41594         * lib/ldexpl.c (includes): Avoid libm.
41595
41596         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
41597
41598 2007-04-02  Bruno Haible  <bruno@clisp.org>
41599
41600         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
41601         on IRIX.
41602
41603 2007-04-02  Bruno Haible  <bruno@clisp.org>
41604
41605         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
41606         x86 or x86_64 platforms running MacOS X.
41607         Reported by Ryan Schmidt <@ryandesign.com>.
41608
41609 2007-04-02  Bruno Haible  <bruno@clisp.org>
41610
41611         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
41612         i386.
41613
41614 2007-04-01  Simon Josefsson  <simon@josefsson.org>
41615
41616         * modules/crypto/arcfour: Moved from ../.
41617         * modules/crypto/arcfour-tests: Moved from ../.
41618         * modules/crypto/arctwo: Moved from ../.
41619         * modules/crypto/arctwo-tests: Moved from ../.
41620         * modules/crypto/des: Moved from ../.
41621         * modules/crypto/des-tests: Moved from ../.
41622         * modules/crypto/gc-arcfour: Moved from ../.
41623         * modules/crypto/gc-arcfour-tests: Moved from ../.
41624         * modules/crypto/gc-arctwo: Moved from ../.
41625         * modules/crypto/gc-arctwo-tests: Moved from ../.
41626         * modules/crypto/gc-des: Moved from ../.
41627         * modules/crypto/gc-des-tests: Moved from ../.
41628         * modules/crypto/gc-hmac-md5: Moved from ../.
41629         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
41630         * modules/crypto/gc-hmac-sha1: Moved from ../.
41631         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
41632         * modules/crypto/gc-md2: Moved from ../.
41633         * modules/crypto/gc-md2-tests: Moved from ../.
41634         * modules/crypto/gc-md4: Moved from ../.
41635         * modules/crypto/gc-md4-tests: Moved from ../.
41636         * modules/crypto/gc-md5: Moved from ../.
41637         * modules/crypto/gc-md5-tests: Moved from ../.
41638         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
41639         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
41640         * modules/crypto/gc-random: Moved from ../.
41641         * modules/crypto/gc-rijndael: Moved from ../.
41642         * modules/crypto/gc-rijndael-tests: Moved from ../.
41643         * modules/crypto/gc-sha1: Moved from ../.
41644         * modules/crypto/gc-sha1-tests: Moved from ../.
41645         * modules/crypto/gc-tests: Moved from ../.
41646         * modules/crypto/hmac-md5: Moved from ../.
41647         * modules/crypto/hmac-md5-tests: Moved from ../.
41648         * modules/crypto/hmac-sha1: Moved from ../.
41649         * modules/crypto/hmac-sha1-tests: Moved from ../.
41650         * modules/crypto/md2: Moved from ../.
41651         * modules/crypto/md2-tests: Moved from ../.
41652         * modules/crypto/md4: Moved from ../.
41653         * modules/crypto/md4-tests: Moved from ../.
41654         * modules/crypto/md5: Moved from ../.
41655         * modules/crypto/md5-tests: Moved from ../.
41656         * modules/crypto/memxor: Moved from ../.
41657         * modules/crypto/rijndael: Moved from ../.
41658         * modules/crypto/rijndael-tests: Moved from ../.
41659         * modules/crypto/sha1: Moved from ../.
41660
41661 2007-03-30  James Youngman  <jay@gnu.org>
41662
41663         * tests/test-stat-time.c (prepare_test): use chmod() rather than
41664         rename() to change the ctime of a file (because ctime is unaffected
41665         by rename on jfs2 on AIX 5.1).
41666         (main): Start by doing cleanup, in case a previous run failed leaving
41667         test files behind.
41668
41669 2007-03-31  Bruno Haible  <bruno@clisp.org>
41670
41671         Support old proprietary implementations of iconv.
41672         * modules/iconv_open: New file.
41673         * lib/iconv_.h: New file.
41674         * m4/iconv_h.m4: New file.
41675         * lib/iconv_open.c: New file.
41676         * lib/iconv_open-aix.gperf: New file.
41677         * lib/iconv_open-hpux.gperf: New file.
41678         * lib/iconv_open-irix.gperf: New file.
41679         * lib/iconv_open-osf.gperf: New file.
41680         * m4/iconv_open.m4: New file.
41681         * modules/linebreak (Depends-on): Add iconv_open.
41682         * modules/striconv (Depends-on): Likewise.
41683         * modules/striconveh (Depends-on): Likewise.
41684         * modules/unicodeio (Depends-on): Likewise.
41685         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
41686         (iconv_t)(-1).
41687         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
41688         conversion if cd is (iconv_t)(-1).
41689         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
41690         is not possible.
41691
41692 2007-03-31  Bruno Haible  <bruno@clisp.org>
41693
41694         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
41695         work on Solaris either. Protect also second use of "autodetect_jp".
41696
41697 2007-03-31  Bruno Haible  <bruno@clisp.org>
41698
41699         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
41700         the function is not present.
41701
41702 2007-03-31  Bruno Haible  <bruno@clisp.org>
41703
41704         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
41705         the function is not present.
41706
41707 2007-03-31  Bruno Haible  <bruno@clisp.org>
41708
41709         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
41710         a bug in HP-UX iconv_open().
41711
41712 2007-03-31  Bruno Haible  <bruno@clisp.org>
41713
41714         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
41715         (Mathematics <math.h>): New section, add fpieee.
41716         (Input/output <stdio.h>): Add fseterr.
41717         (Mathematics <math.h>): New section, add printf-frexp.
41718         (Container data structures): Add sublist.
41719         (Core language properties): Add fpucw, inline.
41720         (Functions for greatest-width integer types <inttypes.h>): Add
41721         imaxabs, imaxdiv, inttypes.
41722         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
41723         isnanl-nolibm, ldexp.
41724         (Mathematics <math.h>): New section, add printf-frexpl.
41725         (Support for systems lacking POSIX:2001): Add fprintf-posix,
41726         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
41727         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
41728         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
41729         (Unicode string functions): Add unistr/u*-mbtoucr.
41730         (Java): Add javacomp-script, javaexec-script.
41731         (C#): Add csharpcomp-script, csharpexec-script.
41732         (Support for building libraries and executables): Add havelib,
41733         relocatable-*.
41734         (Support for maintaining and releasing projects): Renamed from
41735         'Support for maintaining and release projects'. Add announce-gen.
41736
41737 2007-03-31  Bruno Haible  <bruno@clisp.org>
41738
41739         * README: Talk primarily about git.
41740         (git and CVS): Renamed from CVS.
41741         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
41742         gnulib is available through git.
41743         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
41744
41745 2007-03-30  Bruno Haible  <bruno@clisp.org>
41746
41747         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
41748         * lib/poll_.h: Likewise.
41749         * lib/stat_.h: Likewise.
41750         * lib/sys_time_.h: Likewise.
41751         * lib/sysexit_.h: Likewise.
41752         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
41753         * lib/stdbool_.h: Likewise.
41754         * lib/byteswap_.h: Add double-inclusion guard.
41755
41756 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
41757
41758         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
41759
41760 2007-03-30  Karl Berry  <karl@gnu.org>
41761
41762         * config/srclist-update: double space after USA in the license
41763         substitution, since that's how it's usually (?) written.
41764
41765 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
41766
41767         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
41768         reported by Bruno Haible.
41769
41770 2007-03-29  Bruno Haible  <bruno@clisp.org>
41771
41772         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
41773         a bug in AIX iconv().
41774
41775 2007-03-29  Bruno Haible  <bruno@clisp.org>
41776
41777         * modules/ldexpl-tests: New file.
41778         * tests/test-ldexpl.c: New file.
41779
41780 2007-03-29  Bruno Haible  <bruno@clisp.org>
41781
41782         * lib/ldexpl.c: Include fpucw.h.
41783         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
41784         multiplication.
41785         * modules/ldexpl (Depends-on): Add fpucw.
41786
41787 2007-03-29  Bruno Haible  <bruno@clisp.org>
41788
41789         * modules/ldexpl: New file.
41790         * m4/ldexpl.m4: New file.
41791         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
41792         set.
41793         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
41794         REPLACE_LDEXPL.
41795         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
41796         REPLACE_LDEXPL.
41797         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
41798         gl_FUNC_LDEXPL_WORKS.
41799         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
41800         * modules/mathl (Files): Remove lib/ldexpl.c.
41801         (Depends-on): Add ldexpl.
41802
41803 2007-03-29  Bruno Haible  <bruno@clisp.org>
41804
41805         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
41806
41807 2007-03-29  Bruno Haible  <bruno@clisp.org>
41808
41809         * tests/test-striconveh.c (main): Don't assume that a direct conversion
41810         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
41811         and possibly also HP-UX.
41812         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
41813         work on AIX, IRIX, HP-UX, OSF/1.
41814         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
41815         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
41816         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
41817         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
41818         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
41819         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
41820
41821 2007-03-29  Bruno Haible  <bruno@clisp.org>
41822
41823         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
41824
41825 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
41826
41827         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
41828         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
41829
41830 2007-03-29  Eric Blake  <ebb9@byu.net>
41831
41832         * lib/acl-internal.h: Remove redundant include.
41833         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
41834         Cygwin when a file is locked.
41835
41836 2007-03-29  Bruno Haible  <bruno@clisp.org>
41837
41838         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
41839         file.
41840         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
41841
41842 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
41843
41844         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
41845         try to remove a parent directory if the child couldn't be removed
41846         (except for the first rmdir, which could fail because the child
41847         doesn't exist).  Problem reported by Jeff Blaine in
41848         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
41849
41850 2007-03-28  Bruno Haible  <bruno@clisp.org>
41851
41852         * lib/striconveh.c (utf8conv_carefully): New function.
41853         (mem_cd_iconveh_internal): Invoke it.
41854
41855 2007-03-28  Bruno Haible  <bruno@clisp.org>
41856
41857         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
41858         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
41859         input.
41860         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
41861         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
41862         unistr/u8-uctomb.
41863
41864 2007-03-28  Bruno Haible  <bruno@clisp.org>
41865
41866         * modules/unistr/u8-mbtoucr: New file.
41867         * lib/unistr/u8-mbtoucr.c: New file.
41868         * modules/unistr/u16-mbtoucr: New file.
41869         * lib/unistr/u16-mbtoucr.c: New file.
41870         * modules/unistr/u16-mbtoucr: New file.
41871         * lib/unistr/u16-mbtoucr.c: New file.
41872         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
41873
41874 2007-03-27  Simon Josefsson  <simon@josefsson.org>
41875             Bruno Haible  <bruno@clisp.org>
41876
41877         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
41878         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
41879         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
41880
41881         * m4/stdio_h.m4: Add stubs for vasprintf too.
41882
41883         * modules/stdio: Support vasprintf in sed command.
41884
41885         * modules/vasprintf: Depend on stdio for prototypes.  Remove
41886         vasprintf.h.  Add stdio module indicator.
41887
41888         * lib/stdio_.h: Declare asprintf and vasprintf, based on
41889         vasprintf.h.
41890
41891         * lib/vasprintf.h: File removed.
41892
41893         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
41894         * lib/vasprintf.c: Ditto.
41895         * lib/xvasprintf.c: Ditto.
41896         * tests/test-vasprintf-posix.c: Ditto.
41897         * tests/test-vasprintf.c: Ditto.
41898
41899 2007-03-27  Bruno Haible  <bruno@clisp.org>
41900
41901         Make vasnprintf multithread-safe.
41902         * lib/vasnprintf.c (decimal_point_char): New function.
41903         (VASNPRINTF): Use it.
41904         Suggested by Simon Josefsson.
41905
41906 2007-03-27  Eric Blake  <ebb9@byu.net>
41907
41908         Support sub-second birthtime on cygwin.
41909         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
41910         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
41911         (get_stat_birthtime): Also work with st_birthtim.
41912
41913 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
41914
41915         * lib/stat-time.h (USE_BIRTHTIME): Remove.
41916         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
41917         (get_stat_birthtime_ns): Do not try to use "spare" fields.
41918         (get_stat_birthtime_ns): Simplify compile-time tests.
41919         (get_stat_birthtime): Change the API to look like
41920         get_stat_mtime etc., except return a negative tv_nsec on error.
41921         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
41922         Don't check for "spare" fields.
41923         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
41924         or for struct stat.st_birthtime, as these tests aren't used.
41925         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
41926
41927 2007-03-27  Bruno Haible  <bruno@clisp.org>
41928
41929         * lib/stat-time.h: Include <sys/stat.h>.
41930
41931 2007-03-27  James Youngman  <jay@gnu.org>
41932
41933         * lib/stat-time.h (get_stat_birthtime): New function for
41934           retrieving st_birthtime as provided by UFS2 (hence *BSD).
41935         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
41936           and its variants.
41937         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
41938         * modules/stat-time-test: New file.
41939         * tests/test-stat-time.c: New test, devised by Bruno Haible.
41940
41941 2007-03-26  Bruno Haible  <bruno@clisp.org>
41942
41943         Better support of signalling NaNs.
41944         * lib/atanl.c: Include isnanl.h.
41945         (atanl): Perform test for NaN at the beginning of the function and
41946         through a call to isnanl.
41947         * lib/cosl.c: Include isnanl.h.
41948         (cosl): Perform test for NaN at the beginning of the function and
41949         through a call to isnanl.
41950         * lib/ldexpl.c: Include isnanl.h.
41951         (ldexpl): Perform test for NaN through a call to isnanl.
41952         * lib/logl.c: Include isnanl.h.
41953         (logl): Perform test for NaN at the beginning of the function and
41954         through a call to isnanl.
41955         * lib/sinl.c: Include isnanl.h.
41956         (sinl): Perform test for NaN at the beginning of the function and
41957         through a call to isnanl.
41958         * lib/sqrtl.c: Include isnanl.h.
41959         (sqrtl): Perform test for NaN at the beginning of the function and
41960         through a call to isnanl.
41961         * lib/tanl.c: Include isnanl.h.
41962         (tanl): Perform test for NaN at the beginning of the function and
41963         through a call to isnanl.
41964         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
41965         * modules/mathl (Depends-on): Add isnanl.
41966
41967 2007-03-26  Eric Blake  <ebb9@byu.net>
41968
41969         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
41970         regression in logic sense of previous patch.
41971
41972 2007-03-26  Bruno Haible  <bruno@clisp.org>
41973
41974         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
41975         unportable shell command "if ! ...".
41976         Reported by Ralf Wildenhues.
41977
41978 2007-03-25  Bruno Haible  <bruno@clisp.org>
41979
41980         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
41981         <sysexits.h> file, and only add EX_CONFIG.
41982         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
41983         absolute file name and whether it is sufficient. Substitute also
41984         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
41985         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
41986         ABSOLUTE_SYSEXITS_H into sysexits.h.
41987
41988 2007-03-25  Bruno Haible  <bruno@clisp.org>
41989
41990         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
41991         hints is NULL.
41992
41993 2007-03-25  Bruno Haible  <bruno@clisp.org>
41994
41995         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
41996         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
41997
41998 2007-03-25  Bruno Haible  <bruno@clisp.org>
41999
42000         * lib/vasnprintf.c: Include langinfo.h.
42001         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
42002         multithread-safe.
42003         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
42004         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
42005         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
42006         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
42007         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
42008         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
42009         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
42010         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
42011         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
42012         Reported by Simon Josefsson.
42013
42014 2007-03-25  Bruno Haible  <bruno@clisp.org>
42015
42016         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
42017         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
42018         * modules/vasnprintf (Depends-on): Add stdint.
42019
42020 2007-03-25  Bruno Haible  <bruno@clisp.org>
42021
42022         * modules/fpieee: New file.
42023         * m4/fpieee.m4: New file.
42024         * modules/isnan-nolibm (Depends-on): Add fpieee.
42025         * modules/isnanl-nolibm (Depends-on): Add fpieee.
42026         * modules/isnanl (Depends-on): Add fpieee.
42027
42028 2007-03-25  Bruno Haible  <bruno@clisp.org>
42029
42030         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
42031
42032 2007-03-25  Bruno Haible  <bruno@clisp.org>
42033
42034         Avoid test failures on IRIX 6.5.
42035         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
42036         (main): Use it.
42037         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
42038         macros.
42039         (main): Use them.
42040
42041 2007-03-25  Bruno Haible  <bruno@clisp.org>
42042
42043         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
42044         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
42045         exists but doesn't work.
42046         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
42047         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
42048         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
42049         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
42050
42051 2007-03-25  Bruno Haible  <bruno@clisp.org>
42052
42053         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
42054         returns inf. Needed on IRIX 6.5.
42055
42056 2007-03-25  Bruno Haible  <bruno@clisp.org>
42057
42058         * tests/test-frexpl.c: Include isnanl-nolibm.h.
42059         (main): Use isnanl instead of x != x idiom.
42060         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
42061
42062         * tests/test-frexp.c: Include isnan.h.
42063         (main): Use isnan instead of x != x idiom.
42064         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
42065
42066 2007-03-25  Bruno Haible  <bruno@clisp.org>
42067
42068         * tests/test-frexp.c (NaN): New function/macro.
42069         (main): Use it instead of 0.0 / 0.0.
42070         * tests/test-isnan.c (NaN): New function/macro.
42071         (main): Use it instead of 0.0 / 0.0.
42072         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
42073         (test_function): Use it instead of 0.0 / 0.0.
42074         * tests/test-vasprintf-posix.c (NaN): New function/macro.
42075         (test_function): Use it instead of 0.0 / 0.0.
42076         * tests/test-snprintf-posix.h (NaN): New function/macro.
42077         (test_function): Use it instead of 0.0 / 0.0.
42078         * tests/test-sprintf-posix.h (NaN): New function/macro.
42079         (test_function): Use it instead of 0.0 / 0.0.
42080         * tests/test-fprintf-posix.h (NaN): New function/macro.
42081         (test_function): Use it instead of 0.0 / 0.0.
42082         * tests/test-printf-posix.h (NaN): New function/macro.
42083         (test_function): Use it instead of 0.0 / 0.0.
42084
42085         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
42086
42087 2007-03-25  Bruno Haible  <bruno@clisp.org>
42088
42089         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
42090
42091 2007-03-25  Bruno Haible  <bruno@clisp.org>
42092
42093         * lib/regexec.c (merge_state_with_log): Make static.
42094
42095 2007-03-25  Bruno Haible  <bruno@clisp.org>
42096
42097         * lib/trigl.c (kernel_rem_pio2): Make static.
42098
42099 2007-03-25  Bruno Haible  <bruno@clisp.org>
42100
42101         * lib/sincosl.c (sincosl_table): Make static.
42102
42103 2007-03-25  Bruno Haible  <bruno@clisp.org>
42104
42105         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
42106         if the compiler does not support C99.
42107
42108 2007-03-25  Bruno Haible  <bruno@clisp.org>
42109
42110         * modules/time (Makefile.am): Ensure all rule action lines start with a
42111         tab.
42112
42113 2007-03-24  Bruno Haible  <bruno@clisp.org>
42114
42115         * modules/tsearch-tests: New file.
42116         * tests/test-tsearch.sh: New file.
42117         * tests/test-tsearch.c: New file, mostly copied from glibc.
42118
42119         * modules/search-tests: New file.
42120         * tests/test-search.c: New file.
42121
42122         * modules/search: New file.
42123         * lib/search_.h: New file, incorporating lib/tsearch.h.
42124         * m4/search_h.m4: New file.
42125         * lib/tsearch.h: Remove file.
42126         * lib/tsearch.c: Include search.h instead of tsearch.h.
42127         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
42128         HAVE_TSEARCH.
42129         * modules/tsearch (Files): Remove lib/tsearch.h.
42130         (Depends-on): Add search.
42131         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
42132         (Include): Change tsearch.h into search.h.
42133
42134 2007-03-24  Bruno Haible  <bruno@clisp.org>
42135
42136         * modules/fpucw: New file.
42137         * lib/fpucw.h: New file.
42138         * lib/frexp.c: Include fpucw.h.
42139         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
42140         (FUNC): Use them.
42141         * lib/printf-frexp.c: Include fpucw.h.
42142         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
42143         (FUNC): Use them.
42144         * lib/vasnprintf.c: Include fpucw.h.
42145         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
42146         'long double' calculations.
42147         * tests/test-frexpl.c: Include fpucw.h.
42148         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
42149         * tests/test-printf-frexpl.c: Include fpucw.h.
42150         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
42151         * modules/frexpl (Depends-on): Add fpucw.
42152         * modules/printf-frexpl (Depends-on): Likewise.
42153         * modules/fprintf-posix (Depends-on): Likewise.
42154         * modules/snprintf-posix (Depends-on): Likewise.
42155         * modules/sprintf-posix (Depends-on): Likewise.
42156         * modules/vasnprintf-posix (Depends-on): Likewise.
42157         * modules/vasprintf-posix (Depends-on): Likewise.
42158         * modules/vfprintf-posix (Depends-on): Likewise.
42159         * modules/vsnprintf-posix (Depends-on): Likewise.
42160         * modules/vsprintf-posix (Depends-on): Likewise.
42161         * modules/frexpl-tests (Depends-on): Likewise.
42162         * modules/printf-frexpl-tests (Depends-on): Likewise.
42163
42164 2007-03-24  Bruno Haible  <bruno@clisp.org>
42165
42166         * lib/float+.h: New file.
42167         * lib/isnan.c: Include float+.h.
42168         (SIZE): New macro.
42169         (FUNC): Compare only SIZE bytes of the value.
42170         * lib/vasnprintf.c: Include float+.h.
42171         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
42172         SIZEOF_LDBL or SIZEOF_DBL bytes.
42173         * modules/isnan-nolibm (Files): Add lib/float+.h.
42174         * modules/isnanl-nolibm (Files): Add lib/float+.h.
42175         * modules/isnanl (Files): Add lib/float+.h.
42176         * modules/vasnprintf (Files): Add lib/float+.h.
42177
42178 2007-03-24  Bruno Haible  <bruno@clisp.org>
42179
42180         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
42181         include isnanl-nolibm.h.
42182
42183 2007-03-24  Bruno Haible  <bruno@clisp.org>
42184
42185         * tests/test-read-file.c (main): Don't produce spurious output for
42186         expected situations. Make the test fail if it encountered unexpected
42187         results.
42188
42189 2007-03-24  Bruno Haible  <bruno@clisp.org>
42190
42191         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
42192         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
42193
42194 2007-03-24  Bruno Haible  <bruno@clisp.org>
42195
42196         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
42197
42198 2007-03-24  Bruno Haible  <bruno@clisp.org>
42199
42200         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
42201         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
42202
42203         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
42204         * modules/utf8-ucs4: Turn into a symbolic link to module
42205         unistr/u8-mbtouc.
42206
42207         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
42208         utf8-ucs4-unsafe.
42209         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
42210         unistr/u8-mbtouc-unsafe.
42211
42212         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
42213         * modules/utf16-ucs4: Turn into a symbolic link to module
42214         unistr/u16-mbtouc.
42215
42216         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
42217         utf16-ucs4-unsafe.
42218         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
42219         unistr/u16-mbtouc-unsafe.
42220
42221         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
42222         * modules/ucs4-utf8: Turn into a symbolic link to module
42223         unistr/u8-ubtomb.
42224
42225         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
42226         * modules/ucs4-utf16: Turn into a symbolic link to module
42227         unistr/u16-ubtomb.
42228
42229 2007-03-24  Bruno Haible  <bruno@clisp.org>
42230
42231         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
42232         Enable the function only if HAVE_INLINE.
42233         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
42234         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
42235         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
42236         Enable the function only if HAVE_INLINE.
42237         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
42238         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
42239         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
42240         Enable the function only if HAVE_INLINE.
42241         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
42242         Enable the function only if HAVE_INLINE.
42243         * modules/utf8-ucs4: Update.
42244         * modules/utf8-ucs4-unsafe: Update.
42245         * modules/utf16-ucs4: Update.
42246         * modules/utf16-ucs4-unsafe: Update.
42247         * modules/ucs4-utf8: Update.
42248         * modules/ucs4-utf16: Update.
42249
42250 2007-03-24  Bruno Haible  <bruno@clisp.org>
42251
42252         * lib/utf8-ucs4.h: Remove file.
42253         * lib/utf8-ucs4-unsafe.h: Remove file.
42254         * lib/utf16-ucs4.h: Remove file.
42255         * lib/utf16-ucs4-unsafe.h: Remove file.
42256         * lib/ucs4-utf8.h: Remove file.
42257         * lib/ucs4-utf16.h: Remove file.
42258         * lib/unistr.h: Include their previous contents.
42259         * m4/utf-ucs4.m4: Remove file.
42260         * m4/ucs4-utf.m4: Remove file.
42261         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
42262         (Depends-on): Add unistr/base.
42263         (configure.ac): Remove gl_UTF_UCS4.
42264         (Makefile.am): Update.
42265         (Include): Change to unistr.h.
42266         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
42267         (Depends-on): Add unistr/base.
42268         (configure.ac): Remove gl_UTF_UCS4.
42269         (Makefile.am): Update.
42270         (Include): Change to unistr.h.
42271         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
42272         (Depends-on): Add unistr/base.
42273         (configure.ac): Remove gl_UTF_UCS4.
42274         (Makefile.am): Update.
42275         (Include): Change to unistr.h.
42276         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
42277         (Depends-on): Add unistr/base.
42278         (configure.ac): Remove gl_UTF_UCS4.
42279         (Makefile.am): Update.
42280         (Include): Change to unistr.h.
42281         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
42282         (Depends-on): Add unistr/base.
42283         (configure.ac): Remove gl_UCS4_UTF.
42284         (Makefile.am): Update.
42285         (Include): Change to unistr.h.
42286         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
42287         (Depends-on): Add unistr/base.
42288         (configure.ac): Remove gl_UCS4_UTF.
42289         (Makefile.am): Update.
42290         (Include): Change to unistr.h.
42291         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
42292         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
42293         utf8-ucs4-unsafe.h.
42294         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
42295         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
42296         utf16-ucs4-unsafe.h.
42297         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
42298         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
42299         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
42300         * lib/unistr/u8-strchr.c: Likewise.
42301         * lib/unistr/u8-strrchr.c: Likewise.
42302         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
42303         * lib/unistr/u16-strchr.c: Likewise.
42304         * lib/unistr/u16-strrchr.c: Likewise.
42305         * lib/striconveh.c: Update.
42306         * lib/linebreak.c: Update.
42307
42308 2007-03-24  Bruno Haible  <bruno@clisp.org>
42309
42310         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
42311         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
42312
42313 2007-03-22  Bruno Haible  <bruno@clisp.org>
42314
42315         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
42316
42317 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
42318
42319         * MODULES.html.sh (File system functions): New module write-any-file.
42320         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
42321         * m4/write-any-file.m4: New files.
42322
42323 2007-03-23  Eric Blake  <ebb9@byu.net>
42324
42325         * gnulib-tool: Rearrange space-tab sequences, since some editors
42326         like to eat them.
42327
42328 2007-03-23  Eric Blake  <ebb9@byu.net>
42329
42330         * lib/version-etc.c (version_etc_va): Update license wording to
42331         be more concise.  Recommended by Richard Stallman.
42332
42333 2007-03-22  Bruno Haible  <bruno@clisp.org>
42334
42335         * lib/poll.c (MSG_PEEK): New fallback definition.
42336
42337 2007-03-22  Bruno Haible  <bruno@clisp.org>
42338
42339         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
42340         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
42341         (main): Update.
42342         Fixes a compilation error on BeOS.
42343
42344 2007-03-22  Bruno Haible  <bruno@clisp.org>
42345
42346         * modules/frexpl-tests: New file.
42347         * tests/test-frexpl.c: New file.
42348
42349         * modules/frexpl: New file.
42350         * m4/frexpl.m4: New file.
42351         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
42352         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
42353         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
42354         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
42355         (Depends-on): Add frexpl. Remove isnanl-nolibm.
42356         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
42357
42358 2007-03-22  Bruno Haible  <bruno@clisp.org>
42359
42360         * lib/frexpl.c: Share code with lib/frexp.c.
42361         * modules/mathl (Files): Add lib/frexp.c.
42362         (Depends-on): Add isnanl-nolibm.
42363
42364 2007-03-22  Bruno Haible  <bruno@clisp.org>
42365
42366         * modules/printf-frexp (Files): Add m4/frexp.m4.
42367         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
42368         only if the found frexp function actually works.
42369
42370 2007-03-22  Bruno Haible  <bruno@clisp.org>
42371
42372         * lib/frexp.c: Remove older implementation that uses divisions.
42373
42374 2007-03-21  Bruno Haible  <bruno@clisp.org>
42375
42376         * modules/frexp-tests: New file.
42377         * tests/test-frexp.c: New file.
42378
42379         * modules/frexp: New file.
42380         * lib/frexp.c: New file.
42381         * m4/frexp.m4: New file.
42382         * lib/math_.h (frexp): New declaration.
42383         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
42384         REPLACE_FREXP.
42385         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
42386
42387 2007-03-21  Bruno Haible  <bruno@clisp.org>
42388
42389         * modules/isnanl-tests: New file.
42390         * tests/test-isnanl.c: New file.
42391
42392         * modules/isnanl: New file.
42393         * lib/isnanl.h: New file.
42394         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
42395         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
42396         gl_FUNC_ISNANL_WORKS.
42397         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
42398         New macros.
42399
42400 2007-03-21  Bruno Haible  <bruno@clisp.org>
42401
42402         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
42403         lib/isnanl.h.
42404         (Include): Update.
42405         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
42406         * lib/vasnprintf.c: Update.
42407         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
42408         tests/test-isnanl.h, remove tests/test-isnanl.c.
42409         (Makefile.am): Update.
42410         * tests/test-isnanl-nolibm.c: New file.
42411         * tests/test-isnanl.h: New file.
42412         * tests/test-isnanl.c: Remove file.
42413
42414 2007-03-21  Jim Meyering  <jim@meyering.net>
42415
42416         When trying to open ".", treat ESTALE like EACCES.
42417         * lib/savewd.c (savewd_save): Resort to forking not just upon
42418         failure with EACCES, but also when errno is ESTALE.
42419
42420 2007-03-20  Bruno Haible  <bruno@clisp.org>
42421
42422         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
42423         Needed on AIX 5.1. Reported by Matthew Woehlke.
42424
42425 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
42426
42427         Suggestions by Bruno Haible:
42428         * lib/acl-internal.h: Include "gettext.h" rather than rolling
42429         our own.
42430         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
42431         * modules/acl (Depends-on): Add gettext.
42432
42433 2007-03-19  Bruno Haible  <bruno@clisp.org>
42434
42435         * modules/iconvme: Remove file.
42436         * lib/iconvme.h: Remove file.
42437         * lib/iconvme.c: Remove file.
42438         * m4/iconvme.m4: Remove file.
42439
42440 2007-03-19  Bruno Haible  <bruno@clisp.org>
42441
42442         * doc/relocatable-maint.texi: Break long shell script line.
42443         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
42444
42445 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
42446
42447         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
42448         handle file_has_acl.
42449         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
42450         * lib/acl.c: Move header inclusions and related macro defns into
42451         lib/acl-internal.h.
42452         (S_ISLNK): Remove defn, since that's now done for us.
42453         (file_has_acl): Move to lib/file-has-acl.c.
42454         Call acl_trivial if available.  This is the crucial part of the fix.
42455         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
42456         shared within the library.  Rewrite a bit, partly to make it compatible
42457         with the GNU coding style.
42458         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
42459         Remove unnecessary double-quotes.
42460         Don't test for acl_to_text; the build will catch that.
42461         Replace acl_entries if it doesn't exist and it is needed.
42462         Check for -lsec and acl_trivial (as used on Solaris 10).
42463         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
42464         lib/file-has-acl.c.
42465         (Depends-on): Add sys_stat, for S_ISLNK.
42466
42467 2007-03-19  Ben Pfaff  <blp@gnu.org>
42468
42469         * doc/gnulib.texi: Fix typos.
42470         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
42471
42472 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
42473
42474         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
42475         If size is zero here, buf must be zero.
42476
42477 2007-03-19  Simon Josefsson  <simon@josefsson.org>
42478
42479         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
42480         <bruno@clisp.org>.
42481
42482 2007-03-18  Bruno Haible  <bruno@clisp.org>
42483
42484         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
42485         Suggested by Eric Blake.
42486
42487 2007-03-18  Ben Pfaff  <blp@gnu.org>
42488
42489         * doc/relocatable.texi: Recommend using as prefix a directory
42490         that does not exist and will never be created.  Based on
42491         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
42492         and others.
42493
42494 2007-03-17  Bruno Haible  <bruno@clisp.org>
42495
42496         * lib/fchownat.c: Include lchown.h.
42497
42498 2007-03-17  Bruno Haible  <bruno@clisp.org>
42499
42500         Fix endless loop when the given allocated size was > INT_MAX.
42501         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
42502         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
42503         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
42504         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
42505         * lib/sprintf.c (sprintf): Likewise.
42506
42507 2007-03-17  Bruno Haible  <bruno@clisp.org>
42508
42509         * tests/test-argp-2.sh (func_compare): Output a context diff.
42510
42511 2007-03-17  Bruno Haible  <bruno@clisp.org>
42512
42513         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
42514         locale's decimal-point character.
42515
42516 2007-03-17  Bruno Haible  <bruno@clisp.org>
42517
42518         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
42519         before comparing it. Needed because on some platforms (e.g. x86) a
42520         'long double' occupies less bytes than sizeof (long double).
42521
42522 2007-03-17  Bruno Haible  <bruno@clisp.org>
42523
42524         * tests/test-crc.c (main): Make printf statements 64-bit clean.
42525         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
42526         * tests/test-getaddrinfo.c (simple): Likewise.
42527         * tests/test-read-file.c (main): Likewise.
42528
42529 2007-03-17  Bruno Haible  <bruno@clisp.org>
42530
42531         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
42532
42533 2007-03-17  Bruno Haible  <bruno@clisp.org>
42534
42535         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
42536         unused variable.
42537
42538 2007-03-17  Bruno Haible  <bruno@clisp.org>
42539
42540         * tests/test-c-strcasecmp.c: Include c-strcase.h.
42541         * tests/test-c-strncasecmp.c: Likewise.
42542
42543 2007-03-17  Bruno Haible  <bruno@clisp.org>
42544
42545         * modules/stdlib (Depends-on): Add unistd.
42546         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
42547         Needed for MacOS X 10.3.
42548
42549 2007-03-17  Bruno Haible  <bruno@clisp.org>
42550
42551         * lib/unistr/u-strdup.h: Include <stdlib.h>.
42552
42553 2007-03-17  Bruno Haible  <bruno@clisp.org>
42554
42555         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
42556
42557 2007-03-17  Bruno Haible  <bruno@clisp.org>
42558
42559         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
42560         to reflect files copied from gnulib (with or without modifications).
42561         Suggested by Jim Meyering.
42562
42563 2007-03-17  Eric Blake  <ebb9@byu.net>
42564
42565         * NEWS: Document stdlib change from 2007-02-18.
42566
42567 2007-03-17  Jim Meyering  <jim@meyering.net>
42568
42569         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
42570         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
42571         someone uses a name containing shell meta-characters.
42572         Reported by Alfred M. Szmidt.
42573
42574         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
42575
42576 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
42577
42578         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
42579         and copy gettext configuration files only if configure.ac contains
42580         a use of AM_GNU_GETTEXT_VERSION.
42581
42582 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
42583
42584         * build-aux/bootstrap (gnulib_name): New variable.
42585         (gnulib_tool_options): Use it.
42586
42587 2007-03-13  Simon Josefsson  <simon@josefsson.org>
42588
42589         * tests/test-des.c: Use new namespace.
42590
42591 2007-03-15  Bruno Haible  <bruno@clisp.org>
42592
42593         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
42594         Reported by James Youngman <jay@gnu.org>.
42595
42596 2007-03-15  Bruno Haible  <bruno@clisp.org>
42597
42598         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
42599         declared prototype. Needed with cc on OSF/1 5.1.
42600
42601 2007-03-15  Bruno Haible  <bruno@clisp.org>
42602
42603         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
42604         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
42605         (struct gl_list_implementation): Add dispose_fn argument to the
42606         'create_empty', 'create' methods.
42607         (struct gl_list_impl_base): Add field 'dispose_fn'.
42608         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
42609         argument.
42610         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
42611         dispose_fn argument.
42612         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
42613         dispose_fn on the dropped values.
42614         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
42615         dispose_fn argument.
42616         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
42617         dropped values.
42618         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
42619         (gl_tree_remove_node): Call dispose_fn on the dropped value.
42620         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
42621         (gl_tree_remove_node): Call dispose_fn on the dropped value.
42622         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
42623         argument.
42624         (gl_tree_list_free): Call dispose_fn on the dropped values.
42625         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
42626         the dropped values.
42627         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
42628         Add dispose_fn argument.
42629         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
42630         Call dispose_fn on the dropped values.
42631         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
42632         Add dispose_fn argument.
42633         (gl_sublist_create): Initialize the 'dispose_fn' field.
42634         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
42635         * tests/test-array_list.c (main): Update.
42636         * tests/test-carray_list.c (main): Update.
42637         * tests/test-avltree_list.c (main): Update.
42638         * tests/test-rbtree_list.c (main): Update.
42639         * tests/test-avltreehash_list.c (main): Update.
42640         * tests/test-rbtreehash_list.c (main): Update.
42641         * tests/test-linked_list.c (main): Update.
42642         * tests/test-linkedhash_list.c (main): Update.
42643         * tests/test-array_oset.c (main): Update.
42644
42645 2007-03-15  Bruno Haible  <bruno@clisp.org>
42646
42647         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
42648         (gl_oset_create_empty): Add dispose_fn argument.
42649         (struct gl_oset_implementation): Add dispose_fn argument to
42650         'create_empty' method.
42651         (struct gl_oset_impl_base): Add dispose_fn field.
42652         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
42653         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
42654         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
42655         values.
42656         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
42657         (gl_tree_oset_free): Call dispose_fn on the dropped values.
42658         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
42659         dropped value.
42660         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
42661         dropped value.
42662         * tests/test-array_oset.c (main): Update.
42663         * tests/test-avltree_oset.c (main): Update.
42664         * tests/test-rbtree_oset.c (main): Update.
42665         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
42666
42667 2007-03-13  Bruno Haible  <bruno@clisp.org>
42668
42669         * tests/test-stdbool.c (i): Update after last patch.
42670
42671 2007-03-12  Bruno Haible  <bruno@clisp.org>
42672
42673         * lib/quotearg.c: Include <wctype.h> early, before the definition of
42674         the iswprint macro. Needed on Solaris 2.5.1.
42675
42676 2007-03-12  Bruno Haible  <bruno@clisp.org>
42677
42678         * tests/test-printf-frexp.c (main): Declare x as volatile.
42679
42680 2007-03-12  Simon Josefsson  <simon@josefsson.org>
42681
42682         * doc/gnulib.texi (Build robot for gnulib): New section.
42683
42684 2007-03-12  Jim Meyering  <jim@meyering.net>
42685
42686         * build-aux/bootstrap: New file.
42687         * build-aux/bootstrap.conf: New file, from coreutils.
42688
42689 2007-03-11  Bruno Haible  <bruno@clisp.org>
42690
42691         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
42692
42693 2007-03-12  Simon Josefsson  <simon@josefsson.org>
42694
42695         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
42696         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
42697         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
42698
42699 2007-03-11  Bruno Haible  <bruno@clisp.org>
42700
42701         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
42702         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
42703
42704 2007-03-11  Bruno Haible  <bruno@clisp.org>
42705
42706         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
42707         formula. Needed for SunPRO C 5.0.
42708
42709 2007-03-11  Bruno Haible  <bruno@clisp.org>
42710
42711         * modules/long-options (Depends-on): Add getopt.
42712
42713 2007-03-11  Bruno Haible  <bruno@clisp.org>
42714
42715         * modules/modechange (Depends-on): Add stdbool.
42716
42717 2007-03-11  Bruno Haible  <bruno@clisp.org>
42718
42719         * modules/i-ring (Depends-on): Add stdbool.
42720
42721 2007-03-11  Bruno Haible  <bruno@clisp.org>
42722
42723         * modules/gc-des (Depends-on): Add stdbool.
42724
42725 2007-03-11  Bruno Haible  <bruno@clisp.org>
42726
42727         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
42728
42729 2007-03-11  Bruno Haible  <bruno@clisp.org>
42730
42731         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
42732
42733 2007-03-11  Bruno Haible  <bruno@clisp.org>
42734
42735         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
42736
42737 2007-03-11  Bruno Haible  <bruno@clisp.org>
42738
42739         * lib/vasnprintf.c (sprintf): Undefine.
42740
42741 2007-03-11  Bruno Haible  <bruno@clisp.org>
42742
42743         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
42744         initializers in SunPRO C and Compaq C compilers.
42745
42746 2007-03-11  Bruno Haible  <bruno@clisp.org>
42747
42748         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
42749         decrementing code ANSI C compliant.
42750
42751 2007-03-11  Bruno Haible  <bruno@clisp.org>
42752
42753         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
42754         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
42755
42756 2007-03-11  Bruno Haible  <bruno@clisp.org>
42757
42758         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
42759         <stdbool.h> substitute doesn't pass.
42760
42761 2007-03-11  Bruno Haible  <bruno@clisp.org>
42762
42763         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
42764
42765 2007-03-11  Bruno Haible  <bruno@clisp.org>
42766
42767         * gnulib-tool (func_create_megatestdir): Create also an autobuild
42768         script, for submission to autobuild.josefsson.org.
42769
42770 2007-03-10  Bruno Haible  <bruno@clisp.org>
42771
42772         * modules/canonicalize-lgpl-tests: New file.
42773         * tests/test-canonicalize-lgpl.sh: New file.
42774         * tests/test-canonicalize-lgpl.c: New file.
42775
42776         * modules/c-strcase-tests: New file.
42777         * tests/test-c-strcase.sh: New file.
42778         * tests/test-c-strcasecmp.c: New file.
42779         * tests/test-c-strncasecmp.c: New file.
42780
42781         * modules/atexit-tests: New file.
42782         * tests/test-atexit.sh: New file.
42783         * tests/test-atexit.c: New file.
42784
42785 2007-03-10  Bruno Haible  <bruno@clisp.org>
42786
42787         * tests/test-binary-io.sh: Use temporary filenames that are not so
42788         likely to clash with those of other tests (in a parallel make).
42789         * tests/test-binary-io.c: Likewise.
42790
42791 2007-03-10  Bruno Haible  <bruno@clisp.org>
42792
42793         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
42794         fallback; use #error instead.
42795         Suggested by Simon Josefsson.
42796
42797 2007-03-10  Bruno Haible  <bruno@clisp.org>
42798
42799         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
42800         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
42801         first and the last.
42802
42803 2007-03-10  Bruno Haible  <bruno@clisp.org>
42804
42805         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
42806
42807 2007-03-10  Bruno Haible  <bruno@clisp.org>
42808
42809         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
42810         "make distcheck".
42811         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
42812         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
42813         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
42814
42815 2007-03-10  Bruno Haible  <bruno@clisp.org>
42816
42817         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
42818         variable.
42819         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
42820         variable.
42821
42822 2007-03-09  Eric Blake  <ebb9@byu.net>
42823         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
42824
42825         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
42826         types are not being provided by gnulib.
42827         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
42828         types are supported.
42829
42830 2007-03-10  Bruno Haible  <bruno@clisp.org>
42831
42832         * lib/stdio_.h (__attribute__): New macro.
42833         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
42834         vsprintf): Specify __attribute__ __format__ for GCC.
42835         Suggested by Eric Blake.
42836
42837 2007-03-09  Bruno Haible  <bruno@clisp.org>
42838
42839         * modules/printf-posix-tests: New file.
42840         * tests/test-printf-posix.sh: New file.
42841         * tests/test-printf-posix.c: New file.
42842
42843         * modules/printf-posix: New file.
42844         * lib/printf.c: New file.
42845         * m4/printf-posix-rpl.m4: New file.
42846         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
42847         REPLACE_PRINTF.
42848         * lib/stdio_.h (printf): New declaration.
42849         (format, __format__, ____printf____, ____scanf____, ____strftime____,
42850         ____strfmon____): New macros.
42851         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
42852         REPLACE_PRINTF.
42853
42854 2007-03-09  Bruno Haible  <bruno@clisp.org>
42855
42856         * tests/test-vasnprintf-posix2.sh: New file.
42857         * tests/test-vasnprintf-posix2.c: New file.
42858         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
42859         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
42860         (Makefile.am): Activate test-vasnprintf-posix2.sh.
42861
42862         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
42863         a locale dependent decimal point, rather than always '.'.
42864
42865 2007-03-09  Eric Blake  <ebb9@byu.net>
42866
42867         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
42868         spite of platforms like Tandem/NSK that define it to -1.
42869
42870 2007-03-08  Bruno Haible  <bruno@clisp.org>
42871
42872         * modules/vprintf-posix-tests: New file.
42873         * tests/test-vprintf-posix.sh: New file.
42874         * tests/test-vprintf-posix.c: New file.
42875         * tests/test-printf-posix.h: New file.
42876
42877         * modules/vprintf-posix: New file.
42878         * lib/vprintf.c: New file.
42879         * m4/vprintf-posix.m4: New file.
42880         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
42881         REPLACE_VPRINTF.
42882         * lib/stdio_.h (vprintf): New declaration.
42883         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
42884         REPLACE_VPRINTF.
42885
42886 2007-03-08  Bruno Haible  <bruno@clisp.org>
42887
42888         * modules/fprintf-posix-tests: New file.
42889         * tests/test-fprintf-posix.sh: New file.
42890         * tests/test-fprintf-posix.c: New file.
42891
42892         * modules/fprintf-posix: New file.
42893         * lib/fprintf.c: New file.
42894         * m4/fprintf-posix.m4: New file.
42895         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
42896         REPLACE_FPRINTF.
42897         * lib/stdio_.h (fprintf): New declaration.
42898         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
42899         REPLACE_FPRINTF.
42900
42901 2007-03-08  Bruno Haible  <bruno@clisp.org>
42902
42903         * modules/vfprintf-posix-tests: New file.
42904         * tests/test-vfprintf-posix.sh: New file.
42905         * tests/test-vfprintf-posix.c: New file.
42906         * tests/test-fprintf-posix.h: New file.
42907         * tests/test-fprintf-posix.out: New file.
42908
42909         * modules/vfprintf-posix: New file.
42910         * lib/vfprintf.c: New file.
42911         * m4/vfprintf-posix.m4: New file.
42912         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
42913         REPLACE_VFPRINTF.
42914         * lib/stdio_.h (vfprintf): New declaration.
42915         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
42916         REPLACE_VFPRINTF.
42917
42918 2007-03-08  Bruno Haible  <bruno@clisp.org>
42919
42920         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
42921
42922 2007-03-08  Bruno Haible  <bruno@clisp.org>
42923
42924         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
42925         instead of 'expr' invocations.
42926         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
42927         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
42928         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
42929         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
42930         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
42931         Suggested by Paul Eggert.
42932
42933 2007-03-08  Bruno Haible  <bruno@clisp.org>
42934
42935         * modules/fseterr-tests: New file.
42936         * tests/test-fseterr.c: New file.
42937
42938         * modules/fseterr: New file.
42939         * lib/fseterr.h: New file.
42940         * lib/fseterr.c: New file.
42941
42942 2007-03-08  Bruno Haible  <bruno@clisp.org>
42943
42944         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
42945         * lib/getopt_.h: Likewise.
42946         * lib/mbswidth.h: Likewise.
42947         * lib/setenv.h: Likewise.
42948         * lib/vasnprintf.h: Likewise.
42949         * lib/vasprintf.h: Likewise.
42950         * lib/verror.h: Likewise.
42951         * lib/xsetenv.h: Likewise.
42952         * lib/xvasprintf.h: Likewise.
42953
42954 2007-03-08  Jim Meyering  <jim@meyering.net>
42955
42956         * users.txt: Add parted.
42957
42958         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
42959
42960 2007-03-07  Bruno Haible  <bruno@clisp.org>
42961
42962         * m4/printf.m4: Make the shell script snippets copy&pastable.
42963
42964 2007-03-02  Bruno Haible  <bruno@clisp.org>
42965
42966         * lib/netinet_in_.h: New file.
42967         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
42968         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
42969         * modules/netinet_in (Files): Add lib/netinet_in_.h.
42970         (Depends-on): Add absolute-header.
42971         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
42972         into netinet/in.h.
42973
42974 2007-03-03  Bruno Haible  <bruno@clisp.org>
42975
42976         * lib/sys_select_.h: New file.
42977         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
42978         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
42979         * modules/sys_select (Files): Add lib/sys_select_.h.
42980         (Depends-on): Add absolute-header.
42981         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
42982         into sys/select.h.
42983
42984 2007-03-02  Bruno Haible  <bruno@clisp.org>
42985
42986         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
42987         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
42988         values.
42989         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
42990         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
42991         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
42992         * modules/sys_socket (Depends-on): Add absolute-header.
42993         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
42994         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
42995         (Include): Remove requirement of inclusion of <sys/types.h>.
42996
42997 2007-03-02  Bruno Haible  <bruno@clisp.org>
42998
42999         * lib/byteswap_.h (bswap_32): Fix formula.
43000
43001 2007-03-06  Bruno Haible  <bruno@clisp.org>
43002
43003         * modules/sprintf-posix-tests: New file.
43004         * tests/test-sprintf-posix.c: New file.
43005
43006         * modules/sprintf-posix: New file.
43007         * lib/sprintf.c: New file.
43008         * m4/sprintf-posix.m4: New file.
43009         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
43010         REPLACE_SPRINTF.
43011         * lib/stdio_.h (sprintf): New declaration.
43012         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
43013         REPLACE_SPRINTF.
43014
43015 2007-03-06  Bruno Haible  <bruno@clisp.org>
43016
43017         * modules/vsprintf-posix-tests: New file.
43018         * tests/test-vsprintf-posix.c: New file.
43019         * tests/test-sprintf-posix.h: New file.
43020
43021         * modules/vsprintf-posix: New file.
43022         * lib/vsprintf.c: New file.
43023         * m4/vsprintf-posix.m4: New file.
43024         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
43025         REPLACE_VSPRINTF.
43026         * lib/stdio_.h (vsprintf): New declaration.
43027         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
43028         REPLACE_VSPRINTF.
43029
43030 2007-03-06  Bruno Haible  <bruno@clisp.org>
43031
43032         * modules/vsnprintf (Depend-on): Remove minmax.
43033
43034 2007-03-06  Bruno Haible  <bruno@clisp.org>
43035
43036         * modules/snprintf-posix-tests: New file.
43037         * tests/test-snprintf-posix.c: New file.
43038
43039         * modules/snprintf-posix: New file.
43040         * m4/snprintf-posix.m4: New file.
43041         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
43042         gl_FUNC_SNPRINTF.
43043         (gl_FUNC_SNPRINTF): Invoke it.
43044         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
43045         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
43046         is set.
43047         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
43048
43049 2007-03-06  Bruno Haible  <bruno@clisp.org>
43050
43051         * modules/vsnprintf-posix-tests: New file.
43052         * tests/test-vsnprintf-posix.c: New file.
43053         * tests/test-snprintf-posix.h: New file.
43054
43055         * modules/vsnprintf-posix: New file.
43056         * m4/vsnprintf-posix.m4: New file.
43057         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
43058         gl_FUNC_VSNPRINTF.
43059         (gl_FUNC_VSNPRINTF): Invoke it.
43060         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
43061         * lib/stdio_.h (vsnprintf): Define as a replacement if
43062         REPLACE_VSNPRINTF is set.
43063         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
43064
43065 2007-03-06  Bruno Haible  <bruno@clisp.org>
43066
43067         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
43068         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
43069
43070 2007-03-06  Bruno Haible  <bruno@clisp.org>
43071
43072         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
43073         (asinl): Declare also if HAVE_DECL_ASINL is set.
43074         (atanl): Declare also if HAVE_DECL_ATANL is set.
43075         (ceill): Declare also if HAVE_DECL_CEILL is set.
43076         (cosl): Declare also if HAVE_DECL_COSL is set.
43077         (expl): Declare also if HAVE_DECL_EXPL is set.
43078         (floorl): Declare also if HAVE_DECL_FLOORL is set.
43079         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
43080         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
43081         (logl): Declare also if HAVE_DECL_LOGL is set.
43082         (sinl): Declare also if HAVE_DECL_SINL is set.
43083         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
43084         (tanl): Declare also if HAVE_DECL_TANL is set.
43085         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
43086         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
43087         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
43088         declaration of frexpl, ldexpl.
43089         * modules/printf-frexpl (Depends-on): Add math.
43090         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
43091
43092 2007-03-05  Bruno Haible  <bruno@clisp.org>
43093
43094         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
43095         frexpl and ldexpl are declared.
43096         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
43097
43098 2007-03-05  Bruno Haible  <bruno@clisp.org>
43099
43100         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
43101         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
43102
43103 2007-03-05  Bruno Haible  <bruno@clisp.org>
43104
43105         * lib/stdio_.h: Include <stddef.h>.
43106
43107 2007-03-05  Bruno Haible  <bruno@clisp.org>
43108
43109         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
43110
43111 2007-03-05  Bruno Haible  <bruno@clisp.org>
43112
43113         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
43114         NetBSD 4, from Ralf Wildenhues.
43115
43116 2007-03-04  Bruno Haible  <bruno@clisp.org>
43117
43118         * lib/vasprintf.h: Update #if logic for the case when the functions
43119         exist but are overridden.
43120
43121 2007-03-04  Bruno Haible  <bruno@clisp.org>
43122
43123         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
43124         implementations: glibc-2.4 and MacOS X 10.3.
43125         * tests/test-vasnprintf-posix.c (test_function): Test also the case
43126         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
43127         * tests/test-vasprintf-posix.c (test_function): Likewise.
43128
43129 2007-03-04  Bruno Haible  <bruno@clisp.org>
43130
43131         * modules/vasprintf-posix-tests: New file.
43132         * tests/test-vasprintf-posix.c: New file.
43133
43134         * modules/vasprintf-posix: New file.
43135         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
43136         defined.
43137         * m4/vasprintf-posix.m4: New file.
43138         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
43139         gl_FUNC_VASPRINTF.
43140         (gl_FUNC_VASPRINTF): Invoke it.
43141         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
43142         here.
43143         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
43144
43145 2007-03-04  Bruno Haible  <bruno@clisp.org>
43146
43147         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
43148         REPLACE_GETTIMEOFDAY.
43149         * modules/sys_time (Makefile.am): Likewise.
43150         * m4/sys_time_h.m4: Likewise.
43151         * m4/gettimeofday.m4: Likewise.
43152
43153 2007-03-04  Bruno Haible  <bruno@clisp.org>
43154
43155         * modules/vasnprintf-posix-tests: New file.
43156         * tests/test-vasnprintf-posix.c: New file.
43157
43158         * modules/vasnprintf-posix: New file.
43159         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
43160         printf-frexpl.h.
43161         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
43162         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
43163         REPLACE_VASNPRINTF is defined.
43164         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
43165         gl_FUNC_VASNPRINTF.
43166         (gl_FUNC_VASNPRINTF): Invoke it.
43167         * m4/vasnprintf-posix.m4: New file.
43168         * m4/printf.m4: New file.
43169
43170 2007-03-04  Bruno Haible  <bruno@clisp.org>
43171
43172         Compile progreloc.c only if --enable-relocatable is specified.
43173         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
43174         if --enable-relocatable was specified.
43175         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
43176         lib_SOURCES.
43177
43178 2007-03-04  Jim Meyering  <jim@meyering.net>
43179
43180         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
43181         Use it consistently, rather than enumerating errno constants.
43182
43183 2007-03-04  Bruno Haible  <bruno@clisp.org>
43184
43185         * modules/xvasprintf-tests: New file.
43186         * tests/test-xvasprintf.c: New file.
43187
43188         * modules/vasprintf-tests: New file.
43189         * tests/test-vasprintf.c: New file.
43190
43191         * modules/vasnprintf-tests: New file.
43192         * tests/test-vasnprintf.c: New file.
43193
43194         * modules/vsnprintf-tests: New file.
43195         * tests/test-vsnprintf.c: New file.
43196
43197         * modules/snprintf-tests: New file.
43198         * tests/test-snprintf.c: New file.
43199
43200 2007-03-04  Bruno Haible  <bruno@clisp.org>
43201
43202         Compile relocatable.c only if --enable-relocatable is specified.
43203         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
43204         gl_RELOCATABLE_LIBRARY.
43205         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
43206         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
43207         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
43208         gl_RELOCATABLE_LIBRARY.
43209         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
43210         (Makefile.am): Remove lib_SOURCES.
43211         * modules/relocatable-lib-lgpl (configure.ac): Invoke
43212         gl_RELOCATABLE_LIBRARY.
43213         (Makefile.am): Remove lib_SOURCES.
43214         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
43215         always.
43216         * modules/relocatable-prog-wrapper (configure.ac): Invoke
43217         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
43218
43219 2007-03-04  Bruno Haible  <bruno@clisp.org>
43220
43221         * modules/argmatch-tests: New file.
43222         * tests/test-argmatch.c: New file.
43223
43224         * tests/test-allocsa.c (main): Halve the number of loop runs.
43225
43226         * modules/alloca-opt-tests: New file.
43227         * tests/test-alloca-opt.c: New file.
43228
43229 2007-03-04  Jim Meyering  <jim@meyering.net>
43230
43231         Work around difference between Linux ACLs and Solaris 10 ZFS.
43232         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
43233         for EINVAL.
43234
43235 2007-03-03  Bruno Haible  <bruno@clisp.org>
43236
43237         * modules/relocatable-prog (Depends-on): Add back progreloc's
43238         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
43239
43240 2007-03-03  Bruno Haible  <bruno@clisp.org>
43241
43242         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
43243         * modules/relocatable-lib: New file.
43244
43245 2007-03-03  Bruno Haible  <bruno@clisp.org>
43246
43247         * modules/relocatable-prog: Renamed from modules/relocatable.
43248         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
43249
43250 2007-03-03  Bruno Haible  <bruno@clisp.org>
43251
43252         * modules/relocatable-script (Files): Add doc/relocatable.texi,
43253         m4/relocatable-lib.m4.
43254         (Depends-on): Remove 'relocatable'.
43255         (configure.ac): Add gl_RELOCATABLE_NOP.
43256
43257 2007-03-03  Bruno Haible  <bruno@clisp.org>
43258
43259         * modules/relocatable-prog-wrapper: New file.
43260         * modules/relocatable (Depends-on): Add it. Remove all other
43261         dependencies except progname.
43262         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
43263
43264         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
43265         (gl_FUNC_STRERROR): Nop.
43266         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
43267
43268         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
43269         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
43270
43271         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
43272         (gl_FUNC_READLINK): Update.
43273
43274         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
43275
43276 2007-03-03  Bruno Haible  <bruno@clisp.org>
43277
43278         * lib/xreadlink.c: Include <unistd.h> unconditionally.
43279         * modules/xreadlink (Depends-on): Add unistd.
43280         * modules/xreadlink-with-size (Depends-on): Likewise.
43281
43282 2007-03-03  Bruno Haible  <bruno@clisp.org>
43283
43284         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
43285         extracted from gt_FUNC_SETENV.
43286         (gt_FUNC_SETENV): Remove macro.
43287         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
43288         remove gt_FUNC_SETENV.
43289
43290 2007-03-03  Bruno Haible  <bruno@clisp.org>
43291
43292         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
43293         ENABLE_RELOCATABLE here.
43294         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
43295
43296 2007-03-03  Bruno Haible  <bruno@clisp.org>
43297
43298         * modules/rbtreehash-list-tests (Depends-on): Add progname.
43299         * tests/test-rbtreehash_list.c: Include progname.h.
43300         (main): Call set_program_name.
43301
43302         * modules/rbtree-oset-tests (Depends-on): Add progname.
43303         * tests/test-rbtree_oset.c: Include progname.h.
43304         (main): Call set_program_name.
43305
43306         * modules/rbtree-list-tests (Depends-on): Add progname.
43307         * tests/test-rbtree_list.c: Include progname.h.
43308         (main): Call set_program_name.
43309
43310         * modules/linked-list-tests (Depends-on): Add progname.
43311         * tests/test-linked_list.c: Include progname.h.
43312         (main): Call set_program_name.
43313
43314 2007-03-03  Bruno Haible  <bruno@clisp.org>
43315
43316         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
43317         All uses of __restrict changed to _Restrict_.
43318         * lib/glob_.h (__restrict): Remove macro.
43319
43320 2007-03-02  Bruno Haible  <bruno@clisp.org>
43321
43322         * modules/gettext (configure.ac): Require gettext infrastructure
43323         from version 0.16.1.
43324
43325 2007-03-02  Bruno Haible  <bruno@clisp.org>
43326
43327         * modules/linkedhash-list-tests (Depends-on): Add progname.
43328         * tests/test-linkedhash_list.c: Include progname.h.
43329         (main): Call set_program_name.
43330
43331         * modules/carray-list-tests (Depends-on): Add progname.
43332         * tests/test-carray_list.c: Include progname.h.
43333         (main): Call set_program_name.
43334
43335         * modules/avltreehash-list-tests (Depends-on): Add progname.
43336         * tests/test-avltreehash_list.c: Include progname.h.
43337         (main): Call set_program_name.
43338
43339         * modules/avltree-oset-tests (Depends-on): Add progname.
43340         * tests/test-avltree_oset.c: Include progname.h.
43341         (main): Call set_program_name.
43342
43343         * modules/avltree-list-tests (Depends-on): Add progname.
43344         * tests/test-avltree_list.c: Include progname.h.
43345         (main): Call set_program_name.
43346
43347         * modules/array-oset-tests (Depends-on): Add progname.
43348         * tests/test-array_oset.c: Include progname.h.
43349         (main): Call set_program_name.
43350
43351         * modules/array-list-tests (Depends-on): Add progname.
43352         * tests/test-array_list.c: Include progname.h.
43353         (main): Call set_program_name.
43354
43355         * modules/argp-tests (Depends-on): Add progname.
43356         * tests/test-argp.c: Include argp.h first. Include progname.h.
43357         (main): Call set_program_name.
43358
43359 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
43360
43361         * doc/gnulib-tool.texi (Initial import): Reword description of
43362         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
43363         limited effect even if defined after the first system include.
43364
43365 2007-03-01  Bruno Haible  <bruno@clisp.org>
43366
43367         * build-aux/config.libpath: Update to libtool-1.5.22.
43368         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
43369
43370 2007-03-01  Bruno Haible  <bruno@clisp.org>
43371
43372         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
43373         foo_CFLAGS.
43374         Reported by Ralf Wildenhues.
43375
43376 2007-03-01  Bruno Haible  <bruno@clisp.org>
43377
43378         * build-aux/install-reloc: Remove object files left over by some
43379         compilers.
43380         Reported by Ralf Wildenhues.
43381
43382 2007-03-01  Bruno Haible  <bruno@clisp.org>
43383
43384         * build-aux/install-reloc: Break long lines.
43385
43386 2007-03-01  Bruno Haible  <bruno@clisp.org>
43387
43388         * doc/relocatable.texi: Document that it may not work on OpenBSD.
43389         Reported by Ralf Wildenhues.
43390
43391 2007-03-01  Bruno Haible  <bruno@clisp.org>
43392
43393         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
43394         include ordering constraints.
43395
43396 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
43397
43398         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
43399         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
43400         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
43401         as another example.
43402         * lib/time_.h: Fix misspelling.
43403         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
43404         Require gl_HEADER_TIME_H_DEFAULTS.
43405         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
43406         * m4/time_r.m4 (gl_TIME_R): Likewise.
43407         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
43408
43409 2007-03-01  Bruno Haible  <bruno@clisp.org>
43410
43411         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
43412         * m4/utimens.m4 (gl_UTIMENS): Likewise.
43413
43414 2007-03-01  Jim Meyering  <jim@meyering.net>
43415
43416         * modules/xreadlink (Maintainer): Add my name.
43417         * modules/xreadlink-with-size (Depends-on): Alphabetize.
43418
43419 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
43420             Bruno Haible  <bruno@clisp.org>
43421
43422         * build-aux/install-reloc: Compile also c-ctype.c.
43423         * build-aux/relocatable.sh.in: New file.
43424         * doc/relocatable.texi: New file.
43425         * doc/relocatable-maint.texi: New file.
43426         * doc/gnulib.texi: Include relocatable-maint.texi.
43427         * lib/progreloc.c: Include unistd.h unconditionally.
43428         * lib/relocwrapper.c: Include unistd.h unconditionally.
43429         Include c-ctype.h.
43430         (add_dotbin): Use c_tolower.
43431         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
43432         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
43433         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
43434         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
43435         to m4/relocatable-lib.m4.
43436         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
43437         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
43438         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
43439         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
43440         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
43441         * modules/relocatable: New file.
43442         * modules/relocatable-lib: New file.
43443         * modules/relocatable-script: New file.
43444
43445 2007-02-28  Bruno Haible  <bruno@clisp.org>
43446
43447         Import --enable-relocatable infrastructure.
43448         * build-aux/config.libpath: New file, from GNU gettext.
43449         * build-aux/install-reloc: New file, from GNU gettext.
43450         * build-aux/reloc-ldflags: New file, from GNU gettext.
43451         * lib/relocatable.h: New file, from GNU gettext.
43452         * lib/relocatable.c: New file, from GNU gettext.
43453         * lib/relocwrapper.c: New file, from GNU gettext.
43454         * m4/relocatable.m4: New file, from GNU gettext.
43455
43456 2007-02-28  Bruno Haible  <bruno@clisp.org>
43457
43458         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
43459
43460         * modules/xreadlink: New file, from GNU gettext with modifications.
43461         * lib/xreadlink.c: New file, from GNU gettext.
43462         * lib/xreadlink.h: Add comments.
43463         (xreadlink): New declaration.
43464
43465         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
43466         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
43467         lib/xreadlink-with-size.c.
43468         (configure.ac): Remove gl_XREADLINK invocation.
43469         (Makefile.am): Augment lib_SOURCES.
43470         * m4/xreadlink.m4: Remove file.
43471         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
43472         (xreadlink_with_size): Renamed from xreadink.
43473         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
43474         * modules/canonicalize (Depends-on): Replace xreadlink with
43475         xreadlink-with-size.
43476         * lib/canonicalize.c (canonicalize_filename_mode): Update.
43477
43478 2007-02-25  Jim Meyering  <jim@meyering.net>
43479
43480         * build-aux/announce-gen: When complaining about excess arguments,
43481         list them.
43482
43483 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
43484
43485         * README: Document signed integer overflow situation more
43486         accurately.
43487
43488 2007-02-25  Bruno Haible  <bruno@clisp.org>
43489
43490         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
43491         'a' or 'A' conversion.
43492
43493 2007-02-25  Bruno Haible  <bruno@clisp.org>
43494
43495         * modules/filename: Renamed from modules/pathname.
43496         (Files): Replace lib/pathname.h with lib/filename.h. Replace
43497         lib/concatpath.c with lib/concat-filename.c.
43498         (Makefile.am): Update.
43499         (Include): Replace pathname.h with filename.h.
43500         * lib/filename.h: Renamed from lib/pathname.h.
43501         (concatenated_filename): Renamed from concatenated_pathname.
43502         * lib/concat-filename.c: Renamed from lib/concatpath.c.
43503         (concatenated_filename): Renamed from concatenated_pathname.
43504         * lib/findprog.c: Include filename.h instead of pathname.h.
43505         (find_in_path): Update.
43506         * lib/javacomp.c: Include filename.h instead of pathname.h.
43507         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
43508         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
43509         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
43510         is_oldgcj_14_13_usable, is_javac_usable): Update.
43511         * lib/javaexec.c: Include filename.h instead of pathname.h.
43512         (execute_java_class): Update.
43513         * modules/findprog: Update.
43514         * modules/javacomp: Update.
43515         * modules/javaexec: Update.
43516         * MODULES.html.sh (File system functions): Add 'filename', remove
43517         'pathname'.
43518
43519 2007-02-25  Bruno Haible  <bruno@clisp.org>
43520
43521         * modules/printf-frexpl-tests: New file.
43522         * tests/test-printf-frexpl.c: New file.
43523
43524         * modules/printf-frexpl: New file.
43525         * lib/printf-frexpl.h: New file.
43526         * lib/printf-frexpl.c: New file.
43527         * m4/printf-frexpl.m4: New file.
43528
43529 2007-02-25  Bruno Haible  <bruno@clisp.org>
43530
43531         * modules/printf-frexp-tests: New file.
43532         * tests/test-printf-frexp.c: New file.
43533
43534         * modules/printf-frexp: New file.
43535         * lib/printf-frexp.h: New file.
43536         * lib/printf-frexp.c: New file.
43537         * m4/printf-frexp.m4: New file.
43538
43539 2007-02-25  Bruno Haible  <bruno@clisp.org>
43540
43541         Assume automake >= 1.10 for the tests.
43542         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
43543         * modules/arctwo-tests: Likewise.
43544         * modules/argp-tests: Likewise.
43545         * modules/avltree-list-tests: Likewise.
43546         * modules/avltree-oset-tests: Likewise.
43547         * modules/avltreehash-list-tests: Likewise.
43548         * modules/carray-list-tests: Likewise.
43549         * modules/crc-tests: Likewise.
43550         * modules/des-tests: Likewise.
43551         * modules/gc-arcfour-tests: Likewise.
43552         * modules/gc-arctwo-tests: Likewise.
43553         * modules/gc-des-tests: Likewise.
43554         * modules/gc-hmac-md5-tests: Likewise.
43555         * modules/gc-hmac-sha1-tests: Likewise.
43556         * modules/gc-md2-tests: Likewise.
43557         * modules/gc-md4-tests: Likewise.
43558         * modules/gc-md5-tests: Likewise.
43559         * modules/gc-pbkdf2-sha1-tests: Likewise.
43560         * modules/gc-rijndael-tests: Likewise.
43561         * modules/gc-sha1-tests: Likewise.
43562         * modules/gc-tests: Likewise.
43563         * modules/getaddrinfo-tests: Likewise.
43564         * modules/hmac-md5-tests: Likewise.
43565         * modules/hmac-sha1-tests: Likewise.
43566         * modules/linked-list-tests: Likewise.
43567         * modules/linkedhash-list-tests: Likewise.
43568         * modules/lock-tests: Likewise.
43569         * modules/md2-tests: Likewise.
43570         * modules/md4-tests: Likewise.
43571         * modules/md5-tests: Likewise.
43572         * modules/rbtree-list-tests: Likewise.
43573         * modules/rbtree-oset-tests: Likewise.
43574         * modules/rbtreehash-list-tests: Likewise.
43575         * modules/read-file-tests: Likewise.
43576         * modules/rijndael-tests: Likewise.
43577         * modules/stdint-tests: Likewise.
43578         * modules/tls-tests: Likewise.
43579
43580 2007-02-24  Bruno Haible  <bruno@clisp.org>
43581
43582         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
43583         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
43584         function; instead check whether isnan with a double argument links.
43585         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
43586         function; instead check whether isnan with a 'long double' argument
43587         links.
43588         Reported by Eric Blake <ebb9@byu.net>.
43589
43590 2007-02-24  Bruno Haible  <bruno@clisp.org>
43591
43592         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
43593         defined.
43594         * lib/isnanl.c: Remove all code. Just include isnan.c.
43595         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
43596
43597 2007-02-25  Jim Meyering  <jim@meyering.net>
43598
43599         Avoid conflicting types for 'unsetenv' on FreeBSD.
43600         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
43601         conflicting with FreeBSD's (5.0 and 6.1) function declaration
43602         in stdlib.h.
43603
43604 2007-02-24  Bruno Haible  <bruno@clisp.org>
43605
43606         * modules/isnanl-nolibm-tests: New file.
43607         * tests/test-isnanl.c: New file.
43608
43609         * modules/isnanl-nolibm: New file.
43610         * lib/isnanl.h: New file.
43611         * lib/isnanl.c: New file.
43612         * m4/isnanl.m4: New file.
43613
43614 2007-02-24  Bruno Haible  <bruno@clisp.org>
43615
43616         * modules/isnan-nolibm-tests: New file.
43617         * tests/test-isnan.c: New file.
43618
43619         * modules/isnan-nolibm: New file.
43620         * lib/isnan.h: New file.
43621         * lib/isnan.c: New file.
43622         * m4/isnan.m4: New file.
43623
43624 2007-02-24  Bruno Haible  <bruno@clisp.org>
43625
43626         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
43627         assume that an exponent fits in 20 bits.
43628
43629 2007-02-24  Jim Meyering  <jim@meyering.net>
43630
43631         * m4/regex.m4: Update the description of the configure-time option,
43632         --without-included-regex, to state accurately what the defaults are,
43633         and perhaps to give people an idea why using this option is risky.
43634
43635 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
43636
43637         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
43638         loops on small arguments.  This attempts to avoid the problem
43639         Bruno Haible reported for AIX 4.3.2 in
43640         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
43641
43642 2007-02-23  Bruno Haible  <bruno@clisp.org>
43643
43644         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
43645         Needed for help2man.
43646
43647 2007-02-23  Karl Berry  <karl@gnu.org>
43648
43649         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
43650         exists, foo.h should be cvs-ignored, not committed.
43651
43652 2007-02-23  Eric Blake  <ebb9@byu.net>
43653
43654         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
43655         * lib/stat-time.h (includes): Likewise.
43656         * lib/utimecmp.c (includes): Likewise.
43657         * lib/utimens.h (includes): Likewise.
43658         * lib/getdate.y (includes): Also include "timespec.h" for use
43659         internal to the module.
43660         * modules/utimens (Depends-on): Revert yesterday's patch.
43661         * modules/nanosleep (Depends-on): Add missing dependency.
43662
43663 2007-02-22  Bruno Haible  <bruno@clisp.org>
43664
43665         * lib/glob.c: Don't include getlogin_r.h.
43666
43667 2007-02-22  Jim Meyering  <jim@meyering.net>
43668
43669         * modules/utimens (Depends-on): Add timespec, required for
43670         utimens.h's inclusion of timespec.h.
43671
43672 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
43673
43674         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
43675         long unreadable paths in GNU/Linux.  Problem reported by Andreas
43676         Schwab in
43677         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
43678         I'll try to think of a better way to fix the Solaris problem.
43679
43680         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
43681         like glibc; on Solaris 10, it fails with errno == EINVAL.
43682         POSIX says the behavior is unspecified if the first argument is NULL,
43683         so play it safe and never pass NULL to the system getcwd.
43684
43685 2007-02-21  Jim Meyering  <jim@meyering.net>
43686
43687         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
43688         of gettimeofday.  It would conflict with the one now always
43689         provided via sys_time_.h.  Reported by Matthew Woehlke, as
43690         an IRIX 6.5 build failure.
43691
43692 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
43693
43694         Minor fixups to port to Solaris 10 with Sun C 5.8.
43695         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
43696         * modules/getcwd (Depends-on): Add dirfd.
43697         * lib/putenv.c (putenv): #undef it.
43698         (rpl_putenv): New decl.
43699         (malloc, free): Include <stdlib.h> rather than prototyping separately.
43700
43701 2007-02-20  Bruno Haible  <bruno@clisp.org>
43702
43703         * modules/stdio-tests: New file.
43704         * tests/test-stdio.c: New file.
43705
43706         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
43707         (Depends-on): Add stdio.
43708         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
43709         (Include): Use <stdio.h> instead of vsnprintf.h.
43710         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
43711         HAVE_DECL_VSNPRINTF.
43712         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
43713
43714         * modules/snprintf (Files): Remove lib/snprintf.h.
43715         (Depends-on): Add stdio.
43716         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
43717         (Include): Use <stdio.h> instead of snprintf.h.
43718         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
43719         HAVE_DECL_SNPRINTF.
43720         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
43721         * lib/getaddrinfo.c: Likewise.
43722
43723         * modules/stdio: New file.
43724         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
43725         * lib/snprintf.h: Remove file.
43726         * lib/vsnprintf.h: Remove file.
43727         * lib/.cppi-disable: Remove snprintf.h.
43728         * m4/stdio_h.m4: New file.
43729         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
43730
43731 2007-02-20  Jim Meyering  <jim@meyering.net>
43732
43733         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
43734         used by e.g., mingw.  From Bruno Haible.
43735
43736 2007-02-19  Bruno Haible  <bruno@clisp.org>
43737
43738         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
43739         warnings.
43740         Reported by Ben Pfaff <blp@cs.stanford.edu>.
43741
43742 2007-02-19  Bruno Haible  <bruno@clisp.org>
43743
43744         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
43745         from mingw users.
43746
43747 2007-02-19  Bruno Haible  <bruno@clisp.org>
43748
43749         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
43750         warnings.
43751         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
43752
43753 2007-02-19  Jim Meyering  <jim@meyering.net>
43754
43755         Don't use FD after a successful "fdopendir (fd)".
43756         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
43757         Reset it by calling dirfd on the just-obtained DIR*.
43758
43759         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
43760         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
43761
43762 2007-02-18  Bruno Haible  <bruno@clisp.org>
43763
43764         * lib/readlink.c: Include <unistd.h>.
43765         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
43766         HAVE_READLINK.
43767         * modules/readlink (Depends-on): Add unistd.
43768         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
43769         (Include): Add <unistd.h>.
43770
43771         * lib/getlogin_r.h: Remove file.
43772         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
43773         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
43774         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
43775         HAVE_DECL_GETLOGIN_R.
43776         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
43777         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
43778         (Include): Use <unistd.h> instead of getlogin_r.h.
43779
43780         * lib/getcwd.h: Remove file.
43781         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
43782         * lib/xgetcwd.c: Likewise.
43783         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
43784         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
43785         * modules/getcwd (Files): Remove lib/getcwd.h.
43786         (Depends-on): Add unistd.
43787         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
43788         (Include): Use <unistd.h> instad of getcwd.h.
43789
43790         * lib/ftruncate.c: Include <unistd.h> first.
43791         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
43792         Set HAVE_FTRUNCATE.
43793         * modules/ftruncate (Depends-on): Add unistd.
43794         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
43795
43796         * lib/fchdir.c: Include <unistd.h> first.
43797         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
43798         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
43799         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
43800         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
43801         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
43802
43803         * lib/dup2.c: Include <unistd.h> first.
43804         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
43805         HAVE_DUP2.
43806         * modules/dup2 (Depends-on): Add unistd.
43807         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
43808
43809         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
43810         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
43811         REPLACE_CHOWN. Don't define chown as a macro here.
43812         * modules/chown (Depends-on): Add unistd.
43813         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
43814
43815         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
43816         Add definition for GL_LINK_WARNING.
43817         (chown, dup2): New declarations.
43818         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
43819         link warning.
43820         (ftruncate): New declaration.
43821         (getcwd): New declaration, taken from old getcwd.h.
43822         (getlogin_r): New declaration, taken from old getlogin_r.h.
43823         (readlink): New declaration.
43824         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
43825         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
43826         (gl_PREREQ_UNISTD): Remove macro.
43827         (gl_UNISTD_MODULE_INDICATOR): New macro.
43828         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
43829         many new variables. Don't set UNISTD_H.
43830         * modules/unistd (Description): Change.
43831         (Depends-on): Add link-warning.
43832         (configure.ac): Update.
43833         (Makefile.am): Create unistd.h always. Substitute many new variables
43834         into it.
43835
43836 2007-02-18  Bruno Haible  <bruno@clisp.org>
43837
43838         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
43839         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
43840         HAVE_GETSUBOPT.
43841         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
43842         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
43843         * lib/getsubopt.h: Remove file.
43844         * modules/getsubopt (Files): Remove lib/getsubopt.h.
43845         (Depends-on): Add stdlib.
43846         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
43847         (Includes): Use <stdlib.h> instead of getsubopt.h.
43848         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
43849         Set HAVE_GETSUBOPT.
43850         * lib/getsubopt.c: Don't include getsubopt.h.
43851
43852 2007-02-18  Bruno Haible  <bruno@clisp.org>
43853
43854         * modules/fchdir (Depends-on): Add dup2.
43855
43856 2007-02-18  Bruno Haible  <bruno@clisp.org>
43857
43858         * lib/stdlib_.h: Handle glibc's special invocation convention
43859         specially.
43860
43861 2007-02-18  Bruno Haible  <bruno@clisp.org>
43862
43863         * modules/stdlib-tests: New file.
43864         * tests/test-stdlib.c: New file.
43865
43866         * modules/mkstemp (Files): Remove lib/mkstemp.h.
43867         (Depends-on): Add stdlib.
43868         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
43869         (Includes): Use <stdlib.h> instead of mkstemp.h.
43870         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
43871         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
43872         * lib/mkstemp.c: Don't include mkstemp.h.
43873         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
43874         * lib/stdlib--.h: Don't include mkstemp.h.
43875
43876         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
43877         (Depends-on): Add stdlib.
43878         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
43879         (Includes): Use <stdlib.h> instead of mkdtemp.h.
43880         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
43881         HAVE_MKDTEMP.
43882         * lib/mkdtemp.c: Don't include mkdtemp.h.
43883         * lib/clean-temp.c: Don't include mkdtemp.h.
43884
43885         * modules/exit (Files): Remove lib/exit.h.
43886         (Depends-on): Add stdlib.
43887         (Makefile.am): Remove lib_SOURCES.
43888         (Include): Use <stdlib.h> instead of exit.h.
43889         * lib/argmatch.c: Don't include exit.h.
43890         * lib/execute.c: Likewise.
43891         * lib/pagealign_alloc.c: Likewise.
43892         * lib/pipe.c: Likewise.
43893         * lib/wait-process.c: Likewise.
43894         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
43895         * lib/exitfail.c: Likewise.
43896         * lib/savewd.c: Likewise.
43897         * lib/xsetenv.c: Likewise.
43898
43899         * modules/stdlib: New file.
43900         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
43901         and extra comments about mkstemp().
43902         * lib/exit.h: Remove file.
43903         * lib/mkdtemp.h: Remove file.
43904         * lib/mkstemp.h: Remove file.
43905         * m4/stdlib_h.m4: New file.
43906         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
43907
43908 2007-02-18  Bruno Haible  <bruno@clisp.org>
43909
43910         * modules/math-tests: New file.
43911         * tests/test-math.c: New file.
43912
43913         * modules/math: New file.
43914         * modules/mathl (Files): Remove lib/mathl.h.
43915         (Depends-on): Add math.
43916         (Makefile.am): Don't mention mathl.h.
43917         (Include): Use <math.h> instead of mathl.h.
43918         * lib/math_.h: New file.
43919         * lib/mathl.h: Remove file.
43920         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
43921         mathl.h.
43922         * lib/asinl.c: Likewise.
43923         * lib/atanl.c: Likewise.
43924         * lib/ceill.c: Likewise.
43925         * lib/cosl.c: Likewise.
43926         * lib/expl.c: Likewise.
43927         * lib/floorl.c: Likewise.
43928         * lib/frexpl.c: Likewise.
43929         * lib/ldexpl.c: Likewise.
43930         * lib/logl.c: Likewise.
43931         * lib/sincosl.c: Likewise.
43932         * lib/sinl.c: Likewise.
43933         * lib/sqrtl.c: Likewise.
43934         * lib/tanl.c: Likewise.
43935         * lib/trigl.c: Likewise.
43936         * m4/math_h.m4: New file.
43937         * MODULES.html.sh (Mathematics): Add math.
43938
43939 2007-02-17  Bruno Haible  <bruno@clisp.org>
43940
43941         * modules/wctype-tests: New file.
43942         * tests/test-wctype.c: New file.
43943
43944         * modules/wchar-tests: New file.
43945         * tests/test-wchar.c: New file.
43946
43947         * modules/unistd-tests: New file.
43948         * tests/test-unistd.c: New file.
43949
43950         * modules/time-tests: New file.
43951         * tests/test-time.c: New file.
43952
43953         * modules/sysexits-tests: New file.
43954         * tests/test-sysexits.c: New file.
43955
43956         * modules/sys_time-tests: New file.
43957         * tests/test-sys_time.c: New file.
43958
43959         * modules/sys_stat-tests: New file.
43960         * tests/test-sys_stat.c: New file.
43961
43962         * modules/sys_socket-tests: New file.
43963         * tests/test-sys_socket.c: New file.
43964
43965         * modules/sys_select-tests: New file.
43966         * tests/test-sys_select.c: New file.
43967
43968         * modules/string-tests: New file.
43969         * tests/test-string.c: New file.
43970
43971         * modules/stdbool-tests: New file.
43972         * tests/test-stdbool.c: New file.
43973
43974         * modules/netinet_in-tests: New file.
43975         * tests/test-netinet_in.c: New file.
43976
43977         * modules/inttypes-tests: New file.
43978         * tests/test-inttypes.c: New file.
43979
43980         * modules/fcntl-tests: New file.
43981         * tests/test-fcntl.c: New file.
43982
43983         * modules/byteswap-tests: New file.
43984         * tests/test-byteswap.c: New file.
43985
43986         * modules/arpa_inet-tests: New file.
43987         * tests/test-arpa_inet.c: New file.
43988
43989 2007-02-17  Bruno Haible  <bruno@clisp.org>
43990
43991         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
43992         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
43993         if the corresponding module is not enabled. Emit link warnings if
43994         the function is used nevertheless.
43995         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
43996         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
43997         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
43998         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
43999         * modules/inttypes (Depends-on): Add link-warning.
44000         (Makefile.am): Copy the contents of build-aux/link-warning.h into
44001         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
44002         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
44003         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
44004         * modules/imaxdiv (configure.ac): Likewise.
44005         * modules/strtoimax (configure.ac): Likewise.
44006         * modules/strtoumax (configure.ac): Likewise.
44007
44008 2007-02-17  Bruno Haible  <bruno@clisp.org>
44009
44010         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
44011         gl_STRING_MODULE_INDICATOR_DEFAULTS.
44012         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
44013         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
44014
44015 2007-02-17  Bruno Haible  <bruno@clisp.org>
44016
44017         * modules/link-warning: New file.
44018         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
44019         * lib/string_.h (GL_LINK_WARNING): Remove definition.
44020         * modules/string (Depends-on): Add link-warning.
44021         (Makefile.am): Copy the contents of build-aux/link-warning.h into
44022         string.h.
44023         * MODULES.html.sh (Support for building libraries and executables): Add
44024         link-warning.
44025
44026 2007-02-17  Bruno Haible  <bruno@clisp.org>
44027
44028         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
44029         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
44030         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
44031         long lines.
44032
44033 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
44034             Bruno Haible  <bruno@clisp.org>
44035
44036         * modules/tmpfile: New file.
44037         * lib/tmpfile.c: New file.
44038         * m4/tmpfile.m4: New file.
44039         * MODULES.html.sh (func_all_modules): New section "Input/output".
44040
44041 2007-02-15  Bruno Haible  <bruno@clisp.org>
44042
44043         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
44044         (supports_delete_on_close): New function.
44045         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
44046
44047 2007-02-14  Bruno Haible  <bruno@clisp.org>
44048
44049         * modules/mbspcasecmp-tests: New file.
44050         * tests/test-mbspcasecmp.sh: New file.
44051         * tests/test-mbspcasecmp.c: New file.
44052
44053         New module mbspcasecmp.
44054         * modules/mbspcasecmp: New file.
44055         * lib/mbspcasecmp.c: New file.
44056         * lib/string_.h (strncasecmp): Change warning message.
44057         (mbspcasecmp): New declaration.
44058         * m4/mbspcasecmp.m4: New file.
44059         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44060         GNULIB_MBSPCASECMP.
44061         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
44062         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
44063
44064 2007-02-14  Bruno Haible  <bruno@clisp.org>
44065
44066         * modules/mbsncasecmp-tests: New file.
44067         * tests/test-mbsncasecmp.sh: New file.
44068         * tests/test-mbsncasecmp.c: New file.
44069
44070         New module mbsncasecmp.
44071         * modules/mbsncasecmp: New file.
44072         * lib/mbsncasecmp.c: New file.
44073         * lib/string_.h (mbsncasecmp): New declaration.
44074         * m4/mbsncasecmp.m4: New file.
44075         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44076         GNULIB_MBSNCASECMP.
44077         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
44078         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
44079
44080 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
44081
44082         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
44083         Verify that it doesn't overlap with our flags.
44084         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
44085         do not have the desired effect in multibyte locales; instead, use
44086         mbscasecmp.
44087         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
44088         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
44089         we don't require GNU fnmatch ourselves (if our users require it, they
44090         should do so explicitly).
44091
44092         Fix regex code so it doesn't rely on strcasecmp.
44093         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
44094         Otherwise, include gnulib's langinfo.h.
44095         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
44096         undesirable behavior in non-C locales.  Instead, rely on localecharset.
44097         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
44098         * modules/regex (FILES): Remove m4/codeset.m4.
44099         (Depends-on): Add localcharset.  Remove strcase.
44100
44101 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44102
44103         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
44104         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
44105
44106 2007-02-13  Bruno Haible  <bruno@clisp.org>
44107
44108         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
44109         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
44110
44111 2007-02-12  Bruno Haible  <bruno@clisp.org>
44112
44113         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
44114         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
44115         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
44116         time warning rather than a link error.
44117
44118 2007-02-12  Bruno Haible  <bruno@clisp.org>
44119
44120         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
44121         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
44122         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
44123
44124 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
44125
44126         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
44127         args, not 2.
44128
44129 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
44130
44131         New module 'time', so that apps can include <time.h> as per
44132         POSIX and GNU instead of separate include files like time_r.h
44133         and timegm.h.  This implementation tries out a simpler approach
44134         for replacing decls in standard include files (as compared to
44135         the string module), somewhat as an experiment.
44136
44137         * config/srclist.txt: Comment out mktime.c for now.
44138         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
44139         since it doesn't apply any more.  Use generic wording instead.
44140         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
44141         'time'.
44142         * lib/time_.h, m4/time_h.m4, modules/time: New files.
44143         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
44144         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
44145         Don't include <sys/types.h>; no longer needed since we assume C89.
44146         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
44147         * lib/strftime.c: Likewise.
44148         * lib/time_r.c: Likewise.
44149         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
44150         * lib/nanosleep.c: Include <time.h> first, to check interface.
44151         * lib/strptime.c: Likewise.
44152         * lib/time_r.c: Likewise.
44153         * lib/timegm.c: Likewise.
44154         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
44155         needed.
44156         * lib/timegm.c: Don't include timegm.h; no longer needed.
44157         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
44158         time.h now handles any problems in that area.
44159         (struct timespec, nanosleep): Remove; time.h now arranges for these.
44160         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
44161         that time.h defines struct timespec.
44162         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
44163         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
44164         handles that.
44165         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
44166         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
44167         needed.  Set REPLACE_LOCALTIME.
44168         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
44169         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
44170         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
44171         nanosleep; time_h.m4 now does that.  Don't require
44172         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
44173         module handles this now.
44174         * modules/getdate (Depends-on): Remove timespec.  Add time.
44175         * modules/nanosleep (Depends-on): Likewise.
44176         * modules/stat-time (Depends-on): Likewise.
44177         * modules/nanosleep (Include): Include time.h, not timespec.h.
44178         * modules/strptime (Files): Remove lib/strptime.h.
44179         (Depends-on): Add extensions, time.
44180         (Include): Include time.h, not strptime.h.
44181         * modules/time_r (Files): Remove lib/time_r.h.
44182         (Depends-on): Add time.
44183         (Include): Include time.h, not time_r.h.
44184         * modules/timegm: Likewise.
44185         * modules/timespec (Description): Now does timespec-related decls
44186         of our own, instead of struct timespec itself.
44187         (Depends-on): Add time; remove extensions.
44188         (Maintainer): Add self.
44189         * modules/utimecmp (Depends-on): Add time; remove timespec.
44190         * modules/utimens (Depends-on): Likewise.
44191         * modules/xnanosleep (Depends-on): Likewise.
44192
44193 2007-02-11  Bruno Haible  <bruno@clisp.org>
44194
44195         * lib/c-strstr.c: Include allocsa.h.
44196         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
44197         * lib/c-strcasestr.c: Include allocsa.h.
44198         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
44199         * lib/strcasestr.c: Include allocsa.h.
44200         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
44201         * lib/mbsstr.c: Include allocsa.h.
44202         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
44203         allocsa/freesa instead of malloc/free.
44204         * lib/mbscasestr.c: Include allocsa.h.
44205         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
44206         allocsa/freesa instead of malloc/free.
44207         * modules/c-strstr (Depends-on): Add allocsa.
44208         * modules/c-strcasestr (Depends-on): Likewise.
44209         * modules/strcasestr (Depends-on): Likewise.
44210         * modules/mbsstr (Depends-on): Likewise.
44211         * modules/mbscasestr (Depends-on): Likewise.
44212
44213 2007-02-11  Bruno Haible  <bruno@clisp.org>
44214
44215         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
44216
44217         * modules/mbsspn-tests: New file.
44218         * tests/test-mbsspn.sh: New file.
44219         * tests/test-mbsspn.c: New file.
44220
44221 2007-02-11  Bruno Haible  <bruno@clisp.org>
44222
44223         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
44224
44225         * modules/mbspbrk-tests: New file.
44226         * tests/test-mbspbrk.sh: New file.
44227         * tests/test-mbspbrk.c: New file.
44228
44229 2007-02-11  Bruno Haible  <bruno@clisp.org>
44230
44231         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
44232         unneeded cast.
44233
44234         * modules/mbscspn-tests: New file.
44235         * tests/test-mbscspn.sh: New file.
44236         * tests/test-mbscspn.c: New file.
44237
44238 2007-02-11  Bruno Haible  <bruno@clisp.org>
44239
44240         * modules/mbscasecmp-tests: New file.
44241         * tests/test-mbscasecmp.sh: New file.
44242         * tests/test-mbscasecmp.c: New file.
44243
44244 2007-02-11  Bruno Haible  <bruno@clisp.org>
44245
44246         Ensure O(n) worst-case complexity of mbscasestr.
44247         * lib/mbscasestr.c: Include stdbool.h.
44248         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
44249         functions.
44250         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
44251         the bookkeeping indicates that it's worth it.
44252         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
44253
44254         * modules/mbscasestr-tests: New file.
44255         * tests/test-mbscasestr1.c: New file.
44256         * tests/test-mbscasestr2.sh: New file.
44257         * tests/test-mbscasestr2.c: New file.
44258         * tests/test-mbscasestr3.sh: New file.
44259         * tests/test-mbscasestr3.c: New file.
44260         * tests/test-mbscasestr4.sh: New file.
44261         * tests/test-mbscasestr4.c: New file.
44262         * m4/locale-tr.m4: New file.
44263
44264 2007-02-11  Bruno Haible  <bruno@clisp.org>
44265
44266         Ensure O(n) worst-case complexity of mbsstr.
44267         * lib/mbsstr.c: Include stdbool.h.
44268         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
44269         functions.
44270         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
44271         bookkeeping indicates that it's worth it.
44272         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
44273
44274         * modules/mbsstr-tests: New file.
44275         * tests/test-mbsstr1.c: New file.
44276         * tests/test-mbsstr2.sh: New file.
44277         * tests/test-mbsstr2.c: New file.
44278         * tests/test-mbsstr3.sh: New file.
44279         * tests/test-mbsstr3.c: New file.
44280         * m4/locale-fr.m4: New file.
44281
44282 2007-02-11  Bruno Haible  <bruno@clisp.org>
44283
44284         * lib/mbsrchr.c (mbsrchr): Fix bug.
44285
44286         * modules/mbsrchr-tests: New file.
44287         * tests/test-mbsrchr.sh: New file.
44288         * tests/test-mbsrchr.c: New file.
44289
44290 2007-02-11  Bruno Haible  <bruno@clisp.org>
44291
44292         * lib/mbschr.c (mbschr): Fix bug.
44293
44294         * modules/mbschr-tests: New file.
44295         * tests/test-mbschr.sh: New file.
44296         * tests/test-mbschr.c: New file.
44297         * m4/locale-zh.m4: New file.
44298
44299 2007-02-11  Bruno Haible  <bruno@clisp.org>
44300
44301         Support for copying multibyte string iterators.
44302         * lib/mbiter.h: Include <string.h>.
44303         (mbiter_multi_copy): New function.
44304         (mbi_copy): New macro.
44305         * lib/mbuiter.h: Include <string.h>.
44306         (mbuiter_multi_copy): New function.
44307         (mbui_copy): New macro.
44308
44309 2007-02-11  Bruno Haible  <bruno@clisp.org>
44310
44311         New module mbslen.
44312         * modules/mbslen: New file.
44313         * lib/mbslen.c: New file.
44314         * lib/string_.h (mbslen): New declaration.
44315         * m4/mbslen.m4: New file.
44316         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44317         GNULIB_MBSLEN.
44318         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
44319         * MODULES.html.sh (Internationalization functions): Add mbslen.
44320
44321 2007-02-11  Bruno Haible  <bruno@clisp.org>
44322
44323         Ensure O(n) worst-case complexity of strcasestr substitute.
44324         * lib/strcasestr.c: Include stdbool.h.
44325         (knuth_morris_pratt): New function.
44326         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
44327         bookkeeping indicates that it's worth it.
44328         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
44329
44330         * modules/strcasestr-tests: New file.
44331         * tests/test-strcasestr.c: New file.
44332
44333 2007-02-11  Bruno Haible  <bruno@clisp.org>
44334
44335         Ensure O(n) worst-case complexity of c_strcasestr.
44336         * lib/c-strcasestr.c: Include stdbool.h, string.h.
44337         (knuth_morris_pratt): New function.
44338         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
44339         the bookkeeping indicates that it's worth it.
44340         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
44341
44342         * modules/c-strcasestr-tests: New file.
44343         * tests/test-c-strcasestr.c: New file.
44344
44345 2007-02-11  Bruno Haible  <bruno@clisp.org>
44346
44347         Ensure O(n) worst-case complexity of c_strstr.
44348         * lib/c-strstr.c: Include stdbool.h, string.h.
44349         (knuth_morris_pratt): New function.
44350         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
44351         bookkeeping indicates that it's worth it.
44352         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
44353
44354         * lib/c-strstr.c: Complete rewrite for maintainability.
44355
44356         * modules/c-strstr-tests: New file.
44357         * tests/test-c-strstr.c: New file.
44358
44359 2007-02-11  Bruno Haible  <bruno@clisp.org>
44360
44361         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
44362         5.2.1 and earlier, whereby \055 was treated just like the range
44363         delimiter '-'.
44364         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
44365
44366 2007-02-08  Bruno Haible  <bruno@clisp.org>
44367
44368         * modules/regex (Depends-on): Add stdbool.
44369         Reported by Dalibor Topic <robilad@kaffe.org>.
44370
44371 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
44372
44373         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
44374         Prefer returning from main to exiting from it.
44375         Remove unnecessary parens after sizeof.
44376
44377 2007-02-05  Bruno Haible  <bruno@clisp.org>
44378
44379         New module mbssep.
44380         * modules/mbssep: New file.
44381         * lib/mbssep.c: New file.
44382         * lib/string_.h (strsep): Add a conditional link warning.
44383         (mbssep): New declaration.
44384         * m4/mbssep.m4: New file.
44385         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44386         GNULIB_MBSSEP.
44387         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
44388         * MODULES.html.sh (Internationalization functions): Add mbssep.
44389
44390 2007-02-05  Bruno Haible  <bruno@clisp.org>
44391
44392         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
44393         Optimize search in case of 1 delimiter.
44394
44395 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
44396
44397         * lib/acl.h: Include sys/types.h before sys/acl.h.
44398
44399 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
44400
44401         Merge upstream fix for glibc bugzilla #3957:
44402
44403         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
44404
44405         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
44406         bit for RE_HAT_LISTS_NOT_NEWLINE.
44407         (build_charclass_op): Remove bogus comment.
44408
44409 2007-02-05  Simon Josefsson  <simon@josefsson.org>
44410
44411         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
44412
44413 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
44414
44415         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
44416         * lib/memmem.c [!defined _LIBC]: Include config.h.
44417
44418 2007-02-04  Bruno Haible  <bruno@clisp.org>
44419
44420         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
44421         warning message.
44422
44423 2007-02-04  Bruno Haible  <bruno@clisp.org>
44424
44425         New module mbstok_r.
44426         * modules/mbstok_r: New file.
44427         * lib/mbstok_r.c: New file.
44428         * lib/string_.h (strtok_r): Change argument names to match the
44429         comments. Add a conditional link warning.
44430         (mbstok_r): New declaration.
44431         * m4/mbstok_r.m4: New file.
44432         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44433         GNULIB_MBSTOK_R.
44434         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
44435         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
44436
44437 2007-02-04  Bruno Haible  <bruno@clisp.org>
44438
44439         New module mbsspn.
44440         * modules/mbsspn: New file.
44441         * lib/mbsspn.c: New file.
44442         * lib/string_.h (strspn): Add a conditional link warning.
44443         (mbsspn): New declaration.
44444         * m4/mbsspn.m4: New file.
44445         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44446         GNULIB_MBSSPN.
44447         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
44448         * MODULES.html.sh (Internationalization functions): Add mbsspn.
44449
44450 2007-02-04  Bruno Haible  <bruno@clisp.org>
44451
44452         New module mbspbrk.
44453         * modules/mbspbrk: New file.
44454         * lib/mbspbrk.c: New file.
44455         * lib/string_.h (strpbrk): Add a conditional link warning.
44456         (mbspbrk): New declaration.
44457         * m4/mbspbrk.m4: New file.
44458         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44459         GNULIB_MBSPBRK.
44460         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
44461         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
44462
44463 2007-02-04  Bruno Haible  <bruno@clisp.org>
44464
44465         New module mbscspn.
44466         * modules/mbscspn: New file.
44467         * lib/mbscspn.c: New file.
44468         * lib/string_.h (strcspn): Add a conditional link warning.
44469         (mbscspn): New declaration.
44470         * m4/mbscspn.m4: New file.
44471         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44472         GNULIB_MBSCSPN.
44473         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
44474         * MODULES.html.sh (Internationalization functions): Add mbscspn.
44475
44476 2007-02-04  Bruno Haible  <bruno@clisp.org>
44477
44478         New module mbscasestr, reduced goal of strcasestr.
44479         * modules/mbscasestr: New file.
44480         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
44481         (mbscasestr): Renamed from strcasestr.
44482         * lib/strcasestr.c: Don't include mbuiter.h.
44483         (strcasestr): Remove support for multibyte locales.
44484         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
44485         Change the conditional link warning.
44486         (mbscasestr): New declaration.
44487         * m4/mbscasestr.m4: New file.
44488         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
44489         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
44490         REPLACE_STRCASESTR.
44491         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
44492         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
44493         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
44494         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
44495         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
44496         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
44497         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
44498         (Depends-on): Remove mbuiter.
44499         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
44500
44501 2007-02-04  Bruno Haible  <bruno@clisp.org>
44502
44503         Simplify handling of strncasecmp.
44504         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
44505         the conditional link warning.
44506         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
44507         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
44508         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
44509         * modules/strcase (configure.ac): Don't invoke
44510         gl_STRING_MODULE_INDICATOR.
44511         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
44512
44513 2007-02-04  Bruno Haible  <bruno@clisp.org>
44514
44515         New module mbscasecmp, reduced goal of strcasecmp.
44516         * modules/mbscasecmp: New file.
44517         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
44518         (mbscasecmp): Renamed from strcasecmp.
44519         * lib/strcasecmp.c: Don't include mbuiter.h.
44520         (strcasecmp): Remove support for multibyte locales.
44521         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
44522         Change the conditional link warning.
44523         (mbscasecmp): New declaration.
44524         * m4/mbscasecmp.m4: New file.
44525         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
44526         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
44527         REPLACE_STRCASECMP.
44528         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
44529         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44530         GNULIB_MBSCASECMP.
44531         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
44532         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
44533         * modules/strcase (Files): Remove m4/mbrtowc.m4.
44534         (Depends-on): Remove mbuiter.
44535         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
44536
44537 2007-02-04  Bruno Haible  <bruno@clisp.org>
44538
44539         New module mbsstr. Remove module strstr.
44540         * modules/mbsstr: New file.
44541         * modules/strstr: Remove file.
44542         * lib/mbsstr.c: Renamed from lib/strstr.c.
44543         (mbsstr): Renamed from strstr.
44544         * lib/string_.h (strstr): Remove declaration. Change the conditional
44545         link warning.
44546         (mbsstr): New declaration.
44547         * m4/mbsstr.m4: New file.
44548         * m4/strstr.m4: Remove file.
44549         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
44550         REPLACE_STRSTR.
44551         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
44552         Don't initialize GNULIB_STRSTR.
44553         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
44554         substitute GNULIB_STRSTR and REPLACE_STRSTR.
44555         * MODULES.html.sh (Internationalization functions): Add mbsstr.
44556         (Support for systems lacking ANSI C 89): Remove strstr.
44557
44558 2007-02-04  Bruno Haible  <bruno@clisp.org>
44559
44560         New module mbsrchr.
44561         * modules/mbsrchr: New file.
44562         * lib/mbsrchr.c: New file.
44563         * lib/string_.h (strrchr): Add a conditional link warning.
44564         (mbsrchr): New declaration.
44565         * m4/mbsrchr.m4: New file.
44566         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44567         GNULIB_MBSRCHR.
44568         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
44569         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
44570
44571 2007-02-04  Bruno Haible  <bruno@clisp.org>
44572
44573         New module mbschr.
44574         * modules/mbschr: New file.
44575         * lib/mbschr.c: New file.
44576         * lib/string_.h (strchr): Add a conditional link warning.
44577         (mbschr): New declaration.
44578         * m4/mbschr.m4: New file.
44579         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
44580         GNULIB_MBSCHR.
44581         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
44582         * MODULES.html.sh (Internationalization functions): Add mbschr.
44583
44584 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
44585
44586         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
44587
44588         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
44589
44590 2007-02-04  Bruno Haible  <bruno@clisp.org>
44591
44592         New module description section 'configure.ac-early'.
44593         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
44594         (func_get_autoconf_early_snippet): New function.
44595         (func_import, func_create_testdir): Use it. Remove special cases for
44596         modules 'extensions' and 'lock'.
44597         * modules/extensions (configure.ac-early): Require
44598         gl_USE_SYSTEM_EXTENSIONS.
44599         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
44600
44601 2007-02-04  Bruno Haible  <bruno@clisp.org>
44602
44603         Make use of gcj-4.3's -fsource and -ftarget option.
44604         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
44605         and if so try the options -fsource and -ftarget.
44606         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
44607         source_version, ftarget_option, target_version arguments.
44608         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
44609         (is_envjavac_oldgcj_14_14_usable): Renamed from
44610         is_envjavac_gcj_14_14_usable.
44611         (is_envjavac_oldgcj_14_13_usable): Renamed from
44612         is_envjavac_gcj_14_13_usable.
44613         (is_gcj_present): Update.
44614         (is_gcj_43, is_gcj43_usable): New functions.
44615         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
44616         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
44617         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
44618         try the options -fsource and -ftarget.
44619
44620 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
44621
44622         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
44623         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
44624         larger value.
44625
44626 2007-02-03  Jim Meyering  <jim@meyering.net>
44627
44628         Give tools a better chance to allocate space for very large buffers.
44629         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
44630
44631         Make pwd and readlink work also when run with an unreadable parent dir
44632         on systems with openat support.
44633         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
44634         provided getcwd function, even when we have openat support.
44635         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
44636
44637 2007-02-02  Bruno Haible  <bruno@clisp.org>
44638
44639         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
44640         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
44641         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
44642         portability problems if one of these functions is only used on specific
44643         platforms.
44644         Reported by Paul Eggert.
44645
44646 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
44647
44648         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
44649         is causing more trouble than it's curing.
44650         * lib/regex_internal.h (__mempcpy): Remove.
44651         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
44652         (and make the code a tad smaller to boot).
44653         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
44654
44655 2007-02-02  Jim Meyering  <jim@meyering.net>
44656
44657         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
44658         section, not in the Makefile.am: one.
44659
44660 2007-02-02  Eric Blake  <ebb9@byu.net>
44661
44662         * lib/strchrnul.c: Always include config.h first.
44663
44664         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
44665         gnulib strstr is not necessary here.
44666
44667 2007-02-02  Simon Josefsson  <simon@josefsson.org>
44668
44669         * m4/socklen.m4: Fix typo.
44670
44671 2007-02-02  Eric Blake  <ebb9@byu.net>
44672
44673         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
44674         * modules/netinet_in (Makefile.am): Likewise.
44675
44676 2007-02-01  Bruno Haible  <bruno@clisp.org>
44677
44678         * lib/string_.h (GL_LINK_WARNING): New macro.
44679         (strcasecmp, strstr, strcasestr): If provided by the system,
44680         conditionally define as a macro that leads to a warning instead of to
44681         an error.
44682         (strncasecmp): Conditionally define as a macro that leads to a warning.
44683
44684 2007-02-01  Karl Berry  <karl@gnu.org>
44685
44686         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
44687
44688 2007-02-01  Bruno Haible  <bruno@clisp.org>
44689
44690         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
44691         renamings.
44692
44693 2007-02-01  Eric Blake  <ebb9@byu.net>
44694
44695         * modules/regex (Depends-on): Revert dependence on mempcpy.
44696         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
44697         module's definition of mempcpy.
44698         Reported by Paul Eggert.
44699
44700 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
44701
44702         * lib/string_.h: If the gnulib module XYZ is not present, undefine
44703         the symbol XYZ before redefining it.  This fixes a problem with
44704         programs that don't use XYZ, when compiled on systems that define
44705         XYZ to something else.
44706
44707 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
44708
44709         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
44710         occurs when "mkdir -m foo" creates a setgid directory that is (1)
44711         writeable to group or other and (2) is intended to have a special
44712         mode bit that is set or cleared.  In such a case, the directory
44713         should be neither group- nor other-writeable until the special
44714         mode bits are right.
44715
44716 2007-01-31  Eric Blake  <ebb9@byu.net>
44717
44718         * modules/mountlist (Depends-on): Add strstr.
44719
44720         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
44721         bug.
44722         * modules/string (Makefile.am): Remove redundant replacement.
44723         * modules/regex (Depends-on): Add mempcpy.
44724
44725 2007-01-31  Bruno Haible  <bruno@clisp.org>
44726
44727         New module description field 'Link'.
44728         * gnulib-tool (func_usage): Document --extract-link-directive.
44729         (sed_extract_prog): Recognize 'Link' directive.
44730         (func_get_link_directive): New function.
44731         (func_import): Show summary of link directives.
44732         Handle --extract-link-directive option.
44733         * modules/acl (Link): New section.
44734         * modules/clock-time (Link): New section.
44735         * modules/euidaccess (Link): New section.
44736         * modules/gettext (Link): New section.
44737         * modules/iconv (Link): New section.
44738         * modules/lock (Link): New section.
44739         * modules/nanosleep (Link): New section.
44740         * modules/readline (Link): New section.
44741
44742 2007-01-27  Bruno Haible  <bruno@clisp.org>
44743
44744         Enforce the use of gnulib modules for unportable <string.h> functions.
44745         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
44746         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
44747         (gl_HEADER_STRING_H_BODY): Require it.
44748         * lib/string_.h: If the gnulib module XYZ is not present, redefine
44749         the symbol XYZ to one that gives a link error.
44750         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
44751         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
44752         * modules/mempcpy (configure.ac): Likewise.
44753         * modules/memrchr (configure.ac): Likewise.
44754         * modules/stpcpy (configure.ac): Likewise.
44755         * modules/stpncpy (configure.ac): Likewise.
44756         * modules/strcase (configure.ac): Likewise.
44757         * modules/strcasestr (configure.ac): Likewise.
44758         * modules/strchrnul (configure.ac): Likewise.
44759         * modules/strdup (configure.ac): Likewise.
44760         * modules/strndup (configure.ac): Likewise.
44761         * modules/strnlen (configure.ac): Likewise.
44762         * modules/strpbrk (configure.ac): Likewise.
44763         * modules/strsep (configure.ac): Likewise.
44764         * modules/strstr (configure.ac): Likewise.
44765         * modules/strtok_r (configure.ac): Likewise.
44766
44767 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
44768
44769         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
44770
44771 2007-01-30  Jim Meyering  <jim@meyering.net>
44772
44773         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
44774
44775 2007-01-29  Bruno Haible  <bruno@clisp.org>
44776
44777         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
44778         * lib/execute.c: Likewise.
44779         * lib/pipe.c: Likewise.
44780         * lib/printf-args.h: Likewise.
44781         * lib/printf-args.c: Likewise.
44782         * lib/printf-parse.c: Likewise.
44783         * lib/vasnprintf.c: Likewise.
44784
44785 2007-01-29  Eric Blake  <ebb9@byu.net>
44786
44787         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
44788         declaration.
44789
44790 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
44791
44792         * lib/strptime.h (strptime): Use 'restrict' for args where
44793         POSIX requires this.
44794         * lib/strptime.c (strptime): Likewise.
44795         Change license notice from LGPL to GPL, since gnulib-tool will
44796         change this as needed.
44797         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
44798         defined.
44799         Include "strptime.h" first, to check interface.
44800         Do not #undef _LIBC and _NL_CURRENT.
44801         Do not include <stdlib.h>; no longer needed.
44802         Include "time_r.h" and declare ptime_locale_status
44803         only if _LIBC is not defined.
44804         (__P): Remove unused macro.
44805         (match_string): Bring back glibc version, but use it only if _LIBC
44806         is defined.
44807         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
44808         Remove unnecessary assertion and abort() call.
44809         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
44810         * m4/strptime.m4: Fix serial number comment.
44811         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
44812         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
44813         (Depends-on): Add time_r.
44814
44815 2007-01-29  Bruno Haible  <bruno@clisp.org>
44816
44817         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
44818         strptime.
44819         * modules/strptime (Depends-on): Add stdbool.
44820         * lib/strptime.h: Include <time.h> always. Add comments.
44821
44822 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
44823
44824         * modules/strptime: New file.
44825         * lib/strptime.h: New file.
44826         * lib/strptime.c: New file.
44827         * m4/strptime.m4: New file.
44828
44829 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
44830
44831         * MODULES.html.sh: New module mpsort.
44832         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
44833
44834         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
44835         a circularity problem with HP-UX ia64 reported by Bob Proulx in
44836         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
44837         All uses changed.
44838         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
44839         All uses changed.
44840         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
44841         to _Restrict_.
44842         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
44843         the parameter matches the prototype.
44844
44845 2007-01-28  Jim Meyering  <jim@meyering.net>
44846
44847         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
44848         sys/time.h here, reverting that part of the previous patch:
44849         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
44850
44851 2007-01-28  Bruno Haible  <bruno@clisp.org>
44852
44853         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
44854         value of $(SYS_TIME_H).
44855         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
44856         remove it conditionally, too. [added by Jim Meyering]
44857         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
44858         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
44859         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
44860         GETTIMEOFDAY_REPLACEMENT to 1.
44861
44862 2007-01-28  Bruno Haible  <bruno@clisp.org>
44863
44864         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
44865         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
44866         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
44867         Set UNISTD_H instead of UNISTD_H2.
44868         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
44869
44870 2007-01-28  Bruno Haible  <bruno@clisp.org>
44871
44872         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
44873         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
44874
44875 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44876
44877         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
44878         (func_create_testdir): Ensure C locale for `grep' and `tr'
44879         character ranges.
44880         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
44881         ACLOCAL_AMFLAGS parsing state machine.
44882
44883 2007-01-27  Bruno Haible  <bruno@clisp.org>
44884
44885         * modules/unistr/base: Update.
44886
44887 2007-01-27  Bruno Haible  <bruno@clisp.org>
44888
44889         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
44890         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
44891         * modules/unistr/u32-mbtouc-unsafe: Renamed from
44892         modules/unistr/u32-mbtouc.
44893         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
44894         * lib/unistr.h: Update.
44895         * lib/linebreak.c: Update.
44896         * modules/unistr/u32-mbtouc: Renamed from
44897         modules/unistr/u32-mbtouc-safe.
44898         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
44899         * lib/unistr.h: Update.
44900         * lib/unistr/u32-to-u8.c: Update.
44901         * lib/unistr/u32-to-u16.c: Update.
44902
44903 2007-01-27  Bruno Haible  <bruno@clisp.org>
44904
44905         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
44906         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
44907         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
44908         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
44909         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
44910         * modules/unistr/u16-mbtouc-unsafe: Renamed from
44911         modules/unistr/u16-mbtouc.
44912         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
44913         * lib/unistr.h: Update.
44914         * lib/linebreak.c: Update.
44915         * modules/linebreak: Update.
44916         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
44917         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
44918         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
44919         * modules/unistr/u16-mbtouc: Renamed from
44920         modules/unistr/u16-mbtouc-safe.
44921         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
44922         * lib/unistr.h: Update.
44923         * lib/unistr/u16-to-u8.c: Update.
44924         * modules/unistr/u16-to-u8: Update.
44925         * lib/unistr/u16-to-u32.c: Update.
44926         * modules/unistr/u16-to-u32: Update.
44927
44928 2007-01-27  Bruno Haible  <bruno@clisp.org>
44929
44930         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
44931         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
44932         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
44933         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
44934         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
44935         * modules/unistr/u8-mbtouc-unsafe: Renamed from
44936         modules/unistr/u8-mbtouc.
44937         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
44938         * lib/unistr.h: Update.
44939         * lib/striconveh.c: Update.
44940         * modules/striconveh: Update.
44941         * lib/linebreak.c: Update.
44942         * modules/linebreak: Update.
44943         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
44944         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
44945         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
44946         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
44947         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
44948         * lib/unistr.h: Update.
44949         * lib/striconveh.c: Update.
44950         * modules/striconveh: Update.
44951         * lib/unistr/u8-to-u16.c: Update.
44952         * modules/unistr/u8-to-u16: Update.
44953         * lib/unistr/u8-to-u32.c: Update.
44954         * modules/unistr/u8-to-u32: Update.
44955
44956 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
44957
44958         Sync from Libtool.
44959         * lib/argz.c: Do not include strings.h nor memory.h, include
44960         string.h unconditionally.  Patch by Simon Josefsson.
44961
44962 2007-01-27  Bruno Haible  <bruno@clisp.org>
44963
44964         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
44965         from gl_HEADER_STRING_H_BODY.
44966         (gl_HEADER_STRING_H_BODY): Require it.
44967         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
44968         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
44969         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
44970         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
44971         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
44972         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
44973         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
44974         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
44975         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
44976         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
44977         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
44978         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
44979         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
44980         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
44981         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
44982
44983 2007-01-27  Bruno Haible  <bruno@clisp.org>
44984
44985         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
44986         check_PROGRAMS into noinst_PROGRAMS.
44987         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
44988         check_PROGRAMS in this case.
44989         (func_import): Set for_test to false.
44990         (func_create_testdir): Set for_test to true.
44991
44992 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
44993             Bruno Haible  <bruno@clisp.org>
44994
44995         * modules/strcasestr (Files): Remove lib/strcasestr.h.
44996         (Depends-on): Add string.
44997         (Includes): Use <string.h> instead of strcasestr.h.
44998         * modules/string (Makefile.am): Also substitute the value of
44999         REPLACE_STRCASESTR.
45000         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
45001         assume strcasestr is declared in <string.h> not <strings.h>. Also
45002         set REPLACE_STRCASESTR.
45003         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
45004         REPLACE_STRCASESTR.
45005         * lib/strcasestr.h: Remove file.
45006         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
45007         * lib/string_.h (strcasestr): New declaration.
45008
45009 2007-01-27  Bruno Haible  <bruno@clisp.org>
45010
45011         * lib/string_.h: Use 'extern'.
45012
45013 2007-01-27  Jim Meyering  <jim@meyering.net>
45014
45015         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
45016         of set-but-not-used local, "q".
45017
45018         * lib/mempcpy.c: Include <config.h> before <string.h>.
45019         This fixes a compilation error on HP-UX, due to the system's
45020         "restrict"-using mempcpy prototype.
45021
45022 2007-01-26  Bruno Haible  <bruno@clisp.org>
45023
45024         Small optimization.
45025         * lib/javacomp.c: Include c-strstr.h.
45026          (is_envjavac_gcj): Use c_strstr instead of strstr.
45027         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
45028
45029 2007-01-26  Bruno Haible  <bruno@clisp.org>
45030
45031         * MODULES.html.sh (Unicode string functions): Add the new modules.
45032
45033         * modules/uniconv/u32-strconv-to-locale: New file.
45034         * lib/uniconv/u32-strconv-to-locale.c: New file.
45035
45036         * modules/uniconv/u16-strconv-to-locale: New file.
45037         * lib/uniconv/u16-strconv-to-locale.c: New file.
45038
45039         * modules/uniconv/u8-strconv-to-locale: New file.
45040         * lib/uniconv/u8-strconv-to-locale.c: New file.
45041
45042         * modules/uniconv/u32-strconv-from-locale: New file.
45043         * lib/uniconv/u32-strconv-from-locale.c: New file.
45044
45045         * modules/uniconv/u16-strconv-from-locale: New file.
45046         * lib/uniconv/u16-strconv-from-locale.c: New file.
45047
45048         * modules/uniconv/u8-strconv-from-locale: New file.
45049         * lib/uniconv/u8-strconv-from-locale.c: New file.
45050
45051         * modules/uniconv/u32-strconv-to-enc: New file.
45052         * lib/uniconv/u32-strconv-to-enc.c: New file.
45053         * modules/uniconv/u32-strconv-to-enc-tests: New file.
45054         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
45055
45056         * modules/uniconv/u16-strconv-to-enc: New file.
45057         * lib/uniconv/u16-strconv-to-enc.c: New file.
45058         * lib/uniconv/u-strconv-to-enc.h: New file.
45059         * modules/uniconv/u16-strconv-to-enc-tests: New file.
45060         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
45061
45062         * modules/uniconv/u8-strconv-to-enc: New file.
45063         * lib/uniconv/u8-strconv-to-enc.c: New file.
45064         * modules/uniconv/u8-strconv-to-enc-tests: New file.
45065         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
45066
45067         * modules/uniconv/u32-strconv-from-enc: New file.
45068         * lib/uniconv/u32-strconv-from-enc.c: New file.
45069         * modules/uniconv/u32-strconv-from-enc-tests: New file.
45070         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
45071
45072         * modules/uniconv/u16-strconv-from-enc: New file.
45073         * lib/uniconv/u16-strconv-from-enc.c: New file.
45074         * modules/uniconv/u16-strconv-from-enc-tests: New file.
45075         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
45076
45077         * modules/uniconv/u8-strconv-from-enc: New file.
45078         * lib/uniconv/u8-strconv-from-enc.c: New file.
45079         * lib/uniconv/u-strconv-from-enc.h: New file.
45080         * modules/uniconv/u8-strconv-from-enc-tests: New file.
45081         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
45082
45083         * modules/uniconv/u32-conv-from-enc: New file.
45084         * lib/uniconv/u32-conv-from-enc.c: New file.
45085         * modules/uniconv/u32-conv-from-enc-tests: New file.
45086         * tests/uniconv/test-u32-conv-from-enc.c: New file.
45087
45088         * modules/uniconv/u16-conv-from-enc: New file.
45089         * lib/uniconv/u16-conv-from-enc.c: New file.
45090         * lib/uniconv/u-conv-from-enc.h: New file.
45091         * modules/uniconv/u16-conv-from-enc-tests: New file.
45092         * tests/uniconv/test-u16-conv-from-enc.c: New file.
45093
45094         * modules/uniconv/u8-conv-from-enc: New file.
45095         * lib/uniconv/u8-conv-from-enc.c: New file.
45096         * modules/uniconv/u8-conv-from-enc-tests: New file.
45097         * tests/uniconv/test-u8-conv-from-enc.c: New file.
45098
45099         * modules/uniconv/base: New file.
45100         * lib/uniconv.h: New file.
45101
45102 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
45103
45104         * doc/gnulib-tool.texi (Initial import): Update to match current
45105         behavior with strdup module.
45106         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
45107         * lib/memmem.h: Remove; all uses removed.  This is now done
45108         by <string.h>.
45109         * lib/mempcpy.h: Likewise.
45110         * lib/memrchr.h: Likewise.
45111         * lib/stpcpy.h: Likewise.
45112         * lib/stpncpy.h: Likewise.
45113         * lib/strcase.h: Likewise.
45114         * lib/strchrnul.h: Likewise.
45115         * lib/strdup.h: Likewise.
45116         * lib/strndup.h: Likewise.
45117         * lib/strnlen.h: Likewise.
45118         * lib/strpbrk.h: Likewise.
45119         * lib/strsep.h: Likewise.
45120         * lib/strstr.h: Likewise.
45121         * lib/strtok_r.h: Likewise.
45122         * lib/string_.h: New file.
45123         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
45124         Rely on <string.h> instead.
45125         * lib/canon-host.c: Likewise.
45126         * lib/chdir-long.c: Likewise.
45127         * lib/concatpath.c: Likewise.
45128         * lib/exclude.c: Likewise.
45129         * lib/fchdir.c: Likewise.
45130         * lib/getaddrinfo.c: Likewise.
45131         * lib/getcwd.c: Likewise.
45132         * lib/getsubopt.c: Likewise.
45133         * lib/glob.c: Likewise.
45134         * lib/hard-locale.c: Likewise.
45135         * lib/iconvme.c: Likewise.
45136         * lib/javacomp.c: Likewise.
45137         * lib/mempcpy.c: Likewise.
45138         * lib/memrchr.c: Likewise.
45139         * lib/regex_internal.h: Likewise.
45140         * lib/stpncpy.c: Likewise.
45141         * lib/strcasecmp.c: Likewise.
45142         * lib/strchrnul.c: Likewise.
45143         * lib/strdup.c: Likewise.
45144         * lib/striconv.c: Likewise.
45145         * lib/striconveh.c: Likewise.
45146         * lib/striconveha.c: Likewise.
45147         * lib/strncasecmp.c: Likewise.
45148         * lib/strndup.c: Likewise.
45149         * lib/strnlen.c: Likewise.
45150         * lib/strsep.c: Likewise.
45151         * lib/strstr.c: Likewise.
45152         * lib/strtok_r.c: Likewise.
45153         * lib/userspec.c: Likewise.
45154         * lib/w32spawn.h: Likewise.
45155         * lib/xstrndup.c: Likewise.
45156         * lib/mountlist.c (strstr): Remove decl.
45157         * m4/string_h.m4: New file.
45158         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
45159         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
45160         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
45161         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
45162         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
45163         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
45164         Set REPLACE_STRCASECMP if necessary.
45165         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
45166         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
45167         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
45168         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
45169         HAVE_DECL_STRDUP if necessary.
45170         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
45171         since gl_FUNC_STRNDUP does that now.
45172         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
45173         Check for decl here...
45174         (gl_PREREQ_STRNLEN): ... not here.
45175         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
45176         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
45177         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
45178         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
45179         necessary.
45180         * modules/string: New file.
45181         * modules/memmem (Files): Remove special-purpose include file.
45182         (Depends-on): Add string.
45183         (Include): Include <string.h>, not the removed file.
45184         * modules/mempcpy: Likewise.
45185         * modules/memrchr: Likewise.
45186         * modules/stpcpy: Likewise.
45187         * modules/stpncpy: Likewise.
45188         * modules/strcase: Likewise.
45189         * modules/strchrnul: Likewise.
45190         * modules/strdup: Likewise.
45191         * modules/strndup: Likewise.
45192         * modules/strnlen: Likewise.
45193         * modules/strpbrk: Likewise.
45194         * modules/strsep: Likewise.
45195         * modules/strstr: Likewise.
45196         * modules/strtok_r: Likewise.
45197         * tests/test-dirname.c: Don't include "strdup.h", since
45198         <string.h> now suffices.
45199         * tests/test-memmem.c: Don't include "memmem.h", since
45200         <string.h> now suffices.
45201
45202 2007-01-25  Bruno Haible  <bruno@clisp.org>
45203
45204         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
45205         *resultp is 0.
45206
45207         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
45208         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
45209         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
45210         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
45211
45212         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
45213         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
45214         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
45215         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
45216         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
45217         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
45218
45219 2007-01-24  Bruno Haible  <bruno@clisp.org>
45220
45221         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
45222         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
45223         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
45224         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
45225         gl_FUNC_FTS_CORE.
45226         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
45227         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
45228         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
45229         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
45230         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
45231         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
45232         gl_FUNC_FCHOWNAT.
45233         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
45234         gl_FUNC_STRFTIME.
45235         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
45236         Reported by Ralf Wildenhues.
45237
45238 2007-01-24  Bruno Haible  <bruno@clisp.org>
45239
45240         Drop AC_REQUIRE calls that are redundant with the module dependencies.
45241         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
45242         gl_GETADDRINFO.
45243         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
45244         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
45245         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
45246
45247 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
45248
45249         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
45250         Don't use 'exit'; just return from 'main'.
45251         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
45252
45253         * lib/fnmatch_.h: Readjust white space and comments to match
45254         glibc, to avoid spurious diffs.
45255
45256 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
45257
45258         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
45259         2004-12-01 change by Jakub Jelinek, since this code won't compile
45260         if !LIBC.  Problem reported by Bob Proulx.
45261
45262 2007-01-23  Bruno Haible  <bruno@clisp.org>
45263
45264         * lib/striconveh.c: Include c-strcaseeq.h.
45265         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
45266         * modules/striconveh (Depends-on): Add c-strcaseeq.
45267
45268 2007-01-23  Bruno Haible  <bruno@clisp.org>
45269
45270         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
45271
45272         * modules/c-strcaseeq: New file.
45273         * lib/c-strcaseeq.h: New file.
45274
45275         * modules/streq: New file.
45276         * lib/streq.h: New file.
45277
45278 2007-01-23  Bruno Haible  <bruno@clisp.org>
45279
45280         * modules/striconveha-tests: New file.
45281         * tests/test-striconveha.c: New file.
45282
45283         * lib/striconveha.h: Include <stdbool.h>.
45284         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
45285         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
45286         (mem_iconveha_notranslit): Renamed from mem_iconveha.
45287         (mem_iconveha): New function.
45288         (str_iconveha_notranslit): Renamed from str_iconveha.
45289         (str_iconveha): New function.
45290         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
45291         c-strcase.
45292
45293 2007-01-23  Bruno Haible  <bruno@clisp.org>
45294
45295         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
45296         encodings without forgiving before trying any encoding with handler.
45297         (str_iconveha): Try all encodings without forgiving before trying any
45298         encoding with handler.
45299
45300 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
45301
45302         Import the following changes from libc.
45303
45304         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
45305
45306         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
45307
45308         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
45309
45310         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
45311         normal_bracket label.
45312
45313         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
45314
45315         [BZ #361]
45316         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
45317         to normal_bracket after fetching the next character.
45318
45319 2007-01-22  Bruno Haible  <bruno@clisp.org>
45320
45321         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
45322         argument.
45323         * lib/striconveh.c (iconv_carefully_1): New function.
45324         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
45325         argument.
45326         (str_cd_iconveh): Update.
45327         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
45328         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
45329         * tests/test-striconveh.c (MAGIC): New macro.
45330         (new_offsets): New function.
45331         (main): Test call with and without offsets.
45332
45333 2007-01-22  Bruno Haible  <bruno@clisp.org>
45334
45335         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
45336         * modules/sys_select (Makefile.am): Likewise.
45337         * modules/sys_socket (Makefile.am): Likewise.
45338         * modules/sys_time (Makefile.am): Likewise.
45339
45340 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
45341
45342         * modules/gettimeofday (License): Change from GPL to LGPL, since
45343         gettimeofday is a library function.
45344
45345 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45346
45347         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
45348
45349 2007-01-21  Bruno Haible  <bruno@clisp.org>
45350
45351         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
45352
45353 2007-01-21  Bruno Haible  <bruno@clisp.org>
45354
45355         * modules/striconveha: New file.
45356         * lib/striconveha.h: New file.
45357         * lib/striconveha.c: New file.
45358         * MODULES.html.sh (Internationalization functions): Add striconveha.
45359         * lib/striconv.c (str_iconv): Optimize the case of an empty input
45360         string.
45361         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
45362
45363 2007-01-21  Bruno Haible  <bruno@clisp.org>
45364
45365         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
45366         * lib/striconveh.c (str_iconveh): Likewise.
45367
45368 2007-01-21  Bruno Haible  <bruno@clisp.org>
45369
45370         * lib/striconveh.h (mem_iconveh): New declaration.
45371         * lib/striconveh.c (mem_iconveh): New function.
45372         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
45373
45374 2007-01-21  Bruno Haible  <bruno@clisp.org>
45375
45376         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
45377
45378         * lib/striconveh.h (mem_cd_iconveh): Change specification.
45379         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
45380         original result buffer.
45381         (str_cd_iconveh): Update.
45382         * tests/test-striconveh.c (main): Update.
45383
45384         * lib/striconv.h (mem_cd_iconv): Change specification.
45385         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
45386         result buffer.
45387         (str_cd_iconv): Update.
45388         * tests/test-striconv.c (main): Update.
45389
45390 2007-01-21  Bruno Haible  <bruno@clisp.org>
45391
45392         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
45393
45394 2007-01-20  Jim Meyering  <jim@meyering.net>
45395
45396         * lib/userspec.c (parse_with_separator): If a user or group string
45397         starts with "+", skip the corresponding name-to-ID look-up, since
45398         such a look-up must fail: user and group names may not include "+".
45399
45400 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
45401
45402         * lib/poll.c: Include sys/time.h and time.h unconditionally,
45403         since we now assume the sys_time module.
45404         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
45405         check for sys/time.h; no longer needed.
45406         * modules/poll (Depends-on): Depend on sys_time.
45407
45408 2007-01-18  Bruno Haible  <bruno@clisp.org>
45409
45410         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
45411         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
45412
45413         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
45414         gettimeofday.
45415
45416         * tests/test-gettimeofday.c: Include <time.h>.
45417         (dummy): Remove variable.
45418
45419         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
45420         gl_HEADER_SYS_TIME_H.
45421         (gl_HEADER_SYS_TIME_H): New macro.
45422
45423         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
45424         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
45425         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
45426         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
45427         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
45428         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
45429         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
45430         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
45431         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
45432         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
45433         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
45434
45435         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
45436         last change; it caused a compilation error when cross-compiling to
45437         Cygwin.
45438
45439 2007-01-18  Jim Meyering  <jim@meyering.net>
45440
45441         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
45442         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
45443         than the race-prone "test -d sys || mkdir sys".
45444         (configure.ac): Use AC_PROG_MKDIR_P.
45445         * modules/sys_select: Likewise.
45446         * modules/sys_socket: Likewise.
45447         * modules/sys_time: Likewise.
45448
45449 2007-01-18  Eric Blake  <ebb9@byu.net>
45450
45451         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
45452         replace gettimeofday.
45453         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
45454         name, to avoid infinite recursion.
45455
45456 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
45457
45458         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
45459         module sys_time.
45460         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
45461         assume timespec.h defines struct timeval.
45462         * lib/settime.c: Likewise.
45463         * lib/utimens.c: Likewise.
45464         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
45465         since we now assume the gettimeofday module.
45466         * lib/tempname.c (__gen_tempname): Likewise.
45467         * lib/gettimeofday.h: Remove.
45468         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
45469         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
45470         Include <time.h>, for 'time()'.
45471         (localtime_buffer_addr): Also use this workaround if
45472         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
45473         to simplify the uses.  All uses changed.
45474         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
45475         that #undef is inside {}, and 'const' follows type name consistently.
45476         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
45477         (gettimeofday): Do not use the maximum possible value for
45478         tv->tv_usec, since that might break usages other than ls.c.
45479         Instead, we'll leave ls.c alone.  This undoes today's patch
45480         by Bruno.  Add a compile-time warning for 1s-clock resolution;
45481         we've never observed the problem but might as well keep the
45482         canary.
45483         * lib/nanosleep.c: Include timespec.h first, for interface check.
45484         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
45485         now assume the sys_time module.
45486         * lib/tempname.c: Likewise.
45487         * lib/timespec.h: Likewise.
45488         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
45489         needed.
45490         * lib/strftime.c: Likewise.
45491         * lib/timespec.h: Likewise.
45492         * lib/posixtm.c: Include posixtm.h first, for interface check.
45493         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
45494         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
45495         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
45496         * lib/sys_time_.h: New file.
45497         * lib/timespec.h (struct timespec): Use long int, not long.
45498         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
45499         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
45500         Remove obsolescent call to AC_HEADER_TIME.
45501         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
45502         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
45503         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
45504         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
45505         Likewise.
45506         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
45507         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
45508         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
45509         into the sys_time module.  Check for gettimeofday just once.
45510         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
45511         for gettimeofday signature to just check the signature.  Merely
45512         compile it, since linking doesn't test signature.  Improve test for
45513         whether gettimeofday.o is actually needed.
45514         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
45515         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
45516         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
45517         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
45518         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
45519         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
45520         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
45521         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
45522         than worrying about sys/time.h.
45523         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
45524         Don't bother worrying about TIME_WITH_SYS_TIME.
45525         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
45526         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
45527         * m4/sys_time_h.m4: New file.
45528         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
45529         Don't include sys/time.h.  Return from main rather than exiting.
45530         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
45531         all uses changed.
45532         * modules/gethrxtime (Depends-on): Add sys_time.
45533         * modules/gettime (Depends-on): Likewise.
45534         * modules/gettimeofday (Depends-on): Likewise.
45535         * modules/nanosleep (Depends-on): Likewise.
45536         * modules/settime (Depends-on): Likewise.
45537         * modules/tempname (Depends-on): Likewise.
45538         * modules/utimens (Depends-on): Likewise.
45539         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
45540         (Include:) Change back to <sys/time.h>.
45541         (Maintainer:) Add self.
45542         * modules/sys_time: New file.
45543         * modules/tempname (Depends-on): Add gettimeofday.
45544         * tests/test-gettimeofday.c: Include <sys/time.h>
45545         rather than gettimeofday.h.
45546
45547 2007-01-17  Bruno Haible  <bruno@clisp.org>
45548
45549         * gnulib-tool (func_get_license): Revert last patch. Instead, let
45550         the license default to GPL.
45551         (func_create_testdir): Don't complain if a module is LGPL and its
45552         tests module depends on GPLed modules.
45553
45554 2007-01-17  Bruno Haible  <bruno@clisp.org>
45555
45556         * lib/gettimeofday.c (gettimeofday): Add code for the case
45557         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
45558         maximum possible value for tv->tv_usec, rather than the minimum one.
45559
45560 2005-10-08  Martin Lambers  <marlam@marlam.de>
45561 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
45562 2007-01-16  Bruno Haible  <bruno@clisp.org>
45563
45564         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
45565         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
45566         gl_FUNC_GETTIMEOFDAY.
45567         (Include): Add gettimeofday.h.
45568         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
45569         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
45570         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
45571         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
45572         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
45573         * lib/gettimeofday.h: New file.
45574         * lib/gettimeofday.c: Include <sys/timeb.h>.
45575         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
45576         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
45577         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
45578         fall back on time().
45579
45580         * tests/test-gettimeofday.c: New file.
45581         * modules/gettimeofday-tests: New file.
45582
45583 2007-01-16  Eric Blake  <ebb9@byu.net>
45584
45585         * modules/fnmatch (Depends-on): Depend on wchar.
45586         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
45587         * m4/fnmatch.m4: Likewise.
45588         * modules/mbchar (Makefile.am): Assume <wchar.h>.
45589         * m4/mbchar.m4: Likewise.
45590         * modules/mbswidth (Depends-on): Depend on wchar.
45591         * lib/mbswidth.c: Assume <wchar.h>.
45592         * m4/mbswidth.m4: Likewise.
45593         * modules/quotearg (Depends-on): Depend on wchar.
45594         * lib/quotearg.c: Assume <wchar.h>.
45595         * m4/quotearg.m4: Likewise.
45596         * modules/regex (Depends-on): Depend on wchar.
45597         * lib/regex_internal.h: Assume <wchar.h>.
45598         * m4/regex.m4: Likewise.
45599         * modules/stdint (Depends-on): Depend on wchar.
45600         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
45601         * m4/stdint.m4: Likewise.
45602         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
45603         * modules/strftime (Depends-on): Depend on wchar.
45604         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
45605         * modules/strtol (Depends-on): Depend on wchar.
45606         * lib/strtol.c: Assume <wchar.h>.
45607         * modules/wcwidth (Depends-on): Depend on wchar.
45608         * lib/wcwidth.h: Assume <wchar.h>.
45609         * m4/wcwidth.m4: Likewise.
45610
45611 2007-01-16  Bruno Haible  <bruno@clisp.org>
45612
45613         * modules/csharpexec-script: New, created from...
45614         * modules/csharpexec: ... this.
45615
45616 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
45617
45618         * modules/javaexec-script: New, created from...
45619         * modules/javaexec: ... this.
45620
45621 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45622
45623         * modules/poll (Dependencies): Add sys_select.
45624
45625 2007-01-15  Jim Meyering  <jim@meyering.net>
45626
45627         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
45628         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
45629         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
45630         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
45631
45632 2007-01-15  Bruno Haible  <bruno@clisp.org>
45633
45634         * modules/striconveh: New file.
45635         * lib/striconveh.h: New file.
45636         * lib/striconveh.c: New file.
45637         * MODULES.html.sh (Internationalization functions): Add striconveh.
45638
45639         * modules/striconveh-tests: New file.
45640         * tests/test-striconveh.c: New file.
45641
45642 2007-01-15  Bruno Haible  <bruno@clisp.org>
45643
45644         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
45645         not from GNU libiconv or GNU libc.
45646
45647 2007-01-15  Bruno Haible  <bruno@clisp.org>
45648
45649         * doc/gnulib-intro.texi (Copyright): Explain the different license
45650         terms for module descriptions, autoconf macros, tests, documentation.
45651
45652 2007-01-14  Bruno Haible  <bruno@clisp.org>
45653
45654         * modules/striconv-tests: New file.
45655         * tests/test-striconv.c: New file.
45656
45657 2007-01-14  Bruno Haible  <bruno@clisp.org>
45658
45659         * modules/iconv-tests: New file.
45660         * tests/test-iconv.c: New file.
45661
45662 2007-01-14  Bruno Haible  <bruno@clisp.org>
45663
45664         * gnulib-tool (func_get_license): For test modules, use the license of
45665         the main module.
45666
45667 2007-01-14  Bruno Haible  <bruno@clisp.org>
45668
45669         * modules/iconv (Include): Clarify that <iconv.h> can only be included
45670         if iconv is found to exist.
45671
45672 2007-01-14  Bruno Haible  <bruno@clisp.org>
45673
45674         * modules/c-ctype-tests: New file.
45675         * tests/test-c-ctype.c: New file.
45676
45677 2007-01-14  Bruno Haible  <bruno@clisp.org>
45678
45679         * modules/binary-io-tests: New file.
45680         * tests/test-binary-io.sh: New file.
45681         * tests/test-binary-io.c: New file.
45682
45683 2007-01-14  Bruno Haible  <bruno@clisp.org>
45684
45685         * modules/array-oset-tests: New file.
45686         * tests/test-array_oset.c: New file.
45687
45688 2007-01-14  Bruno Haible  <bruno@clisp.org>
45689
45690         * modules/array-list-tests: New file.
45691         * tests/test-array_list.c: New file.
45692
45693 2007-01-14  Bruno Haible  <bruno@clisp.org>
45694
45695         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
45696         and make.
45697         Reported by Simon Josefsson in
45698         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
45699
45700 2007-01-14  Bruno Haible  <bruno@clisp.org>
45701
45702         * modules/allocsa-tests: New file.
45703         * tests/test-allocsa.c: New file.
45704
45705 2007-01-14  Bruno Haible  <bruno@clisp.org>
45706
45707         * modules/fchdir (Depends-on): Add absolute-header.
45708         * modules/unistd (Depends-on): Likewise.
45709
45710 2006-12-30  Bruno Haible  <bruno@clisp.org>
45711
45712         * modules/fchdir: New file.
45713         * modules/unistd (Files): Add lib/unistd_.h.
45714         (Makefile.am): Generate unistd.h from unistd_.h.
45715         * lib/fchdir.c: New file.
45716         * lib/dirent_.h: New file.
45717         * lib/unistd_.h: New file.
45718         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
45719         * m4/fchdir.m4: New file.
45720         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
45721         (gl_HEADER_UNISTD): Invoke it.
45722         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
45723         function.
45724         * lib/backupfile.c (opendir, closedir): Undefine.
45725         * lib/chown.c (open, close): Undefine.
45726         * lib/clean-temp.c (open, close): Undefine.
45727         * lib/copy-file.c (open, close): Undefine.
45728         * lib/execute.c (open, close): Undefine.
45729         * lib/fsusage.c (open, close): Undefine.
45730         * lib/gc-gnulib.c (open, close): Undefine.
45731         * lib/getcwd.c (opendir, closedir): Undefine.
45732         * lib/glob.c (opendir, closedir): Undefine.
45733         * lib/javacomp.c (open, close): Undefine.
45734         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
45735         * lib/openat-proc.c (open, close): Undefine.
45736         * lib/pagealign_alloc.c (open, close): Undefine.
45737         * lib/pipe.c (open, close): Undefine.
45738         * lib/progreloc.c (open, close): Undefine.
45739         * lib/savedir.c (opendir, closedir): Undefine.
45740         * lib/utime.c (open, close): Undefine.
45741         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
45742
45743 2007-01-10  Bruno Haible  <bruno@clisp.org>
45744
45745         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
45746
45747 2007-01-12  Eric Blake  <ebb9@byu.net>
45748
45749         Provide a robust <wchar.h>.  Further simplifications are now
45750         possible in other modules, but not included here.
45751         * modules/wchar: New module.
45752         * m4/wchar.m4: New file.
45753         * lib/wchar_.h: Likewise.
45754         * modules/mbchar (Depends-on): Depend on wchar, as the first use
45755         of the new module.
45756         * MODULES.html.sh (Extended multibyte and wide character utilities):
45757         New section.
45758
45759 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
45760
45761         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
45762         to a reasonable default for memory allocation.
45763         (xreadlink): Don't allocate a huge buffer, to work around a buggy
45764         file system that reports garbage st_size values for symlinks.
45765         Problem reported by Liyang Hu.
45766
45767 2007-01-11  Simon Josefsson  <simon@josefsson.org>
45768
45769         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
45770         Emacs .#* auto-save files).
45771
45772 2007-01-11  Bruno Haible  <bruno@clisp.org>
45773
45774         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
45775         directory.
45776
45777 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
45778
45779         Use @...@ consistently in lib/wctype_.h.
45780         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
45781         on it being set to 1 or 0.
45782         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
45783         go back to AC_SUBSTing it.
45784         * modules/wctype (Makefile.am): Undo previous change.
45785
45786 2007-01-10  Eric Blake  <ebb9@byu.net>
45787
45788         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
45789         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
45790         * modules/wctype (Makefile.am): Likewise.
45791         Reported by Chris McGuire.
45792
45793 2007-01-10  Jim Meyering  <jim@meyering.net>
45794
45795         fts.c: a small readability/maintainability improvement
45796         * lib/fts.c (fts_read): Make this code slightly more readable and
45797         maintainable by hoisting the "sp->fts_cur = p" assignments to
45798         immediately follow the statements that set P.  Derived from
45799         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
45800
45801 2007-01-10  Eric Blake  <ebb9@byu.net>
45802
45803         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
45804         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
45805         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
45806         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
45807         Reported by Chris McGuire.
45808
45809 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
45810
45811         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
45812         in sed script.
45813
45814 2007-01-09  Bruno Haible  <bruno@clisp.org>
45815
45816         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
45817         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
45818         variables.
45819         (func_module): Use them.
45820
45821 2007-01-09  Bruno Haible  <bruno@clisp.org>
45822
45823         * modules/unistr/base: New file.
45824         * lib/unistr.h: New file.
45825
45826         * modules/unistr/u8-to-u16: New file.
45827         * lib/unistr/u8-to-u16.c: New file.
45828
45829         * modules/unistr/u8-to-u32: New file.
45830         * lib/unistr/u8-to-u32.c: New file.
45831
45832         * modules/unistr/u16-to-u8: New file.
45833         * lib/unistr/u16-to-u8.c: New file.
45834
45835         * modules/unistr/u16-to-u32: New file.
45836         * lib/unistr/u16-to-u32.c: New file.
45837
45838         * modules/unistr/u32-to-u8: New file.
45839         * lib/unistr/u32-to-u8.c: New file.
45840
45841         * modules/unistr/u32-to-u16: New file.
45842         * lib/unistr/u32-to-u16.c: New file.
45843
45844         * modules/unistr/u8-check: New file.
45845         * modules/unistr/u16-check: New file.
45846         * modules/unistr/u32-check: New file.
45847         * lib/unistr/u8-check.c: New file.
45848         * lib/unistr/u16-check.c: New file.
45849         * lib/unistr/u32-check.c: New file.
45850
45851         * modules/unistr/u8-chr: New file.
45852         * modules/unistr/u16-chr: New file.
45853         * modules/unistr/u32-chr: New file.
45854         * lib/unistr/u8-chr.c: New file.
45855         * lib/unistr/u16-chr.c: New file.
45856         * lib/unistr/u32-chr.c: New file.
45857
45858         * modules/unistr/u8-cmp: New file.
45859         * modules/unistr/u16-cmp: New file.
45860         * modules/unistr/u32-cmp: New file.
45861         * lib/unistr/u8-cmp.c: New file.
45862         * lib/unistr/u16-cmp.c: New file.
45863         * lib/unistr/u32-cmp.c: New file.
45864
45865         * modules/unistr/u8-cpy: New file.
45866         * modules/unistr/u16-cpy: New file.
45867         * modules/unistr/u32-cpy: New file.
45868         * lib/unistr/u8-cpy.c: New file.
45869         * lib/unistr/u16-cpy.c: New file.
45870         * lib/unistr/u32-cpy.c: New file.
45871         * lib/unistr/u-cpy.h: New file.
45872
45873         * modules/unistr/u8-cpy-alloc: New file.
45874         * modules/unistr/u16-cpy-alloc: New file.
45875         * modules/unistr/u32-cpy-alloc: New file.
45876         * lib/unistr/u8-cpy-alloc.c: New file.
45877         * lib/unistr/u16-cpy-alloc.c: New file.
45878         * lib/unistr/u32-cpy-alloc.c: New file.
45879         * lib/unistr/u-cpy-alloc.h: New file.
45880
45881         * modules/unistr/u8-endswith: New file.
45882         * modules/unistr/u16-endswith: New file.
45883         * modules/unistr/u32-endswith: New file.
45884         * lib/unistr/u8-endswith.c: New file.
45885         * lib/unistr/u16-endswith.c: New file.
45886         * lib/unistr/u32-endswith.c: New file.
45887         * lib/unistr/u-endswith.h: New file.
45888
45889         * modules/unistr/u8-mblen: New file.
45890         * modules/unistr/u16-mblen: New file.
45891         * modules/unistr/u32-mblen: New file.
45892         * lib/unistr/u8-mblen.c: New file.
45893         * lib/unistr/u16-mblen.c: New file.
45894         * lib/unistr/u32-mblen.c: New file.
45895
45896         * modules/unistr/u8-mbtouc: New file.
45897         * modules/unistr/u16-mbtouc: New file.
45898         * modules/unistr/u32-mbtouc: New file.
45899         * lib/unistr/u8-mbtouc.c: New file.
45900         * lib/unistr/u16-mbtouc.c: New file.
45901         * lib/unistr/u32-mbtouc.c: New file.
45902
45903         * modules/unistr/u8-mbtouc-safe: New file.
45904         * modules/unistr/u16-mbtouc-safe: New file.
45905         * modules/unistr/u32-mbtouc-safe: New file.
45906         * lib/unistr/u8-mbtouc-safe.c: New file.
45907         * lib/unistr/u16-mbtouc-safe.c: New file.
45908         * lib/unistr/u32-mbtouc-safe.c: New file.
45909
45910         * modules/unistr/u8-move: New file.
45911         * modules/unistr/u16-move: New file.
45912         * modules/unistr/u32-move: New file.
45913         * lib/unistr/u8-move.c: New file.
45914         * lib/unistr/u16-move.c: New file.
45915         * lib/unistr/u32-move.c: New file.
45916         * lib/unistr/u-move.h: New file.
45917
45918         * modules/unistr/u8-next: New file.
45919         * modules/unistr/u16-next: New file.
45920         * modules/unistr/u32-next: New file.
45921         * lib/unistr/u8-next.c: New file.
45922         * lib/unistr/u16-next.c: New file.
45923         * lib/unistr/u32-next.c: New file.
45924
45925         * modules/unistr/u8-prev: New file.
45926         * modules/unistr/u16-prev: New file.
45927         * modules/unistr/u32-prev: New file.
45928         * lib/unistr/u8-prev.c: New file.
45929         * lib/unistr/u16-prev.c: New file.
45930         * lib/unistr/u32-prev.c: New file.
45931
45932         * modules/unistr/u8-set: New file.
45933         * modules/unistr/u16-set: New file.
45934         * modules/unistr/u32-set: New file.
45935         * lib/unistr/u8-set.c: New file.
45936         * lib/unistr/u16-set.c: New file.
45937         * lib/unistr/u32-set.c: New file.
45938         * lib/unistr/u-set.h: New file.
45939
45940         * modules/unistr/u8-startswith: New file.
45941         * modules/unistr/u16-startswith: New file.
45942         * modules/unistr/u32-startswith: New file.
45943         * lib/unistr/u8-startswith.c: New file.
45944         * lib/unistr/u16-startswith.c: New file.
45945         * lib/unistr/u32-startswith.c: New file.
45946         * lib/unistr/u-startswith.h: New file.
45947
45948         * modules/unistr/u8-stpcpy: New file.
45949         * modules/unistr/u16-stpcpy: New file.
45950         * modules/unistr/u32-stpcpy: New file.
45951         * lib/unistr/u8-stpcpy.c: New file.
45952         * lib/unistr/u16-stpcpy.c: New file.
45953         * lib/unistr/u32-stpcpy.c: New file.
45954         * lib/unistr/u-stpcpy.h: New file.
45955
45956         * modules/unistr/u8-stpncpy: New file.
45957         * modules/unistr/u16-stpncpy: New file.
45958         * modules/unistr/u32-stpncpy: New file.
45959         * lib/unistr/u8-stpncpy.c: New file.
45960         * lib/unistr/u16-stpncpy.c: New file.
45961         * lib/unistr/u32-stpncpy.c: New file.
45962         * lib/unistr/u-stpncpy.h: New file.
45963
45964         * modules/unistr/u8-strcat: New file.
45965         * modules/unistr/u16-strcat: New file.
45966         * modules/unistr/u32-strcat: New file.
45967         * lib/unistr/u8-strcat.c: New file.
45968         * lib/unistr/u16-strcat.c: New file.
45969         * lib/unistr/u32-strcat.c: New file.
45970         * lib/unistr/u-strcat.h: New file.
45971
45972         * modules/unistr/u8-strchr: New file.
45973         * modules/unistr/u16-strchr: New file.
45974         * modules/unistr/u32-strchr: New file.
45975         * lib/unistr/u8-strchr.c: New file.
45976         * lib/unistr/u16-strchr.c: New file.
45977         * lib/unistr/u32-strchr.c: New file.
45978
45979         * modules/unistr/u8-strcmp: New file.
45980         * modules/unistr/u16-strcmp: New file.
45981         * modules/unistr/u32-strcmp: New file.
45982         * lib/unistr/u8-strcmp.c: New file.
45983         * lib/unistr/u16-strcmp.c: New file.
45984         * lib/unistr/u32-strcmp.c: New file.
45985
45986         * modules/unistr/u8-strcpy: New file.
45987         * modules/unistr/u16-strcpy: New file.
45988         * modules/unistr/u32-strcpy: New file.
45989         * lib/unistr/u8-strcpy.c: New file.
45990         * lib/unistr/u16-strcpy.c: New file.
45991         * lib/unistr/u32-strcpy.c: New file.
45992         * lib/unistr/u-strcpy.h: New file.
45993
45994         * modules/unistr/u8-strcspn: New file.
45995         * modules/unistr/u16-strcspn: New file.
45996         * modules/unistr/u32-strcspn: New file.
45997         * lib/unistr/u8-strcspn.c: New file.
45998         * lib/unistr/u16-strcspn.c: New file.
45999         * lib/unistr/u32-strcspn.c: New file.
46000         * lib/unistr/u-strcspn.h: New file.
46001
46002         * modules/unistr/u8-strdup: New file.
46003         * modules/unistr/u16-strdup: New file.
46004         * modules/unistr/u32-strdup: New file.
46005         * lib/unistr/u8-strdup.c: New file.
46006         * lib/unistr/u16-strdup.c: New file.
46007         * lib/unistr/u32-strdup.c: New file.
46008         * lib/unistr/u-strdup.h: New file.
46009
46010         * modules/unistr/u8-strlen: New file.
46011         * modules/unistr/u16-strlen: New file.
46012         * modules/unistr/u32-strlen: New file.
46013         * lib/unistr/u8-strlen.c: New file.
46014         * lib/unistr/u16-strlen.c: New file.
46015         * lib/unistr/u32-strlen.c: New file.
46016         * lib/unistr/u-strlen.h: New file.
46017
46018         * modules/unistr/u8-strmblen: New file.
46019         * modules/unistr/u16-strmblen: New file.
46020         * modules/unistr/u32-strmblen: New file.
46021         * lib/unistr/u8-strmblen.c: New file.
46022         * lib/unistr/u16-strmblen.c: New file.
46023         * lib/unistr/u32-strmblen.c: New file.
46024
46025         * modules/unistr/u8-strmbtouc: New file.
46026         * modules/unistr/u16-strmbtouc: New file.
46027         * modules/unistr/u32-strmbtouc: New file.
46028         * lib/unistr/u8-strmbtouc.c: New file.
46029         * lib/unistr/u16-strmbtouc.c: New file.
46030         * lib/unistr/u32-strmbtouc.c: New file.
46031
46032         * modules/unistr/u8-strncat: New file.
46033         * modules/unistr/u16-strncat: New file.
46034         * modules/unistr/u32-strncat: New file.
46035         * lib/unistr/u8-strncat.c: New file.
46036         * lib/unistr/u16-strncat.c: New file.
46037         * lib/unistr/u32-strncat.c: New file.
46038         * lib/unistr/u-strncat.h: New file.
46039
46040         * modules/unistr/u8-strncmp: New file.
46041         * modules/unistr/u16-strncmp: New file.
46042         * modules/unistr/u32-strncmp: New file.
46043         * lib/unistr/u8-strncmp.c: New file.
46044         * lib/unistr/u16-strncmp.c: New file.
46045         * lib/unistr/u32-strncmp.c: New file.
46046
46047         * modules/unistr/u8-strncpy: New file.
46048         * modules/unistr/u16-strncpy: New file.
46049         * modules/unistr/u32-strncpy: New file.
46050         * lib/unistr/u8-strncpy.c: New file.
46051         * lib/unistr/u16-strncpy.c: New file.
46052         * lib/unistr/u32-strncpy.c: New file.
46053         * lib/unistr/u-strncpy.h: New file.
46054
46055         * modules/unistr/u8-strnlen: New file.
46056         * modules/unistr/u16-strnlen: New file.
46057         * modules/unistr/u32-strnlen: New file.
46058         * lib/unistr/u8-strnlen.c: New file.
46059         * lib/unistr/u16-strnlen.c: New file.
46060         * lib/unistr/u32-strnlen.c: New file.
46061         * lib/unistr/u-strnlen.h: New file.
46062
46063         * modules/unistr/u8-strpbrk: New file.
46064         * modules/unistr/u16-strpbrk: New file.
46065         * modules/unistr/u32-strpbrk: New file.
46066         * lib/unistr/u8-strpbrk.c: New file.
46067         * lib/unistr/u16-strpbrk.c: New file.
46068         * lib/unistr/u32-strpbrk.c: New file.
46069         * lib/unistr/u-strpbrk.h: New file.
46070
46071         * modules/unistr/u8-strrchr: New file.
46072         * modules/unistr/u16-strrchr: New file.
46073         * modules/unistr/u32-strrchr: New file.
46074         * lib/unistr/u8-strrchr.c: New file.
46075         * lib/unistr/u16-strrchr.c: New file.
46076         * lib/unistr/u32-strrchr.c: New file.
46077
46078         * modules/unistr/u8-strspn: New file.
46079         * modules/unistr/u16-strspn: New file.
46080         * modules/unistr/u32-strspn: New file.
46081         * lib/unistr/u8-strspn.c: New file.
46082         * lib/unistr/u16-strspn.c: New file.
46083         * lib/unistr/u32-strspn.c: New file.
46084         * lib/unistr/u-strspn.h: New file.
46085
46086         * modules/unistr/u8-strstr: New file.
46087         * modules/unistr/u16-strstr: New file.
46088         * modules/unistr/u32-strstr: New file.
46089         * lib/unistr/u8-strstr.c: New file.
46090         * lib/unistr/u16-strstr.c: New file.
46091         * lib/unistr/u32-strstr.c: New file.
46092         * lib/unistr/u-strstr.h: New file.
46093
46094         * modules/unistr/u8-strtok: New file.
46095         * modules/unistr/u16-strtok: New file.
46096         * modules/unistr/u32-strtok: New file.
46097         * lib/unistr/u8-strtok.c: New file.
46098         * lib/unistr/u16-strtok.c: New file.
46099         * lib/unistr/u32-strtok.c: New file.
46100         * lib/unistr/u-strtok.h: New file.
46101
46102         * modules/unistr/u8-uctomb: New file.
46103         * modules/unistr/u16-uctomb: New file.
46104         * modules/unistr/u32-uctomb: New file.
46105         * lib/unistr/u8-uctomb.c: New file.
46106         * lib/unistr/u16-uctomb.c: New file.
46107         * lib/unistr/u32-uctomb.c: New file.
46108
46109         * MODULES.html.sh (Unicode string functions): Add the new modules.
46110
46111 2007-01-08  Bruno Haible  <bruno@clisp.org>
46112
46113         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
46114         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
46115         subdirectories.
46116
46117 2007-01-08  Karl Berry  <karl@gnu.org>
46118
46119         * doc/error.texi: mention that main() fns must set program_name
46120         when progname is used.
46121
46122 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
46123
46124         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
46125         WCTYPE_H is empty, for the benefit of builds from non-distclean
46126         directories.  Problem reported by Eric Blake in
46127         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
46128
46129 2007-01-08  Bruno Haible  <bruno@clisp.org>
46130
46131         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
46132         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
46133         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
46134         PROVIDE_CANONICALIZE_FILENAME_MODE.
46135         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
46136
46137 2007-01-08  Bruno Haible  <bruno@clisp.org>
46138
46139         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
46140         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
46141         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
46142         * lib/fts.c: Likewise.
46143         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
46144
46145 2006-12-25  Bruno Haible  <bruno@clisp.org>
46146
46147         * modules/utf8-ucs4-safe: New file.
46148         * lib/utf8-ucs4-safe.h: New file.
46149         * lib/unistr/utf8-ucs4-safe.c: New file.
46150
46151         * modules/utf16-ucs4-safe: New file.
46152         * lib/utf16-ucs4-safe.h: New file.
46153         * lib/unistr/utf16-ucs4-safe.c: New file.
46154
46155         * MODULES.html.sh (Unicode string functions): Add the new modules.
46156
46157 2007-01-08  Bruno Haible  <bruno@clisp.org>
46158
46159         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
46160         (Depends-on): Add unitypes.
46161         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
46162         (u8_mbtouc_aux): Move out to separate file.
46163         (u8_mbtouc): Use ucs4_t, uint8_t types.
46164         * lib/unistr/utf8-ucs4.c: New file.
46165
46166         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
46167         (Depends-on): Add unitypes.
46168         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
46169         (u16_mbtouc_aux): Move out to separate file.
46170         (u16_mbtouc): Use ucs4_t, uint16_t types.
46171         * lib/unistr/utf16-ucs4.c: New file.
46172
46173         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
46174         (Depends-on): Add unitypes.
46175         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
46176         (u8_uctomb_aux): Move out to separate file.
46177         (u8_uctomb): Use ucs4_t, uint8_t types.
46178         * lib/unistr/ucs4-utf8.c: New file.
46179
46180         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
46181         (Depends-on): Add unitypes.
46182         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
46183         (u16_uctomb_aux): Move out to separate file.
46184         (u16_uctomb): Use ucs4_t, uint16_t types.
46185         * lib/unistr/ucs4-utf16.c: New file.
46186
46187 2006-12-25  Bruno Haible  <bruno@clisp.org>
46188
46189         * modules/unitypes: New file.
46190         * lib/unitypes.h: New file.
46191         * MODULES.html.sh (func_all_modules): New section "Unicode string
46192         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
46193         this section. Add unitypes.
46194
46195 2007-01-08  Bruno Haible  <bruno@clisp.org>
46196
46197         Avoid variable names that conflict with those from libtool.
46198         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
46199         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
46200         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
46201         library_names_spec to acl_library_names_spec, hardcode_* to
46202         acl_hardcode_*.
46203         Reported by Ralf Wildenhues.
46204
46205 2007-01-08  Bruno Haible  <bruno@clisp.org>
46206
46207         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
46208         definition.
46209         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
46210         definition.
46211         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
46212         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
46213         definition.
46214         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
46215         definition.
46216         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
46217         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
46218         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
46219         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
46220         definition.
46221         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
46222         definition.
46223         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
46224         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
46225         GC_USE_<algorithm>.
46226         * lib/gc-libgcrypt.c: Likewise.
46227         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
46228         * modules/gc-arctwo (configure.ac): Likewise.
46229         * modules/gc-des (configure.ac): Likewise.
46230         * modules/gc-hmac-md5 (configure.ac): Likewise.
46231         * modules/gc-hmac-sha1 (configure.ac): Likewise.
46232         * modules/gc-md2 (configure.ac): Likewise.
46233         * modules/gc-md4 (configure.ac): Likewise.
46234         * modules/gc-md5 (configure.ac): Likewise.
46235         * modules/gc-random (configure.ac): Likewise.
46236         * modules/gc-rijndael (configure.ac): Likewise.
46237         * modules/gc-sha1 (configure.ac): Likewise.
46238
46239 2007-01-08  Bruno Haible  <bruno@clisp.org>
46240
46241         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
46242         macro definition.
46243         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
46244         definition.
46245         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
46246         definition.
46247         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
46248         * modules/fcntl-safer (configure.ac): Likewise.
46249         * modules/fopen-safer (configure.ac): Likewise.
46250         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
46251         GNULIB_FWRITEERROR macro definition.
46252
46253 2007-01-08  Bruno Haible  <bruno@clisp.org>
46254
46255         * m4/gnulib-common.m4: New file.
46256         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
46257         (func_get_filelist): Add m4/gnulib-common.m4.
46258
46259 2007-01-08  Bruno Haible  <bruno@clisp.org>
46260
46261         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
46262         command.
46263
46264 2007-01-08  Jim Meyering  <jim@meyering.net>
46265
46266         Use a more robust test for a "can't happen" condition.
46267         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
46268         narrowed the st_size value.  Presuming the "can't happen" condition
46269         is true, that narrowing could conceivably convert an invalid st_size
46270         value into a valid one.  Instead, use a change based on Matthew
46271         Woehlke's original patch.
46272
46273         Slight readability improvement: use an assert-like macro
46274         in place of literal "abort ()" uses.
46275         * lib/fts.c (fts_assert): Define.
46276         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
46277         Use this macro instead of a bare 'abort'.
46278
46279 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
46280
46281         Don't worry about using IRIX 5.3's wctype.h broken definitions;
46282         simply work around them.
46283         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
46284         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
46285         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
46286         declaring.
46287         Don't bother to define as macros, since the standard doesn't require it.
46288         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
46289         longer worry about IRIX 5.3.
46290         (HAVE_WCTYPE_CTMP_BUG): Remove.
46291
46292 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
46293
46294         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
46295         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
46296         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
46297         Problems reported by Georg Schwarz for IRIX 5.3.
46298
46299         * gnulib-tool (autoconf_minversion): Take the maximum version number
46300         found, not the minimum.  Problem reported by James Youngman.
46301
46302 2007-01-03  Karl Berry  <karl@gnu.org>
46303
46304         * doc/error.texi: new file, explaining interaction with progname.
46305         * doc/gnulib.texi: include it.  Update copyright.
46306
46307 2007-01-03  Simon Josefsson  <simon@josefsson.org>
46308
46309         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
46310         AC_CANONICAL_HOST, to improve autobuild outputs.
46311
46312 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
46313             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
46314
46315         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
46316         sockets, server sockets, and other file descriptors.  Count errors
46317         to compute the return value.  Reorder the code a bit to be easier
46318         to follow.  Don't set event bits that were not requested (except
46319         POLLERR and POLLHUP).
46320
46321 2007-01-01  Bruno Haible  <bruno@clisp.org>
46322
46323         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
46324
46325 2007-01-03  Jim Meyering  <jim@meyering.net>
46326
46327         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
46328
46329 2007-01-02  Bruno Haible  <bruno@clisp.org>
46330
46331         * modules/settime (Include): Require timespec.h.
46332         * modules/nanosleep (Include): Likewise.
46333
46334 2007-01-01  Bruno Haible  <bruno@clisp.org>
46335
46336         * gnulib-tool (func_emit_copyright_notice): Bump year.
46337         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
46338
46339 2007-01-01  Bruno Haible  <bruno@clisp.org>
46340
46341         Improve support for OpenBSD.
46342         * build-aux/config.rpath (libname_spec): Export.
46343         (library_names_spec): New variable. Export.
46344         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
46345         library_names_spec from the config.rpath output. Locate shared library
46346         through the name pattern in library_names_spec.
46347
46348 2007-01-01  Eric Blake  <ebb9@byu.net>
46349
46350         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
46351
46352 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
46353
46354         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
46355         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
46356         assume the C locale, and avoid an "eval" that could cause trouble.
46357         Problem with SORT reported by Bob Proulx.
46358
46359         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
46360         Define.  Trivial patch from Henning Nielsen Lund, originally
46361         sent to bug-grep@gnu.org today.
46362
46363 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
46364
46365         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
46366         struct stat.  Problem reported by Henning Nielsen Lund.
46367         * lib/acl.c: Include acl.h first, to check interface.  Don't
46368         bother to include sys/types.h and sys/stat.h again.
46369
46370 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
46371
46372         Import the following change from libc; problem reported by
46373         Sven Verdoolaege.
46374
46375         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
46376
46377         [BZ #1373]
46378         * lib/argp.h: Remove __NTH for __argp_usage inline function.
46379
46380 2006-12-28  Jim Meyering  <jim@meyering.net>
46381
46382         * build-aux/announce-gen: Do not assume that the package
46383         builds any of tar.gz, tar.bz2, and .xdelta files.
46384         Suggestion from Simon Josefsson.
46385
46386 2006-12-28  Simon Josefsson  <simon@josefsson.org>
46387
46388         * modules/announce-gen: New file.
46389
46390 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
46391
46392         * lib/mbchar.h: Just include <wctype.h>; the wctype module
46393         handles its gotchas now.
46394         * lib/mbswidth.c: Likewise.
46395         * lib/wcwidth.h: Likewise.
46396         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
46397         and iswcntrl; the wctype module does this stuff now.
46398         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
46399         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
46400         * modules/mbchar (Depends-on): Add wctype.
46401         * modules/mbswidth (Depends-on): Likewise.
46402         * modules/wcwidth (Depends-on): Likewise.
46403
46404 2006-12-27  Eric Blake  <ebb9@byu.net>
46405
46406         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
46407         module uses more than what <wctype.h> is required to provide.
46408
46409 2006-12-26  Eric Blake  <ebb9@byu.net>
46410
46411         * gnulib-tool (sed_extract_prog): Avoid space-tab.
46412
46413 2006-12-26  Eric Blake  <ebb9@byu.net>
46414
46415         * modules/absolute-header: New module.
46416         * modules/fcntl (Depends-on): Depend on it.
46417         * modules/inttypes (Depends-on): Likewise.
46418         * modules/stdint (Depends-on): Likewise.
46419         * modules/sys_stat (Depends-on): Likewise.
46420         * modules/wctype (Depends-on): Likewise.
46421         * MODULES.html.sh (Support for building libraries and
46422         executables): Document it.
46423
46424 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
46425
46426         * gnulib-tool (SED): Remove, undoing previous change.
46427         The problem was that it broke coreutils on Solaris, because
46428         "sed --posix" leaked into a makefile.
46429         (sed): New alias, if 'alias' and GNU sed.
46430
46431 2006-12-24  Jim Meyering  <jim@meyering.net>
46432
46433         Work around an fchownat bug in glibc-2.4:
46434         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
46435         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
46436         in spite of the -P option.
46437         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
46438         New macros.
46439         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
46440         * modules/openat (Files): Add lib/fchownat.c.
46441         * lib/openat.c (fchownat): Don't define here.  Move to...
46442         * lib/fchownat.c: ...this new file.
46443
46444 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
46445
46446         Fix bug reported by Bruno Haible in
46447         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
46448         where quotearg.c didn't compile on Mac OS X 10.2 because it
46449         lacks <wchar.h> and wint_t.
46450         * lib/wctype_.h (__wctype_wint_t): New type.
46451         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
46452         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
46453         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
46454         Arg is now of type __wctype_wint_t, not wint_t.
46455         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
46456         substitute HAVE_WINT_T.
46457         * modules/wctype (Files): Add m4/wint_t.m4.
46458         (wctype.h): Substitute HAVE_WINT_T.
46459
46460 2006-12-23  Bruno Haible  <bruno@clisp.org>
46461
46462         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
46463
46464 2006-12-23  Bruno Haible  <bruno@clisp.org>
46465
46466         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
46467         S_ISLNK.
46468         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
46469         mingw.
46470
46471 2006-12-22  Bruno Haible  <bruno@clisp.org>
46472
46473         * lib/copy-file.c: Include acl.h.
46474         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
46475         Close the file descriptors only after being done with copy_acl.
46476         * modules/copy-file (Depends-on): Add acl.
46477
46478 2006-12-22  Bruno Haible  <bruno@clisp.org>
46479
46480         * gnulib-tool (SED): New variable.
46481         Use $SED instead of sed everywhere.
46482
46483 2006-12-22  Bruno Haible  <bruno@clisp.org>
46484
46485         * modules/no-c++: New file.
46486         * m4/no-c++.m4: New file.
46487         * MODULES.html.sh (Support for building libraries and executables):
46488         Add no-c++.
46489
46490 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
46491
46492         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
46493         Include <limits.h>, and use its INT_MAX to rewrite the
46494         j loop so that it does not overflow 'int'.  Problem reported by
46495         Ralf Wildenhues in
46496         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
46497         Play it safe by shifting left by 1 rather than multiplying by 2,
46498         as GCC is less likely to optimize this away when the value
46499         is signed (when it assumes overflow leads to undefined behavior).
46500         Also, don't assume time_t uses two's complement.
46501
46502 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
46503
46504         * MODULES.html.sh: New module wctype.
46505         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
46506         * lib/fnmatch.c: Don't bother to include <wchar.h> before
46507         <wctype.h>, since the new wctype module should fix this.
46508         * lib/quotearg.c: Include <wctype.h> unconditionally, since
46509         the wctype module should arrange for it.
46510         * lib/regex_internal.h: Likewise.
46511         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
46512         since the wctype module should handle this now.
46513         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
46514         * modules/fnmatch (Depends-on): Add wctype.
46515         * modules/quotearg (Depends-on): Likewise.
46516         * modules/regex (Depends-on): Likewise.
46517
46518 2006-12-19  Bruno Haible  <bruno@clisp.org>
46519
46520         * lib/strdup.h [C++]: Wrap definitions in extern "C".
46521         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
46522
46523 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46524
46525         * modules/savewd (Depends-on): Fix dependency on fcntl.
46526
46527 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
46528
46529         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
46530         conforms to C99, rather than relying on the user's environment
46531         setting of STDINT_H.
46532
46533 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
46534         and Eric Blake  <ebb9@byu.net>
46535
46536         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
46537         This is more consistent with the other defines here.
46538         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
46539         Port to z/OS.  Problem reported by Paul Gilmartin.
46540         Change local vars to use gl_ prefix rather than ac_.
46541         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
46542         with other defines.
46543         * modules/double-slash-root: New module.
46544         * modules/dirname (Files): Remove m4/double-slash-root.m4.
46545         (Depends-on): Add double-slash-root.
46546         * MODULES.html.sh (File system functions): Mention new module.
46547
46548 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
46549
46550         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
46551         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
46552         This is for the benefit of gzip, which doesn't do i18n.
46553
46554 2006-12-12  Jim Meyering  <jim@meyering.net>
46555
46556         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
46557         Reported by Andreas Schwab <schwab@suse.de>.
46558
46559 2006-12-12  Bruno Haible  <bruno@clisp.org>
46560
46561         Merge these changes.
46562         2006-09-05  Bruno Haible  <bruno@clisp.org>
46563         * lib/iconvme.c (iconv_string): No need to save and restore errno when
46564         iconv_alloc succeeded.
46565         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
46566         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
46567         test for " && dest " at the end - dest is always != NULL there. Call
46568         iconv with 4xNULL arguments initially, to reset the state. Call iconv
46569         with 2xNULL arguments, also to flush the state storage. Handle the
46570         IRIX iconv behaviour. Realloc the final result, to throw away unused
46571         memory.
46572
46573 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
46574
46575         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
46576         and fchmodat unconditionally, since glibc 2.4 has them.
46577         Problem reported by Arkadiusz Miskiewicz.
46578
46579 2006-12-10  Bruno Haible  <bruno@clisp.org>
46580
46581         * gnulib-tool (func_import): Show the include files only for those
46582         modules that are copied and specified.
46583         Reported by Karl Berry.
46584
46585 2006-12-08  Jim Meyering  <jim@meyering.net>
46586
46587         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
46588         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
46589
46590         * build-aux/announce-gen: Add two new options, both optional:
46591         --bootstrap-tools=TOOL_LIST
46592               a comma-separated list of tools, e.g.,
46593               autoconf,automake,bison,gnulib
46594         --gnulib-snapshot-date=DATE
46595               if gnulib is in the bootstrap tool list,
46596               then report this as the snapshot date.
46597               If not specified, use the current date/time.
46598               If you specify a date here, be sure it's UTC.
46599
46600 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46601
46602         * tests/test-argp-2.sh: Fix test to match actual output.
46603         (func_compare): Fix sed script to be portable.
46604
46605 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
46606
46607         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
46608         workaround for this case.  It is not autoconfigured now; offhand
46609         it's hard to see how to autoconfigure it.
46610
46611 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
46612
46613         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
46614         a directory that is about to be chowned.  Such a directory's
46615         initial file permissions should permit the owner only and this
46616         should not be changed until after the chown, since the group and
46617         other bits would be incorrect if they granted permission before
46618         the chown.
46619
46620         Fix porting problem for iswctype reported by Georg Schwarz in:
46621         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
46622         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
46623         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
46624         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
46625         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
46626
46627 2006-12-03  Jim Meyering  <jim@meyering.net>
46628
46629         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
46630         p->fts_statp may not yet be defined.
46631         (fts_read): Instead, set it in the caller, once p->fts_statp is
46632         sure to be defined, and corresponds to a top-level directory.
46633         This bug made du -x fail.  Here's the coreutils test case:
46634         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
46635         Reported by Mike Frysinger.
46636
46637 2006-12-01  Jim Meyering  <jim@meyering.net>
46638
46639         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
46640         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
46641         Reported by Simon Josefsson.
46642
46643 2006-11-30  Jim Meyering  <jim@meyering.net>
46644
46645         * m4/warning.m4: Use the all-permissive copyright notice
46646         recommended by RMS (rather than LGPL).
46647         * m4/vararrays.m4: Likewise.
46648         * m4/flexmember.m4: Likewise.
46649
46650 2006-11-29  Bruno Haible  <bruno@clisp.org>
46651
46652         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
46653         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
46654         using +=.
46655         Reported by Simon Josefsson <simon@josefsson.org>.
46656
46657 2006-11-28  James Youngman <jay@gnu.org>
46658
46659         * README: Advise users that they might find the bug-gnulib@gnu.org
46660         and autotools-announce@gnu.org mailing lists useful.
46661
46662 2006-11-28  Bruno Haible  <bruno@clisp.org>
46663
46664         * m4/ptrdiff_max.m4: Remove file.
46665
46666 2006-11-21  Bruno Haible  <bruno@clisp.org>
46667
46668         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
46669         _AC_COMPUTE_INT.
46670         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
46671         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
46672         _AC_COMPUTE_INT.
46673         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
46674         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
46675         _AC_COMPUTE_INT.
46676         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
46677
46678 2006-11-28  Jim Meyering  <jim@meyering.net>
46679
46680         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
46681         warning from "gcc -Wshadow" about shadowing the builtin.
46682
46683 2006-11-27  Bruno Haible  <bruno@clisp.org>
46684
46685         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
46686         _AC_COMPUTE_INT.
46687         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
46688
46689 2006-11-27  Bruno Haible  <bruno@clisp.org>
46690             Paul Eggert  <eggert@cs.ucla.edu>
46691
46692         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
46693
46694 2006-11-26  Bruno Haible  <bruno@clisp.org>
46695
46696         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
46697         noinst_LTLIBRARIES.
46698
46699 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
46700             Bruno Haible  <bruno@clisp.org>
46701
46702         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
46703         if compiling with "gcc -ansi".
46704
46705 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
46706
46707         Fix some incompatibilities with gcc -ansi -pedantic.
46708         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
46709         if compiling pedantically with GCC, unless it's C99 or later.
46710         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
46711         it mishandles gcc -ansi -pedantic as well.
46712         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
46713         if gcc -pedantic.
46714         * lib/regexec.c (check_node_accept_bytes): Don't use auto
46715         initializers for struct if -pedantic, unless it's C99 or later.
46716
46717 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
46718
46719         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
46720         Don't close an fd more than once. Identical atimes indicate
46721         success, not failure.
46722
46723 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
46724
46725         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
46726
46727 2006-11-23  Jim Meyering  <jim@meyering.net>
46728
46729         * build-aux/announce-gen: New file.  From coreutils.
46730
46731 2006-11-22  Jim Meyering  <jim@meyering.net>
46732
46733         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
46734         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
46735         (fts_read): Use a temporary to narrow the overused st_size member
46736         before using it in a switch statement.  Reported by Matthew Woehlke.
46737
46738         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
46739         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
46740
46741 2006-11-20  Bruno Haible  <bruno@clisp.org>
46742
46743         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
46744         changequote instead of pairs of brackets.
46745         Reported by Andreas Schwab <schwab@suse.de>.
46746
46747 2006-11-21  Jim Meyering  <jim@meyering.net>
46748
46749         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
46750         so as to remain compatible with older compilers.
46751         Patch from Michael Deutschmann.
46752
46753 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
46754
46755         * MODULES.html.sh (File system functions): Add openat.
46756
46757         * lib/openat.h (rpl_fstatat): New macro, if
46758         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
46759         (fstatat): Define to rpl_fstatat under the same conditions,
46760         unless COMPILING_FSTATAT.
46761         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
46762         seems to have the bug.
46763         * lib/fstatat.c: New file.
46764         * modules/openat (Files): Add it.
46765
46766 2006-11-20  Bruno Haible  <bruno@clisp.org>
46767
46768         * Makefile: New file.
46769
46770 2006-11-20  Jim Meyering  <jim@meyering.net>
46771
46772         The beginnings of syntax-related checks for gnulib.
46773         * lib/Makefile: New file.
46774         * lib/t-idcache: New script.  Ensure that the two halves of
46775         idcache.c stay in sync.
46776
46777         * lib/idcache.c: Adjust comments in user- and group- portions to
46778         be more accurate, and to be consistent with one another.
46779
46780 2006-11-20  Jim Meyering  <jim@meyering.net>
46781
46782         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
46783         continue using the flexible array member (thus, this module performs
46784         half as many malloc calls), with the addition that...
46785         (getgroup, getuser): Consistently record a non-match via an empty
46786         "name" string, and map an empty string match to a NULL return value.
46787         * modules/idcache (Depends-on): Re-add flexmember.
46788
46789         * lib/idcache.c (getuser): Remove all uses of the register keyword.
46790         (getuidbyname, getgroup, getgidbyname): Likewise.
46791
46792         Use cleaner syntax: NULL rather than 0.
46793         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
46794
46795 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
46796
46797         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
46798         It mishandled the case where the group was missing.
46799         Problem reported by Greg Schafer.
46800         * modules/idcache: Likewise.
46801
46802 2006-11-18  Jim Meyering  <jim@meyering.net>
46803
46804         * check-module (%exempt_header): Add exception for some
46805         conditionally-included headers.
46806
46807         * modules/i-ring (Depends-on): Add verify.
46808         (License): Change to LGPL.
46809
46810 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
46811
46812         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
46813         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
46814         and inttostr.h.  Use snprintf rather than uinttostr, so that
46815         LGPLed code doesn't depend on GPLed.
46816
46817 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
46818
46819         * modules/inline (License): Change from GPL to LGPL.
46820
46821 2006-11-17  Jim Meyering  <jim@meyering.net>
46822
46823         * modules/d-type (License): Switch to LGPL.
46824
46825 2006-11-15  Bruno Haible  <bruno@clisp.org>
46826
46827         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
46828
46829 2006-11-15  Eric Blake  <ebb9@byu.net>
46830
46831         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
46832         the module dependency.
46833
46834 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
46835             Bruno Haible  <bruno@clisp.org>
46836
46837         * gnulib-tool (func_create_testdir): Add license consistency check.
46838
46839 2006-11-15  Eric Blake  <ebb9@byu.net>
46840
46841         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
46842         random "(cached)" in configure output.
46843
46844 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46845
46846         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
46847         test for conforming inttypes.h is both announced and cached.
46848
46849         * MODULES.html.sh (seen_modules, seen_files): New variables.
46850         (func_module): Rewrite to use a few less gnulib-tool and sed
46851         invocations.  Avoid a couple of quadratic algorithms for ...
46852         (missed_modules, missed_files): ... these, with ...
46853         (func_append, func_tmpdir): ... these new functions, from
46854         gnulib-tool.  Analogously, install traps for cleanup.
46855
46856         * tests/test-gc.c (main): Remove unused variables.
46857         * tests/test-read-file.c: Include stdlib.h, for 'free'.
46858
46859 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
46860
46861         * modules/inttostr (License): Change to LGPL.
46862
46863 2006-11-14  Eric Blake  <ebb9@byu.net>
46864
46865         * modules/tempname (License): Change to LGPL.
46866
46867 2006-11-14  Eric Blake  <ebb9@byu.net>
46868
46869         * doc/functions.texi (Function Portability): *printf functions on
46870         Cygwin now understand all POSIX size specifiers.
46871
46872 2006-11-14  Bruno Haible  <bruno@clisp.org>
46873
46874         * modules/c-ctype (License): Change to LGPL.
46875
46876 2006-11-12  Bruno Haible  <bruno@clisp.org>
46877
46878         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
46879         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
46880         for GNOME libraries, for which the include files are installed in
46881         subdirectories of $prefix/include.
46882
46883 2006-11-12  Bruno Haible  <bruno@clisp.org>
46884
46885         * m4/lib-link.m4: Require at least autoconf-2.54.
46886         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
46887         name to underscores for the --with option.
46888
46889 2006-11-13  Bruno Haible  <bruno@clisp.org>
46890
46891         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
46892         the tests directory.
46893         Reported by Ralf Wildenhues.
46894
46895 2006-11-13  Bruno Haible  <bruno@clisp.org>
46896
46897         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
46898         (func_emit_initmacro_end): Undo the override here.
46899         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
46900         Works around the famous automake error in coreutils.
46901
46902 2006-11-13  Eric Blake  <ebb9@byu.net>
46903
46904         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
46905         element, not its node.
46906
46907 2006-11-12  Bruno Haible  <bruno@clisp.org>
46908
46909         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
46910         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
46911
46912 2006-11-12  Bruno Haible  <bruno@clisp.org>
46913
46914         * gnulib-tool: New option --local-symlink.
46915         (func_usage): Document it.
46916         (lsymbolic): New variable.
46917         (func_import, func_create_testdir): If --symlink was not specified,
46918         test whether --local-symlink was specified and the file comes from
46919         the local_gnulib_dir.
46920
46921 2006-11-12  Bruno Haible  <bruno@clisp.org>
46922
46923         * gnulib-tool (func_ln): New function.
46924         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
46925
46926 2006-11-12  Bruno Haible  <bruno@clisp.org>
46927
46928         Finish support for source files in subdirectories.
46929         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
46930         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
46931         AUTOMAKE_OPTIONS.
46932         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
46933
46934 2006-11-12  Bruno Haible  <bruno@clisp.org>
46935
46936         * gnulib-tool (func_get_automake_snippet): Synthesize also an
46937         EXTRA_lib_SOURCES augmentation.
46938         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
46939
46940 2006-11-12  Jim Meyering  <jim@meyering.net>
46941
46942         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
46943         file descriptors.  This also averts a failure on systems with
46944         native openat support when a traversed directory lacks "x" access.
46945         * lib/fts_.h: Include "i-ring.h"
46946         (struct FTS) [fts_fd_ring]: New member.
46947         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
46948         (FCHDIR): Add parentheses.
46949         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
46950         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
46951         When descending, rather than simply closing the previous
46952         fts_cwd_fd value, push that file descriptor onto the ring.
46953         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
46954         (fts_open): Initialize the new fd_ring member.
46955         (fts_close): Clear the ring.
46956         (fts_safe_changedir): When possible, use our new fd_ring to skip
46957         the diropen and fstat and dev/ino comparison that would normally
46958         accompany a virtual `chdir ("..")'.
46959
46960         * modules/fts (Depends-on): Add i-ring.
46961         * modules/i-ring: New module.
46962         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
46963         * m4/i-ring.m4: New file.
46964
46965 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
46966
46967         * gnulib-tool (func_create_testdir): Fix replacement of
46968         `build-aux' in configure.ac.  Run autotools in gltests
46969         subdirectory.
46970         (func_create_testdir, func_create_megatestdir, test): There is
46971         no need for '--force' in most autotool invocations in a new
46972         tree.  Actually fail the whole test if any of the tools, or the
46973         configure or make stages fail.
46974
46975         Sync from Automake.
46976         * build-aux/gnupload: Revert last change.  Add pointer to upload
46977         instructions of the GNU Maintenance Instructions.
46978         Suggestion by Karl Berry.
46979
46980 2006-11-10  Jim Meyering  <jim@meyering.net>
46981
46982         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
46983
46984 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
46985
46986         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
46987         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
46988         (bind_textdomain_codeset) [! ENABLE_NLS]:
46989         Evaluate all the arguments.  That way, callers get compatible behavior
46990         if the arguments have side effects.  Also, it avoids some GCC
46991         diagnostics in some cases; Joel E. Denny reported problems when Bison
46992         was configured with --enable-gcc-warnigs.
46993
46994 2006-11-10  Jim Meyering  <jim@meyering.net>
46995
46996         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
46997         relevant options in CFLAGS (like -O, -fno-inline) are taken into
46998         account.
46999
47000 2006-11-10  Jim Meyering  <jim@meyering.net>
47001
47002         * modules/inline: New file/module.
47003         * modules/xalloc (Files): Remove m4/inline.m4.
47004         (Depends-on): Add inline, instead.
47005         * modules/oset: Likewise.
47006         * modules/list: Likewise.
47007
47008 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
47009
47010         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
47011         Problem reported by Matthew Woehlke.
47012
47013 2006-11-09  Bruno Haible  <bruno@clisp.org>
47014
47015         * lib/tempname.c (gen_tempname): Remove variant that invokes
47016         __gen_tempname.
47017         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
47018         __gen_tempname.
47019
47020 2006-11-08  Bruno Haible  <bruno@clisp.org>
47021
47022         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
47023         to 'yes' instead of 'cross-compiling'.
47024
47025 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
47026
47027         * lib/quotearg.h (quotearg_free): New decl.
47028         * lib/quotearg.c (quotearg_free): New function.
47029         (slot0, nslots, slotvec0, slotvec):
47030         Now file-scope so that quotearg_free can get at them.
47031
47032 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47033
47034         Sync from Automake.
47035         * build-aux/gnupload: Add missing 'gnu' to example URL.
47036         Report by Karl Berry.
47037
47038 2006-11-08  Bruno Haible  <bruno@clisp.org>
47039
47040         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
47041         Suggested by Paul Eggert.
47042
47043 2006-11-08  Jim Meyering  <jim@meyering.net>
47044
47045         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
47046         It's already included if !_LIBC.
47047         (fts_safe_changedir): Add a comment.
47048
47049 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
47050
47051         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
47052         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
47053         Matthew Woehlke.
47054
47055         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
47056         definitions up, to avoid colliding with change below.
47057         (static_inline) [HAVE_INLINE]: New macro.
47058         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
47059         Provide extern decls when !HAVE_INLINE.  Do not define unless
47060         static_inline is defined, either by us or by xmalloc.c.  Use
47061         static_inline rather than static inline.
47062         (XCALLOC): Optimize sizeof(T) = 1 case.
47063         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
47064
47065 2006-11-07  Bruno Haible  <bruno@clisp.org>
47066
47067         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
47068         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
47069         AC_C_INLINE.
47070         * modules/xalloc (Files): Add m4/inline.m4.
47071
47072 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47073
47074         * README: Fix typo.
47075         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
47076         (Miscellanous Notes): ...from this.
47077
47078 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
47079
47080         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
47081         Mention that offsetof should be used instead of sizeof.
47082         From Bruno Haible.
47083
47084 2006-11-07  Bruno Haible  <bruno@clisp.org>
47085
47086         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
47087
47088 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
47089
47090         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
47091         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
47092         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
47093         (gl_tree_add_before, gl_tree_add_after):
47094         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
47095         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
47096         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
47097         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
47098         (gl_linked_add_after, gl_linked_add_at): Likewise.
47099         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
47100         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
47101         (gl_tree_add_before, gl_tree_add_after): Likewise.
47102         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
47103         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
47104         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
47105
47106 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47107
47108         * lib/gl_oset.h: Use C comment style, not C++ comment style.
47109
47110 2006-11-06  Bruno Haible  <bruno@clisp.org>
47111
47112         * m4/inline.m4: New file.
47113         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
47114         * modules/list (Files): Add m4/inline.m4.
47115         * modules/oset (Files): Likewise.
47116
47117 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
47118
47119         * lib/idcache.c: Include <stddef.h>, for offsetof.
47120         (struct userid.name): Change from char * to a flexible array member.
47121         All uses changed.
47122         * modules/idcache (Depends-on): Add flexmember.
47123
47124         * MODULES.html.sh (Core language properties): New module flexmember.
47125         * modules/flexmember, m4/flexmember.m4: New files.
47126
47127         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
47128         inline functions that are identical with the old xnmalloc_inline,
47129         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
47130         that we can avoid some unnecessary integer multiplications and
47131         divisions in the common case where the element size is known at
47132         compile time.
47133         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
47134         needed.
47135         (xnboundedmalloc): Remove.
47136         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
47137         arguments, for consistency with rest of this header.
47138         (xcharalloc): Rewrite using XNMALLOC.
47139         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
47140         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
47141         versions have been moved to lib/xalloc.h and renamed to be the
47142         non-*_inline versions.
47143         (xmalloc, xrealloc): Implement without reference to the xnmalloc
47144         and xnrealloc functions, since those functions are now inline and
47145         now call us.
47146         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
47147         renaming described above.
47148         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
47149         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
47150         captures the dependency in AC_C_INLINE.
47151
47152         New module canonicalize-lgpl, proposed by Charles Wilson in
47153         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
47154         with a few small changes afterwards.
47155         * MODULES.html.sh (File system functions): New module
47156         canonicalize-lgpl.
47157         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
47158         and canonicalize_file_name.
47159         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
47160         * modules/canonicalize-lgpl: New files.
47161
47162 2006-11-05  Bruno Haible  <bruno@clisp.org>
47163
47164         * gnulib-tool (func_import, func_create_testdir): Create directories
47165         also for files in subdirectories of lib/.
47166
47167 2006-11-05  Bruno Haible  <bruno@clisp.org>
47168
47169         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
47170         ANSI C compliant.
47171
47172 2006-11-03  Bruno Haible  <bruno@clisp.org>
47173
47174         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
47175         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
47176         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
47177         (xnboundedmalloc): New inline function.
47178         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
47179         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
47180         xmalloc.
47181         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
47182         xmalloc.
47183         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
47184         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
47185         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
47186         xmalloc.
47187         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
47188         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
47189         xmalloc.
47190         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
47191         gl_tree_add_after): Use XMALLOC instead of xmalloc.
47192         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
47193         xmalloc.
47194         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
47195         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
47196         gl_tree_add_after): Use XMALLOC instead of xmalloc.
47197         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
47198         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
47199         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
47200         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
47201
47202 2006-11-03  Bruno Haible  <bruno@clisp.org>
47203
47204         * lib/c-ctype.h [C++]: Define functions without name mangling.
47205         * lib/fwriteerror.h [C++]: Likewise.
47206         * lib/gcd.h [C++]: Likewise.
47207         * lib/linebreak.h [C++]: Likewise.
47208
47209 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
47210
47211         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
47212         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
47213         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
47214         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
47215         Check for functions and headers just once.
47216         Check for declaration of canonicalize_file_name.
47217         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
47218
47219 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
47220
47221         * gnulib-tool (func_import): Fix typo in actioncmd.
47222
47223 2006-11-02  Bruno Haible  <bruno@clisp.org>
47224
47225         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
47226         newline sequence in the Makefile.am snippet as a space, like "make"
47227         does.
47228         Reported by Roger Persson <perrog@gmail.com>.
47229
47230 2006-11-01  Bruno Haible  <bruno@clisp.org>
47231
47232         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
47233         already declared in <string.h>.
47234         * lib/strcase.h (strncasecmp): Don't declare it if yes.
47235
47236 2006-11-01  Bruno Haible  <bruno@clisp.org>
47237
47238         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
47239         * lib/strcase.h: Include <string.h>.
47240         (strcasecmp): Define to rpl_strcasecmp here.
47241
47242 2006-11-01  Bruno Haible  <bruno@clisp.org>
47243
47244         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
47245
47246 2006-11-01  Eric Blake  <ebb9@byu.net>
47247
47248         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
47249
47250         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
47251
47252 2006-10-29  Bruno Haible  <bruno@clisp.org>
47253
47254         Make it compile in C++ mode.
47255         * lib/full-write.c (full_rw): Add a cast.
47256
47257 2006-11-01  Bruno Haible  <bruno@clisp.org>
47258
47259         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
47260         be POSIX compliant.
47261         Reported by Roger Persson <perrog@gmail.com>.
47262
47263 2006-11-01  Eric Blake  <ebb9@byu.net>
47264
47265         * lib/getopt_.h: Fix comments.
47266
47267 2006-10-31  Eric Blake  <ebb9@byu.net>
47268
47269         * modules/tmpdir (Depends-on): Add sys_stat.
47270         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
47271         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
47272         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
47273         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
47274         tempname.
47275
47276 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
47277
47278         Avoid some C++ diagnostics reported by Bruno Haible.
47279         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
47280         xmalloc.
47281         (quotearg_alloc): Use xcharalloc rather than xmalloc.
47282         (struct slotvec): Move to top level.
47283         (quotearg_n_options): Rewrite to avoid xmalloc.
47284         * lib/xalloc.h (xcharalloc): New function.
47285         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
47286         [defined __cplusplus]: Add function template that provides result
47287         type propagation.  This part of the change is from Bruno Haible.
47288
47289 2006-10-29  Bruno Haible  <bruno@clisp.org>
47290
47291         Make it compile in C++ mode.
47292         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
47293         * lib/strnlen1.c (strnlen1): Cast memchr result.
47294         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
47295         * lib/clean-temp.c (string_equals, string_hash): Add casts.
47296         (create_temp_dir): Rename local variable 'template'.
47297         (compile_csharp_using_sscli): Add cast.
47298         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
47299         * lib/findprog.c (find_in_path): Likewise.
47300         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
47301         * lib/wait-process.c (register_slave_subprocess): Likewise.
47302
47303 2006-10-22  Bruno Haible  <bruno@clisp.org>
47304
47305         * modules/tsearch: New file.
47306         * lib/tsearch.h: New file.
47307         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
47308         * m4/tsearch.m4: New file.
47309         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
47310
47311 2006-10-29  Eric Blake  <ebb9@byu.net>
47312
47313         * lib/arcfour.c: Assume config.h.
47314         * lib/arctwo.c: Likewise.
47315         * lib/base64.c: Likewise.
47316         * lib/check-version.c: Likewise.
47317         * lib/crc.c: Likewise.
47318         * lib/des.c: Likewise.
47319         * lib/gc-gnulib.c: Likewise.
47320         * lib/gc-libgcrypt.c: Likewise.
47321         * lib/gc-pbkdf2-sha1.c: Likewise.
47322         * lib/getaddrinfo.c: Likewise.
47323         * lib/getdelim.c: Likewise.
47324         * lib/getline.c: Likewise.
47325         * lib/hmac-md5.c: Likewise.
47326         * lib/hmac-sha1.c: Likewise.
47327         * lib/iconvme.c: Likewise.
47328         * lib/md2.c: Likewise.
47329         * lib/md4.c: Likewise.
47330         * lib/memxor.c: Likewise.
47331         * lib/read-file.c: Likewise.
47332         * lib/readline.c: Likewise.
47333         * lib/rijndael-alg-fst.c: Likewise.
47334         * lib/rijndael-api-fst.c: Likewise.
47335         * lib/xgetdomainname.c: Likewise.
47336
47337 2006-10-28  Eric Blake  <ebb9@byu.net>
47338
47339         * lib/xstrndup.c: Assume config.h.
47340
47341 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
47342
47343         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
47344         stat-macros.h is now for our own macros, whereas stat_h is for
47345         macros in the <sys/stat.h> name space.
47346         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
47347         (STAT_MACROS_H): Remove.
47348         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
47349         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
47350         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
47351         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
47352         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
47353         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
47354         Move these macros to ...
47355         * lib/stat_.h: here.  Don't include stat-macros.h.
47356         * lib/canonicalize.c: Don't include stat-macros.h.
47357         * lib/chown.c: Likewise.
47358         * lib/euidaccess.c: Likewise.
47359         * lib/file-type.c: Likewise.
47360         * lib/filemode.c: Likewise.
47361         * lib/glob.c: Likewise.
47362         * lib/isapipe.c: Likewise.
47363         * lib/lchown.c: Likewise.
47364         * lib/lstat.c: Likewise.
47365         * lib/mkdir-p.c: Likewise.
47366         * lib/rmdir.c: Likewise.
47367         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
47368         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
47369         unless mkdir isn't declared, to speed up 'configure'.
47370         Always create sys/stat.h, since it's unlikely any real sys/stat.h
47371         would define all the S_* symbols.
47372         * modules/canonicalize (Depends-on):
47373         Depend on sys_stat, not stat-macros.
47374         * modules/chown: Likewise.
47375         * modules/euidaccess: Likewise.
47376         * modules/filemode: Likewise.
47377         * modules/file-type: Likewise.
47378         * modules/glob: Likewise.
47379         * modules/isapipe: Likewise.
47380         * modules/lchown: Likewise.
47381         * modules/lstat: Likewise.
47382         * modules/mkancesdirs: Likewise.
47383         * modules/rmdir: Likewise.
47384         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
47385         * modules/modechange: Likewise.
47386         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
47387         (configure.ac): Remove gl_STAT_MACROS.
47388         * modules/sys_stat (Depends-on): Remove stat-macros.
47389
47390 2006-10-27  Bruno Haible  <bruno@clisp.org>
47391
47392         * m4/signed.m4: Remove file.
47393         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
47394         invocation.
47395         * modules/vasnprintf (Files): Remove m4/signed.m4.
47396
47397 2006-10-27  Bruno Haible  <bruno@clisp.org>
47398
47399         Update to GNU gettext 0.16.
47400         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
47401         m4/inttypes-h.m4, m4/signed.m4.
47402         * m4/gettext.m4: Update to GNU gettext 0.16.
47403         * m4/intl.m4: New file, from GNU gettext.
47404         * m4/intldir.m4: New file, from GNU gettext.
47405         * config/srclist.txt: Update
47406
47407 2006-10-27  Eric Blake  <ebb9@byu.net>
47408
47409         * MODULES.html.sh: Document tempname.
47410         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
47411         dependencies.
47412         (Files): Move lib/tempname.c...
47413         * modules/tempname: ...to this new module.
47414         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
47415         (gl_PREREQ_TEMPNAME): Move...
47416         * m4/tempname.m4: ...to this new file.
47417         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
47418         * modules/sys_stat (Depends-on): Add stat-macros.
47419         * lib/stat_.h (includes): Pick up stat macros.
47420         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
47421         if stat macros are broken.
47422         * lib/tempname.c (includes): No need to include "stat-macros.h".
47423         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
47424         (direxists, __path_search) [!_LIBC]: Don't compile these in
47425         gnulib; the tmpdir module covers that.
47426         * lib/tempname.h: New file.
47427
47428 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
47429
47430         * COPYING: Explain how gnulib-tool converts licence headers.
47431         Almost all wording by Eric Blake.
47432
47433 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
47434
47435         * lib/mbchar.h (is_basic_table): Make read-only.
47436         * lib/mbchar.c (is_basic_table): Likewise.
47437         Reported by John Darrington.
47438
47439 2006-10-25  Bruno Haible  <bruno@clisp.org>
47440
47441         * lib/progname.h (set_program_name): Undefine before defining.
47442
47443 2006-10-25  Bruno Haible  <bruno@clisp.org>
47444
47445         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
47446         false for non-gcc C++ compilers.
47447         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
47448
47449 2006-10-24  Bruno Haible  <bruno@clisp.org>
47450
47451         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
47452         iconv implementations like Irix iconv.
47453
47454 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47455
47456         * modules/vararrays: New file.
47457         * m4/vararrays.m4: New file, taken from diffutils.
47458         * MODULES.html.sh: New module vararrays.
47459
47460 2006-10-24  Karl Berry  <karl@gnu.org>
47461
47462         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
47463         Don't call GNU Unix.
47464
47465 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47466
47467         * users.txt: Add Libtool.
47468
47469         Sync from Libtool:
47470
47471         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47472
47473         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
47474         to gnulib's policy of including config.h unconditionally.
47475
47476 2006-10-24  Bruno Haible  <bruno@clisp.org>
47477
47478         * modules/wcwidth (Files): Add m4/wint_t.m4.
47479         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
47480         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
47481
47482 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
47483
47484         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
47485         to pacify GCC with some -W flags enabled.  Problem reported by
47486         Bruno Haible.
47487
47488 2006-10-24  Jim Meyering  <jim@meyering.net>
47489
47490         * MODULES.html.sh: Remove uinttostr.  It's not a module.
47491         Reported by Karl Berry.
47492
47493 2006-10-23  Bruno Haible  <bruno@clisp.org>
47494
47495         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
47496
47497 2006-10-24  Bruno Haible  <bruno@clisp.org>
47498
47499         * lib/gl_list.h: Use C comment style, not C++ comment style.
47500
47501 2006-10-23  Eric Blake  <ebb9@byu.net>
47502
47503         * lib/getaddrinfo.c (includes): Add missing include.
47504
47505 2006-10-23  Bruno Haible  <bruno@clisp.org>
47506             Paul Eggert  <eggert@cs.ucla.edu>
47507
47508         Ability to rename obstack_free.
47509         * lib/obstack.h (__obstack_free): New macro. Declare instead of
47510         obstack_free.
47511         (obstack_free): Invoke the __obstack_free macro.
47512         * lib/obstack.c (obstack_free): Use __obstack_free macro.
47513
47514 2006-10-23  Bruno Haible  <bruno@clisp.org>
47515             Paul Eggert  <eggert@cs.ucla.edu>
47516
47517         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
47518         __argc, __argv from the declaration. (They are defined as macros on
47519         mingw.)
47520
47521 2006-10-22  Bruno Haible  <bruno@clisp.org>
47522
47523         * doc/gnulib-intro.texi: New file.
47524         * doc/gnulib.texi: Include it.
47525
47526 2006-10-21  Bruno Haible  <bruno@clisp.org>
47527
47528         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
47529         "Introduction", "Miscellanous Notes", "Particular Modules".
47530
47531 2006-10-21  Bruno Haible  <bruno@clisp.org>
47532
47533         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
47534         Change mostlyclean-local rule to avoid sh syntax error from bash
47535         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
47536
47537 2006-10-23  Jim Meyering  <jim@meyering.net>
47538
47539         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
47540         in place of snprintf.
47541
47542         * modules/inttostr (Files): Add lib/uinttostr.c.
47543         * lib/uinttostr.c (inttostr): New file/function.
47544         * lib/inttostr.h (uinttostr): Declare.
47545         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
47546         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
47547         Add uinttostr.
47548         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
47549
47550 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
47551
47552         * lib/canonicalize.c (ELOOP): Define if not already defined.
47553         Problem reported by Bruno Haible in
47554         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
47555
47556 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
47557
47558         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
47559         Problem reported by Perry Smith and Ville Laurikari.
47560
47561         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
47562         uses.
47563
47564 2006-10-19  Bruno Haible  <bruno@clisp.org>
47565
47566         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
47567         for mingw.
47568
47569 2006-10-19  Bruno Haible  <bruno@clisp.org>
47570
47571         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
47572         Needed for mingw.
47573
47574 2006-10-19  Bruno Haible  <bruno@clisp.org>
47575
47576         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
47577
47578 2006-10-19  Bruno Haible  <bruno@clisp.org>
47579
47580         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
47581         it.
47582
47583 2006-10-19  Bruno Haible  <bruno@clisp.org>
47584
47585         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
47586         invocation.
47587
47588 2006-10-19  Bruno Haible  <bruno@clisp.org>
47589
47590         * gnulib-tool (func_create_testdir): Don't include ftruncate and
47591         mountlist by default.
47592
47593 2006-10-16  Bruno Haible  <bruno@clisp.org>
47594
47595         * lib/c-strstr.c: Include c-strstr.h.
47596
47597 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
47598
47599         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
47600         in a slash.
47601
47602 2006-10-18  Bruno Haible  <bruno@clisp.org>
47603
47604         * lib/lock.h [C++]: Wrap definitions in extern "C".
47605
47606 2006-10-18  Bruno Haible  <bruno@clisp.org>
47607
47608         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
47609         gl_LIBOBJS list.
47610
47611 2006-10-18  Bruno Haible  <bruno@clisp.org>
47612
47613         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
47614
47615 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
47616
47617         * lib/xstrtol.h: Include gettext.h.
47618         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
47619         Problem reported by Eric Blake.
47620         * modules/xstrtol (Depends-on): Add gettext-h.
47621
47622 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
47623
47624         * lib/strftime.c (advance): New macro.
47625         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
47626         incomplete type, so you can't add 0 to it.  Problem and patch
47627         reported by Eelco Dolstra for dietlibc.
47628
47629 2006-10-18  Jim Meyering  <jim@meyering.net>
47630
47631         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
47632         type for a local, and rename it: s/up/user_proc/.
47633
47634 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
47635
47636         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
47637         READ_UTMP_USER_PROCESS.
47638         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
47639
47640 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
47641
47642         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
47643         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
47644
47645 2006-10-17  Eric Blake  <ebb9@byu.net>
47646
47647         * lib/sigprocmask.c (sigprocmask): Fix typo.
47648
47649         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
47650
47651         * modules/clean-temp (Makefile.am): Don't add to make output...
47652         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
47653         config.h.
47654
47655 2006-10-17  Bruno Haible  <bruno@clisp.org>
47656
47657         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
47658         differently if DEFAULT_TEXT_DOMAIN is set.
47659
47660 2006-10-16  Bruno Haible  <bruno@clisp.org>
47661
47662         * lib/clean-temp.c: Include fwriteerror.h.
47663
47664 2006-10-16  Bruno Haible  <bruno@clisp.org>
47665
47666         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
47667
47668 2006-10-16  Bruno Haible  <bruno@clisp.org>
47669
47670         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
47671         * lib/sigprocmask.h: Include <sys/types.h>.
47672         (sigset_t): Use the system's definition if present.
47673
47674 2006-10-17  Eric Blake  <ebb9@byu.net>
47675
47676         * lib/xvasprintf.c (includes): Assume config.h.
47677         * lib/xasprintf.c (includes): Likewise.
47678
47679 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
47680
47681         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
47682         at least as wide as intmax_t.
47683
47684 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
47685
47686         (Imported from Automake.)
47687         * build-aux/gnupload: Update to version 1.1 of directive file.
47688
47689 2006-10-16  Eric Blake  <ebb9@byu.net>
47690
47691         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
47692         match Automake 1.10a.
47693
47694 2006-10-14  Bruno Haible  <bruno@clisp.org>
47695
47696         * modules/sigprocmask: New file.
47697         * lib/sigprocmask.h: New file.
47698         * lib/sigprocmask.c: New file.
47699         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
47700         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
47701         request sigprocmask.o.
47702         (gl_PREREQ_SIGPROCMASK): New macro.
47703         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
47704         (Depends-on): Add sigprocmask.
47705         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
47706         gt_SIGNALBLOCKING. Test for 'raise' only once.
47707         * lib/fatal-signal.c: Include sigprocmask.h.
47708         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
47709         unblock_fatal_signals): Define always.
47710         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47711         sigprocmask.
47712
47713 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
47714
47715         Sync from Automake.
47716         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
47717         which incorrectly sets the mode of an existing destination
47718         directory.  In some cases the unpatched install-sh could do the
47719         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
47720         system.  We hope this is rare in practice, but it's clearly worth
47721         fixing.  Problem reported by Alex Unleashed in
47722         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
47723         Also, don't bother to check for -m bugs unless we're using -m;
47724         suggested by Stepan Kasal.
47725
47726 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
47727
47728         Sync from Automake.
47729         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
47730         `-c' flag, so they appear at the same position as in %FASTDEP%
47731         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
47732         which ignores unknown options only after the first non-option.
47733         Bug report against M4 by Nelson H. F. Beebe.
47734
47735 2006-10-13  Jim Meyering  <jim@meyering.net>
47736
47737         Fix a bug in yesterday's change.
47738         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
47739         p->fts_statp->st_dev would be used uninitialized.
47740         Ensures that we always call fts_stat on the very first entry.
47741         Miklos Szeredi reported that find -xdev stopped working.
47742
47743 2006-10-12  Bruno Haible  <bruno@clisp.org>
47744
47745         * gnulib-tool (func_get_automake_snippet): Append an automatically
47746         computed EXTRA_DIST augmentation.
47747         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
47748         * modules/alloca-opt (Makefile.am): Likewise.
47749         * modules/allocsa (Makefile.am): Likewise.
47750         * modules/arcfour (Makefile.am): Likewise.
47751         * modules/arctwo (Makefile.am): Likewise.
47752         * modules/argmatch (Makefile.am): Likewise.
47753         * modules/argz (Makefile.am): Likewise.
47754         * modules/atexit (Makefile.am): Likewise.
47755         * modules/backupfile (Makefile.am): Likewise.
47756         * modules/byteswap (Makefile.am): Likewise.
47757         * modules/c-strtod (Makefile.am): Likewise.
47758         * modules/c-strtold (Makefile.am): Likewise.
47759         * modules/calloc (Makefile.am): Likewise.
47760         * modules/canon-host (Makefile.am): Likewise.
47761         * modules/canonicalize (Makefile.am): Likewise.
47762         * modules/chdir-long (Makefile.am): Likewise.
47763         * modules/chdir-safer (Makefile.am): Likewise.
47764         * modules/check-version (Makefile.am): Likewise.
47765         * modules/chown (Makefile.am): Likewise.
47766         * modules/cloexec (Makefile.am): Likewise.
47767         * modules/close-stream (Makefile.am): Likewise.
47768         * modules/closeout (Makefile.am): Likewise.
47769         * modules/crc (Makefile.am): Likewise.
47770         * modules/csharpexec (Makefile.am): Likewise.
47771         * modules/cycle-check (Makefile.am): Likewise.
47772         * modules/des (Makefile.am): Likewise.
47773         * modules/dev-ino (Makefile.am): Likewise.
47774         * modules/dirfd (Makefile.am): Likewise.
47775         * modules/dirname (Makefile.am): Likewise.
47776         * modules/dup2 (Makefile.am): Likewise.
47777         * modules/eealloc (Makefile.am): Likewise.
47778         * modules/error (Makefile.am): Likewise.
47779         * modules/euidaccess (Makefile.am): Likewise.
47780         * modules/exclude (Makefile.am): Likewise.
47781         * modules/exitfail (Makefile.am): Likewise.
47782         * modules/fcntl-safer (Makefile.am): Likewise.
47783         * modules/fcntl (Makefile.am): Likewise.
47784         * modules/file-type (Makefile.am): Likewise.
47785         * modules/fileblocks (Makefile.am): Likewise.
47786         * modules/filemode (Makefile.am): Likewise.
47787         * modules/filenamecat (Makefile.am): Likewise.
47788         * modules/fnmatch (Makefile.am): Likewise.
47789         * modules/fopen-safer (Makefile.am): Likewise.
47790         * modules/fpending (Makefile.am): Likewise.
47791         * modules/fprintftime (Makefile.am): Likewise.
47792         * modules/free (Makefile.am): Likewise.
47793         * modules/fsusage (Makefile.am): Likewise.
47794         * modules/ftruncate (Makefile.am): Likewise.
47795         * modules/fts (Makefile.am): Likewise.
47796         * modules/gc-arcfour (Makefile.am): Likewise.
47797         * modules/gc-des (Makefile.am): Likewise.
47798         * modules/gc-hmac-md5 (Makefile.am): Likewise.
47799         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
47800         * modules/gc-md4 (Makefile.am): Likewise.
47801         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
47802         * modules/gc-sha1 (Makefile.am): Likewise.
47803         * modules/gc (Makefile.am): Likewise.
47804         * modules/getaddrinfo (Makefile.am): Likewise.
47805         * modules/getcwd (Makefile.am): Likewise.
47806         * modules/getdelim (Makefile.am): Likewise.
47807         * modules/getdomainname (Makefile.am): Likewise.
47808         * modules/getgroups (Makefile.am): Likewise.
47809         * modules/gethostname (Makefile.am): Likewise.
47810         * modules/gethrxtime (Makefile.am): Likewise.
47811         * modules/getline (Makefile.am): Likewise.
47812         * modules/getloadavg (Makefile.am): Likewise.
47813         * modules/getlogin_r (Makefile.am): Likewise.
47814         * modules/getndelim2 (Makefile.am): Likewise.
47815         * modules/getopt (Makefile.am): Likewise.
47816         * modules/getpagesize (Makefile.am): Likewise.
47817         * modules/getpass-gnu (Makefile.am): Likewise.
47818         * modules/getpass (Makefile.am): Likewise.
47819         * modules/getsubopt (Makefile.am): Likewise.
47820         * modules/gettime (Makefile.am): Likewise.
47821         * modules/gettimeofday (Makefile.am): Likewise.
47822         * modules/getugroups (Makefile.am): Likewise.
47823         * modules/getusershell (Makefile.am): Likewise.
47824         * modules/glob (Makefile.am): Likewise.
47825         * modules/group-member (Makefile.am): Likewise.
47826         * modules/hard-locale (Makefile.am): Likewise.
47827         * modules/hash (Makefile.am): Likewise.
47828         * modules/hmac-md5 (Makefile.am): Likewise.
47829         * modules/hmac-sha1 (Makefile.am): Likewise.
47830         * modules/human (Makefile.am): Likewise.
47831         * modules/idcache (Makefile.am): Likewise.
47832         * modules/imaxabs (Makefile.am): Likewise.
47833         * modules/imaxdiv (Makefile.am): Likewise.
47834         * modules/inet_ntop (Makefile.am): Likewise.
47835         * modules/inet_pton (Makefile.am): Likewise.
47836         * modules/intprops (Makefile.am): Likewise.
47837         * modules/inttostr (Makefile.am): Likewise.
47838         * modules/inttypes (Makefile.am): Likewise.
47839         * modules/isapipe (Makefile.am): Likewise.
47840         * modules/javaversion (Makefile.am): Likewise.
47841         * modules/lchmod (Makefile.am): Likewise.
47842         * modules/lchown (Makefile.am): Likewise.
47843         * modules/localcharset (Makefile.am): Likewise.
47844         * modules/long-options (Makefile.am): Likewise.
47845         * modules/lstat (Makefile.am): Likewise.
47846         * modules/malloc (Makefile.am): Likewise.
47847         * modules/mathl (Makefile.am): Likewise.
47848         * modules/mbchar (Makefile.am): Likewise.
47849         * modules/md2 (Makefile.am): Likewise.
47850         * modules/md4 (Makefile.am): Likewise.
47851         * modules/md5 (Makefile.am): Likewise.
47852         * modules/memcasecmp (Makefile.am): Likewise.
47853         * modules/memchr (Makefile.am): Likewise.
47854         * modules/memcmp (Makefile.am): Likewise.
47855         * modules/memcoll (Makefile.am): Likewise.
47856         * modules/memcpy (Makefile.am): Likewise.
47857         * modules/memmem (Makefile.am): Likewise.
47858         * modules/memmove (Makefile.am): Likewise.
47859         * modules/mempcpy (Makefile.am): Likewise.
47860         * modules/memrchr (Makefile.am): Likewise.
47861         * modules/memset (Makefile.am): Likewise.
47862         * modules/memxor (Makefile.am): Likewise.
47863         * modules/mkancesdirs (Makefile.am): Likewise.
47864         * modules/mkdir-p (Makefile.am): Likewise.
47865         * modules/mkdir (Makefile.am): Likewise.
47866         * modules/mkdtemp (Makefile.am): Likewise.
47867         * modules/mkstemp (Makefile.am): Likewise.
47868         * modules/mktime (Makefile.am): Likewise.
47869         * modules/modechange (Makefile.am): Likewise.
47870         * modules/mountlist (Makefile.am): Likewise.
47871         * modules/nanosleep (Makefile.am): Likewise.
47872         * modules/obstack (Makefile.am): Likewise.
47873         * modules/openat (Makefile.am): Likewise.
47874         * modules/pagealign_alloc (Makefile.am): Likewise.
47875         * modules/pathmax (Makefile.am): Likewise.
47876         * modules/physmem (Makefile.am): Likewise.
47877         * modules/poll (Makefile.am): Likewise.
47878         * modules/posixtm (Makefile.am): Likewise.
47879         * modules/posixver (Makefile.am): Likewise.
47880         * modules/putenv (Makefile.am): Likewise.
47881         * modules/quote (Makefile.am): Likewise.
47882         * modules/quotearg (Makefile.am): Likewise.
47883         * modules/raise (Makefile.am): Likewise.
47884         * modules/read-file (Makefile.am): Likewise.
47885         * modules/readline (Makefile.am): Likewise.
47886         * modules/readlink (Makefile.am): Likewise.
47887         * modules/readtokens (Makefile.am): Likewise.
47888         * modules/readutmp (Makefile.am): Likewise.
47889         * modules/realloc (Makefile.am): Likewise.
47890         * modules/regex (Makefile.am): Likewise.
47891         * modules/rename-dest-slash (Makefile.am): Likewise.
47892         * modules/rename (Makefile.am): Likewise.
47893         * modules/rijndael (Makefile.am): Likewise.
47894         * modules/rmdir (Makefile.am): Likewise.
47895         * modules/rpmatch (Makefile.am): Likewise.
47896         * modules/safe-read (Makefile.am): Likewise.
47897         * modules/safe-write (Makefile.am): Likewise.
47898         * modules/same-inode (Makefile.am): Likewise.
47899         * modules/same (Makefile.am): Likewise.
47900         * modules/save-cwd (Makefile.am): Likewise.
47901         * modules/savedir (Makefile.am): Likewise.
47902         * modules/setenv (Makefile.am): Likewise.
47903         * modules/settime (Makefile.am): Likewise.
47904         * modules/sha1 (Makefile.am): Likewise.
47905         * modules/sig2str (Makefile.am): Likewise.
47906         * modules/snprintf (Makefile.am): Likewise.
47907         * modules/stat-macros (Makefile.am): Likewise.
47908         * modules/stat-time (Makefile.am): Likewise.
47909         * modules/stdbool (Makefile.am): Likewise.
47910         * modules/stdint (Makefile.am): Likewise.
47911         * modules/stdlib-safer (Makefile.am): Likewise.
47912         * modules/stpcpy (Makefile.am): Likewise.
47913         * modules/stpncpy (Makefile.am): Likewise.
47914         * modules/strcase (Makefile.am): Likewise.
47915         * modules/strcasestr (Makefile.am): Likewise.
47916         * modules/strchrnul (Makefile.am): Likewise.
47917         * modules/strcspn (Makefile.am): Likewise.
47918         * modules/strdup (Makefile.am): Likewise.
47919         * modules/strerror (Makefile.am): Likewise.
47920         * modules/strftime (Makefile.am): Likewise.
47921         * modules/strndup (Makefile.am): Likewise.
47922         * modules/strnlen (Makefile.am): Likewise.
47923         * modules/strpbrk (Makefile.am): Likewise.
47924         * modules/strsep (Makefile.am): Likewise.
47925         * modules/strstr (Makefile.am): Likewise.
47926         * modules/strtod (Makefile.am): Likewise.
47927         * modules/strtoimax (Makefile.am): Likewise.
47928         * modules/strtok_r (Makefile.am): Likewise.
47929         * modules/strtol (Makefile.am): Likewise.
47930         * modules/strtoll (Makefile.am): Likewise.
47931         * modules/strtoul (Makefile.am): Likewise.
47932         * modules/strtoull (Makefile.am): Likewise.
47933         * modules/strtoumax (Makefile.am): Likewise.
47934         * modules/strverscmp (Makefile.am): Likewise.
47935         * modules/sys_socket (Makefile.am): Likewise.
47936         * modules/sys_stat (Makefile.am): Likewise.
47937         * modules/sysexits (Makefile.am): Likewise.
47938         * modules/time_r (Makefile.am): Likewise.
47939         * modules/timegm (Makefile.am): Likewise.
47940         * modules/timespec (Makefile.am): Likewise.
47941         * modules/tmpfile-safer (Makefile.am): Likewise.
47942         * modules/trim (Makefile.am): Likewise.
47943         * modules/unistd-safer (Makefile.am): Likewise.
47944         * modules/unlinkdir (Makefile.am): Likewise.
47945         * modules/unlocked-io (Makefile.am): Likewise.
47946         * modules/userspec (Makefile.am): Likewise.
47947         * modules/utime (Makefile.am): Likewise.
47948         * modules/utimecmp (Makefile.am): Likewise.
47949         * modules/utimens (Makefile.am): Likewise.
47950         * modules/vasnprintf (Makefile.am): Likewise.
47951         * modules/vasprintf (Makefile.am): Likewise.
47952         * modules/vsnprintf (Makefile.am): Likewise.
47953         * modules/xalloc (Makefile.am): Likewise.
47954         * modules/xgetcwd (Makefile.am): Likewise.
47955         * modules/xnanosleep (Makefile.am): Likewise.
47956         * modules/xreadlink (Makefile.am): Likewise.
47957         * modules/xstrtod (Makefile.am): Likewise.
47958         * modules/xstrtol (Makefile.am): Likewise.
47959         * modules/xstrtold (Makefile.am): Likewise.
47960         * modules/yesno (Makefile.am): Likewise.
47961         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
47962
47963 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
47964
47965         * modules/error (Makefile.am): Distribute files through
47966         EXTRA_DIST, not lib_SOURCES.
47967
47968 2006-10-12  Eric Blake  <ebb9@byu.net>
47969
47970         * modules/error (Makefile.am): Distribute files in /lib.
47971         * modules/obstack (Makefile.am): Likewise.
47972
47973 2006-10-12  Bruno Haible  <bruno@clisp.org>
47974
47975         * modules/acl (Makefile.am): Distribute all files in lib/ through
47976         EXTRA_DIST.
47977         * modules/arcfour (Makefile.am): Likewise.
47978         * modules/arctwo (Makefile.am): Likewise.
47979         * modules/argmatch (Makefile.am): Likewise.
47980         * modules/argz (Makefile.am): Likewise.
47981         * modules/atexit (Makefile.am): Likewise.
47982         * modules/backupfile (Makefile.am): Likewise.
47983         * modules/c-strtod (Makefile.am): Likewise.
47984         * modules/c-strtold (Makefile.am): Likewise.
47985         * modules/calloc (Makefile.am): Likewise.
47986         * modules/canon-host (Makefile.am): Likewise.
47987         * modules/canonicalize (Makefile.am): Likewise.
47988         * modules/chdir-long (Makefile.am): Likewise.
47989         * modules/chdir-safer (Makefile.am): Likewise.
47990         * modules/check-version (Makefile.am): Likewise.
47991         * modules/chown (Makefile.am): Likewise.
47992         * modules/cloexec (Makefile.am): Likewise.
47993         * modules/close-stream (Makefile.am): Likewise.
47994         * modules/closeout (Makefile.am): Likewise.
47995         * modules/crc (Makefile.am): Likewise.
47996         * modules/cycle-check (Makefile.am): Likewise.
47997         * modules/des (Makefile.am): Likewise.
47998         * modules/dirfd (Makefile.am): Likewise.
47999         * modules/dirname (Makefile.am): Likewise.
48000         * modules/dup2 (Makefile.am): Likewise.
48001         * modules/euidaccess (Makefile.am): Likewise.
48002         * modules/exclude (Makefile.am): Likewise.
48003         * modules/exitfail (Makefile.am): Likewise.
48004         * modules/fcntl-safer (Makefile.am): Likewise.
48005         * modules/file-type (Makefile.am): Likewise.
48006         * modules/fileblocks (Makefile.am): Likewise.
48007         * modules/filemode (Makefile.am): Likewise.
48008         * modules/filenamecat (Makefile.am): Likewise.
48009         * modules/fnmatch (Makefile.am): Likewise.
48010         * modules/fopen-safer (Makefile.am): Likewise.
48011         * modules/fpending (Makefile.am): Likewise.
48012         * modules/fprintftime (Makefile.am): Likewise.
48013         * modules/free (Makefile.am): Likewise.
48014         * modules/fsusage (Makefile.am): Likewise.
48015         * modules/ftruncate (Makefile.am): Likewise.
48016         * modules/fts (Makefile.am): Likewise.
48017         * modules/gc (Makefile.am): Likewise.
48018         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
48019         * modules/getaddrinfo (Makefile.am): Likewise.
48020         * modules/getcwd (Makefile.am): Likewise.
48021         * modules/getdelim (Makefile.am): Likewise.
48022         * modules/getdomainname (Makefile.am): Likewise.
48023         * modules/getgroups (Makefile.am): Likewise.
48024         * modules/gethostname (Makefile.am): Likewise.
48025         * modules/gethrxtime (Makefile.am): Likewise.
48026         * modules/getline (Makefile.am): Likewise.
48027         * modules/getloadavg (Makefile.am): Likewise.
48028         * modules/getlogin_r (Makefile.am): Likewise.
48029         * modules/getopt (Makefile.am): Likewise.
48030         * modules/getpass (Makefile.am): Likewise.
48031         * modules/getpass-gnu (Makefile.am): Likewise.
48032         * modules/getsubopt (Makefile.am): Likewise.
48033         * modules/gettime (Makefile.am): Likewise.
48034         * modules/gettimeofday (Makefile.am): Likewise.
48035         * modules/getugroups (Makefile.am): Likewise.
48036         * modules/getusershell (Makefile.am): Likewise.
48037         * modules/glob (Makefile.am): Likewise.
48038         * modules/group-member (Makefile.am): Likewise.
48039         * modules/hard-locale (Makefile.am): Likewise.
48040         * modules/hash (Makefile.am): Likewise.
48041         * modules/hmac-md5 (Makefile.am): Likewise.
48042         * modules/hmac-sha1 (Makefile.am): Likewise.
48043         * modules/human (Makefile.am): Likewise.
48044         * modules/idcache (Makefile.am): Likewise.
48045         * modules/imaxabs (Makefile.am): Likewise.
48046         * modules/imaxdiv (Makefile.am): Likewise.
48047         * modules/inet_ntop (Makefile.am): Likewise.
48048         * modules/inet_pton (Makefile.am): Likewise.
48049         * modules/inttostr (Makefile.am): Likewise.
48050         * modules/isapipe (Makefile.am): Likewise.
48051         * modules/lchown (Makefile.am): Likewise.
48052         * modules/long-options (Makefile.am): Likewise.
48053         * modules/lstat (Makefile.am): Likewise.
48054         * modules/malloc (Makefile.am): Likewise.
48055         * modules/mathl (Makefile.am): Likewise.
48056         * modules/mbchar (Makefile.am): Likewise.
48057         * modules/md2 (Makefile.am): Likewise.
48058         * modules/md4 (Makefile.am): Likewise.
48059         * modules/md5 (Makefile.am): Likewise.
48060         * modules/memcasecmp (Makefile.am): Likewise.
48061         * modules/memchr (Makefile.am): Likewise.
48062         * modules/memcmp (Makefile.am): Likewise.
48063         * modules/memcoll (Makefile.am): Likewise.
48064         * modules/memcpy (Makefile.am): Likewise.
48065         * modules/memmem (Makefile.am): Likewise.
48066         * modules/memmove (Makefile.am): Likewise.
48067         * modules/mempcpy (Makefile.am): Likewise.
48068         * modules/memrchr (Makefile.am): Likewise.
48069         * modules/memset (Makefile.am): Likewise.
48070         * modules/memxor (Makefile.am): Likewise.
48071         * modules/mkancesdirs (Makefile.am): Likewise.
48072         * modules/mkdir (Makefile.am): Likewise.
48073         * modules/mkdir-p (Makefile.am): Likewise.
48074         * modules/mkdtemp (Makefile.am): Likewise.
48075         * modules/mkstemp (Makefile.am): Likewise.
48076         * modules/mktime (Makefile.am): Likewise.
48077         * modules/modechange (Makefile.am): Likewise.
48078         * modules/mountlist (Makefile.am): Likewise.
48079         * modules/nanosleep (Makefile.am): Likewise.
48080         * modules/openat (Makefile.am): Likewise.
48081         * modules/pagealign_alloc (Makefile.am): Likewise.
48082         * modules/physmem (Makefile.am): Likewise.
48083         * modules/poll (Makefile.am): Likewise.
48084         * modules/posixtm (Makefile.am): Likewise.
48085         * modules/posixver (Makefile.am): Likewise.
48086         * modules/putenv (Makefile.am): Likewise.
48087         * modules/quote (Makefile.am): Likewise.
48088         * modules/quotearg (Makefile.am): Likewise.
48089         * modules/raise (Makefile.am): Likewise.
48090         * modules/read-file (Makefile.am): Likewise.
48091         * modules/readline (Makefile.am): Likewise.
48092         * modules/readlink (Makefile.am): Likewise.
48093         * modules/readtokens (Makefile.am): Likewise.
48094         * modules/readutmp (Makefile.am): Likewise.
48095         * modules/realloc (Makefile.am): Likewise.
48096         * modules/regex (Makefile.am): Likewise.
48097         * modules/rename (Makefile.am): Likewise.
48098         * modules/rename-dest-slash (Makefile.am): Likewise.
48099         * modules/rijndael (Makefile.am): Likewise.
48100         * modules/rmdir (Makefile.am): Likewise.
48101         * modules/rpmatch (Makefile.am): Likewise.
48102         * modules/safe-read (Makefile.am): Likewise.
48103         * modules/safe-write (Makefile.am): Likewise.
48104         * modules/same (Makefile.am): Likewise.
48105         * modules/save-cwd (Makefile.am): Likewise.
48106         * modules/savedir (Makefile.am): Likewise.
48107         * modules/setenv (Makefile.am): Likewise.
48108         * modules/settime (Makefile.am): Likewise.
48109         * modules/sha1 (Makefile.am): Likewise.
48110         * modules/sig2str (Makefile.am): Likewise.
48111         * modules/snprintf (Makefile.am): Likewise.
48112         * modules/stdlib-safer (Makefile.am): Likewise.
48113         * modules/stpcpy (Makefile.am): Likewise.
48114         * modules/stpncpy (Makefile.am): Likewise.
48115         * modules/strcase (Makefile.am): Likewise.
48116         * modules/strcasestr (Makefile.am): Likewise.
48117         * modules/strchrnul (Makefile.am): Likewise.
48118         * modules/strcspn (Makefile.am): Likewise.
48119         * modules/strdup (Makefile.am): Likewise.
48120         * modules/strerror (Makefile.am): Likewise.
48121         * modules/strftime (Makefile.am): Likewise.
48122         * modules/strndup (Makefile.am): Likewise.
48123         * modules/strnlen (Makefile.am): Likewise.
48124         * modules/strpbrk (Makefile.am): Likewise.
48125         * modules/strsep (Makefile.am): Likewise.
48126         * modules/strstr (Makefile.am): Likewise.
48127         * modules/strtod (Makefile.am): Likewise.
48128         * modules/strtoimax (Makefile.am): Likewise.
48129         * modules/strtok_r (Makefile.am): Likewise.
48130         * modules/strtol (Makefile.am): Likewise.
48131         * modules/strtoll (Makefile.am): Likewise.
48132         * modules/strtoul (Makefile.am): Likewise.
48133         * modules/strtoull (Makefile.am): Likewise.
48134         * modules/strtoumax (Makefile.am): Likewise.
48135         * modules/strverscmp (Makefile.am): Likewise.
48136         * modules/time_r (Makefile.am): Likewise.
48137         * modules/timegm (Makefile.am): Likewise.
48138         * modules/tmpfile-safer (Makefile.am): Likewise.
48139         * modules/unistd-safer (Makefile.am): Likewise.
48140         * modules/unlinkdir (Makefile.am): Likewise.
48141         * modules/userspec (Makefile.am): Likewise.
48142         * modules/utime (Makefile.am): Likewise.
48143         * modules/utimecmp (Makefile.am): Likewise.
48144         * modules/utimens (Makefile.am): Likewise.
48145         * modules/vasnprintf (Makefile.am): Likewise.
48146         * modules/vasprintf (Makefile.am): Likewise.
48147         * modules/vsnprintf (Makefile.am): Likewise.
48148         * modules/xalloc (Makefile.am): Likewise.
48149         * modules/xgetcwd (Makefile.am): Likewise.
48150         * modules/xnanosleep (Makefile.am): Likewise.
48151         * modules/xreadlink (Makefile.am): Likewise.
48152         * modules/xstrtod (Makefile.am): Likewise.
48153         * modules/xstrtol (Makefile.am): Likewise.
48154         * modules/xstrtold (Makefile.am): Likewise.
48155         * modules/yesno (Makefile.am): Likewise.
48156
48157 2006-10-12  Jim Meyering  <jim@meyering.net>
48158
48159         * m4/getloadavg.m4: Revert the change below.
48160
48161         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
48162         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
48163         fail with a symlink, which is what coreutils' ./bootstrap now
48164         creates by default.
48165
48166 2006-10-12  Bruno Haible  <bruno@clisp.org>
48167
48168         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
48169         mingw.
48170         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
48171         MSVC and mingw explicitly.
48172
48173 2006-10-11  Simon Josefsson  <jas@extundo.com>
48174             Bruno Haible  <bruno@clisp.org>
48175
48176         Add support for multiple gnulib-tool invocations in the scope of a
48177         single configure.ac file.
48178         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
48179         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
48180         with the same contents as the _LIBADD variable.
48181         (func_emit_initmacro_start, func_emit_initmacro_end,
48182         func_emit_initmacro_done): New functions.
48183         (func_import, func_create_testdir): Invoke them. Allow the identifiers
48184         gl_LIBOBJS and gl_LTLIBOBJS.
48185
48186 2006-10-11  Bruno Haible  <bruno@clisp.org>
48187
48188         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
48189         (func_create_testdir): Don't create po/Makefile.am, don't invoke
48190         autoreconf. Instead, invoke autopoint explicitly but move back the
48191         *.m4 files from gnulib.
48192
48193 2006-10-11  Bruno Haible  <bruno@clisp.org>
48194
48195         * gnulib-tool (func_usage): Make module names after --create-testdir
48196         optional.
48197         (func_create_testdir): If no module was specified, use nearly all
48198         modules.
48199
48200 2006-10-12  Jim Meyering  <jim@meyering.net>
48201
48202         Big performance improvement for fts-based tools that use FTS_NOSTAT.
48203         Avoid spurious inode-mismatch problems on non-POSIX file systems.
48204         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
48205         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
48206         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
48207         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
48208         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
48209         (fts_set_stat_required): New function.
48210         (fts_open): Defer the calls to fts_stat, if possible or requested.
48211         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
48212         into fts_stat itself.
48213         (fts_read): Perform any required (deferred) fts_stat call.
48214         (fts_build): Likewise, for the directory we're about to open and read.
48215         In the readdir loop, carefully decide whether each entry will require
48216         an eventual call to fts_stat, using dirent.d_type info if available.
48217         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
48218         a command line argument into this function.  Update all callers.
48219         Map a return value of FTS_DOT to FTS_D for a command line argument.
48220         * modules/fts (Depends-on): Add d-type.  Alphabetize.
48221         Thanks to Miklos Szeredi for his tenacity and for the initial
48222         bug report about "find" failing on a FUSE-based file system.
48223
48224         * lib/fts.c (fts_open): Use consistent indentation.
48225
48226 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
48227
48228         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
48229         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
48230         reported by Jim Meyering.  All uses of cache variables renamed
48231         to match Autoconf's.
48232         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
48233         the other one.
48234
48235         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
48236         Fix misspelling in diagnostic.
48237
48238 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
48239
48240         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
48241         defined.  Problem reported by Matthew Woehlke.
48242
48243         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
48244         Add support for Tandem NonStop R series.
48245         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
48246         Use new macro.
48247
48248         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
48249         (has_trailing_slash): Omit size arg; all callers changed.
48250         Omit 'inline', since it doesn't help performance and we'd
48251         need to configure it.
48252         Don't count //, ///, etc. as having a trailing slash.
48253         As a side effect, this removes a C99ism reported by Matthew Woehlke.
48254         (rpl_rename_dest_slash): On failure, use rename's errno rather
48255         than (in some cases) an incorrect or junk errno.
48256         Simplify code by removing need to compute length; this does
48257         cause it to make two passes instead of one over the file name,
48258         but it's worth it.
48259
48260         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
48261         change, since Autoconf's version may no longer be appropriate now
48262         that we are using CVS Autoconf's version.  Add support for Tandem.
48263
48264 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
48265             Bruno Haible  <bruno@clisp.org>
48266
48267         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
48268         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
48269         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
48270         gl_AC_TYPE_LONG_LONG.
48271
48272         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
48273         instead of HAVE_LONG_LONG.
48274         * lib/printf-args.c (printf_fetchargs): Likewise.
48275         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
48276         * lib/vasnprintf.c (VASNPRINTF): Likewise.
48277         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
48278         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
48279         gl_AC_TYPE_LONG_LONG.
48280
48281 2006-10-11  Bruno Haible  <bruno@clisp.org>
48282
48283         * m4/longlong.m4: Add comments.
48284         * m4/ulonglong.m4: Likewise.
48285
48286 2006-10-10  Bruno Haible  <bruno@clisp.org>
48287
48288         Make it possible to #define stpcpy, strdup to aliases.
48289         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
48290         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
48291
48292 2006-10-10  Bruno Haible  <bruno@clisp.org>
48293
48294         Make it possible to #define gcd to an alias.
48295         * lib/gcd.c: Include config.h.
48296
48297 2006-10-10  Bruno Haible  <bruno@clisp.org>
48298
48299         Make it possible to #define c_isascii to an alias.
48300         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
48301         defined. Undefine the macros before defining them, to avoid gcc
48302         warnings.
48303         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
48304         define NO_C_CTYPE_MACROS early.
48305
48306 2006-10-10  Bruno Haible  <bruno@clisp.org>
48307
48308         Make it possible to #define set_program_name to an alias.
48309         * lib/progname.c: Don't undefine set_program_name; instead, undefine
48310         ENABLE_RELOCATABLE early.
48311
48312 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
48313
48314         Port to Tandem NSK OSS, which has 64-bit signed int but at most
48315         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
48316         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
48317         More generally, don't assume that 64-bit signed int is available
48318         if unsigned int is, and vice versa.
48319         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
48320         unsigned symbols, not on their signed counterparts.
48321         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
48322         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
48323         (UINT64_C, UINTMAX_C):
48324         Likewise.
48325         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
48326         unsigned counterparts.
48327         (Have_long_long, Unsigned): New macros.
48328         (Int): Renamed from INT.
48329         (strtoimax): Use the new macros.
48330         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
48331         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
48332         * modules/inttypes (inttypes.h): Substitute
48333         HAVE_UNSIGNED_LONG_LONG_INT.
48334         * modules/stdint (stdint.h): Likewise.
48335         (Files): Add m4/ulonglong.m4.
48336
48337 2006-10-10  Bruno Haible  <bruno@clisp.org>
48338
48339         Fix a gcc -Wshadow warning.
48340         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
48341         to 'bucket'.
48342         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
48343         gl_linked_indexof_from_to): Likewise.
48344         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
48345         Likewise.
48346         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
48347         Likewise.
48348         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
48349         Reported by Eric Blake.
48350
48351 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
48352
48353         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
48354         for NetBSD.  Problem reported by Bruno Haible.
48355
48356 2006-10-09  Jim Meyering  <jim@meyering.net>
48357
48358         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
48359         Patch from Bruno Haible.
48360
48361 2006-10-09  Jim Meyering  <jim@meyering.net>
48362
48363         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
48364         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
48365         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
48366
48367 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
48368
48369         Don't include <config.h> twice; this doesn't work in some cases,
48370         e.g., when config.h has "#define intmax_t long long int" and
48371         we include <config.h>, <inttypes.h>, <config.h> in that order.
48372         Problem reported by Matthew Woehlke in:
48373         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
48374         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
48375         * lib/fts-cycle.c: Don't include config.h.
48376         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
48377         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
48378         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
48379         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
48380         inttypes.h.
48381         * lib/xstrtoumax.c: Likewise.
48382         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
48383         __strtol and the like, so that this module is more like its siblings.
48384         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
48385         Remove; no longer needed now that we assume gnulib inttypes.h.
48386
48387 2006-10-08  Bruno Haible  <bruno@clisp.org>
48388
48389         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
48390         option.
48391
48392 2006-10-07  Jim Meyering  <jim@meyering.net>
48393
48394         * modules/inttypes (inttypes.h): Revert what seems to have been
48395         an inadvertent part of today's change: use "|", not "/" in the
48396         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
48397
48398 2006-10-07  Bruno Haible  <bruno@clisp.org>
48399
48400         * modules/sublist: New file.
48401
48402 2006-10-07  Bruno Haible  <bruno@clisp.org>
48403
48404         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
48405         * modules/argz (argz.h): Likewise.
48406         * modules/arpa_inet (arpa/inet.h): Likewise.
48407         * modules/byteswap (byteswap.h): Likewise.
48408         * modules/configmake (configmake.h): Likewise.
48409         * modules/fcntl (fcntl.h): Likewise.
48410         * modules/fnmatch (fnmatch.h): Likewise.
48411         * modules/getopt (getopt.h): Likewise.
48412         * modules/glob (glob.h): Likewise.
48413         * modules/inttypes (inttypes.h): Likewise.
48414         * modules/netinet_in (netinet/in.h): Likewise.
48415         * modules/poll (poll.h): Likewise.
48416         * modules/stdbool (stdbool.h): Likewise.
48417         * modules/stdint (stdint.h): Likewise.
48418         * modules/sys_select (sys/select.h): Likewise.
48419         * modules/sys_socket (sys/socket.h): Likewise.
48420         * modules/sys_stat (sys/stat.h): Likewise.
48421         * modules/sysexits (sysexits.h): Likewise.
48422         * modules/unistd (unistd.h): Likewise.
48423         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
48424         Add a "DO NOT EDIT" comment to the generated file.
48425         (func_import): Likewise for gnulib-comp.m4.
48426
48427 2006-10-07  Bruno Haible  <bruno@clisp.org>
48428
48429         * lib/gl_sublist.h: New file.
48430         * lib/gl_sublist.c: New file.
48431
48432 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
48433
48434         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
48435         name (relative to the original working directory) and the file
48436         name component (relative to the temporary working directory).  All
48437         callers changed.
48438         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
48439         * lib/mkdir-p.c (make_dir_parents): Likewise.
48440         * lib/mkdir-p.h (make_dir_parents): Likewise.
48441
48442 2006-10-06  Eric Blake  <ebb9@byu.net>
48443
48444         Define several macros for use by the clean-temp module.
48445         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
48446         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
48447         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
48448
48449         * lib/clean-temp.h (close_stream_temp): New declaration.
48450         * lib/clean-temp.c (includes): Pull in headers according to what
48451         other modules are in use.
48452         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
48453
48454 2006-10-06  Bruno Haible  <bruno@clisp.org>
48455
48456         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
48457         instead of fopen, fwriteerror.
48458
48459 2006-10-06  Bruno Haible  <bruno@clisp.org>
48460
48461         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
48462         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
48463         int.
48464         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
48465         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
48466         Return an error indicator.
48467         Suggested by Eric Blake.
48468
48469 2006-10-06  Bruno Haible  <bruno@clisp.org>
48470
48471         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
48472         Reported by Eric Blake.
48473
48474 2006-10-06  Bruno Haible  <bruno@clisp.org>
48475
48476         * modules/closeout (Description): Mention stderr too.
48477
48478 2006-10-06  Bruno Haible  <bruno@clisp.org>
48479         and Paul Eggert  <eggert@cs.ucla.edu>
48480
48481         * lib/closeout.c (close_stdout): Also close stderr.
48482         * lib/closeout.h: Update comment.
48483
48484 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
48485
48486         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
48487         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
48488         * lib/dirchownmod.c: Include lchown.h.
48489         * lib/lchown.c: Don't include files that lchown.h now includes.
48490         Don't declare chown, since lchown.h now does that.
48491         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
48492         (lchown): Define to rpl_chown if lchown is declared but
48493         does not exist.  Declare using a prototype if lchown is not
48494         declared.  Add a copyright notice.
48495         * lib/mkstemp.h: Include <unistd.h>.
48496         * lib/openat.c: Include lchown.h.
48497
48498         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
48499         we now test for that separately.
48500         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
48501         rather than O_NOFOLLOW, when testing whether it's possible to
48502         avoid a race condition reliably.
48503         * lib/savewd.c (savewd_chdir): Likewise.
48504
48505         Remove macros that are no longer needed now that stdint.h is
48506         reliable.
48507         * lib/fsusage.c (UINTMAX_MAX): Remove.
48508         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
48509         * lib/utimecmp.c (SIZE_MAX): Remove.
48510
48511         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
48512
48513         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
48514         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
48515         O_NOATIME works.
48516
48517 2006-10-05  Bruno Haible  <bruno@clisp.org>
48518
48519         * lib/gl_list.h (gl_sortedlist_search_from_to,
48520         gl_sortedlist_indexof_from_to): New declarations.
48521         (gl_list_implementation): New fields sortedlist_search_from_to,
48522         sortedlist_indexof_from_to.
48523         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
48524         inline functions.
48525         * lib/gl_list.c (gl_sortedlist_search_from_to,
48526         gl_sortedlist_indexof_from_to): New functions.
48527         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
48528         function.
48529         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
48530         (gl_array_sortedlist_search_from_to): New function.
48531         (gl_array_list_implementation): Update.
48532         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
48533         function.
48534         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
48535         (gl_carray_sortedlist_search_from_to): New function.
48536         (gl_carray_list_implementation): Update.
48537         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
48538         gl_linked_sortedlist_indexof_from_to): New functions.
48539         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
48540         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
48541         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
48542         gl_tree_sortedlist_indexof_from_to): New functions.
48543         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
48544         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
48545         Update.
48546         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
48547         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
48548         Update.
48549
48550 2006-10-05  Bruno Haible  <bruno@clisp.org>
48551
48552         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
48553         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
48554         (struct gl_list_implementation): Add fields search_from_to,
48555         indexof_from_to. Remove fields search, indexof.
48556         (gl_list_search): Use the search_from_to method.
48557         (gl_list_search_from, gl_list_search_from_to): New functions.
48558         (gl_list_indexof): Use the indexof_from_to method.
48559         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
48560         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
48561         (gl_list_search_from, gl_list_search_from_to): New functions.
48562         (gl_list_indexof): Use the indexof_from_to method.
48563         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
48564         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
48565         gl_array_indexof. Add start_index, end_index arguments.
48566         (gl_array_search_from_to): Renamed from gl_array_search. Add
48567         start_index, end_index arguments.
48568         (gl_array_remove, gl_array_list_implementation): Update.
48569         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
48570         gl_carray_indexof. Add start_index, end_index arguments.
48571         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
48572         start_index, end_index arguments.
48573         (gl_carray_remove, gl_carray_list_implementation): Update.
48574         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
48575         gl_linked_search. Add start_index, end_index arguments.
48576         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
48577         start_index, end_index arguments.
48578         (gl_linked_remove): Update.
48579         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
48580         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
48581         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
48582         field to 'size_t'.
48583         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
48584         gl_tree_search. Add start_index, end_index arguments.
48585         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
48586         start_index, end_index arguments.
48587         (gl_tree_remove): Update.
48588         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
48589         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
48590         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
48591         function.
48592         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
48593         gl_tree_search. Add start_index, end_index arguments.
48594         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
48595         start_index, end_index arguments.
48596         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
48597         Update.
48598         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
48599
48600 2006-10-05  Bruno Haible  <bruno@clisp.org>
48601
48602         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
48603
48604         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
48605         fwriteerror_temp): New declarations.
48606         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
48607         (descriptors): New variable.
48608         (cleanup): First, close the descriptors.
48609         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
48610         fclose_temp, fwriteerror_temp): New functions.
48611
48612 2006-10-04  Jim Meyering  <jim@meyering.net>
48613
48614         * lib/fts.c (fts_open): Tiny comment change.
48615
48616 2006-10-04  Bruno Haible  <bruno@clisp.org>
48617
48618         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
48619         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
48620         gl_LOCK_BODY.
48621         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
48622         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
48623         gl_LOCK_EARLY_BODY.
48624         (gl_LOCK): Require gl_LOCK_BODY.
48625
48626 2006-10-04  Bruno Haible  <bruno@clisp.org>
48627
48628         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
48629         (gl_oset_search_atleast): New declaration.
48630         (struct gl_oset_implementation): Add field 'search_atleast'.
48631         (gl_oset_search_atleast): New inline function.
48632         * lib/gl_oset.c (gl_oset_search_atleast): New function.
48633         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
48634         (gl_array_oset_implementation): Update.
48635         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
48636         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
48637         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
48638
48639 2006-10-04  Bruno Haible  <bruno@clisp.org>
48640
48641         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
48642
48643 2006-10-03  Bruno Haible  <bruno@clisp.org>
48644
48645         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
48646         from gl_avltreehash_list_implementation.
48647
48648 2006-10-03  Bruno Haible  <bruno@clisp.org>
48649
48650         * lib/gl_oset.c (gl_oset_add): Fix return type.
48651
48652 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
48653
48654         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
48655
48656 2006-10-02  Eric Blake  <ebb9@byu.net>
48657
48658         * modules/strnlen (Depends-on): Add extensions.
48659
48660 2006-10-02  Eric Blake  <ebb9@byu.net>
48661
48662         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
48663         definition in 2.60+.
48664
48665 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
48666
48667         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
48668         checks.
48669
48670 2006-10-02  Bruno Haible  <bruno@clisp.org>
48671
48672         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
48673         to the AUTOMAKE_OPTIONS.
48674         Reported by Jim Meyering.
48675
48676 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
48677
48678         Work around bug in Solaris 10 /proc file system:
48679         /proc/self/fd/NNN/.. isn't the parent directory of
48680         the directory whose file descriptor is NNN.  This needs to
48681         be worked around at run time, not compile time, since a
48682         program might be built on Solaris 8, where things work, and
48683         run on Solaris 10.
48684         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
48685         to use the following interface instead:
48686         (OPENAT_BUFFER_SIZE): New macro.
48687         (openat_proc_name): New function.
48688         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
48689         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
48690         Likewise.
48691         * lib/openat-proc.c: New file.
48692         * modules/openat (Files): Add lib/openat-proc.c.
48693         (Depends-on): Add same-inode, stdbool.
48694         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
48695
48696 2006-09-29  Bruno Haible  <bruno@clisp.org>
48697
48698         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
48699         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
48700         argument. Set stdout_closed before testing for ferror, not after.
48701         (fwriteerror, fwriteerror_no_ebadf): New functions.
48702
48703 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48704
48705         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
48706
48707 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
48708
48709         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
48710         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
48711
48712 2006-09-28  Jim Meyering  <jim@meyering.net>
48713
48714         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
48715         Include <unistd.h>.
48716
48717 2006-09-28  Bruno Haible  <bruno@clisp.org>
48718
48719         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
48720         * modules/linkedhash-list (Depends-on): Likewise.
48721         * modules/rbtreehash-list (Depends-on): Likewise.
48722
48723 2006-09-28  Bruno Haible  <bruno@clisp.org>
48724
48725         * lib/strndup.h: Simplify the redefinition of strndup.
48726         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
48727         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
48728
48729 2006-09-28  Bruno Haible  <bruno@clisp.org>
48730
48731         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
48732         * lib/gl_linkedhash_list.c: Likewise.
48733         * lib/gl_rbtreehash_list.c: Likewise.
48734
48735 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
48736
48737         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
48738         getaddrinfo.
48739
48740         * lib/__fpending.h: Don't include <stdio_ext.h> unless
48741         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
48742         it causes <stdio_ext.h> to cause a compile-time error.
48743         Problem reported by Nelson H. F. Beebe.
48744         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
48745         of HAVE_DECL___PENDING.
48746
48747         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
48748         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
48749         declaration.
48750
48751 2006-09-27  Jim Meyering  <jim@meyering.net>
48752
48753         This file could end up with a definition for a function
48754         named __strndup, rather than rpl_strndup on a system with
48755         incomplete weak_alias support.
48756         * lib/strndup.c (strndup): Rename from __strndup.
48757         Remove #defines that used to map __strndup to strndup.
48758         Don't use K&R prototypes.
48759         Remove LIBC-related code, since this file is not sync'd with glibc.
48760         * lib/strndup.h: Revamp, accordingly.
48761         * m4/strndup.m4: Modernize.
48762
48763 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
48764
48765         * modules/savewd (Depends-on): Add 'raise'.
48766         * lib/savewd.c: Include <signal.h>, for 'raise'.
48767
48768 2006-09-26  Jim Meyering  <jim@meyering.net>
48769
48770         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
48771         when we detect Darwin 8.7.0's acl_get_file bug.
48772         Rearrange to perform the new (below) run-test while $LIBS
48773         contains any acl-related library.  Set USE_ACL at the end.
48774         (gl_ACL_GET_FILE): New function.
48775
48776 2006-09-26  Eric Blake  <ebb9@byu.net>
48777
48778         * lib/verror.c: Include <config.h> unconditionally.
48779
48780 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
48781
48782         * modules/clock-time (Maintainer): Add self.
48783         * modules/getlogin_r (Depends-on): Add extensions.
48784
48785 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48786
48787         * modules/clock-time: New module.
48788         * modules/nanosleep (Depends-on): Add clock-time.
48789         * modules/gethrxtime (Depends-on): Likewise.
48790         * modules/gettime (Depends-on): Likewise.
48791         * modules/settime (Depends-on): Likewise.
48792
48793         * modules/fts-lgpl: Depend on openat.
48794         * modules/mkancesdirs: Depend on savewd.
48795         * modules/mkdir-p: Likewise.
48796
48797 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48798
48799         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
48800
48801         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
48802         `gl_have_arbitrary_file_name_length_limit' to
48803         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
48804         actually works between configure runs.
48805
48806 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48807             Bruno Haible  <bruno@clisp.org>
48808
48809         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
48810
48811 2006-09-25  Jim Meyering  <jim@meyering.net>
48812
48813         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
48814         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
48815
48816 2006-09-25  Eric Blake  <ebb9@byu.net>
48817
48818         * gnulib-tool (func_import, func_create_testdir): Fix typos in
48819         exec's in 2006-09-18 patch when shuffling fds.
48820
48821 2006-09-25  Bruno Haible  <bruno@clisp.org>
48822
48823         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
48824         Reported by Jim Meyering.
48825
48826 2006-09-24  Jim Meyering  <jim@meyering.net>
48827
48828         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
48829         compare a pointer against a literal "0".  That caused failures with
48830         at least HP-UX's hpcc.
48831
48832 2006-09-22  Simon Josefsson  <jas@extundo.com>
48833
48834         * modules/gc-sha1:
48835         * modules/gc-md4:
48836         * modules/gc-hmac-sha1:
48837         * modules/gc-hmac-md5:
48838         * modules/gc-des:
48839         * modules/gc-arcfour: Distribute more files.
48840
48841 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48842
48843         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
48844         (gl_linked_iterator_from_to): Initialize struct completely.
48845         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
48846         (gl_tree_iterator_from_to): Likewise
48847         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
48848         * lib/gl_array_list.c [lint] (gl_array_iterator)
48849         (gl_array_iterator_from_to): Likewise.
48850         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
48851         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
48852         (gl_carray_iterator_from_to): Likewise.
48853
48854         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
48855         * lib/md4.c (md4_process_block): Remove unused variable.
48856         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
48857         parentheses for clarity.
48858
48859 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48860
48861         * modules/bison-i18n (Depends-on): Add gettext.
48862
48863 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48864
48865         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
48866         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
48867         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
48868         also add missing comma that caused broken test.
48869         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
48870         stdlib.h, for `abort'.
48871         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
48872         variables.
48873         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
48874         include unistd.h if present, for `rmdir'.
48875         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
48876         variables.
48877         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
48878         in the process include standard headers for prototypes.
48879         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
48880         gets declared on GNU/Linux.
48881         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
48882         unistd.h, for `rmdir'.
48883         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
48884
48885         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
48886         always true.
48887         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
48888
48889         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
48890
48891 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48892
48893         * gnulib-tool (func_version): Create output all at once.  This
48894         may help avoid triggering unnecessary SIGPIPEs, and at any
48895         rate it doesn't hurt.
48896
48897 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48898             Bruno Haible  <bruno@clisp.org>
48899
48900         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
48901         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
48902         * m4/signed.m4 (bh_C_SIGNED): Likewise.
48903
48904         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
48905         (gl_FUNC_VASPRINTF): Invoke it.
48906
48907 2006-09-22  Bruno Haible  <bruno@clisp.org>
48908
48909         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
48910         getloadavg.c as first argument.
48911
48912 2006-09-22  Bruno Haible  <bruno@clisp.org>
48913
48914         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
48915         at the beginning of the gl_INIT macro.
48916         * modules/getloadavg (configure.ac): Pass $gl_source_base to
48917         gl_GETLOADAVG.
48918
48919 2006-09-22  Bruno Haible  <bruno@clisp.org>
48920
48921         * gnulib-tool (func_create_megatestdir): Don't include the config-h
48922         module.
48923         Suggested by Ralf Wildenhues.
48924
48925 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
48926
48927         Import this patch from libc:
48928
48929         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
48930
48931         * lib/regex_internal.c (re_string_reconstruct): Handle
48932         offset < pstr->valid_raw_len && pstr->offsets_needed case.
48933         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
48934         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
48935         re_string_context_at.
48936
48937         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
48938         now requires it.
48939         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
48940         gl_REGEX now does it for us.
48941         (gl_REGEX): Add test taken from
48942         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
48943
48944         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
48945         Check that large offsets work.  Modernize Autoconf usages.
48946         Prefer "yes" to mean a good thing rather than a bad.
48947         Don't put "#define mkstemp" in config.h, as this might interfere
48948         with standard system headers that "#define mkstemp mkstemp64".
48949
48950         * modules/mkstemp (Depends-on): Add extensions, so that
48951         mkstemp is visible on some platforms.
48952         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
48953         (Include): Change to "mkstemp.h" from <stdlib.h>.
48954         (Files): Add mkstemp.h.
48955
48956         * lib/mkstemp.h: New file, since some standard headers
48957         #define mkstemp.
48958         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
48959         Include "mkstemp.h".
48960         Make the _LIBC code resemble glibc original more,
48961         e.g., use K&R style.
48962         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
48963         (mkstemp): Remove, since mkstemp.h does this for us.
48964         * lib/stdlib--.h: Include mkstemp.h.
48965
48966         Import this patch from libc:
48967
48968         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
48969
48970         * lib/tempname.c (__gen_tempname): Change attempts_min
48971         into a macro.  Use preprocessor to decide how to initialize
48972         attempts [Coverity CID 67].
48973
48974 2006-09-20  Bruno Haible  <bruno@clisp.org>
48975
48976         * lib/mkdtemp.c: Import from libc.
48977         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
48978                 * sysdeps/posix/tempname.c (__gen_tempname): Change
48979                 attempts_min into a macro.  Use preprocessor to decide how to
48980                 initialize attempts [Coverity CID 67].
48981         2001-11-27  Paul Eggert  <eggert@twinsun.com>
48982                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
48983                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
48984
48985 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
48986
48987         * gnulib-tool (func_exit): New function, to allow to pass the
48988         exit status portably through the trap.  Use everywhere.
48989         (--help, --version): Signal a write error.
48990         (trap): catch SIGPIPE, for write errors.
48991         Exit at the end of the trap, with the correct exit status.
48992
48993 2006-09-19  Karl Berry  <karl@gnu.org>
48994
48995         * doc/gnulib.texi: note about the license texinfo files.
48996
48997 2006-09-19  Eric Blake  <ebb9@byu.net>
48998
48999         * gnulib-tool: Avoid space-tab.
49000
49001 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
49002
49003         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
49004         that prevented coreutils 6.1 from building.  Problem reported
49005         by Petter Reinholdtsen.
49006
49007 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
49008
49009         * gnulib-tool (avoidlist): Fix typo that broke options like
49010         --avoid=lock that are used by coreutils bootstrap.
49011
49012 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
49013
49014         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
49015         more systematically.
49016
49017 2006-09-18  Jim Meyering  <jim@meyering.net>
49018
49019         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
49020
49021 2006-09-18  Bruno Haible  <bruno@clisp.org>
49022
49023         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
49024
49025 2006-09-18  Bruno Haible  <bruno@clisp.org>
49026
49027         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
49028         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
49029         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
49030         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
49031         * m4/gettext.m4: Require autoconf >= 2.52.
49032         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
49033         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
49034         of gl_cv_header_inttypes_h.
49035
49036 2006-09-18  Bruno Haible  <bruno@clisp.org>
49037
49038         * lib/javaversion.c: Include configmake.h.
49039
49040 2006-09-18  Bruno Haible  <bruno@clisp.org>
49041
49042         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
49043         avoid that the while loops be executed in a subshell.
49044
49045 2006-09-18  Bruno Haible  <bruno@clisp.org>
49046
49047         * MODULES.html.sh (func_module): Break long lines.
49048         Suggested by Bruce Korb <bkorb@gnu.org>.
49049
49050 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49051
49052         Speed up by a factor of 1.12.
49053         * gnulib-tool (nl): New variable.
49054         (func_import): Rewrite include directive extraction to only read each
49055         directive once.
49056
49057 2006-09-17  Bruno Haible  <bruno@clisp.org>
49058
49059         * modules/javaversion (Makefile.am): Remove DEFS setting.
49060         (Depends-on): Add configmake, for PKGDATADIR definition.
49061
49062 2006-09-17  Bruno Haible  <bruno@clisp.org>
49063
49064         * gnulib-tool (func_create_testdir): Rewrite all files at once.
49065
49066 2006-09-17  Bruno Haible  <bruno@clisp.org>
49067
49068         * gnulib-tool (func_append): New function, stolen from libtool.m4.
49069         (func_modules_transitive_closure, func_modules_add_dummy,
49070         func_modules_to_filelist, func_import, func_create_testdir,
49071         func_create_megatestdir, ...): Use it wherever possible.
49072         Suggested by Ralf Wildenhues.
49073
49074 2006-09-16  Karl Berry  <karl@gnu.org>
49075
49076         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
49077         to avoid sectioning errors.
49078         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
49079         [ifinfo]: blank line after @center-ed titles.
49080         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
49081         Spell FSF address consistently with others.
49082         (These changes approved by rms.)
49083
49084 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49085
49086         Speed up by a factor of 1.61.
49087         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
49088         already checked module names again.
49089
49090 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49091
49092         Speed up by a factor of 1.13.
49093         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
49094         for new_files, and the input to func_add_or_update.
49095
49096 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49097
49098         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
49099         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
49100
49101 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
49102
49103         * modules/mkancesdirs (Depends-on): Add fcntl.
49104         * modules/savewd: New file.
49105         * MODULES.html.sh (File system functions): Add savewd.
49106
49107         * modules/configmake (Makefile.am): Add support for the
49108         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
49109
49110 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
49111
49112         * m4/savewd.m4: New file.
49113
49114 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
49115
49116         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
49117         (dirchownmod): New arg FD.  All callers changed.
49118         Use FD rather than opening the directory ourself, as opening is
49119         now the caller's responsibility.
49120         * lib/dirchownmod.h: Likewise.
49121         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
49122         hosts that require <sys/types.h> before <sys/stat.h>.  Include
49123         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
49124         (test_dir): Remove.
49125         (mkancesdirs): Return length of prefix of FILE that has already
49126         been made, or -2 if there is a child doing the work.  Redo
49127         algorithm so that it is O(N) rather than O(N**2).  Optimize away
49128         ".", and treat ".." specially since it might stray back into
49129         already-created areas.  Use a subprocess if necessary.  New arg
49130         WD; all users changed.  MAKE_DIR function should now return 1
49131         if it creates a directory that is not readable.  Return -2 if
49132         a child process is spun off.
49133         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
49134         Adjust signature to match code.
49135         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
49136         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
49137         all users changed.
49138         * lib/savewd.c, lib/savewd.h: New files.
49139
49140 2006-09-15  Jim Meyering  <jim@meyering.net>
49141
49142         * modules/rename-dest-slash: New module.
49143         * MODULES.html.sh (posix_compat): Add it here.
49144
49145         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
49146
49147 2006-09-15  Jim Meyering  <jim@meyering.net>
49148
49149         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
49150         file.
49151
49152         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
49153
49154 2006-09-15  Jim Meyering  <jim@meyering.net>
49155
49156         * lib/rename-dest-slash.c (has_trailing_slash): Use
49157         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
49158         (rpl_rename_dest_slash): Perform the cheaper trailing slash
49159         test before testing whether SRC is a directory.
49160         Suggestions from Bruno Haible.
49161
49162         Avoid a warning about an unused variable.
49163         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
49164         into the #ifdef block where it's used.
49165
49166         * lib/rename-dest-slash.c: New file.
49167
49168 2006-09-14  Bruno Haible  <bruno@clisp.org>
49169
49170         * lib/allocsa.c: Include <config.h> unconditionally.
49171         * lib/asnprintf.c: Likewise.
49172         * lib/asprintf.c: Likewise.
49173         * lib/c-strcasecmp.c: Likewise.
49174         * lib/c-strcasestr.c: Likewise.
49175         * lib/c-strncasecmp.c: Likewise.
49176         * lib/c-strstr.c: Likewise.
49177         * lib/classpath.c: Likewise.
49178         * lib/clean-temp.c: Likewise.
49179         * lib/concatpath.c: Likewise.
49180         * lib/copy-file.c: Likewise.
49181         * lib/csharpcomp.c: Likewise.
49182         * lib/csharpexec.c: Likewise.
49183         * lib/execute.c: Likewise.
49184         * lib/fatal-signal.c: Likewise.
49185         * lib/findprog.c: Likewise.
49186         * lib/fwriteerror.c: Likewise.
49187         * lib/gl_array_list.c: Likewise.
49188         * lib/gl_array_oset.c: Likewise.
49189         * lib/gl_avltree_list.c: Likewise.
49190         * lib/gl_avltree_oset.c: Likewise.
49191         * lib/gl_avltreehash_list.c: Likewise.
49192         * lib/gl_carray_list.c: Likewise.
49193         * lib/gl_linked_list.c: Likewise.
49194         * lib/gl_linkedhash_list.c: Likewise.
49195         * lib/gl_list.c: Likewise.
49196         * lib/gl_oset.c: Likewise.
49197         * lib/gl_rbtree_list.c: Likewise.
49198         * lib/gl_rbtree_oset.c: Likewise.
49199         * lib/gl_rbtreehash_list.c: Likewise.
49200         * lib/imaxabs.c: Likewise.
49201         * lib/imaxdiv.c: Likewise.
49202         * lib/javacomp.c: Likewise.
49203         * lib/javaexec.c: Likewise.
49204         * lib/javaversion.c: Likewise.
49205         * lib/linebreak.c: Likewise.
49206         * lib/localcharset.c: Likewise.
49207         * lib/lock.c: Likewise.
49208         * lib/mbchar.c: Likewise.
49209         * lib/mbswidth.c: Likewise.
49210         * lib/mkdtemp.c: Likewise.
49211         * lib/pipe.c: Likewise.
49212         * lib/printf-args.c: Likewise.
49213         * lib/printf-parse.c: Likewise.
49214         * lib/progname.c: Likewise.
49215         * lib/progreloc.c: Likewise.
49216         * lib/readlink.c: Likewise.
49217         * lib/sh-quote.c: Likewise.
49218         * lib/stpcpy.c: Likewise.
49219         * lib/stpncpy.c: Likewise.
49220         * lib/strcasecmp.c: Likewise.
49221         * lib/strcasestr.c: Likewise.
49222         * lib/strcspn.c: Likewise.
49223         * lib/striconv.c: Likewise.
49224         * lib/strncasecmp.c: Likewise.
49225         * lib/strnlen1.c: Likewise.
49226         * lib/strstr.c: Likewise.
49227         * lib/strtok_r.c: Likewise.
49228         * lib/tls.c: Likewise.
49229         * lib/tmpdir.c: Likewise.
49230         * lib/unicodeio.c: Likewise.
49231         * lib/unsetenv.c: Likewise.
49232         * lib/vasnprintf.c: Likewise.
49233         * lib/vasprintf.c: Likewise.
49234         * lib/wait-process.c: Likewise.
49235         * lib/xallocsa.c: Likewise.
49236         * lib/xsetenv.c: Likewise.
49237         * lib/xstriconv.c: Likewise.
49238
49239 2006-09-13  Simon Josefsson  <jas@extundo.com>
49240
49241         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
49242         that internally, suggested by Ralf Wildenhues
49243         <Ralf.Wildenhues@gmx.de>.
49244
49245 2006-09-13  Simon Josefsson  <jas@extundo.com>
49246
49247         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
49248         @LIBOBJS@.
49249         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
49250
49251 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
49252
49253         * lib/_fpending.c: Include <config.h> unconditionally, since we no
49254         longer worry about uses that don't define HAVE_CONFIG_H.
49255         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
49256         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
49257         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
49258         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
49259         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
49260         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
49261         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
49262         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
49263         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
49264         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
49265         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
49266         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
49267         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
49268         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
49269         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
49270         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
49271         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
49272         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
49273         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
49274         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
49275         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
49276         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
49277         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
49278         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
49279         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
49280         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
49281         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
49282         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
49283         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
49284         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
49285         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
49286         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
49287         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
49288         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
49289         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
49290         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
49291         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
49292         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
49293         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
49294         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
49295         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
49296         Likewise.
49297
49298 2006-09-13  Eric Blake  <ebb9@byu.net>
49299
49300         * lib/getopt.c: Fix typo in last commit.
49301
49302 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
49303
49304         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
49305         dgettext.
49306
49307 2006-09-12  Jim Meyering  <jim@meyering.net>
49308
49309         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
49310         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
49311         Reported by Nelson H. F. Beebe.
49312
49313 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
49314
49315         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
49316         program_invocation_name and program_invocation_short_name are
49317         initialized.
49318         * lib/argp-namefrob.h: Move declarations of program_invocation_name
49319         and program_invocation_short_name to argp.h, so they are visible
49320         to user programs.
49321         * lib/argp.h: Likewise
49322
49323 2006-09-10  Bruno Haible  <bruno@clisp.org>
49324
49325         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
49326         m4/inttypes_h.m4, m4/uintmax_t.m4.
49327
49328 2006-09-10  Bruno Haible  <bruno@clisp.org>
49329
49330         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
49331         gl_AC_TYPE_UINTMAX_T.
49332
49333 2006-09-10  Bruno Haible  <bruno@clisp.org>
49334
49335         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
49336
49337 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
49338
49339         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
49340         convention.  Text proposed by Bruno Haible.
49341         (struct argp_option): Document the use of N_() wrappers.
49342
49343         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
49344         '\v', and translate the two parts separately, instead of feeding
49345         the whole string to gettext.  This allows to exclude
49346         '\v' from the strings visible to the translator by writing doc
49347         strings as N_("..") "\v" N_("..").
49348
49349 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
49350
49351         * config/srclist.txt: Undo latest change; the bug was fixed.
49352
49353 2006-09-09  Bruno Haible  <bruno@clisp.org>
49354
49355         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
49356         assignments if building a library without libtool.
49357         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
49358         in func_emit_lib_Makefile_am.
49359         (func_import): When building a static library libfoo.a, arrange to
49360         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
49361         (func_create_testdir): Likewise.
49362         * modules/gc (configure.ac, Makefile.am): If building statically,
49363         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
49364         * modules/iconvme (configure.ac, Makefile.am): Likewise.
49365         * modules/striconv (configure.ac, Makefile.am): Likewise.
49366         Based on a suggestion by Ralf Wildenhues.
49367
49368 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49369
49370         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
49371         Check for unistd.h too, since Autoconf doesn't assume POSIX.
49372         Also:
49373
49374         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49375         Add year_2050_test to catch glibc bug 2821
49376         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
49377
49378         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
49379         Prefer #ifdef to #if.
49380
49381         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
49382         Return from 'main' instead of calling 'exit'.
49383
49384 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49385
49386         * lib/mktime.c (guess_time_tm): Fix bug where mktime
49387         returned the maximum time_t value rather than (time_t) -1.
49388         Problem originally reported by William Bardwell
49389         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
49390
49391         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
49392         Moved to here ...
49393         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
49394         ... from here.
49395
49396 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
49397
49398         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
49399         2821 is fixed.
49400
49401 2006-09-08  Jim Meyering  <jim@meyering.net>
49402
49403         Don't make generated files read-only.  That would bother too many
49404         people.  However, do retain the ability to work when targets are
49405         read-only: remove the destination and temporary files before writing
49406         them (when generated via sed or echo), or by using the -f option for
49407         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
49408         * modules/alloca-opt, modules/argz, modules/arpa_inet:
49409         * modules/byteswap, modules/configmake, modules/fcntl:
49410         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
49411         * modules/localcharset, modules/netinet_in, modules/poll:
49412         * modules/stdbool, modules/stdint, modules/sys_select:
49413         * modules/sys_socket, modules/sys_stat, modules/sysexits:
49414
49415 2006-09-08  Jim Meyering  <jim@meyering.net>
49416
49417         Avoid new build failure on FreeBSD 6.0.
49418         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
49419         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
49420         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
49421
49422 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49423
49424         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
49425
49426 2006-09-07  Jim Meyering  <jim@meyering.net>
49427
49428         Fix global typo in last change: use chmod u-w, not chmod u-x.
49429         Spotted by Paul Eggert and Bruce Korb.
49430         * modules/alloca-opt, modules/argz, modules/arpa_inet:
49431         * modules/byteswap, modules/configmake, modules/fcntl:
49432         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
49433         * modules/localcharset, modules/netinet_in, modules/poll:
49434         * modules/stdbool, modules/stdint, modules/sys_select:
49435         * modules/sys_socket, modules/sys_stat, modules/sysexits:
49436
49437 2006-09-06  Jim Meyering  <jim@meyering.net>
49438
49439         Make generated files be read-only.
49440         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
49441         Ensure that each generated file is now read-only.
49442         * modules/argz: Likewise.
49443         * modules/arpa_inet: Likewise.
49444         * modules/byteswap: Likewise.
49445         * modules/configmake: Likewise.
49446         * modules/fcntl: Likewise.
49447         * modules/fnmatch: Likewise.
49448         * modules/getopt: Likewise.
49449         * modules/glob: Likewise.
49450         * modules/inttypes: Likewise.
49451         * modules/netinet_in: Likewise.
49452         * modules/poll: Likewise.
49453         * modules/stdbool: Likewise.
49454         * modules/stdint: Likewise.
49455         * modules/sys_select: Likewise.
49456         * modules/sys_socket: Likewise.
49457         * modules/sys_stat: Likewise.
49458         * modules/sysexits: Likewise.
49459         * modules/localcharset: Same as above, but continue using temporary
49460         file named "t-$@" (why different?) rather than the "$@-t" used
49461         everywhere else.
49462
49463         * modules/sysexits (Makefile.am): Replace literal occurrences
49464         of "sysexit.h" more readable, and more consistent, "$@".
49465
49466 2006-09-06  Bruno Haible  <bruno@clisp.org>
49467
49468         * modules/striconv: New file.
49469         * modules/xstriconv: New file.
49470         * MODULES.html.sh (Internationalization functions): Add striconv,
49471         xstriconv.
49472
49473 2006-09-06  Bruno Haible  <bruno@clisp.org>
49474
49475         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
49476         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
49477         not using libtool correctly.
49478
49479 2006-09-06  Bruno Haible  <bruno@clisp.org>
49480
49481         * lib/striconv.h: New file.
49482         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
49483         iconvstring.c.
49484         * lib/xstriconv.h: New file.
49485         * lib/xstriconv.c: New file.
49486
49487 2006-09-06  Bruno Haible  <bruno@clisp.org>
49488
49489         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
49490         lib_..._LDFLAGS.
49491
49492 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49493
49494         * lib/argz_.h: Sync from Libtool.
49495
49496         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
49497                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
49498
49499         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
49500
49501 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
49502
49503         * modules/trim: New file.
49504
49505 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
49506
49507         * lib/trim.h: New file.
49508         * lib/trim.c: New file.
49509
49510 2006-09-05  Bruno Haible  <bruno@clisp.org>
49511
49512         * MODULES.html.sh (String handling): Add trim.
49513
49514 2006-09-04  Karl Berry  <karl@gnu.org>
49515
49516         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
49517         until next release.
49518
49519 2006-09-03  Bruno Haible  <bruno@clisp.org>
49520
49521         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
49522         correctly.
49523
49524 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
49525
49526         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
49527         not gl_GETLOADAVG.  Omit unneeded semicolons.
49528         Problems reported by Ralf Wildenhues in
49529         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
49530         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
49531         at the end, which is the usual gnulib style.
49532
49533         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
49534         of doing all the work ourselves.
49535         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
49536         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
49537
49538 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
49539
49540         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
49541         Problem reported by Ralf Wildenhues in
49542         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
49543
49544         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
49545         HAVE_STRUCT_STATFS_F_FSTYPENAME.
49546
49547 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
49548
49549         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
49550         yesterday's patch by changing test -n to test -z.
49551
49552 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
49553
49554         * modules/getloadavg (Files): Add m4/getloadavg.m4.
49555         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
49556         the former is now obsolescent.
49557
49558         * modules/chdir-long (Depends-on): Add fcntl.
49559
49560 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
49561
49562         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
49563         obsolescent, and programs should use gnulib instead.
49564         * m4/getloadavg.m4: New file, with contents taken from Autoconf
49565         but with prefixes changed.
49566
49567 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
49568
49569         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
49570         or stdbool.h, because they might not exist while configuring.
49571
49572         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
49573         Don't include unistd.h or limits.h; not needed, since chdir-long.h
49574         does that for us.
49575         (O_DIRECTORY): Remove.
49576
49577 2006-08-31  Eric Blake  <ebb9@byu.net>
49578
49579         * gnulib-tool: Don't let emacs change spaces to TAB.
49580
49581 2006-08-31  Bruno Haible  <bruno@clisp.org>
49582
49583         * gnulib-tool: When calling func_import more than once, do it in a
49584         subshell.
49585         Reported by Eric Blake <ebb9@byu.net>.
49586
49587 2006-08-31  Bruno Haible  <bruno@clisp.org>
49588
49589         * gnulib-tool (nl): Remove variable.
49590         (sed_transform_lib_file): Use more robust test for config-h module.
49591         (func_import): Fix typo in 2006-08-25 patch.
49592
49593 2006-08-31  Bruno Haible  <bruno@clisp.org>
49594
49595         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
49596         specified, augment Makefile.am variables instead of assigning them.
49597
49598 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
49599
49600         Work around a bug in both the Linux and SunOS 64-bit kernels:
49601         nanosleep mishandles sleeps for longer than 2**31 seconds.
49602         Problem reported by Frank v Waveren in
49603         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
49604         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
49605         Check for nanosleep bug.
49606         (LIB_NANOSLEEP): Append clock_gettime library if needed.
49607
49608 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
49609
49610         Work around a bug in both the Linux and SunOS 64-bit kernels:
49611         nanosleep mishandles sleeps for longer than 2**31 seconds.
49612         Problem reported by Frank v Waveren in
49613         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
49614         * lib/nanosleep.c (BILLION): New constant.
49615         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
49616         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
49617         implementation.
49618
49619 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
49620
49621         * modules/nanosleep (Depends-on): Add gettime.
49622
49623 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
49624         and Simon Josefsson  <jas@extundo.com>
49625         and Oskar Liljeblad  <oskar@osk.mine.nu>
49626
49627         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
49628         * gnulib-tool (func_import): New license type 'unmodifiable license
49629         text'.
49630         * modules/fdl: Use it.  Longer description.
49631         * module/gpl, module/lgpl: New files.
49632
49633 2006-08-30  Jim Meyering  <jim@meyering.net>
49634
49635         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
49636         shadowing the parameter.
49637
49638 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49639
49640         Sync from Libtool:
49641
49642         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
49643
49644         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
49645         sharing with gnulib.  Report by Eric Blake.
49646
49647 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
49648
49649         * modules/isapipe: New file.
49650         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
49651
49652 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
49653
49654         * modules/configmake (Makefile.am): Add a comment, and omit
49655         the CONFIGMAKE_ prefix from generated macro names.  Suggested
49656         by Bruno Haible.
49657
49658 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
49659
49660         * m4/isapipe.m4: New file.
49661
49662 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
49663
49664         * lib/isapipe.c, lib/isapipe.h: New files.
49665
49666 2006-08-29  Jim Meyering  <jim@meyering.net>
49667
49668         * modules/configmake (Makefile.am): Make configmake.h depend on
49669         Makefile.  Otherwise, a stale configmake.h could hang around.
49670
49671 2006-08-29  Eric Blake  <ebb9@byu.net>
49672
49673         * lib/error.c (error_at_line, print_errno_message): Match libc, after
49674         resolution of upstream bug 3044.
49675
49676 2006-08-29  Bruno Haible  <bruno@clisp.org>
49677
49678         * modules/localcharset (Depends-on): Add configmake.
49679         (Makefile.am): Remove setting of LIBDIR through DEFS.
49680
49681 2006-08-29  Bruno Haible  <bruno@clisp.org>
49682
49683         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
49684         defined.
49685
49686 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
49687
49688         * modules/fcntl: New file.
49689         * modules/chdir-safer (Depends-on): Add fcntl.
49690         * modules/fts: Likewise.
49691         * modules/mkdir-p: Likewise.
49692
49693         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
49694         This undoes the most recent change, since we're now addressing the
49695         problem in a different way.
49696
49697         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
49698         into output, since the output might be called Makefile.am even
49699         if $makefile_name is something different.
49700         (func_import): Use $makefile_am rather than
49701         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
49702         empty.
49703
49704         * modules/inttypes (Files): Add m4/inttypes-h.m4.
49705
49706 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
49707
49708         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
49709         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
49710         recent change to stdint.m4, since we're now addressing the problem in a
49711         different way.
49712
49713 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
49714
49715         * m4/fcntl_h.m4: New file.
49716
49717 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
49718
49719         * lib/fcntl_.h: New file.
49720         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
49721         the fcntl module.
49722         * lib/dirchownmod.c: Likewise.
49723         * lib/fts.c: Likewise.
49724
49725         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
49726         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
49727         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
49728         just before including <inttypes.h>, to avoid circular inclusion.
49729
49730 2006-08-28  Jim Meyering  <jim@meyering.net>
49731
49732         * doc/visibility.texi: Actually read and correct the grammar of the
49733         sentence affected by yesterday's change.
49734
49735 2006-08-28  Eric Blake  <ebb9@byu.net>
49736
49737         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
49738         needs wrapper.
49739
49740 2006-08-28  Eric Blake  <ebb9@byu.net>
49741
49742         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
49743
49744 2006-08-28  Eric Blake  <ebb9@byu.net>
49745
49746         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
49747
49748 2006-08-28  Bruno Haible  <bruno@clisp.org>
49749
49750         * modules/c-strstr: New file, from GNU gettext.
49751         * MODULES.html.sh (String handling): Add c-strstr.
49752
49753 2006-08-28  Bruno Haible  <bruno@clisp.org>
49754
49755         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
49756         macros.
49757         Reported by Eric Blake.
49758
49759 2006-08-28  Bruno Haible  <bruno@clisp.org>
49760
49761         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
49762         (VASNPRINTF): Return a string of length > INT_MAX without failing.
49763         * lib/vasprintf.c: Include errno.h, limits.h.
49764         (EOVERFLOW): New fallback definition.
49765         (vasprintf): Test here whether the string length is > INT_MAX.
49766         * lib/vsnprintf.c: Include errno.h, limits.h.
49767         (EOVERFLOW): New fallback definition.
49768         (vsnprintf): Fix bug when generated string was too long for the buffer.
49769         Test here whether the string length is > INT_MAX.
49770
49771 2006-08-28  Bruno Haible  <bruno@clisp.org>
49772
49773         * lib/inttypes_.h (SCNX*): Remove definitions.
49774         Reported by Eric Blake.
49775
49776 2006-08-28  Bruno Haible  <bruno@clisp.org>
49777
49778         * lib/c-strstr.h: New file, from GNU gettext.
49779         * lib/c-strstr.c: New file, from GNU gettext.
49780
49781 2006-08-28  Bruno Haible  <bruno@clisp.org>
49782
49783         * gnulib-tool: Reorder some statements.
49784
49785 2006-08-28  Bruno Haible  <bruno@clisp.org>
49786
49787         * gnulib-tool: New option --makefile-name.
49788         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
49789         $makefile_name.
49790         (func_import): Write $makefile_name to the cache file, and read it from
49791         there unless explicitly specified. Use $makefile_name as file name
49792         instead of Makefile.am. Adjust the recommendations accordingly.
49793
49794 2006-08-28  Bruno Haible  <bruno@clisp.org>
49795
49796         * gnulib-tool (func_verify_module): Check against misapplying patch.
49797
49798 2006-08-28  Bruno Haible  <bruno@clisp.org>
49799
49800         * gnulib-tool (func_relativize, func_relconcat): New functions.
49801         Give an error if --local-dir is given with --update.
49802         Remove trailing slashes from $local_gnulib_dir.
49803         (func_import): Store the relativized $local_gnulib_dir in
49804         gnulib-cache.m4, and read it from there if not specified explicitly.
49805
49806 2006-08-28  Bruno Haible  <bruno@clisp.org>
49807
49808         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
49809         is the current directory. Respect also $local_gnulib_dir.
49810
49811 2006-08-28  Bruno Haible  <bruno@clisp.org>
49812             Simon Josefsson  <jas@extundo.com>
49813
49814         BeOS portability.
49815         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
49816
49817 2006-08-27  Jim Meyering  <jim@meyering.net>
49818
49819         * doc/visibility.texi: Remove duplicate word: "pointer".
49820
49821 2006-08-26  Bruno Haible  <bruno@clisp.org>
49822
49823         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
49824         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
49825         (Makefile.am): Create inttypes.h from inttypes_.h.
49826         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
49827
49828         * modules/imaxabs: New file.
49829
49830         * modules/imaxdiv: New file.
49831
49832 2006-08-26  Bruno Haible  <bruno@clisp.org>
49833
49834         * m4/inttypes.m4: New file.
49835         * m4/_inttypes_h.m4: Remove file.
49836         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
49837         PRI_MACROS_BROKEN.
49838         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
49839
49840         * m4/imaxabs.m4: New file.
49841
49842         * m4/imaxdiv.m4: New file.
49843
49844 2006-08-26  Bruno Haible  <bruno@clisp.org>
49845
49846         * lib/inttypes_.h: New file.
49847         * lib/inttypes.h: Remove file.
49848         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
49849
49850         * lib/imaxabs.c: New file.
49851
49852         * lib/imaxdiv.c: New file.
49853
49854 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
49855
49856         New config-h module, so that "make" output needn't be cluttered
49857         by -DHAVE_CONFIG_H.
49858         * MODULES.html.sh (Support for building libraries and executables):
49859         Add config-h.
49860         * modules/config-h: New file.
49861         * gnulib-tool (nl, sed_transform_lib_file): New vars.
49862         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
49863         the config-h module is used.
49864
49865         New configmake module, so that "make" output needn't be cluttered
49866         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
49867         * MODULES.html.sh (Support for building libraries and executables):
49868         Add configmake.
49869         * modules/configmake: New file.
49870
49871 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
49872
49873         * m4/config-h.m4: New file.
49874
49875 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
49876
49877         * config/srclist.txt: Add elisp-comp.
49878
49879 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
49880
49881         * MODULES.html.sh (Support for building libraries and executables):
49882         Add elisp-comp.
49883         * build-aux/elisp-comp: New file.
49884         * modules/elisp-comp: New file.
49885
49886 2006-08-24  Bruno Haible  <bruno@clisp.org>
49887
49888         * gnulib-tool (func_create_testdir): Use non-default values of
49889         sourcebase and m4base.
49890
49891 2006-08-24  Bruno Haible  <bruno@clisp.org>
49892
49893         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
49894         HTML structure.
49895
49896 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
49897
49898         * modules/openat (Depends-on): Add lchown.
49899
49900 2006-08-23  Bruno Haible  <bruno@clisp.org>
49901
49902         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
49903         of gl_LOCK_EARLY instead of gl_LOCK.
49904
49905 2006-08-23  Bruno Haible  <bruno@clisp.org>
49906
49907         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
49908         on OSF/1 to no.
49909         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
49910
49911 2006-08-23  Bruno Haible  <bruno@clisp.org>
49912
49913         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
49914         as unusable.
49915
49916         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
49917         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
49918         (gl_LOCK): New macro.
49919
49920 2006-08-22  Simon Josefsson  <jas@extundo.com>
49921
49922         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
49923         to md5 module.
49924
49925 2006-08-22  Simon Josefsson  <jas@extundo.com>
49926
49927         * MODULES.html.sh: Add "Support for maintaining and release
49928         projects".
49929
49930         * build-aux/gnupload: New file, from coreutils.
49931
49932 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
49933
49934         Avoid the need for AC_LIBSOURCES in m4 macros.
49935         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
49936         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
49937         * modules/check-version (EXTRA_DIST): Add check-version.h.
49938         * modules/crc (EXTRA_DIST): Add crc.h.
49939         * modules/des (EXTRA_DIST): Add des.h.
49940         * modules/gc (EXTRA_DIST): Add gc.h.
49941         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
49942         * modules/getline (EXTRA_DIST): Add getline.h.
49943         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
49944         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
49945         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
49946         * modules/md2 (EXTRA_DIST): Add md2.h.
49947         * modules/md4 (EXTRA_DIST): Add md4.h.
49948         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
49949         * modules/read-file (EXTRA_DIST): Add read-file.h.
49950         * modules/readline (EXTRA_DIST): Add readline.h.
49951         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
49952         rijndael-api-fst.h.
49953
49954 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
49955
49956         * m4/rijndael.m4 (gl_ARCFOUR):
49957         * m4/arctwo.m4 (gl_ARCTWO):
49958         * m4/check-version.m4 (gl_CHECK_VERSION):
49959         * m4/crc.m4 (gl_CRC):
49960         * m4/des.m4 (gl_DES):
49961         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
49962         * m4/gc.m4 (gl_GC):
49963         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
49964         * m4/getline.m4 (gl_FUNC_GETLINE):
49965         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
49966         * m4/hmac-md5.m4 (gl_HMAC_MD5):
49967         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
49968         * m4/md2.m4 (gl_MD2):
49969         * m4/md4.m4 (gl_MD4):
49970         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
49971         * m4/read-file.m4 (gl_FUNC_READ_FILE):
49972         * m4/readline.m4 (gl_FUNC_READLINE):
49973         * m4/rijndael.m4 (gl_RIJNDAEL):
49974         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
49975         to get the necessary .h files and whatnot.
49976
49977 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
49978
49979         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
49980         gnulib rather than the other way around.
49981         * config/srclistvars.sh (COREUTILS): Remove.
49982
49983 2006-08-22  Jim Meyering  <jim@meyering.net>
49984
49985         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
49986
49987         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
49988
49989 2006-08-22  Eric Blake  <ebb9@byu.net>
49990
49991         * modules/regexprops-generic: New file.
49992         * MODULES.html.sh (Support for building documentation): List it.
49993
49994 2006-08-22  Eric Blake  <ebb9@byu.net>
49995
49996         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
49997         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
49998         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
49999         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
50000
50001 2006-08-22  Bruno Haible  <bruno@clisp.org>
50002
50003         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
50004         and lib_LTLIBRARIES like the other lib_* variables.
50005
50006 2006-08-22  Bruno Haible  <bruno@clisp.org>
50007
50008         * build-aux/x-to-1.in: New file, from GNU gettext.
50009
50010 2006-08-22  Bruno Haible  <bruno@clisp.org>
50011
50012         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
50013         <utmpx.h> exists.
50014
50015 2006-08-22  Bruno Haible  <bruno@clisp.org>
50016
50017         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
50018         <utmpx.h> exists.
50019
50020 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
50021
50022         BeOS portability.
50023         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
50024         exist.
50025         Problem reported by Bruno Haible.
50026
50027 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
50028
50029         Avoid the need for AC_LIBSOURCES in m4 macros.
50030         * modules/acl (EXTRA_DIST): Add acl.h.
50031         * modules/argmatch (Files): Add m4/argmatch.m4.
50032         (configure.ac): Add gl_ARGMATCH.
50033         (EXTRA_DIST): Renamed from lib_SOURCES, for
50034         consistency with the other modules.  Remove argmatch.c.
50035         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
50036         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
50037         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
50038         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
50039         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
50040         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
50041         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
50042         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
50043         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
50044         * modules/closeout (EXTRA_DIST): Add closeout.h.
50045         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
50046         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
50047         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
50048         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
50049         dirname.h; remove basename.c and stripslash.c.
50050         * modules/exclude (EXTRA_DIST): Add exclude.h.
50051         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
50052         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
50053         * modules/file-type (EXTRA_DIST): Add file-type.h.
50054         * modules/filemode (EXTRA_DIST): Add filemode.h.
50055         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
50056         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
50057         * modules/fpending (EXTRA_DIST): Add __fpending.h.
50058         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
50059         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
50060         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
50061         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
50062         * modules/getdate (EXTRA_DIST): Add getdate.c.
50063         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
50064         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
50065         * modules/getpass (EXTRA_DIST): Add getpass.h.
50066         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
50067         * modules/group-member (EXTRA_DIST): Add group-member.h.
50068         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
50069         * modules/hash (EXTRA_DIST): Add hash.h.
50070         * modules/human (EXTRA_DIST): Add human.h.
50071         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
50072         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
50073         * modules/lchown (EXTRA_DIST): Add lchown.h.
50074         * modules/long-options (EXTRA_DIST): Add long-options.h.
50075         * modules/lstat (EXTRA_DIST): Add lstat.h.
50076         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
50077         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
50078         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
50079         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
50080         * modules/memxor (EXTRA_DIST): Add memxor.h.
50081         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
50082         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
50083         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
50084         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
50085         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
50086         * modules/physmem (EXTRA_DIST): Add physmem.h.
50087         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
50088         * modules/posixver (EXTRA_DIST): Add posixver.h.
50089         * modules/quote (EXTRA_DIST): Add quote.h.
50090         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
50091         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
50092         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
50093         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
50094         regex_internal.h regexec.c.
50095         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
50096         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
50097         * modules/same (EXTRA_DIST): Add same.h.
50098         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
50099         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
50100         * modules/savedir (EXTRA_DIST): Add savedir.h.
50101         * modules/sha1 (EXTRA_DIST): Add sha1.h.
50102         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
50103         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
50104         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
50105         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
50106         * modules/strdup (EXTRA_DIST): Add strdup.h.
50107         * modules/strftime (EXTRA_DIST): Add strftime.h.
50108         * modules/strndup (EXTRA_DIST): Add strndup.h.
50109         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
50110         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
50111         * modules/time_r (EXTRA_DIST): Add time_r.h.
50112         * modules/timespec (EXTRA_DIST): Add timespec.h.
50113         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
50114         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
50115         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
50116         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
50117         * modules/userspec (EXTRA_DIST): Add userspec.h.
50118         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
50119         * modules/utimens (EXTRA_DIST): Add utimens.h.
50120         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
50121         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
50122         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
50123         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
50124         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
50125         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
50126         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
50127         * modules/yesno (EXTRA_DIST): Add yesno.h.
50128
50129 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
50130
50131         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
50132
50133         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
50134         * m4/dev-ino.m4, same-inode.m4: Remove.
50135
50136         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
50137         * m4/acl.m4 (AC_FUNC_ACL):
50138         * m4/backupfile.m4 (gl_BACKUPFILE):
50139         * m4/c-strtod.m4 (gl_C99_STRTOLD):
50140         * m4/canon-host.m4 (gl_CANON_HOST):
50141         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
50142         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
50143         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
50144         * m4/cloexec.m4 (gl_CLOEXEC):
50145         * m4/close-stream.m4 (gl_CLOSE_STREAM):
50146         * m4/closeout.m4 (gl_CLOSEOUT):
50147         * m4/dirfd.m4 (gl_FUNC_DIRFD):
50148         * m4/dirname.m4 (gl_DIRNAME):
50149         * m4/exclude.m4 (gl_EXCLUDE):
50150         * m4/exitfail.m4 (gl_EXITFAIL):
50151         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
50152         * m4/file-type.m4 (gl_FILE_TYPE):
50153         * m4/filemode.m4 (gl_FILEMODE):
50154         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
50155         * m4/fpending.m4 (gl_FUNC_FPENDING):
50156         * m4/fprintftime.m4 (gl_FPRINTFTIME):
50157         * m4/fts.m4 (gl_FUNC_FTS):
50158         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
50159         * m4/getdate.m4 (gl_GETDATE):
50160         * m4/gethrxtime.m4 (gl_GETHRXTIME):
50161         * m4/getpagesize.m4 (gl_GETPAGESIZE):
50162         * m4/getpass.m4 (gl_FUNC_GETPASS):
50163         * m4/gettime.m4 (gl_GETTIME):
50164         * m4/getugroups.m4 (gl_GETUGROUPS):
50165         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
50166         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
50167         * m4/hard-locale.m4 (gl_HARD_LOCALE):
50168         * m4/hash.m4 (gl_HASH):
50169         * m4/idcache.m4 (gl_IDCACHE):
50170         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
50171         * m4/lchown.m4 (gl_FUNC_LCHOWN):
50172         * m4/long-options.m4 (gl_LONG_OPTIONS):
50173         * m4/lstat.m4 (gl_FUNC_LSTAT):
50174         * m4/md5.m4 (gl_MD5):
50175         * m4/memcasecmp.m4 (gl_MEMCASECMP):
50176         * m4/memcoll.m4 (gl_MEMCOLL):
50177         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
50178         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
50179         * m4/memxor.m4 (gl_MEMXOR):
50180         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
50181         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
50182         * m4/modechange.m4 (gl_MODECHANGE):
50183         * m4/mountlist.m4 (gl_MOUNTLIST):
50184         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
50185         * m4/openat.m4 (gl_FUNC_OPENAT):
50186         * m4/pathmax.m4 (gl_PATHMAX):
50187         * m4/physmem.m4 (gl_PHYSMEM):
50188         * m4/posixtm.m4 (gl_POSIXTM):
50189         * m4/posixver.m4 (gl_POSIXVER):
50190         * m4/quote.m4 (gl_QUOTE):
50191         * m4/quotearg.m4 (gl_QUOTEARG):
50192         * m4/readtokens.m4 (gl_READTOKENS):
50193         * m4/readutmp.m4 (gl_READUTMP):
50194         * m4/regex.m4 (gl_REGEX):
50195         * m4/safe-read.m4 (gl_SAFE_READ):
50196         * m4/safe-write.m4 (gl_SAFE_WRITE):
50197         * m4/same.m4 (gl_SAME):
50198         * m4/save-cwd.m4 (gl_SAVE_CWD):
50199         * m4/savedir.m4 (gl_SAVEDIR):
50200         * m4/settime.m4 (gl_SETTIME):
50201         * m4/sha1.m4 (gl_SHA1):
50202         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
50203         * m4/stat-macros.m4 (gl_STAT_MACROS):
50204         * m4/stat-time.m4 (gl_STAT_TIME):
50205         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
50206         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
50207         * m4/strdup.m4 (gl_FUNC_STRDUP):
50208         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
50209         * m4/strndup.m4 (gl_FUNC_STRNDUP):
50210         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
50211         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
50212         * m4/time_r.m4 (gl_TIME_R):
50213         * m4/timespec.m4 (gl_TIMESPEC):
50214         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
50215         * m4/unlinkdir.m4 (gl_UNLINKDIR):
50216         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
50217         * m4/userspec.m4 (gl_USERSPEC):
50218         * m4/utimecmp.m4 (gl_UTIMECMP):
50219         * m4/utimens.m4 (gl_UTIMENS):
50220         * m4/xalloc.m4 (gl_XALLOC):
50221         * m4/xgetcwd.m4 (gl_XGETCWD):
50222         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
50223         * m4/xreadlink.m4 (gl_XREADLINK):
50224         * m4/xstrtod.m4 (gl_XSTRTOD):
50225         * m4/yesno.m4 (gl_YESNO):
50226         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
50227         to get the necessary .h files and whatnot.
50228
50229 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
50230             Bruno Haible  <bruno@clisp.org>
50231
50232         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
50233         /bin/sh understanding of '!' conditional negation.
50234
50235 2006-08-21  Jim Meyering  <jim@meyering.net>
50236
50237         * modules/openat (Depends-on): Really alphabetize.
50238
50239         * modules/acl (Depends-on): Add error and quote.
50240
50241         * check-module (find_included_lib_files): Add at-func.c to the
50242         ok-to-include-more-than-once white list.
50243
50244         * modules/openat (Depends-on): Add lstat.  Alphabetize.
50245
50246 2006-08-21  Bruno Haible  <bruno@clisp.org>
50247
50248         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
50249         Emit a pkgdata_DATA variable only if some snippets add contents to it.
50250         Reported by Martin Lambers <marlam@marlam.de>.
50251
50252 2006-08-21  Bruno Haible  <bruno@clisp.org>
50253
50254         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
50255         specify an installation location, don't emit a noinst_LIBRARIES or
50256         noinst_LTLIBRARIES assignment.
50257
50258 2006-08-21  Bruno Haible  <bruno@clisp.org>
50259
50260         BeOS portability.
50261         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
50262         BeOS has mbrtowc() but no <wctype.h>.
50263
50264 2006-08-21  Bruno Haible  <bruno@clisp.org>
50265
50266         BeOS portability.
50267         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
50268         exist.
50269
50270 2006-08-21  Bruno Haible  <bruno@clisp.org>
50271
50272         BeOS portability.
50273         * lib/mbchar.h: Include <wctype.h> only if it exists.
50274
50275 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50276
50277         Remove files that are no longer needed by their respective modules.
50278         * m4/obstack.m4: Remove.
50279         * m4/strerror_r.m4: Remove.
50280         * m4/uint32_t.m4: Remove.
50281         * m4/uintptr_t.m4: Remove.
50282         * m4/ullong_max.m4: Remove.
50283         * m4/xstrtoimax.m4: Remove.
50284         * m4/xstrtoumax.m4: Remove.
50285
50286         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
50287         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
50288         dependencies now capture this.
50289
50290         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
50291         Do not use AC_LIBSOURCES, since gnulib modules now do this.
50292         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
50293         * m4/human.m4 (gl_HUMAN): Likewise.
50294         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
50295         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
50296
50297         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
50298
50299         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
50300         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
50301         stdint.
50302         * m4/human.m4 (gl_HUMAN): Likewise.
50303         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
50304         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
50305         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
50306         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
50307         * m4/xstrtol (gl_XSTRTOL): Likewise.
50308
50309         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
50310         AC_TYPE_LONG_LONG_INT.
50311         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
50312         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
50313         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
50314         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
50315
50316         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
50317         on stdbool.
50318
50319         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
50320         (gl_PREREQ_XSTRTOUL): Remove.
50321
50322         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
50323
50324         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
50325         mode.
50326
50327 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50328
50329         Add and change modules to make it easier for coreutils to use
50330         gnulib-tool.
50331         * modules/backupfile (Files): Remove m4/d-ino.m4.
50332         (Depends-on): Add d-ino.
50333         * modules/cycle-check (Depends-on): Add stdint.
50334         (lib_SOURCES): Add cycle-check.h.
50335         * modules/d-ino: New module.
50336         * modules/d-type: New module.
50337         * modules/error (Files): Remove m4/strerror_r.m4.
50338         * modules/filemode (Files): Add m4/st_dm_mode.m4.
50339         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
50340         m4/inttypes_h.m4, m4/uintmax_t.m4.
50341         (Depends-on): Add stdint.
50342         (lib_SOURCES): Add fsusage.h.
50343         * modules/getcwd (Files): Remove d-ino.m4.
50344         (Depends-on): Add d-ino.
50345         * modules/getndelim2 (Depends-on): Add stdint.
50346         * modules/glob (Files): Remove m4/d-type.m4.
50347         (Depends-on): Add d-type.
50348         * modules/host-os: New module.
50349         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
50350         m4/inttypes_h.m4, m4/uintmax_t.m4.
50351         * Depends-on: Add stdint.
50352         (lib_SOURCES): Add human.h.
50353         * modules/inttostr (Files): Remove m4/intmax_t.m4,
50354         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
50355         m4/uintmax_t.m4, m4/ulonglong.m4.
50356         (Depends-on): Add stdint.
50357         (EXTRA_DIST): Add inttostr.h.
50358         * modules/lchmod: New module.
50359         * modules/link-follow: New module.
50360         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
50361         (Depends-on): Add lchmod.
50362         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
50363         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
50364         (Depends-on): Add stdint.
50365         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
50366         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
50367         (Depends-on): Add stdint.
50368         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
50369         * modules/perl: New module.
50370         * modules/regex (Depends-on): Add stdint.
50371         * modules/rmdir-errno: New module.
50372         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
50373         m4/intmax_t.m4.
50374         (Depends-on): Add stdint.
50375         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
50376         m4/uintmax_t.m4.
50377         (Depends-on): Add stdint.
50378         * modules/unlink-busy: New module.
50379         * modules/utimecmp (Depends-on): Add stdint.
50380         * modules/uptime: New module.
50381         * modules/winsz-ioctl: New module.
50382         * modules/winsz-termios: New module.
50383         * modules/xnanosleep (Depends-on): Add nanosleep.
50384         * modules/ullong_max: Remove.
50385         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
50386         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
50387         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
50388         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
50389         (Depends-on): Add inttypes.
50390         (lib_SOURCES): Add xstrtol.h.
50391         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
50392         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
50393         * MODULES.html.sh: Move 'assert' into the assert section.
50394         Move 'dummy' into the linking section.
50395         Remove ullong_max.
50396         Add section for compatibility checks for POSIX:2001 functions,
50397         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
50398         winsz-ioctl, and winsz-termios into it.
50399         Add lchmod.
50400         Add top-level Misc section and put host-os, perl, and uptime
50401         into it.
50402
50403 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
50404
50405         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
50406         now assume the stdint module.  Do not include inttypes.h.
50407         * lib/fsusage.h: Likewise.
50408         * lib/getndelim2.c: Likewise.
50409         * lib/human.h: Likewise.
50410         * lib/inttostr.h: Likewise.
50411         * lib/obstack.c: Likewise.
50412         * lib/regex_internal.h: Likewise.
50413         * lib/tempname.c: Likewise.
50414         * lib/utimecmp.c: Likewise.
50415         * lib/xstrtol.h: Likewise.
50416
50417         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
50418
50419         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
50420         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
50421         * lib/xtime.h: Likewise.
50422
50423 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50424
50425         * modules/openat (Files): Add lib/fchmodat.c.
50426         Fixes problem reported by Jay Youngman.
50427
50428 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
50429
50430         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
50431         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
50432
50433 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
50434             Bruno Haible  <bruno@clisp.org>
50435
50436         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
50437         and is a script that invokes bison. Tighten the code. Add comments.
50438
50439 2006-08-18  Jim Meyering  <jim@meyering.net>
50440
50441         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
50442         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
50443         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
50444         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
50445
50446 2006-08-18  Bruno Haible  <bruno@clisp.org>
50447
50448         * modules/bison-i18n: New file.
50449         * MODULES.html.sh (Internationalization functions): Add it.
50450
50451 2006-08-18  Bruno Haible  <bruno@clisp.org>
50452
50453         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
50454         sys/statvfs.h. When getmntinfo was found, check its declaration and
50455         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
50456
50457 2006-08-18  Bruno Haible  <bruno@clisp.org>
50458
50459         * m4/bison-i18n.m4: New file, from bison.
50460
50461 2006-08-18  Bruno Haible  <bruno@clisp.org>
50462
50463         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
50464         (ME_DUMMY): Treat "kernfs" as a dummy.
50465         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
50466
50467 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
50468
50469         Update from coreutils.
50470
50471         2006-08-15  Jim Meyering  <jim@meyering.net>
50472
50473         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
50474
50475         2006-01-17  Jim Meyering  <jim@meyering.net>
50476
50477         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
50478
50479         2006-01-11  Jim Meyering  <jim@meyering.net>
50480
50481         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
50482         Check for the lchmod function.
50483
50484 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
50485
50486         Update from coreutils.
50487
50488         * lib/__fpending.h: Add copyright notice.
50489         * lib/fprintftime.h: Likewise.
50490         * lib/savedir.c: Use (C) in copyright notice.
50491         * lib/savedir.h: Likewise.
50492
50493         2006-08-15  Jim Meyering  <jim@meyering.net>
50494
50495         * lib/at-func.c: New file, with the logic of all emulated at-functions.
50496         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
50497         in support of the EXPECTED_ERRNO macro.
50498         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
50499         definitions.  Instead, define the appropriate symbols and include
50500         "at-func.c".
50501         * lib/mkdirat.c (mkdirat): Likewise.
50502         * lib/fchmodat.c (fchmodat): Likewise.
50503         (ENOSYS): Remove definition.
50504         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
50505         it.  Don't include "unistd--.h" -- it wasn't ever used.
50506
50507         2006-01-17  Jim Meyering  <jim@meyering.net>
50508
50509         Rewrite fts.c not to change the current working directory,
50510         by using openat, fstatat, fdopendir, etc..
50511
50512         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
50513         (HAVE_OPENAT_SUPPORT): Define.
50514         [_LIBC] (fchdir): Don't undef or define; no longer used.
50515         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
50516         Now, this `function' always succeeds, and consumes its file descriptor
50517         parameter -- so callers must not close such FDs.  Update callers.
50518         (diropen_fd, opendirat, cwd_advance_fd): New functions.
50519         (diropen): Add parameter, SP.  Adjust all callers.
50520         Implement using diropen_fd, rather than open.
50521         (fts_open): Initialize new member, fts_cwd_fd.
50522         Remove fts_rft-setting code.
50523         (fts_close): Close fts_cwd_fd, if necessary.
50524         (__opendir2): Define in terms of opendir or opendirat,
50525         depending on whether the FST_NOCHDIR flag is set.
50526         (fts_build): Since fts_safe_changedir consumes its FD, and since
50527         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
50528         and close the dup'd file descriptor upon failure.
50529         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
50530         (fts_safe_changedir): Tweak semantics to reflect that this function
50531         now calls cwd_advance_fd and hence consumes its FD argument.
50532         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
50533         [struct FTS] (fts_rft): Remove now-unused member.
50534         [struct FTS] (fts_cycle.state): Improve comment.
50535
50536         * lib/openat.c (openat_needs_fchdir): New function.
50537         * lib/openat.h (openat_needs_fchdir): Declare it.
50538
50539 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
50540
50541         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
50542         Problem and fix reported by Pádraig Brady in
50543         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
50544
50545 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
50546
50547         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
50548
50549 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
50550
50551         * lib/memcoll.c (memcoll): Optimize for the common case where the
50552         arguments are bytewise equal.
50553
50554 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
50555
50556         * doc/regexprops-generic.texi: Add a copyright notice.
50557
50558 2006-08-15  Bruno Haible  <bruno@clisp.org>
50559
50560         * modules/tmpdir (License): Change to LGPL.
50561
50562 2006-08-15  Bruno Haible  <bruno@clisp.org>
50563
50564         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
50565         module.
50566
50567 2006-08-14  Simon Josefsson  <jas@extundo.com>
50568
50569         * config/srclist.txt: Add gnupload.
50570
50571 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
50572
50573         Change copyright notice from LGPL 2 to GPL 2, since that's the
50574         standard form used in the gnulib repository.
50575         * tests/test-lock.c: Likewise.
50576         * tests/test-stdint.c: Likewise.
50577         * tests/test-tls.c: Likewise.
50578
50579         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
50580         prelude-manager.  User shorter URLs for GNU projects, without '?'.
50581         Add copyright notice.
50582
50583         * check-module: Add copyright notice.  Output a copyright
50584         notice if "--version" is specified.
50585         * modules/COPYING: New file.
50586         * tests/test-getaddrinfo.c: Add copyright notice.
50587         * tests/test-verify.c: Likewise.
50588
50589 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
50590
50591         Change copyright notice from LGPL 2 to GPL 2, since that's the
50592         standard form used in the gnulib repository.
50593         * lib/lock.c: LGPL -> GPL.
50594         * lib/lock.h: Likewise.
50595         * lib/strnlen1.c: Likewise.
50596         * lib/strnlen1.h: Likewise.
50597         * lib/tls.c: Likewise.
50598         * lib/tls.h: Likewise.
50599         * lib/tmpdir.c: Likewise.
50600
50601         * lib/TODO: Remove; this belongs only in coreutils.
50602
50603 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
50604
50605         Add copyright notices to long-enough files that lack them, since
50606         otherwise the files aren't clearly free.  Use the same notice that
50607         getdate.texi already uses.
50608         * doc/alloca-opt.texi: Add copyright notice.
50609         * doc/alloca.texi: Likewise.
50610         * doc/ctime.texi: Likewise.
50611         * doc/functions.texi: Likewise.
50612         * doc/gcd.texi: Likewise.
50613         * doc/gnulib-tool.texi: Likewise.
50614         * doc/inet_ntoa.texi: Likewise.
50615         * doc/visibility.texi: Likewise.
50616
50617         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
50618         * doc/quote.texi: Add copyright notice.
50619
50620         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
50621         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
50622         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
50623         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
50624         is now obsolete, and give a pointer to the Sun list.
50625         Add copyright notice.
50626
50627 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
50628
50629         * config/srclistvars.sh: Add copyright notice.
50630
50631 2006-08-14  Eric Blake  <ebb9@byu.net>
50632
50633         Import the following change from libc:
50634
50635         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
50636
50637         Upstream bug 2997.
50638         * lib/misc/error.c: Add space between program name and message if file
50639         name is missing.
50640
50641 2006-08-12  Karl Berry  <karl@gnu.org>
50642
50643         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
50644         remove, these originate in gnulib now.
50645
50646 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
50647
50648         * doc/Makefile (standards.info standards.html standards.dvi):
50649         Also depend on make-stds.texi.
50650
50651 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
50652
50653         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
50654         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
50655
50656         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
50657         in wchar_t.  Problem reported by Eric Blake.
50658
50659         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
50660         LEN is smaller than SIZE.  Suggested by Bruno Haible.
50661         Also, help the compiler to keep LEN in a register.
50662
50663 2006-08-11  Eric Blake  <ebb9@byu.net>
50664
50665         * users.txt: Sort.  Add tar.
50666
50667 2006-08-11  Bruno Haible  <bruno@clisp.org>
50668
50669         * users.txt: New file.
50670
50671 2006-08-11  Bruno Haible  <bruno@clisp.org>
50672
50673         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
50674         before <wchar.h>. Needed for OSF/1 and BSD/OS.
50675
50676 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
50677
50678         * modules/snprintf (Depends-on): Remove minmax.
50679         (Maintainer): Add self and Bruno.
50680
50681 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
50682
50683         * lib/.cppi-disable: Add snprintf.h, socket_.h.
50684         * lib/snprintf.c: Include <errno.h> and <limits.h>.
50685         (EOVERFLOW): Define if the system does not.
50686         Do not include "minmax.h"; it wasn't used.
50687         (snprintf): Don't assume size_t promotes to an unsigned type.
50688         Fix bug when generated string was too long for the buffer: the
50689         buffer's contents are supposed to be the initial prefix of the
50690         output.  Don't assume vasnprintf returns EOVERFLOW if the size
50691         exceeds INT_MAX; do the check ourselves.
50692
50693         Import the following changes from libc:
50694
50695         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
50696
50697         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
50698         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
50699         set wc to the byte which couldn't be converted.
50700         (re_string_reconstruct): Don't clear valid_raw_len before calling
50701         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
50702         tip_context using re_string_context_at.
50703
50704         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
50705
50706         * lib/posix/regex.h: g++ still cannot handled [restrict].
50707
50708         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
50709
50710         * lib/posix/regex.h: Remove special handling for VMS.
50711
50712 2006-08-10  Jim Meyering  <jim@meyering.net>
50713
50714         * modules/same-inode: New module.
50715         * modules/dev-ino: New module.
50716         * modules/cycle-check: Depend on these modules, rather than simply
50717         including their .h files.
50718         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
50719         required via m4/cycle-check.m4.
50720         * modules/same: Depend on new same-inode module, rather than
50721         including same-inode.h.
50722         * modules/chdir-safer: New file.
50723
50724         * modules/chown (Depends-on): Add stat-macros.
50725
50726 2006-08-10  Jim Meyering  <jim@meyering.net>
50727
50728         * m4/cycle-check.m4: New file.
50729         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
50730         * m4/dev-ino.m4, m4/same-inode.m4: New files.
50731
50732 2006-08-10  Eric Blake  <ebb9@byu.net>
50733
50734         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
50735         in from original proposal.
50736
50737 2006-08-10  Eric Blake  <ebb9@byu.net>
50738         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
50739
50740         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
50741         namespace.
50742
50743 2006-08-10  Bruno Haible  <bruno@clisp.org>
50744
50745         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
50746         as well.
50747
50748 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
50749
50750         Sync from coreutils.
50751
50752         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
50753
50754         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
50755         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
50756
50757 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
50758
50759         * modules/restrict: Remove; no longer needed now that we assume
50760         Autoconf 2.59 or later.
50761         * MODULES.html.sh: Remove 'restrict'.
50762         * modules/argp (Depends-on): Remove 'restrict'.
50763         * modules/base64 (Depends-on): Likewise.
50764         * modules/gc (Depends-on): Likewise.
50765         * modules/getaddrinfo (Depends-on): Likewise.
50766         * modules/glob (Depends-on): Likewise.
50767         * modules/inet_ntop (Depends-on): Likewise.
50768         * modules/inet_pton (Depends-on): Likewise.
50769         * modules/memxor (Depends-on): Likewise.
50770         * modules/regex (Depends-on): Likewise.
50771         * modules/strtok_r (Depends-on): Likewise.
50772         * modules/time_r (Depends-on): Likewise.
50773
50774 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
50775
50776         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
50777         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
50778         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
50779         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
50780         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
50781         * m4/memxor.m4 (gl_MEMXOR): Likewise.
50782         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
50783         gl_C_RESTRICT replaced by AC_C_RESTRICT.
50784
50785         Merge from coreutils.
50786         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
50787         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
50788         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
50789         * m4/time_r.m4 (gl_TIME_R): Likewise.
50790
50791 2006-08-09  Karl Berry  <karl@gnu.org>
50792
50793         * config/srclist.txt: no more gettext-tools, per Bruno.
50794
50795 2006-08-08  Eric Blake  <ebb9@byu.net>
50796
50797         * modules/verror: New module.
50798         * MODULES.html.sh: Document it.
50799
50800 2006-08-08  Eric Blake  <ebb9@byu.net>
50801
50802         * lib/verror.h, lib/verror.c: New files.
50803
50804 2006-08-08  Eric Blake  <ebb9@byu.net>
50805
50806         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
50807         verror_at_line output complies with GNU Coding Standards even when
50808         file is NULL.
50809
50810 2006-08-07  Bruno Haible  <bruno@clisp.org>
50811
50812         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
50813         versions of AIX.
50814         Reported by Ralf Wildenhues.
50815
50816 2006-08-07  Bruno Haible  <bruno@clisp.org>
50817
50818         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
50819         in an AC_DEFUN. Needed so that the autoconf snippets can use
50820         AC_REQUIRE.
50821
50822 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
50823
50824         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
50825         Initialize pkgdata_DATA.
50826         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
50827         overriding it.
50828
50829 2006-08-06  Eric Blake  <ebb9@byu.net>
50830
50831         * lib/error.h: Fold in some upstream changes from glibc.
50832         * lib/error.c: Likewise.
50833
50834 2006-08-04  Bruno Haible  <bruno@clisp.org>
50835
50836         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
50837         Make the mostlyclean-local rule depend on mostlyclean-generic.
50838         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
50839
50840 2006-07-31  Bruno Haible  <bruno@clisp.org>
50841
50842         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
50843         <stdlib.h>, <string.h>.
50844
50845 2006-07-30  Bruno Haible  <bruno@clisp.org>
50846
50847         * modules/readlink (License): Change to LGPL.
50848
50849 2006-07-30  Bruno Haible  <bruno@clisp.org>
50850
50851         * modules/javaversion (Makefile.am): Distribute javaversion.java and
50852         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
50853         set PKGDATADIR to point to it.
50854
50855 2006-07-30  Bruno Haible  <bruno@clisp.org>
50856
50857         * modules/csharpexec (configure.ac): Comment out macro invocation.
50858         * modules/javaexec (configure.ac): Likewise.
50859         * modules/javacomp-script (configure.ac): Likewise.
50860
50861         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
50862
50863 2006-07-30  Bruno Haible  <bruno@clisp.org>
50864
50865         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
50866         linked-list.
50867
50868 2006-07-30  Bruno Haible  <bruno@clisp.org>
50869
50870         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
50871
50872 2006-07-30  Bruno Haible  <bruno@clisp.org>
50873
50874         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
50875         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
50876         get removed.
50877
50878 2006-07-29  Bruno Haible  <bruno@clisp.org>
50879
50880         Make it possible for gnulib-tool to work with locally modified or
50881         augmented gnulib repositories.
50882         * gnulib-tool (func_usage): Document --local-dir option.
50883         (local_gnulib_dir): New variable.
50884         Handle --local-dir option.
50885         (func_lookup_file): New function.
50886         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
50887         (func_get_description, func_get_filelist, func_get_description,
50888         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
50889         func_get_automake_snippet, func_get_include_directive,
50890         func_get_license, func_get_maintainer): Use func_lookup_file.
50891         (func_import, func_create_testdir): Use func_lookup_file.
50892
50893 2006-07-29  Bruno Haible  <bruno@clisp.org>
50894
50895         * modules/setenv (Depends-on): Add unistd.
50896
50897 2006-07-29  Bruno Haible  <bruno@clisp.org>
50898
50899         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
50900
50901 2006-07-29  Bruno Haible  <bruno@clisp.org>
50902
50903         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
50904
50905 2006-07-29  Bruno Haible  <bruno@clisp.org>
50906
50907         * gnulib-tool (import, update): If there is no Makefile.am, look at
50908         aclocal.m4, instead of bailing out.
50909
50910 2006-07-29  Bruno Haible  <bruno@clisp.org>
50911
50912         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
50913         Categorize the options by when they are useful.
50914
50915 2006-07-29  Bruno Haible  <bruno@clisp.org>
50916
50917         * gnulib-tool (func_usage): Document option --no-libtool.
50918         Handle option --no-libtool.
50919         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
50920         for changed semantics of $libtool variable.
50921         (func_import): Likewise. If libtool is not used, show this through
50922         an option --no-libtool.
50923         (func_create_testdir): Update.
50924
50925 2006-07-29  Bruno Haible  <bruno@clisp.org>
50926
50927         * gnulib-tool (func_import): Extend error message about missing
50928         --doc-base.
50929
50930 2006-07-29  Bruno Haible  <bruno@clisp.org>
50931
50932         * gnulib-tool (func_import): Don't create the $docbase directory if
50933         there is no file to store there.
50934
50935 2006-07-29  Bruno Haible  <bruno@clisp.org>
50936
50937         * gnulib-tool (autoconf_minversion): If a --dir option is given and
50938         relevant, look for configure.ac there, not in the current directory.
50939         Also use a simple search for AC_PREREQ, not "autoconf --trace".
50940
50941 2006-07-29  Bruno Haible  <bruno@clisp.org>
50942
50943         * gnulib-tool (SORT): New variable.
50944         (func_usage): Undocument --assume-autoconf option.
50945         Remove --assume-autoconf option handling.
50946         (autoconf_minversion): Determine from the contents of configure.ac.
50947         (func_import): Remove autoconf_minversion handling.
50948         Suggested by Eric Blake.
50949
50950 2006-07-29  Bruno Haible  <bruno@clisp.org>
50951
50952         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
50953
50954 2006-07-29  Bruno Haible  <bruno@clisp.org>
50955
50956         * config/srclist.txt (*setenv.[ch]): Remove rules.
50957
50958 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
50959
50960         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
50961
50962 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
50963
50964         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
50965         arpa/inet.h.
50966
50967 2006-07-28  Simon Josefsson  <jas@extundo.com>
50968
50969         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
50970         * modules/inet_pton (Depends-on): Likewise.
50971
50972 2006-07-28  Simon Josefsson  <jas@extundo.com>
50973
50974         * m4/netinet_in_h.m4: New file.
50975
50976 2006-07-28  Simon Josefsson  <jas@extundo.com>
50977
50978         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
50979         #include's.
50980
50981 2006-07-28  Simon Josefsson  <jas@extundo.com>
50982
50983         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
50984         #include's.
50985
50986 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
50987
50988         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
50989         setgid on directories only if they set these bits.
50990         * lib/modechange.h: Remove obsolete comment about masks.
50991
50992 2006-07-28  Eric Blake  <ebb9@byu.net>
50993
50994         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
50995         macro expansion.
50996
50997 2006-07-28  Bruno Haible  <bruno@clisp.org>
50998
50999         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
51000
51001 2006-07-28  Bruno Haible  <bruno@clisp.org>
51002
51003         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
51004
51005 2006-07-28  Bruno Haible  <bruno@clisp.org>
51006
51007         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
51008         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
51009         Define fallbacks.
51010         Avoids link error on FreeBSD 4.x.
51011         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
51012
51013         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
51014         encoding.
51015         * lib/mbswidth.c (iswcntrl): Likewise.
51016
51017 2006-07-27  Bruno Haible  <bruno@clisp.org>
51018
51019         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
51020         test.
51021
51022 2006-07-27  Bruno Haible  <bruno@clisp.org>
51023
51024         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
51025         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
51026         defined.
51027
51028 2006-07-26  Eric Blake  <ebb9@byu.net>
51029
51030         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
51031
51032 2006-07-26  Eric Blake  <ebb9@byu.net>
51033
51034         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
51035         like mingw that lack mkstemp.
51036         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
51037         avoid compilation warning on mingw.
51038
51039 2006-07-26  Bruno Haible  <bruno@clisp.org>
51040
51041         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
51042         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
51043         INT_FAST*_MIN, INTPTR_MIN.
51044
51045 2006-07-25  Bruno Haible  <bruno@clisp.org>
51046
51047         * modules/version-etc (Depends-on): Add stdarg.
51048
51049 2006-07-25  Bruno Haible  <bruno@clisp.org>
51050
51051         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
51052         complex commands.
51053
51054 2006-07-25  Bruno Haible  <bruno@clisp.org>
51055
51056         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
51057         defined in <stdarg.h> or config.h.
51058
51059 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
51060
51061         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
51062         (gl_STDIO_SAFER): Remove.
51063
51064 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
51065
51066         * MODULES.html.sh (File stream based Input/Output):
51067         Add fopen-safer, tmpfile-safer; remove stdio-safer.
51068         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
51069         * modules/fopen-safer, modules/tmpfile-safer: New files.
51070         * modules/stdio-safer: Remove.
51071
51072 2006-07-24  Bruno Haible  <bruno@clisp.org>
51073
51074         * modules/tmpdir: New file.
51075         * MODULES.html.sh (File system functions): Add it.
51076
51077 2006-07-24  Bruno Haible  <bruno@clisp.org>
51078
51079         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
51080         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
51081
51082 2006-07-24  Bruno Haible  <bruno@clisp.org>
51083
51084         * modules/clean-temp: New file.
51085
51086 2006-07-24  Bruno Haible  <bruno@clisp.org>
51087
51088         * m4/tmpdir.m4: New file, from GNU gettext.
51089
51090 2006-07-24  Bruno Haible  <bruno@clisp.org>
51091
51092         * lib/tmpdir.h: New file, from GNU gettext.
51093         * lib/tmpdir.c: New file, from GNU gettext.
51094
51095 2006-07-24  Bruno Haible  <bruno@clisp.org>
51096
51097         * lib/clean-temp.h: New file, from GNU gettext.
51098         * lib/clean-temp.c: New file, from GNU gettext.
51099
51100 2006-07-23  Eric Blake  <ebb9@byu.net>
51101
51102         * modules/stdio-safer (Files): Add tmpfile-safer.c.
51103         (Depends-on): Add binary-io.
51104
51105 2006-07-23  Eric Blake  <ebb9@byu.net>
51106
51107         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
51108
51109 2006-07-23  Eric Blake  <ebb9@byu.net>
51110
51111         * lib/tmpfile-safer.c: New file.
51112         * lib/stdio-safer.h (fopen_safer): Add prototype.
51113         * lib/stdio--.h (tmpfile): Make safer.
51114
51115 2006-07-23  Bruno Haible  <bruno@clisp.org>
51116
51117         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
51118         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
51119         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
51120         gl_linked_remove_at): Use it.
51121
51122 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
51123         and Simon Josefsson <jas@extundo.com>
51124
51125         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
51126
51127         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
51128
51129 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
51130
51131         * modules/close-stream: New file.
51132         * modules/closeout (Description): Make it clear that it exits
51133         with a diagnostic on error.
51134         (Depends-on): Add close-stream.  Remove fpending, stdbool.
51135         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
51136
51137 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
51138
51139         * m4/close-stream.m4: New file.
51140
51141 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
51142
51143         * lib/close-stream.c, lib/close-stream.h: New files.
51144
51145 2006-07-22  Bruno Haible  <bruno@clisp.org>
51146
51147         Merge from GNU gettext 0.15.
51148
51149         2006-05-01  Bruno Haible  <bruno@clisp.org>
51150
51151                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
51152
51153         2006-07-22  Bruno Haible  <bruno@clisp.org>
51154
51155                 * modules/javaversion: New file.
51156                 * MODULES.html.sh (Java): Add javaversion.
51157
51158         2006-03-12  Bruno Haible  <bruno@clisp.org>
51159
51160                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
51161
51162         2005-12-04  Bruno Haible  <bruno@clisp.org>
51163
51164                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
51165                 (untested).
51166
51167         2006-06-21  Bruno Haible  <bruno@clisp.org>
51168
51169                 Avoid warnings from recent versions of mcs.
51170                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
51171                 -o, -L, -r any more. Use options documented since mcs-1.0
51172                 instead. Similarly for -g.
51173
51174         2005-12-04  Bruno Haible  <bruno@clisp.org>
51175
51176                 * build-aux/csharpcomp.sh.in: Suffix for resources is
51177                 .resources, not .resource.
51178
51179         2005-07-09  Bruno Haible  <bruno@clisp.org>
51180
51181                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
51182                 add a .dll suffix.
51183                 Reported by Mark Junker <mjscod@gmx.de>.
51184
51185         2006-07-22  Bruno Haible  <bruno@clisp.org>
51186
51187                 * modules/gettext: Upgrade to gettext-0.15.
51188                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
51189                 m4/visibility.m4.
51190                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
51191
51192 2006-07-22  Bruno Haible  <bruno@clisp.org>
51193
51194         Merge from GNU gettext 0.15.
51195
51196         2006-03-25  Bruno Haible  <bruno@clisp.org>
51197
51198                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
51199
51200         2006-07-21  Bruno Haible  <bruno@clisp.org>
51201
51202                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
51203                 "1.1".
51204
51205         2006-05-09  Bruno Haible  <bruno@clisp.org>
51206
51207                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
51208                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
51209                 for the conftestver execution.
51210
51211         2006-05-01  Bruno Haible  <bruno@clisp.org>
51212
51213                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
51214                 optional target-version argument. Verify that the compiler
51215                 groks source of the specified source-version, or add -source
51216                 option as necessary. Verify that the compiler produces
51217                 bytecode in the specified target-version, or add -target and
51218                 -source options as necessary. Make the result of the test
51219                 available as variable CONF_JAVAC. Also log error output in
51220                 config.log.
51221
51222         2006-03-11  Bruno Haible  <bruno@clisp.org>
51223
51224                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
51225
51226         2006-05-09  Bruno Haible  <bruno@clisp.org>
51227
51228                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
51229                 CLASSPATH_SEPARATOR to a semicolon.
51230
51231         2006-03-12  Bruno Haible  <bruno@clisp.org>
51232
51233                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
51234                 available as variable CONF_JAVA, for subsequent autoconf
51235                 tests. Also log error output in config.log.
51236
51237         2006-07-19  Bruno Haible  <bruno@clisp.org>
51238
51239                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
51240                 that getline works on glibc2 systems. Needed to avoid trouble
51241                 in relocatable.c.
51242                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
51243
51244         2005-12-04  Bruno Haible  <bruno@clisp.org>
51245
51246                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
51247                 launcher (untested).
51248
51249         2005-12-04  Bruno Haible  <bruno@clisp.org>
51250
51251                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
51252
51253         2006-07-22  Bruno Haible  <bruno@clisp.org>
51254
51255                 * gettext.m4: Update from GNU gettext-0.15.
51256                 * nls.m4: Likewise.
51257                 * po.m4: Likewise.
51258                 * inttypes-pri.m4: Likewise.
51259                 * inttypes-h.m4: Renamed from inttypes.m4.
51260                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
51261
51262 2006-07-22  Bruno Haible  <bruno@clisp.org>
51263
51264         Merge from GNU gettext 0.15.
51265
51266         2005-07-05  Bruno Haible  <bruno@clisp.org>
51267
51268                 * printf-args.c (printf_fetchargs): Work around broken
51269                 definition of wint_t on mingw.
51270
51271         2005-02-12  Bruno Haible  <bruno@clisp.org>
51272
51273                 * xallocsa.h: Add extern "C" for C++.
51274
51275         2006-05-17  Bruno Haible  <bruno@clisp.org>
51276
51277                 Cygwin portability.
51278                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
51279
51280         2006-04-30  Bruno Haible  <bruno@clisp.org>
51281
51282                 * progreloc.c: Include <mach-o/dyld.h> if available.
51283                 (find_executable): Use _NSGetExecutablePath when possible.
51284
51285         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
51286
51287                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
51288                 function.
51289
51290         2005-12-29  Bruno Haible  <bruno@clisp.org>
51291
51292                 * progreloc.c (set_program_name_and_installdir): Fix
51293                 compilation error.
51294
51295         2005-12-04  Bruno Haible  <bruno@clisp.org>
51296
51297                 Cygwin portability.
51298                 * progreloc.c: Include <windows.h> also on Cygwin.
51299                 (find_executable): Add support for Cygwin.
51300                 (set_program_name_and_installdir): Handle also platforms with
51301                 nonempty EXEEXT.
51302
51303         2006-07-11  Bruno Haible  <bruno@clisp.org>
51304
51305                 * javacomp.c: Fix a comment.
51306                 Reported by Jim Meyering.
51307
51308         2006-04-30  Bruno Haible  <bruno@clisp.org>
51309
51310                 * javacomp.h (compile_java_class): Add source_version,
51311                 target_version arguments.
51312                 * javacomp.c: Rewritten to choose only a compiler that
51313                 respects the specified source_version and target_version.
51314
51315         2006-06-27  Bruno Haible  <bruno@clisp.org>
51316
51317                 Assume correct S_ISDIR macro.
51318                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
51319
51320         2006-07-22  Bruno Haible  <bruno@clisp.org>
51321
51322                 * javaversion.h: New file, from GNU gettext.
51323                 * javaversion.c: New file, from GNU gettext.
51324                 * javaversion.java: New file, from GNU gettext.
51325                 * javaversion.class: New file, from GNU gettext.
51326
51327         2006-05-17  Bruno Haible  <bruno@clisp.org>
51328
51329                 Cygwin portability.
51330                 * javaexec.c (execute_java_class): Test for jview program
51331                 also on Cygwin.
51332
51333         2006-04-09  Bruno Haible  <bruno@clisp.org>
51334
51335                 * fatal-signal.c: Don't include string.h.
51336                 (at_fatal_signal): Use a copying loop instead of memcpy.
51337
51338         2005-12-04  Bruno Haible  <bruno@clisp.org>
51339
51340                 * csharpexec.c: Add support for 'clix' launcher (untested).
51341                 (execute_csharp_using_sscli): New function.
51342                 (execute_csharp_program): Call it.
51343
51344         2006-06-21  Bruno Haible  <bruno@clisp.org>
51345
51346                 Avoid warnings from recent versions of mcs.
51347                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
51348                 -o, -L, -r any more. Use options documented since mcs-1.0
51349                 instead. Similarly for -g.
51350
51351         2005-07-09  Bruno Haible  <bruno@clisp.org>
51352
51353                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
51354                 add a .dll suffix.
51355                 Reported by Mark Junker <mjscod@gmx.de>.
51356
51357         2006-06-17  Bruno Haible  <bruno@clisp.org>
51358
51359                 * config.charset: Update for NetBSD 3.0.
51360
51361         2006-05-17  Bruno Haible  <bruno@clisp.org>
51362
51363                 Cygwin portability.
51364                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
51365
51366         2006-05-16  Bruno Haible  <bruno@clisp.org>
51367
51368                 * localcharset.c [CYGWIN]: Include <windows.h>.
51369                 (get_charset_aliases): For Cygwin, return the same CPxxx
51370                 aliases list as under WIN32.
51371                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
51372                 the environment variables. Fall back to GetACP().
51373
51374         2006-04-05  Bruno Haible  <bruno@clisp.org>
51375
51376                 * config.charset: Update Juan Manuel Guerrero's address.
51377
51378         2005-02-12  Bruno Haible  <bruno@clisp.org>
51379
51380                 * allocsa.h: Add extern "C" for C++.
51381
51382         2005-02-10  Bruno Haible  <bruno@clisp.org>
51383
51384                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
51385                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
51386
51387         2006-07-22  Bruno Haible  <bruno@clisp.org>
51388
51389                 * gettext.h: Update to GNU gettext-0.15.
51390
51391 2006-07-22  Bruno Haible  <bruno@clisp.org>
51392
51393         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
51394         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
51395         lib-prefix.m4, longdouble.m4, ssize_t.m4.
51396
51397 2006-07-21  Eric Blake  <ebb9@byu.net>
51398
51399         * modules/stdlib-safer: New file.
51400         * MODULES.html.sh (File stream based Input/Output): Add
51401         stdlib-safer.
51402
51403 2006-07-21  Eric Blake  <ebb9@byu.net>
51404
51405         * lib/stdlib-safer.h: New file from coreutils, required by
51406         stdlib--.h.
51407
51408 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
51409
51410         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
51411
51412 2006-07-20  Bruno Haible  <bruno@clisp.org>
51413
51414         * gnulib-tool: Recognize new option --assume-autoconf.
51415         (autoconf_minversion): New variable.
51416         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
51417
51418 2006-07-20  Bruno Haible  <bruno@clisp.org>
51419
51420         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
51421
51422 2006-07-19  Derek R. Price  <derek@ximbiot.com>
51423
51424         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
51425         Reindent and repaginate.
51426
51427 2006-07-19  Derek Price  <derek@ximbiot.com>
51428
51429         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
51430         Correct grammar.
51431
51432 2006-07-17  Bruno Haible  <bruno@clisp.org>
51433
51434         * modules/list: New file.
51435         * modules/array-list: New file.
51436         * modules/carray-list, modules/carray-list-tests: New files.
51437         * modules/linked-list, modules/linked-list-tests: New files.
51438         * modules/avltree-list, modules/avltree-list-tests: New files.
51439         * modules/rbtree-list, modules/rbtree-list-tests: New files.
51440         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
51441         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
51442         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
51443         * modules/oset: New file.
51444         * modules/array-oset: New file.
51445         * modules/avltree-oset, modules/avltree-oset-tests: New files.
51446         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
51447         * tests/test-carray_list.c: New file.
51448         * tests/test-linked_list.c: New file.
51449         * tests/test-avltree_list.c: New file.
51450         * tests/test-rbtree_list.c: New file.
51451         * tests/test-linkedhash_list.c: New file.
51452         * tests/test-avltreehash_list.c: New file.
51453         * tests/test-rbtreehash_list.c: New file.
51454         * tests/test-avltree_oset.c: New file.
51455         * tests/test-rbtree_oset.c: New file.
51456         * MODULES.html.sh (Container data structures): New section.
51457
51458 2006-07-17  Bruno Haible  <bruno@clisp.org>
51459
51460         * m4/gl_list.m4: New file.
51461
51462 2006-07-17  Bruno Haible  <bruno@clisp.org>
51463
51464         * lib/gl_list.h: New file.
51465         * lib/gl_list.c: New file.
51466         * lib/gl_array_list.h: New file.
51467         * lib/gl_array_list.c: New file.
51468         * lib/gl_carray_list.h: New file.
51469         * lib/gl_carray_list.c: New file.
51470         * lib/gl_linked_list.h: New file.
51471         * lib/gl_linked_list.c: New file.
51472         * lib/gl_anylinked_list1.h: New file.
51473         * lib/gl_anylinked_list2.h: New file.
51474         * lib/gl_avltree_list.h: New file.
51475         * lib/gl_avltree_list.c: New file.
51476         * lib/gl_anyavltree_list1.h: New file.
51477         * lib/gl_anyavltree_list2.h: New file.
51478         * lib/gl_rbtree_list.h: New file.
51479         * lib/gl_rbtree_list.c: New file.
51480         * lib/gl_anyrbtree_list1.h: New file.
51481         * lib/gl_anyrbtree_list2.h: New file.
51482         * lib/gl_anytree_list1.h: New file.
51483         * lib/gl_anytree_list2.h: New file.
51484         * lib/gl_linkedhash_list.h: New file.
51485         * lib/gl_linkedhash_list.c: New file.
51486         * lib/gl_anyhash_list1.h: New file.
51487         * lib/gl_anyhash_list2.h: New file.
51488         * lib/gl_avltreehash_list.h: New file.
51489         * lib/gl_avltreehash_list.c: New file.
51490         * lib/gl_rbtreehash_list.h: New file.
51491         * lib/gl_rbtreehash_list.c: New file.
51492         * lib/gl_anytreehash_list1.h: New file.
51493         * lib/gl_anytreehash_list2.h: New file.
51494
51495         * lib/gl_oset.h: New file.
51496         * lib/gl_oset.c: New file.
51497         * lib/gl_array_oset.h: New file.
51498         * lib/gl_array_oset.c: New file.
51499         * lib/gl_avltree_oset.h: New file.
51500         * lib/gl_avltree_oset.c: New file.
51501         * lib/gl_rbtree_oset.h: New file.
51502         * lib/gl_rbtree_oset.c: New file.
51503         * lib/gl_anytree_oset.h: New file.
51504
51505 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
51506
51507         * m4/mkancesdirs.m4: New file.
51508         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
51509         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
51510         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
51511         it.
51512
51513 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
51514
51515         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
51516         * lib/mkancesdirs.h: New files.
51517         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
51518         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
51519         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
51520         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
51521         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
51522         callers changed.  Revamp internals significantly, by not
51523         attempting to create directories that are temporarily more
51524         permissive than the final results.  Do not attempt to use
51525         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
51526         This removes some race conditions, fixes some bugs, and simplifies
51527         things.  Use new dirchownmod function to do owner and mode changes.
51528         * lib/mkdir-p.h: Likewise.
51529         * lib/modechange.c (octal_to_mode): New function.
51530         (struct mode_change): New member mentioned.
51531         (make_node_op_equals): New arg mentioned.  All callers changed.
51532         (mode_compile): Keep track of which mode bits the user has explicitly
51533         mentioned.
51534         (mode_adjust): New arg DIR, so that we implement the X op correctly.
51535         New arg PMODE_BITS, to keep track of which mode bits the user
51536         mentioned; it treats S_ISUID and S_ISGID speciall.
51537         All callers changed.
51538         * lib/modechange.h: Likewise.
51539
51540 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
51541
51542         * MODULES.html.sh: Add mkancestors.
51543         * modules/mkancesdirs: New module.
51544         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
51545         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
51546         The chdir-safer and afs files are now orphans; I'll remove them
51547         unless someone speaks up.
51548         Add lib/dirchownmod.c, lib/dirchownmod.h.
51549         (Depends-on): Remove alloca, chown, save-cwd, dirname.
51550         Add lchown, mkancesdirs.
51551         (Maintainer): Add self.
51552
51553 2006-07-15  Karl Berry  <karl@gnu.org>
51554
51555         * gnulib-tool: help message wording/arrangement.
51556
51557 2006-07-14  Simon Josefsson  <jas@extundo.com>
51558
51559         * doc/gnulib.texi (Libtool and Windows): New section.
51560
51561 2006-07-12  Simon Josefsson  <jas@extundo.com>
51562
51563         * modules/gendocs (License): Fix license, approved by Karl.
51564
51565 2006-07-12  Eric Blake  <ebb9@byu.net>
51566
51567         * MODULES.html.sh: Add gendocs.
51568
51569 2006-07-11  Eric Blake  <ebb9@byu.net>
51570
51571         * modules/fdl: New module, to install doc/fdl.texi.
51572         * MODULES.html.sh: Add new section for documentation modules.
51573         * gnulib-tool: Avoid space-tab.
51574         (--doc-base): New option, to manage files from doc.
51575
51576 2006-07-11  Eric Blake  <ebb9@byu.net>
51577
51578         * m4/absolute-header.m4: Fix comments to match recent change.
51579
51580 2006-07-11  Eric Blake  <ebb9@byu.net>
51581
51582         * gnulib-tool: List --doc-base before --tests-base.
51583
51584 2006-07-11  Derek R. Price  <derek@ximbiot.com>
51585
51586         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
51587
51588 2006-07-11  Bruno Haible  <bruno@clisp.org>
51589
51590         * README: Mention where to put documentation.
51591
51592 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
51593
51594         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
51595
51596 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
51597
51598         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
51599         to stdint.m4.
51600
51601 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
51602
51603         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
51604         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
51605         "no/such/file/stdint.h" when there is no such file, so that
51606         the resulting C code can be parsed by dodgy compilers.
51607         Problems reported by Bob Proulx.
51608
51609 2006-07-10  Derek R. Price  <derek@ximbiot.com>
51610
51611         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
51612         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
51613         macros into the GNU _D_EXACT_NAMLEN.
51614         * lib/savedir.c:  Likewise.
51615         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
51616
51617 2006-07-10  Derek R. Price  <derek@ximbiot.com>
51618         and Paul Eggert  <eggert@cs.ucla.edu>
51619
51620         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
51621         * m4/savedir.m4:
51622         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
51623         macros into the GNU _D_EXACT_NAMLEN.
51624
51625 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
51626
51627         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
51628         around the absolute name, to work around a problem with the HP-UX
51629         11.23 native C compiler, reported by Bob Proulx.
51630
51631 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
51632
51633         * doc/maintain.texi, make-stds.texi: Sync from
51634         <http://savannah.gnu.org/projects/gnustandards>.
51635
51636 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
51637
51638         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
51639
51640 2006-07-09  Jim Meyering  <jim@meyering.net>
51641
51642         * m4/glob.m4: Remove a doubled word in a comment.
51643
51644 2006-07-09  Jim Meyering  <jim@meyering.net>
51645
51646         * lib/argp-pv.c: Remove a doubled word in a comment.
51647         * lib/check-version.c (check_version): Likewise.
51648         * lib/javacomp.c (compile_java_class): Likewise.
51649
51650 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
51651
51652         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
51653         for the benefit of people using Autoconf 2.60.  If you want to
51654         support older Autoconf versions you can copy m4/onceonly_2_57.m4
51655         (or m4/onceonly.m4, if pre-2.57) manually.
51656
51657 2006-07-08  Jim Meyering  <jim@meyering.net>
51658
51659         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
51660         comment.
51661         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
51662         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
51663         comment.
51664
51665 2006-07-08  Jim Meyering  <jim@meyering.net>
51666
51667         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
51668
51669 2006-07-07  Simon Josefsson  <jas@extundo.com>
51670
51671         * tests/test-crc.c: Change expected crc value, the test vector
51672         were probably computed using the old broken crc.c?
51673
51674 2006-07-06  Simon Josefsson  <jas@extundo.com>
51675
51676         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
51677         now the canonical place for the M4 file).
51678
51679         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
51680         from the sys_socket dependency now.
51681
51682         * modules/inet_pton (Files): Ditto.
51683
51684         * modules/inet_ntop (Files): Ditto.
51685
51686 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
51687
51688         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
51689         not gl_PREREQ_GETUSERSHELL.
51690
51691 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
51692
51693         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
51694         with only one argument, for Autoconf 2.60.
51695         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
51696         expand to nothing, so add a shell command to avoid syntax error.
51697         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
51698
51699 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
51700
51701         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
51702
51703 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
51704
51705         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
51706         no longer needed.  Check for isblank decl.
51707         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
51708         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
51709         of existence.
51710
51711 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
51712
51713         * lib/getloadavg.c: Use __VMS, not VMS.
51714         * lib/getopt.c: Likewise.
51715         * lib/getpagesize.h: Likewise.
51716         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
51717         and probably does not work.
51718
51719 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
51720
51721         * lib/.cppi-disable: Add wcwidth.
51722         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
51723         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
51724         (ISGRAPH): Remove.  All uses changed to isgraph.
51725         (FOLD) [!defined _LIBC]: Remove special case.
51726         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
51727         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
51728         HAVE_ISBLANK.
51729         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
51730         case.
51731
51732 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
51733
51734         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
51735         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
51736         brackets.  Other minor changes to suppress some compiler
51737         warnings.
51738
51739 2006-07-06  Derek R. Price  <derek@ximbiot.com>
51740         and Paul Eggert  <eggert@cs.ucla.edu>
51741
51742         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
51743         of invoking obsolescent AC_HEADER_DIRENT macro.
51744         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
51745         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
51746         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
51747         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
51748         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
51749         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
51750         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
51751         * m4/readdir.m4: Remove; no longer needed.
51752
51753 2006-07-06  Derek R. Price  <derek@ximbiot.com>
51754         and Paul Eggert  <eggert@cs.ucla.edu>
51755
51756         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
51757         Don't worry about this obsolete case any more.
51758         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
51759         directories.
51760         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
51761         worry about this obsolete case any more.
51762         * lib/fts.c: Likewise.
51763         * lib/getcwd.c: Likewise.
51764         * lib/glob.h: Likewise.
51765         * lib/savedir.c: Likewise.
51766
51767 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
51768
51769         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
51770         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
51771         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
51772         needed.
51773         All uses removed.
51774         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
51775         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
51776         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
51777         needed.
51778         * m4/getdate.m4 (gl_GETDATE): Likewise.
51779         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
51780         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
51781         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
51782         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
51783         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
51784         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
51785         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
51786         needed.
51787
51788 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
51789
51790         * lib/memcasecmp.c: Include <limits.h>.
51791         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
51792         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
51793         Don't assume isdigit succeeds only on '0' through '9'.
51794
51795 2006-07-05  Eric Blake  <ebb9@byu.net>
51796
51797         * modules/getaddrinfo (Depends-on): Add snprintf.
51798
51799 2006-07-05  Eric Blake  <ebb9@byu.net>
51800
51801         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
51802         to avoid 'header present but could not be compiled' on cygwin.
51803
51804 2006-07-05  Eric Blake  <ebb9@byu.net>
51805
51806         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
51807         missing from netdb.h.
51808         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
51809
51810 2006-07-05  Derek R. Price  <derek@ximbiot.com>
51811
51812         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
51813         no longer needed.
51814         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
51815         * m4/getdate.m4 (gl_GETDATE): Likewise.
51816         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
51817         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
51818         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
51819         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
51820         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
51821
51822 2006-07-05  Derek R. Price  <derek@ximbiot.com>
51823
51824         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
51825         All uses of is_space replaced by isspace.
51826         * lib/exit.h: Don't talk about STDC_HEADERS.
51827         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
51828         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
51829         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
51830         replaced by isprint etc.
51831         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
51832         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
51833         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
51834         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
51835         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
51836         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
51837
51838 2006-07-05  Bruno Haible  <bruno@clisp.org>
51839
51840         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
51841         the function exists, before testing against AIX.
51842         Reported by Martin Lambers <marlam@marlam.de>.
51843
51844 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
51845
51846         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
51847         From Mark D. Baushke.
51848
51849 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
51850
51851         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
51852         to the absolute name, not just one, to bypass Sun C 5.8's
51853         "warning: #include of /usr/include/... may be non-portable".
51854
51855 2006-07-04  Eric Blake  <ebb9@byu.net>
51856
51857         * modules/dirname-tests: New test module.
51858         * tests/test-dirname.c: New file, replacing dirname.c
51859         TEST_DIRNAME section that was recently deleted.
51860
51861 2006-07-04  Bruno Haible  <bruno@clisp.org>
51862
51863         Assume ANSI C header files and <ctype.h> functions.
51864         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
51865         (mbsnwidth): Use isprint, iscntrl instead.
51866
51867 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51868
51869         Merge from coreutils.
51870         * MODULES.html.sh: Add xstrtold.
51871         * modules/xstrtold: New file.
51872         * modules/cycle-check (Files): Add lib/same-inode.h.
51873         * modules/dirname (Files): Add m4/double-slash-root.m4.
51874         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
51875         * modules/mkdir-p (Files): Add lib/same-inode.h.
51876         * modules/same (Files): Add lib/same-inode.h.
51877
51878 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51879
51880         * m4/absolute-header.m4: Renamed from full-header-path.m4.
51881         This is to keep the terminology clean; POSIX talks about
51882         "absolute pathnames", not "full pathnames", but the GNU
51883         Coding Standards say to use "path" for something else;
51884         so use "absolute" to keep both sides happy.
51885         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
51886         Set gl_absolute_header, not gl_full_header_path.
51887         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
51888         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
51889         All uses changed.
51890
51891         Merge from coreutils.
51892
51893         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
51894
51895         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
51896         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
51897         want to require the building of c-strtod.o.
51898         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
51899         needs -lm directly.
51900         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
51901
51902         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
51903
51904         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
51905         --as-needed option if available.  Problem reported by Albert Chin in
51906         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
51907         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
51908         cc merely issues a bunch of annoying warnings for --as-needed
51909         (this problem was reported by Bob Proulx).  Also, try linking with
51910         -lm to detect a bug in binutils 2.16 (this problem was reported
51911         by Ralf Wildenhues).
51912
51913         2006-06-18  Jim Meyering  <jim@meyering.net>
51914
51915         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
51916         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
51917         macro.
51918         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
51919         also check for glibc-2.4's abort-inducing bug.
51920
51921         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
51922         Low-probability clean-up should be to use rmdir to get rid of
51923         the just-created directory, not unlink.
51924
51925         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
51926         configure fail, and request a bug report to inform us about it.
51927         Add a comment that, barring reports to the contrary, in 2007 we'll
51928         assume ftruncate is universally available.
51929
51930         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
51931
51932         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
51933
51934         2006-03-12  Jim Meyering  <jim@meyering.net>
51935
51936         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
51937         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
51938         * m4/same.m4 (gl_SAME): Likewise.
51939         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
51940
51941         2006-03-11  Eric Blake  <ebb9@byu.net>
51942
51943         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
51944         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
51945         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
51946         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
51947
51948 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
51949
51950         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
51951         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
51952         reported by Mark D. Baushke, one in
51953         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
51954
51955         Merge from coreutils.
51956
51957         * lib/.cppi-disable: Add stdint_.h.
51958         * lib/.cvsignore: Add stdint.h.
51959
51960         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
51961
51962         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
51963         both double and long double versions.
51964         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
51965         * lib/xstrtold.c: New file.
51966         * lib/xstrtod.h (xstrtold): New decl.
51967
51968         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
51969
51970         * lib/filemode.c (setst): Remove.
51971         (strmode): Rewrite to avoid setst.  This makes the code shorter,
51972         (arguably) clearer, and the generated code is a bit smaller on my
51973         Debian GNU/Linux stable x86 host.
51974
51975         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
51976
51977         * lib/filemode.c: Include "filemode.h" first, to test the interface.
51978         Assume that filemode.h includes sys/types.h and sys/stat.h.
51979         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
51980         (ftypelet): Reorder to put common cases first, for efficiency.
51981         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
51982         to do 'M'.
51983         (strmode): Renamed from mode_string, and now stores 12 bytes instead
51984         of 10, for compatibility with FreeBSD.  All callers changed.
51985         (filemodestring): Now stores 12 bytes instead of 10, and sets file
51986         types that can't be deduced solely from st_mode.  First arg is now a
51987         const pointer.
51988         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
51989         (strmode): Renamed from mode_string.
51990         (filemodestring): New decl.
51991         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
51992         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
51993         needed.
51994         (S_ISPORT, S_ISWHT): New macros, if not already defined.
51995
51996         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
51997
51998         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
51999         fsusage.h now does that.  Include fsusage.h first, to test interface.
52000         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
52001         at most one method (the old code could have generated decls that
52002         didn't conform to C89, not that this was ever exercised).
52003         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
52004
52005         2006-03-19  Jim Meyering  <jim@meyering.net>
52006
52007         Work even in a chroot where d_ino values for entries in "/"
52008         don't match the stat.st_ino values for the same names.
52009         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
52010         number, iterate through all entries again, using lstat instead.
52011         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
52012         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
52013
52014         * lib/getcwd.c (__getcwd): Clarify a comment.
52015         Use memcpy in place of a call to strcpy.
52016
52017         2006-03-12  Jim Meyering  <jim@meyering.net>
52018
52019         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
52020         matches that of the current directory (which we're about to chdir ".."
52021         out of), then save the dev-ino of the parent, instead.
52022
52023         * lib/same-inode.h (SAME_INODE): New file/macro.
52024         * lib/chdir-safer.c (SAME_INODE): Remove definition.
52025         Include "same-inode.h", instead.
52026         * lib/same.c: Likewise.
52027         * lib/cycle-check.h: Include "same-inode.h".
52028         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
52029         * lib/cycle-check.c (SAME_INODE): Remove definition.
52030         * lib/root-dev-ino.h: Include "same-inode.h".
52031
52032         2006-03-11  Eric Blake  <ebb9@byu.net>
52033
52034         * lib/same.c (same_name): s/base_name/last_component/
52035         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
52036         * lib/filenamecat.c (file_name_concat): Likewise.
52037
52038         2006-03-11  Eric Blake  <ebb9@byu.net>,
52039                     Paul Eggert  <eggert@cs.ucla.edu>
52040
52041         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
52042         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
52043         drive prefix.
52044         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
52045         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
52046         (last_component): New method.
52047         * lib/dirname.c (dir_len): Determine when drive letters need a
52048         subsequent slash.  Preserve // when it is special.
52049         (dir_name): Don't append dot when drive letter is absolute.
52050         [TEST_DIRNAME]: Move into a full-blown gnulib test.
52051         * lib/basename.c (base_name): New semantics - malloc the result.
52052         Preserve // when it is special.  Preserve relative files that look
52053         like drive letters.
52054         (base_len): Preserve // when it is special.
52055         (last_component): New method, similar to old base_name semantics.
52056         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
52057         base_name.  Strip redundant slashes from ///.
52058
52059 2006-07-03  Jim Meyering  <jim@meyering.net>
52060
52061         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
52062         macro is used before the first cycle_check call.
52063
52064 2006-07-03  Eric Blake  <ebb9@byu.net>
52065
52066         * modules/dirname (Depends-on): Add xstrndup.
52067
52068 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
52069
52070         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
52071         test cases, so that config.log is a bit easier to follow.
52072
52073 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
52074
52075         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
52076         both are 64 bits, since this seems to be the tradition, and this
52077         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
52078         we ever run into a host that prefers long long to long in this
52079         case, we'll need another configure-time test.  Problem reported by
52080         Jim Meyering.
52081
52082 2006-07-02  Eric Blake  <ebb9@byu.net>
52083
52084         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
52085
52086 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
52087
52088         * modules/inttypes (Depends-on): No longer depends on stdint.
52089         * modules/stdint (Description): Say more about assumptions.
52090         Say that the fast types might differ.  Say macros are used.
52091         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
52092         (Makefile.am): Revise list of substituted symbols to match
52093         new stdint.m4.
52094         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
52095         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
52096         * tests/test-stdint.c (verify_same_types)
52097         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
52098         the code conforms to C99/C89.
52099         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
52100         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
52101
52102 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
52103
52104         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
52105         but fix a bug, by requiring at least 64 bits.
52106         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
52107         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
52108         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
52109         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
52110
52111         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
52112         changes.  Make 2.59 a prerequisite.  Check and substitute for
52113         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
52114         inttypes.h.  Do not use special include files; just use the
52115         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
52116         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
52117         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
52118         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
52119         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
52120         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
52121         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
52122         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
52123         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
52124         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
52125         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
52126         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
52127         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
52128         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
52129         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
52130         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
52131         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
52132         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
52133         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
52134         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
52135         WINT_MAX.  Check for C99 conformance more strictly, by detecting
52136         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
52137         not check for things that C99 does not require, e.g., int8_t.  If
52138         a test isn't needed unless <stdint.h> isn't working, and is
52139         unlikely to be needed for any other reason, then don't do it
52140         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
52141         size_t, since we assume C89 freestanding at least.  Do not check
52142         for sig_atomic_t, wchar_t, or wint_t, since the code now does
52143         the right thing even if the types are not defined.  Instead use:
52144         (gl_STDINT_TYPE_PROPERTIES): New macro.
52145         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
52146         testing whether <sys/types.h> clashes, as Autoconf does this for
52147         us now.  All uses removed.
52148         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
52149         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
52150         (gl_CHECK_TYPE_SAME):
52151         Remove; no longer needed.
52152         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
52153         exists, since we'll return 0 anyway in that case.
52154         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
52155
52156 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
52157
52158         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
52159         possible collision with system files.
52160         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
52161         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
52162         WCHAR_MIN and WCHAR_MAX in this case.
52163         (<stddef.h>): Do not include; no longer needed.
52164         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
52165         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
52166         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
52167         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
52168         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
52169         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
52170         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
52171         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
52172         !defined(__c99))]: Include in this case too, since it's harmless
52173         now.
52174         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
52175         dangerous to do so.
52176         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
52177         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
52178         (_STDINT_MIN, _STDINT_MAX): New macros.
52179         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
52180         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
52181         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
52182         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
52183         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
52184         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
52185         macros, not typedefs; this simplifies things quite a bit.
52186         Use long int for all types narrower than int64_t.
52187         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
52188         Define in terms of long long int or int64_t or long int,
52189         not int64_t or int32_t.  This saves some compile-time testing.
52190         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
52191         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
52192         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
52193         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
52194         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
52195         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
52196         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
52197         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
52198         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
52199         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
52200         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
52201         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
52202         undef any previous version and define our own version, for
52203         simplicity and consistency with the new macros for types.
52204         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
52205         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
52206         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
52207         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
52208         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
52209         @WINT_T_SUFFIX@ to keep things simple here.
52210         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
52211         Simplify by assuming typical 8/16/32/64 host, since we're
52212         already doing that elsewhere anyway.
52213         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
52214         and assume long long int is 64 bits if available.  This
52215         speeds up 'configure'.
52216
52217 2006-07-01  Eric Blake  <ebb9@byu.net>
52218
52219         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
52220         Reported by Andreas Buening.
52221
52222 2006-07-01  Eric Blake  <ebb9@byu.net>
52223
52224         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
52225
52226 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
52227
52228         * lib/getaddrinfo.c: fixed typo
52229
52230 2006-06-29  Jim Meyering  <jim@meyering.net>
52231
52232         * modules/strftime (Maintainer): Add my name, since with the
52233         FPRINTFTIME changes strftime.c has forked from glibc.
52234
52235 2006-06-29  Eric Blake  <ebb9@byu.net>
52236
52237         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
52238
52239 2006-06-29  Eric Blake  <ebb9@byu.net>
52240
52241         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
52242
52243 2006-06-29  Eric Blake  <ebb9@byu.net>
52244
52245         * lib/stat_.h: New file.
52246
52247 2006-06-29  Eric Blake  <ebb9@byu.net>
52248
52249         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
52250         unused static function.
52251
52252 2006-06-29  Eric Blake  <ebb9@byu.net>
52253
52254         * doc/functions.texi (Function Portability): Document missing lstat
52255         on mingw.
52256
52257 2006-06-29  Eric Blake  <ebb9@byu.net>
52258
52259         * MODULES.html.sh: Add sys_stat.
52260         * modules/sys_stat: New module.
52261         * modules/mkstemp (Depends-on): Add sys_stat.
52262
52263 2006-06-29  Derek R. Price  <derek@ximbiot.com>
52264
52265         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
52266
52267 2006-06-29  Derek R. Price  <derek@ximbiot.com>
52268
52269         * m4/c-bs-a.m4: Removed.
52270
52271 2006-06-29  Derek R. Price  <derek@ximbiot.com>
52272
52273         * lib/strftime.c: Assume strftime() exists.
52274
52275 2006-06-29  Derek Price  <derek@ximbiot.com>
52276
52277         * modules/c-bs-a: Removed - \a is C89.
52278         * MODULES.html.sh: Remove c-bs-a.
52279
52280 2006-06-29  Bruno Haible  <bruno@clisp.org>
52281
52282         * modules/wcwidth (License): Change to LGPL.
52283
52284 2006-06-28  Simon Josefsson  <jas@extundo.com>
52285
52286         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
52287         on _WIN32.
52288
52289         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
52290         getnameinfo.
52291
52292 2006-06-28  Simon Josefsson  <jas@extundo.com>
52293
52294         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
52295
52296 2006-06-28  Simon Josefsson  <jas@extundo.com>
52297
52298         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
52299         functions there.  It will succeed on Windows XP, but on Windows
52300         2000 and (presumably) earlier, it will fail, and use the internal
52301         re-implementation.
52302         (use_win32_p): New function.
52303         (getaddrinfo): Use strtoul on servname, to support numeric ports.
52304         Support AI_NUMERICSERV to disable getservbyname.
52305         (getnameinfo): New function, only supports
52306         NI_NUMERICHOST|NI_NUMERICSERV for now.
52307
52308         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
52309         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
52310         getnameinfo.
52311
52312 2006-06-28  Eric Blake  <ebb9@byu.net>
52313
52314         * modules/wcwidth: New file.
52315         * modules/mbchar (Depends-on): Add wcwidth.
52316         * modules/mbswidth (Depends-on): Add wcwidth.
52317         * MODULES.html.sh: Add wcwidth.
52318
52319 2006-06-28  Eric Blake  <ebb9@byu.net>
52320
52321         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
52322         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
52323
52324 2006-06-28  Eric Blake  <ebb9@byu.net>
52325
52326         * lib/xvasprintf.h: Fix comments.
52327
52328 2006-06-28  Eric Blake  <ebb9@byu.net>
52329
52330         * lib/mbchar.h (wcwidth): Include wcwidth.h.
52331         * lib/mbswidth.c (wcwidth): Move from here...
52332         * lib/wcwidth.h: ...to this new file.
52333
52334 2006-06-28  Derek R. Price  <derek@ximbiot.com>
52335
52336         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
52337
52338         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
52339         it's obsolete.
52340         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
52341
52342 2006-06-28  Derek R. Price  <derek@ximbiot.com>
52343
52344         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
52345         Autoconf 2.60 says this stuff was obsolete.
52346
52347 2006-06-28  Bruno Haible  <bruno@clisp.org>
52348
52349         * modules/wcwidth (Files): Add m4/wchar_t.m4.
52350
52351 2006-06-28  Bruno Haible  <bruno@clisp.org>
52352
52353         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
52354         gt_TYPE_WCHAR_T.
52355
52356 2006-06-28  Bruno Haible  <bruno@clisp.org>
52357
52358         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
52359         declaration for wcwidth.
52360         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
52361
52362 2006-06-28  Bruno Haible  <bruno@clisp.org>
52363
52364         * lib/mkdtemp.c [MINGW]: Include <io.h>.
52365         (mkdir): Define using _mkdir.
52366
52367 2006-06-28  Bruno Haible  <bruno@clisp.org>
52368
52369         * lib/getaddrinfo.h: Fix POSIX URL.
52370         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
52371         _WIN32.
52372         (use_win32_p): Make static.
52373         (getaddrinfo): Reject service name if it is empty or does not consist
52374         solely of decimal digits, or if its value is > 65535.
52375         (getnameinfo): Remove useless casts.
52376
52377 2006-06-27  Simon Josefsson  <jas@extundo.com>
52378
52379         * modules/sys_select: New file, suggested by Bruno Haible, Paul
52380         Eggert and Martin Lambers.
52381
52382 2006-06-27  Simon Josefsson  <jas@extundo.com>
52383
52384         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
52385         Eggert and Martin Lambers.
52386
52387 2006-06-27  Bruno Haible  <bruno@clisp.org>
52388
52389         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
52390         result to 0, not to empty.
52391         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
52392
52393 2006-06-27  Bruno Haible  <bruno@clisp.org>
52394
52395         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
52396
52397 2006-06-26  Simon Josefsson  <jas@extundo.com>
52398
52399         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
52400         present.
52401
52402 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
52403
52404         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
52405         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
52406         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
52407
52408 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
52409
52410         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
52411
52412 2006-06-26  Bruno Haible  <bruno@clisp.org>
52413
52414         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
52415
52416 2006-06-26  Bruno Haible  <bruno@clisp.org>
52417
52418         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
52419
52420 2006-06-26  Bruno Haible  <bruno@clisp.org>
52421
52422         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
52423         SGI C compiler in pre-C99 mode.
52424         Suggested by Mark D. Baushke and Larry Jones.
52425
52426 2006-06-26  Bruno Haible  <bruno@clisp.org>
52427
52428         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
52429         WCHAR_MAX.
52430         Reported by Mark D. Baushke and Larry Jones.
52431
52432 2006-06-26  Bruno Haible  <bruno@clisp.org>
52433
52434         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
52435         in pre-C99 mode.
52436         Suggested by Mark D. Baushke and Larry Jones.
52437
52438 2006-06-23  Simon Josefsson  <jas@extundo.com>
52439             Bruno Haible  <bruno@clisp.org>
52440
52441         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
52442         Emit mostlyclean-local rule.
52443         (func_emit_tests_Makefile_am): Likewise.
52444         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
52445
52446 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
52447
52448         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
52449
52450 2006-06-23  Bruno Haible  <bruno@clisp.org>
52451
52452         * tests/test-stdint.c: Update to match ISO C 99 Technical
52453         Corrigendum 1.
52454
52455 2006-06-23  Bruno Haible  <bruno@clisp.org>
52456
52457         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
52458
52459 2006-06-23  Bruno Haible  <bruno@clisp.org>
52460
52461         * lib/stdint_.h: Treat IRIX like OpenBSD.
52462
52463 2006-06-23  Bruno Haible  <bruno@clisp.org>
52464
52465         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
52466         ISO C 99 Technical Corrigendum 1.
52467
52468 2006-06-22  Simon Josefsson  <jas@extundo.com>
52469
52470         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
52471         MinGW.
52472
52473 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
52474
52475         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
52476         needed.  Some compiler complained about some of them.  Problem reported
52477         by Larry Jones in
52478         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
52479
52480 2006-06-21  Simon Josefsson  <jas@extundo.com>
52481
52482         * tests/test-getaddrinfo.c: New file.
52483
52484         * modules/getaddrinfo-tests: New file.
52485
52486         * MODULES.html.sh: Add inet_pton.
52487
52488         * modules/inet_pton: New file.
52489
52490 2006-06-21  Simon Josefsson  <jas@extundo.com>
52491
52492         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
52493         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
52494         of using the (limited) gnulib implementation on Windows XP.
52495
52496         * m4/inet_pton.m4: New file.
52497
52498 2006-06-21  Simon Josefsson  <jas@extundo.com>
52499
52500         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
52501         variable.
52502
52503         * lib/socket_.h: Don't define WINVER.
52504
52505         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
52506         slightly modified to work in gnulib.
52507
52508 2006-06-21  Simon Josefsson  <jas@extundo.com>
52509
52510         * doc/gnulib.texi (Windows sockets): Add.
52511
52512 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
52513
52514         * lib/read-file.c (fread_file): Start with buffer allocation of
52515         0 bytes rather than 1 byte; this simplifies the code.
52516         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
52517         code to free buffer and save/restore errno.
52518         (internal_read_file): Remove unused local.
52519
52520 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
52521
52522         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
52523         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
52524         Problem reported by Denis Excoffier in
52525         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
52526
52527 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
52528
52529         * modules/sys_socket, modules/socklen: Include sys/types since
52530         FreeBSD 4.x's sys/socket.h needs it.
52531
52532 2006-06-19  Simon Josefsson  <jas@extundo.com>
52533
52534         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
52535
52536 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
52537
52538         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
52539
52540 2006-06-19  Bruno Haible  <bruno@clisp.org>
52541
52542         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
52543         and FULL_PATH_INTTYPES_H in angle brackets.
52544         Reported by Mark D. Baushke <mdb@gnu.org>.
52545
52546 2006-06-17  Eric Blake  <ebb9@byu.net>
52547
52548         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
52549         errno.
52550
52551 2006-06-17  Bruno Haible  <bruno@clisp.org>
52552
52553         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
52554         <sys/inttypes.h>.
52555
52556 2006-06-17  Bruno Haible  <bruno@clisp.org>
52557
52558         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
52559         whether errno is declared. Assume <errno.h> declares errno.
52560
52561 2006-06-17  Bruno Haible  <bruno@clisp.org>
52562
52563         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
52564
52565 2006-06-17  Bruno Haible  <bruno@clisp.org>
52566
52567         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
52568         problem on Solaris 2.5.1.
52569
52570 2006-06-16  Eric Blake  <ebb9@byu.net>
52571
52572         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
52573         * lib/unicodeio.c [!defined errno]: Likewise.
52574         * lib/strtol.c [!defined errno]: Likewise.
52575         * lib/strtod.c [!defined errno]: Likewise.
52576
52577 2006-06-15  Eric Blake  <ebb9@byu.net>
52578
52579         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
52580
52581 2006-06-15  Eric Blake  <ebb9@byu.net>
52582
52583         * config/srclist.txt (ssize_t.m4): Lose sync.
52584
52585 2006-06-15  Bruno Haible  <bruno@clisp.org>
52586
52587         * modules/stdint (Files): Include m4/full-header-path.m4,
52588         m4/size_max.m4, m4/wchar_t.m4.
52589         (Makefile.am): Many more substitutions.
52590         * modules/stdint-tests: New file.
52591         * tests/test-stdint.c: New file.
52592
52593 2006-06-15  Bruno Haible  <bruno@clisp.org>
52594
52595         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
52596         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
52597         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
52598         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
52599         gl_CHECK_TYPE_SAME): New macros.
52600
52601 2006-06-15  Bruno Haible  <bruno@clisp.org>
52602
52603         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
52604
52605 2006-06-15  Bruno Haible  <bruno@clisp.org>
52606
52607         * lib/stdint_.h: Rewritten to be fully auto-configured.
52608         Fixes bug on HP-UX/IA64.
52609
52610 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
52611
52612         * lib/getdate.y (__attribute__): Don't define if already defined.
52613         Problem reported by Larry Jones.
52614         * lib/utimens.c (__attribute__): Likewise.
52615
52616 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
52617
52618         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
52619         reported by Andreas Schwab.
52620
52621 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
52622             Bruno Haible  <bruno@clisp.org>
52623
52624         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
52625         check for the declaration of strnlen and a run test that exposes the
52626         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
52627         rpl_strndup.
52628
52629 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
52630             Bruno Haible  <bruno@clisp.org>
52631
52632         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
52633
52634 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
52635
52636         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
52637         compile test, for Tru64 4.0D.
52638
52639 2006-05-28  Karl Berry  <karl@gnu.org>
52640
52641         * config/srclist.txt (printf-args.c): lose sync.
52642
52643 2006-05-26  Martin Lambers  <marlam@marlam.de>
52644
52645         * lib/getpass.c: Updates the test for the native W32 API, and adds
52646         missing includes, thus fixing compilation warnings.
52647
52648 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
52649
52650         * lib/exclude.c (exclude_fnmatch): New function.
52651         (excluded_file_name): Call exclude_fnmatch.
52652         * lib/exclude.h (excluded_file_name): New prototype
52653
52654 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
52655
52656         * lib/tempname.c (small_open, large_open): New macros.
52657         (__open, __open64) [!_LIBC]: Remove.
52658         (__gen_tempname): Use small_open and large_open instead of __open
52659         and __open64.  This fixes a portability bug on HP-UX 11.11i
52660         reported by Simon Wing-Tang in
52661         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
52662
52663 2006-05-24  Bruno Haible  <bruno@clisp.org>
52664
52665         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
52666         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
52667         Reported by Thorsten Maerz <torte@netztorte.de> via
52668         Aaron Stone <aaron@serendipity.cx>.
52669
52670 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
52671
52672         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
52673         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
52674         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
52675         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
52676         not really conditional on the cache.
52677         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
52678
52679 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
52680
52681         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
52682         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
52683         (my_usleep): Don't mishandle maximum value.
52684
52685 2006-05-19  Jim Meyering  <jim@meyering.net>
52686
52687         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
52688
52689 2006-05-17  Bruno Haible  <bruno@clisp.org>
52690
52691         Cygwin portability.
52692         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
52693
52694 2006-05-17  Bruno Haible  <bruno@clisp.org>
52695
52696         * lib/stdint_.h: Fix recognition of Cygwin.
52697
52698 2006-05-15  Bruno Haible  <bruno@clisp.org>
52699
52700         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
52701         on libtool patch by Ralf Wildenhues.
52702
52703 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
52704
52705         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
52706         test for C99 conformance; (bool) 0.5 is an integer constant
52707         expression, but (bool) -0.5 is not.  Problem reported by Fedor
52708         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
52709
52710 2006-05-11  Simon Josefsson  <jas@extundo.com>
52711
52712         * m4/xvasprintf.m4: Fix obvious typo.
52713
52714 2006-05-11  Jim Meyering  <jim@meyering.net>
52715
52716         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
52717         James Lemley.
52718
52719 2006-05-10  Simon Josefsson  <jas@extundo.com>
52720
52721         * lib/md4.c: Typo fix, update copyright years.
52722         (K1, K2): Don't use L because it turn computations into 64-bit on
52723         64-bit platforms.
52724
52725 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
52726
52727         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
52728         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
52729         unwanted sign propagation, e.g., on hosts with 64-bit int.
52730         There still are some problems with reeelly weird theoretical hosts
52731         (e.g., 33-bit int) but it's not worth worrying about now.
52732         * lib/sha1.c (rol): Likewise.
52733         (K1, K2, K3, K4): Remove unnecessary L suffix.
52734
52735 2006-05-10  Bruno Haible  <bruno@clisp.org>
52736
52737         * lib/des.c: Cast to avoid warnings.
52738
52739 2006-05-09  Bruno Haible  <bruno@clisp.org>
52740
52741         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
52742         (Depends-on): Depend also on xsize, stdarg.
52743         (configure.ac): Add gl_XVASPRINTF.
52744
52745 2006-05-09  Bruno Haible  <bruno@clisp.org>
52746
52747         * m4/xvasprintf.m4: New file.
52748
52749 2006-05-09  Bruno Haible  <bruno@clisp.org>
52750
52751         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
52752         (EOVERFLOW): Define fallback value.
52753         (xstrcat): New function.
52754         (xvasprintf): Recognize the special case of a string concatenation.
52755
52756 2006-05-08  Eric Blake  <ebb9@byu.net>
52757
52758         * gnulib-tool (func_version): Base copyright year on CVS date.
52759         (func_emit_copyright_notice): New function.
52760         (func_emit_lib_Makefile_am): Use it.
52761         (func_emit_tests_Makefile_am): Likewise.
52762         (func_import): Likewise.
52763
52764 2006-05-08  Bruno Haible  <bruno@clisp.org>
52765
52766         * modules/stdarg: New file.
52767         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
52768
52769 2006-05-08  Bruno Haible  <bruno@clisp.org>
52770
52771         * m4/stdarg.m4: New file, from GNU gettext.
52772
52773 2006-05-08  Bruno Haible  <bruno@clisp.org>
52774
52775         * config/srclist.txt (build-aux/config.rpath): different from latest
52776         release.
52777
52778 2006-05-08  Bruno Haible  <bruno@clisp.org>
52779
52780         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
52781
52782 2006-05-05  Jim Meyering  <jim@meyering.net>
52783
52784         * m4/warning.m4: New file, derived from bison's file by the same name.
52785
52786 2006-05-03  Bruno Haible  <bruno@clisp.org>
52787
52788         * lib/stdint_.h: Shorter URL.
52789         * lib/inttypes.h: Likewise.
52790
52791 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
52792
52793         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
52794
52795 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
52796
52797         * lib/verify.h: Document the internals better.  Most of this change
52798         was written by Bruno Haible.
52799
52800 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
52801
52802         * doc/verify.texi: New file, partly based on a proposal by
52803         Bruno Haible.
52804
52805 2006-05-02  Bruno Haible  <bruno@clisp.org>
52806
52807         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
52808         test from here...
52809         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
52810
52811 2006-04-29  Bruno Haible  <bruno@clisp.org>
52812
52813         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
52814         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
52815
52816 2006-04-29  Bruno Haible  <bruno@clisp.org>
52817
52818         * gnulib-tool: Make --update option actually work.
52819
52820 2006-04-29  Bruno Haible  <bruno@clisp.org>
52821
52822         * doc/gcd.texi: New file.
52823         * doc/gnulib.texi: Include it.
52824
52825 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
52826
52827         * lib/getdate.y (get_date): When adding relative date, start with the
52828         initial time, not with the result of the first mktime call.
52829
52830 2006-04-25  Bruno Haible  <bruno@clisp.org>
52831
52832         * gnulib-tool (func_import): Output the include directives in three
52833         blocks, sorted separately.
52834         Reported by Ben Pfaff <blp@cs.stanford.edu>.
52835
52836 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
52837
52838         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
52839         to define main with arguments, for C++.  Reported by Eric Blake.
52840         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
52841         Prefer 'int main ()' to 'int main (void)', for C++.
52842         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
52843         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
52844         for 'main', for C99 and C++.
52845
52846 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
52847
52848         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
52849         Don't assume that exit status -1 is valid.
52850         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
52851         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
52852         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
52853         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
52854         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
52855         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
52856         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
52857         functions can be used without declaring them, or that you can
52858         exit with status -1.
52859         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
52860
52861 2006-04-24  Karl Berry  <karl@gnu.org>
52862
52863         * config/srclist.txt (longdouble.m4): sync lost.
52864
52865 2006-04-24  Eric Blake  <ebb9@byu.net>
52866
52867         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
52868
52869 2006-04-24  Bruno Haible  <bruno@clisp.org>
52870
52871         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
52872         poll() implementation in AIX.
52873         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
52874
52875 2006-04-24  Bruno Haible  <bruno@clisp.org>
52876
52877         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
52878         assigned exactly once.
52879
52880 2006-04-23  Claudio Fontana  <claudio@gnu.org>
52881             Bruno Haible  <bruno@clisp.org>
52882
52883         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
52884         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
52885         for AM_CPPFLAGS.
52886
52887 2006-04-23  Bruno Haible  <bruno@clisp.org>
52888
52889         * modules/copy-file: Depend on unistd.
52890         * modules/execute: Likewise.
52891         * modules/fatal-signal: Likewise.
52892         * modules/findprog: Likewise.
52893         * modules/mkdtemp : Likewise.
52894         * modules/pipe: Likewise.
52895         * modules/wait-process: Likewise.
52896
52897 2006-04-23  Bruno Haible  <bruno@clisp.org>
52898
52899         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
52900         condition was already detected.
52901         Reported by Ben Pfaff <blp@cs.stanford.edu>.
52902
52903 2006-04-23  Bruno Haible  <bruno@clisp.org>
52904
52905         * lib/copy-file.c: Include <unistd.h> unconditionally.
52906         * lib/execute.c: Likewise.
52907         * lib/fatal-signal.c: Likewise.
52908         * lib/findprog.c: Likewise.
52909         * lib/mkdtemp.c: Likewise.
52910         * lib/pipe.h: Likewise.
52911         * lib/pipe.c: Likewise.
52912         * lib/wait-process.h: Likewise.
52913
52914 2006-04-23  Bruno Haible  <bruno@clisp.org>
52915
52916         * gnulib-tool (func_usage): Fix --import description. Document
52917         --update.
52918         (func_import): Create temporary file in a temporary directory, if
52919         --dry-run is specified. Silence errors from 'grep' when there are no
52920         m4 files in $m4dir.
52921         (func_create_testdir): Silence errors from 'grep' when there are no
52922         m4 files in $m4dir.
52923         Reported by Karl Berry <karl@freefriends.org>.
52924
52925 2006-04-20  Bruno Haible  <bruno@clisp.org>
52926
52927         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
52928         one argument, so that the code will be portable to Autoconf 2.60.
52929         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
52930         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
52931         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
52932
52933 2006-04-19  Derek Price  <derek@ximbiot.com>
52934             Eric Blake  <ebb9@byu.net>
52935
52936         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
52937         rather than "/full/path.h".  Update comment to match.  Shorten &
52938         generalize m4_translit call via AS_TR_CPP.
52939
52940 2006-04-19  Derek Price  <derek@ximbiot.com>
52941             Eric Blake  <ebb9@byu.net>
52942
52943         * lib/inttypes.h: Correct grammar in comment.
52944
52945 2006-04-18  Derek Price  <derek@ximbiot.com>
52946             Paul Eggert  <eggert@cs.ucla.edu>
52947
52948         * modules/inttypes: New file.
52949         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
52950
52951 2006-04-18  Derek Price  <derek@ximbiot.com>
52952             Paul Eggert  <eggert@cs.ucla.edu>
52953
52954         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
52955         New files.
52956
52957 2006-04-18  Derek Price  <derek@ximbiot.com>
52958             Paul Eggert  <eggert@cs.ucla.edu>
52959
52960         * lib/inttypes.h: New file.
52961         * lib/strtoimax.c: Assume <inttypes.h>.
52962
52963 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
52964
52965         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
52966         isn't mounted.  Problem reported by Kir Kolyshkin.
52967
52968 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
52969
52970         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
52971         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
52972         Derek R. Price.
52973         * lib/regex.h (RE_DUP_MAX): Update comment to match current
52974         implementation.
52975
52976 2006-04-12  Eric Blake  <ebb9@byu.net>
52977
52978         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
52979         is now done automatically by the corresponding Autoconf macro.
52980
52981 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
52982
52983         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
52984         time_r.h.
52985
52986 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
52987
52988         Merge regex changes from libc, removing some of our
52989         POSIX-conformance changes that were rejected and redoing them in a
52990         less-intrusive way.
52991
52992         * lib/regcomp.c (re_compile_internal, init_dfa):
52993         Length arg is now size_t, not Idx.  All uses changed.
52994         (peek_token): Forward decl now says internal_function.
52995         (__re_error_msgid, __re_error_msgid_idx):
52996         Now static rather than extern with attribute_hidden.
52997         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
52998         For some reason libc prefers K&R style defns for external functions.
52999         (regerror) [!defined _LIBC]: Likewise.
53000         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
53001         (seek_collating_symbol_entry, lookup_collation_sequence_value):
53002         (build_range_exp, build_collating_symbol):
53003         Use K&R-style defn.
53004         (re_compile_fastmap): Use '\0' to memset, not 0.
53005         (utf8_sb_map): Make the calculations more obvious.
53006         (init_dfa, parse_bracket_exp, build_charclass_op):
53007         Call calloc and cast result, as glibc does.
53008         (init_word_char, fetch_token, peek_token, peek_token_bracket):
53009         (build_range_exp, build_collating_symbol):
53010         Now internal functions.
53011
53012         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
53013
53014         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
53015         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
53016         Don't depend on VMS; depend on __VMS instead, for POSIX
53017         namespace cleanness.
53018         (regoff_t): Define to ssize_t, not long int.
53019
53020         Remove the REG_ macros named below.  Instead, make the old names
53021         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
53022         __USE_GNU_REGEX.
53023         (REG_BACKSLASH_ESCAPE_IN_LISTS):
53024         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
53025         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
53026         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
53027         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
53028         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
53029         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
53030         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
53031         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
53032         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
53033         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
53034         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
53035         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
53036         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
53037         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
53038         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
53039         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
53040         (REG_NREGS):
53041         Remove.  All uses replaced by the old RE_* names.
53042         (RE_BACKSLASH_ESCAPE_IN_LISTS):
53043         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
53044         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
53045         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
53046         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
53047         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
53048         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
53049         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
53050         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
53051         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
53052         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
53053         Don't bother having these macros be independent of each others'
53054         values, since they no longer exist in the POSIX name space.
53055
53056         Rename the following member names back to their old names,
53057         unless !__USE_GNU_REGEX.  All uses changed back.
53058         (buffer): Renamed from re_buffer.
53059         (allocated): Renamed from re_allocated.
53060         (used): Renamed from re_used.
53061         (syntax): Renamed from re_syntax.
53062         (fastmap): Renamed from re_fastmap.
53063         (translate): Renamed from re_translate.
53064         (can_be_null): Renamed from re_can_be_null.
53065         (regs_allocated): Renamed from re_regs_allocated.
53066         (fastmap_accurate): Renamed from re_fastmap_accurate.
53067         (no_sub): Renamed from re_no_sub.
53068         (not_bol): Renamed from re_not_bol.
53069         (not_eol): Renamed from re_not_eol.
53070         (newline_anchor): Renamed from re_newline_anchor.
53071         (num_regs): Renamed from rm_num_regs.
53072         (start): Renamed from rm_start.
53073         (end): Renamed from rm_end.
53074
53075         (free_state): Move up a bit.
53076
53077         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
53078         #define to be empty.
53079         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
53080         when that is what is intended.
53081         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
53082         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
53083         (MAX): New macro.
53084         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
53085         All uses changed back to re_malloc, etc.  It's now the caller's
53086         responsibility to check for overflow; all callers changed.
53087         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
53088         (re_x2nrealloc): Remove.
53089         (free_state): Remove decl.
53090
53091         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
53092         (re_set_registers, re_exec):
53093         Use K&R-style defn.
53094
53095         2006-01-31  Roland McGrath  <roland@redhat.com>
53096
53097         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
53098         Reported by Mike Frysinger <vapier@gentoo.org>.
53099
53100         2006-01-15  Andreas Jaeger  <aj@suse.de>
53101
53102         [BZ #1950]
53103         * lib/regex_internal.c (re_string_reconstruct): Adjust for
53104         build_wcs_upper_buffer change.
53105         (build_wcs_upper_buffer): Change return type.
53106
53107         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
53108
53109         * lib/regex_internal.h: Include <stdint.h> if available.
53110
53111         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
53112
53113         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
53114
53115         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
53116
53117         * lib/regcomp.c: Adjust for changed secondary hash function.
53118
53119         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
53120
53121         * lib/regex.h: Pretty printing.
53122         Clean up namespace a bit.
53123
53124         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
53125
53126         * lib/regexec.c (update_cur_sifted_state, check_arrival,
53127         check_arrival_add_next_nodes): Avoid using uninitialized variable.
53128
53129         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
53130                     Ulrich Drepper  <drepper@redhat.com>
53131
53132         [BZ #1302]
53133         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
53134         changed.
53135         (bitset_word_t): Renamed from bitset_word.  All uses changed.
53136
53137         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
53138
53139         [BZ #281]
53140         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
53141         * lib/regcomp.c: Remove unnecessary uses of
53142         unsigned RE_TRANSLATE_TYPE.
53143         * lib/regex_internal.h: Likewise.
53144         * lib/regex_internal.c: Likewise.
53145         * lib/regexec.c: Likewise.
53146         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
53147
53148         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
53149
53150         * lib/regexec.c (find_recover_state): Remove unnecessary
53151         initialization.
53152         (transit_state_bkref): Make DFA a const pointer.
53153         (get_subexp): Likewise.
53154         (check_arrival): Likewise.
53155         (update_cur_sifted_state): Likewise.
53156         (re_search_internal): Likewise.
53157         (prune_impossible_nodes): Likewise.
53158         (acquire_init_state_context): Likewise.
53159         (proceed_next_node): Likewise.
53160         (set_regs): Likewise.
53161         (free_fail_stack_return): Likewise.
53162         (check_arrival_expand_ecl): Mark DFA parameter as const.
53163         (check_arrival_expand_ecl_sub): Likewise.
53164         (check_subexp_limits): Likewise.
53165         (sub_epsilon_src_nodes):  Likewise.
53166         (add_epsilon_src_nodes):  Likewise.
53167         (merge_state_array): Likewise.
53168         (update_regs): Likewise.
53169         (build_trtable): Likewise.
53170         (sift_states_backward): Mark MCTX parameter as const.
53171         (build_sifted_states): Likewise.
53172         (update_cur_sifted_state): Likewise.
53173         (sift_states_mkref): Likewise.
53174         (check_arrival_expand_ecl): Mark eclosure as const.
53175         (check_dst_limits_calc_pos_1): Likewise.
53176         * lib/regex_internal.h (re_match_context_t): Make dfa a const
53177         pointer.
53178
53179         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
53180
53181         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
53182         (transit_state_sb): Likewise.
53183         (transit_state_mb): Likewise.
53184         (sift_states_iter_mb): Likewise.
53185         (check_arrival_add_next_nodes): Likewise.
53186         (check_node_accept_bytes): Change first parameter to pointer-to-const.
53187         [_LIBC] (re_search_2_stub): Use mempcpy.
53188
53189         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
53190         mbrtowc for very simple UTF-8 case.
53191
53192         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
53193         a pointer-to-const.
53194         (re_acquire_state_context): Likewise.
53195         * lib/regex_internal.h: Adjust prototypes.
53196
53197         * lib/regex.c: Prevent using C++ compilers.
53198
53199         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
53200         (re_acquire_state_context): Likewise.
53201
53202 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
53203
53204         * modules/regex (Depends-on): Add ssize_t.
53205
53206 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
53207
53208         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
53209         translation table.
53210
53211 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
53212
53213         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
53214
53215 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
53216             Bruno Haible  <bruno@clisp.org>
53217
53218         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
53219         <sys/types.h> and <inttypes.h>.
53220
53221 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
53222
53223         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
53224         `__error_t_defined', so argp.h will not typedef the former.
53225
53226 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
53227
53228         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
53229         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
53230         glibc names.  Even if glibc is changed to conform to POSIX, the
53231         traditional names will be available anyway, since regex depends on
53232         the extensions module.  Also, fix a longstanding typo in the
53233         implementation of Spencer ERE test #75 from grep 2.3.  Problems
53234         reported by Emanuele Giaquinta.  Also, change sense of cached
53235         variable, so that the message makes sense.
53236
53237 2006-03-24  Simon Josefsson  <jas@extundo.com>
53238
53239         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
53240         including some doc fixes.
53241         (base64_encode_alloc): Fix +1 bug on allocation failures.
53242
53243 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
53244
53245         * lib/base64.c (base64_encode): Do not read past end of array with
53246         unsanitized input on systems with CHAR_BIT > 8.
53247
53248 2006-03-24  Eric Blake  <ebb9@byu.net>
53249
53250         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
53251
53252 2006-03-22  Karl Berry  <karl@gnu.org>
53253
53254         * config/srclist.txt (*setenv.[ch]): get from coreutils.
53255         * config/srclistvars.sh (COREUTILS): new var.
53256
53257 2006-03-17  Jim Meyering  <jim@meyering.net>
53258
53259         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
53260         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
53261
53262 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
53263
53264         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
53265         no longer needs it.  Instead, check that regoff_t is as least
53266         as wide as ptrdiff_t.
53267
53268         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
53269         so that our regex.h stays compatible with the installed regex.
53270         This is helpful for installers who configure --without-included-regex.
53271         Problem reported by Emanuele Giaquinta.
53272
53273 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
53274
53275         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
53276         Typedef to long int, not to off_, as POSIX will likely change
53277         in that direction.
53278
53279 2006-03-15  Eric Blake  <ebb9@byu.net>
53280
53281         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
53282
53283 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
53284
53285         * lib/argp-help.c (validate_uparams): Fix typo
53286         * lib/argp-parse.c (argp_default_options): Consistently begin help
53287         messages with a lowercase letter.
53288
53289 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
53290
53291         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
53292         overrun buffers and shouldn't be used (much as gets shouldn't be
53293         used).
53294         * lib/time_r.c (asctime_r, ctime_r): Likewise.
53295
53296 2006-03-08  Simon Josefsson  <jas@extundo.com>
53297
53298         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
53299         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
53300
53301 2006-03-08  Simon Josefsson  <jas@extundo.com>
53302
53303         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
53304         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
53305
53306 2006-03-08  Simon Josefsson  <jas@extundo.com>
53307
53308         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
53309         signal that configure disabled the device.
53310
53311 2006-03-08  Simon Josefsson  <jas@extundo.com>
53312
53313         * build-aux/maint.mk: Fix refresh-po, to handle no translated
53314         languages.
53315
53316 2006-03-07  Simon Josefsson  <jas@extundo.com>
53317
53318         * modules/getopt (Depends-on): Add unistd.
53319
53320         * modules/unistd: New file.
53321
53322 2006-03-07  Simon Josefsson  <jas@extundo.com>
53323
53324         * modules/gc-random: New file.
53325
53326 2006-03-07  Simon Josefsson  <jas@extundo.com>
53327
53328         * m4/unistd_h.m4: New file.
53329
53330 2006-03-07  Simon Josefsson  <jas@extundo.com>
53331
53332         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
53333         test to be side-effect free by storing the result in the cache
53334         variable gl_cv_lib_readline, and moving the assignment of
53335         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
53336         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
53337
53338 2006-03-07  Simon Josefsson  <jas@extundo.com>
53339
53340         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
53341         error on missing devices (the functions will return an error).
53342
53343         * m4/gc.m4: Move random stuff to gc-random.m4
53344
53345 2006-03-07  Simon Josefsson  <jas@extundo.com>
53346
53347         * lib/unistd_.h: New file.
53348
53349 2006-03-07  Simon Josefsson  <jas@extundo.com>
53350
53351         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
53352
53353 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
53354
53355         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
53356         Problem reported by Juan Manuel Guerrero.
53357
53358 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
53359
53360         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
53361         the unistd module.
53362         * lib/getlogin_r.c: Likewise.
53363         * lib/getlogin_r.h: Likewise.
53364         * lib/glob.c: Likewise.
53365         * lib/pagealign_alloc.c: Likewise.
53366         * lib/unistd_.h: Remove; no longer needed.
53367
53368 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
53369
53370         * MODULES.html.sh (Support for systems lacking POSIX:2001):
53371         Add unistd.
53372         * modules/c-stack (Depends-on): Add unistd.
53373         * modules/getlogin_r: Likewise.
53374         * modules/glob: Likewise.
53375         * modules/pagealign_alloc: Likewise.
53376         * modules/unistd (Files): Remove lib/unistd_.h.
53377         (EXTRA_DIST): Remove.
53378         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
53379         need unistd_.h.
53380         (MOSTLYCLEANFILES): Remove unistd.h-t.
53381
53382 2006-03-03  Simon Josefsson  <jas@extundo.com>
53383
53384         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
53385
53386 2006-03-03  Simon Josefsson  <jas@extundo.com>
53387
53388         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
53389         libidn and bison.
53390
53391 2006-03-03  Simon Josefsson  <jas@extundo.com>
53392
53393         * build-aux/maint.mk: Add indent target.
53394
53395 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
53396
53397         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
53398         our replacement poll.h in any case, to avoid a differing
53399         declaration from a system header.  Seen on AIX.
53400
53401 2006-03-01  Simon Josefsson  <jas@extundo.com>
53402
53403         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
53404         <kasal@ucw.cz>.
53405
53406 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
53407
53408         * modules/gettime (Depends-on): Add extensions module.
53409         * modules/nanosleep (Depends-on): Likewise.
53410         * modules/settime (Depends-on): Likewise.
53411
53412 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
53413
53414         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
53415         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
53416         pedantically.
53417         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
53418         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
53419
53420         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
53421         not "==".  Reported by Ralf Wildenhues.
53422
53423 2006-03-01  Karl Berry  <karl@gnu.org>
53424
53425         * doc/Copyright/request-*: new files, synced from gnuorg.
53426
53427 2006-03-01  Karl Berry  <karl@gnu.org>
53428
53429         * config/srclist.txt (Copyright/*): new entries.
53430
53431 2006-02-28  Simon Josefsson  <jas@extundo.com>
53432
53433         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
53434
53435 2006-02-27  Simon Josefsson  <jas@extundo.com>
53436
53437         * lib/base64.h: Indent #define's.  From Jim Meyering
53438         <jim@meyering.net>.
53439
53440 2006-02-27  Jim Meyering  <jim@meyering.net>
53441
53442         Revert the change of 2006-02-24, so these files can continue
53443         to be sync'd from gettext.
53444         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
53445         of `config.h'.
53446
53447 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
53448
53449         * modules/intprops: New file.
53450         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
53451         Add intprops.
53452         * modules/getloadavg (Files): Remove lib/intprops.h.
53453         (Depends-on): Add intprops.
53454         * modules/human: Likewise.
53455         * modules/inttostr: Likewise.
53456         * modules/openat: Likewise.
53457         * modules/sig2str: Likewise.
53458         * modules/userspec: Likewise.
53459         * modules/utimecmp: Likewise.
53460         * modules/xnanosleep: Likewise.
53461         * modules/xstrtol: Likewise.
53462
53463 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
53464
53465         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
53466         * modules/lock-tests (TESTS): Use $(EXEEXT).
53467         * modules/tls-tests: Likewise.
53468         * modules/argp-tests: Likewise.
53469         (check_PROGRAMS): New var, replacing...
53470         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
53471
53472 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
53473
53474         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
53475         `config.h'.
53476
53477 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
53478
53479         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
53480
53481 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
53482
53483         Sync from coreutils.
53484         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
53485         gl_CHDIR_SAFER.
53486
53487 2006-02-22  Jim Meyering  <jim@meyering.net>
53488
53489         Sync from coreutils.
53490         * m4/chdir-safer.m4: New file.
53491
53492 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
53493
53494         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
53495         AT_FDCWD exceeds INT_MAX.
53496         * lib/openat.h (AT_FDCWD): Likewise.
53497
53498 2006-02-17  Eric Blake  <address@hidden>
53499
53500         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
53501
53502 2006-02-16  Simon Josefsson  <jas@extundo.com>
53503
53504         * modules/getaddrinfo (Depends-on): Add sys_socket.
53505
53506 2006-02-15  Simon Josefsson  <jas@extundo.com>
53507
53508         * build-aux/maint.mk: Add dsyntax-check rule.
53509
53510 2006-02-15  Eric Blake  <ebb9@byu.net>
53511
53512         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
53513         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
53514         'present but cannot compile' warnings on cygwin.
53515         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
53516         use ws2tcpip.h if sys/socket.h works.
53517         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
53518         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
53519
53520 2006-02-14  Simon Josefsson  <jas@extundo.com>
53521
53522         * modules/maintainer-makefile (Files): Rename.
53523
53524         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
53525         and (the local) Makefile.cfg to maint-cfg.mk.
53526
53527         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
53528         to the latter.
53529
53530         * modules/maintainer-makefile: New module.
53531
53532         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
53533         severaly stripped to make it possible to build it up from scratch
53534         with reliable tests.
53535
53536         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
53537         fixes to permit overriding the default actions when configure and
53538         makefile are not available.
53539
53540 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
53541
53542         Sync from coreutils.
53543         * modules/lstat (Depends-on): Don't depend on xalloc.
53544         (License): Change from GPL to LGPL, since this is now simply a
53545         replacement for a libc function.
53546
53547 2006-02-14  Jim Meyering  <jim@meyering.net>
53548
53549         Sync from coreutils.
53550
53551         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
53552         failure on deficient systems, and simplify gnulib lgpl dependencies.
53553         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
53554         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
53555
53556         * lib/xalloc-die.c: Remove unused definition of N_.
53557
53558 2006-02-14  Jim Meyering  <jim@meyering.net>
53559
53560         Sync from coreutils.
53561         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
53562         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
53563         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
53564         double-quote uses of that variable, to accommodate the rare case in
53565         which getmntent is available in none of the libraries checked.  This
53566         happens at least on FreeBSD 5.0.
53567
53568 2006-02-13  Simon Josefsson  <jas@extundo.com>
53569
53570         * gnulib-tool (Usage): Fix --import, from
53571         karl@freefriends.org (Karl Berry).
53572
53573 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
53574
53575         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
53576
53577 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
53578
53579         * lib/argp-namefrob.h: Restore changes accidentally lost during the
53580         "autoupdate" on 2005-12-12.
53581
53582 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
53583
53584         * modules/closeout (Depends-on): Remove atexit.
53585
53586 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
53587
53588         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
53589         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
53590
53591 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
53592
53593         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
53594         __EXTENSIONS__ if this causes compilation to fail.  Problem
53595         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
53596         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
53597
53598 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
53599
53600         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
53601         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
53602         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
53603         All uses changed.
53604
53605 2006-01-26  Simon Josefsson  <jas@extundo.com>
53606
53607         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
53608         prototype is visible on mingw32.
53609
53610         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
53611         for mingw32.
53612
53613         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
53614         mingw32).
53615
53616 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
53617
53618         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
53619         attempt to open for write; this always fails, at least on POSIX
53620         hosts.  This reinstates the 2006-01-09 change, which was
53621         inadvertently removed.
53622
53623 2006-01-26  Bruno Haible  <bruno@clisp.org>
53624
53625         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
53626         Reported by Paul Eggert.
53627
53628 2006-01-26  Bruno Haible  <bruno@clisp.org>
53629             Paul Eggert  <eggert@cs.ucla.edu>
53630
53631         * lib/stdbool_.h (_Bool)
53632         [(! (defined __cplusplus || defined __BEOS__)
53633           && !defined __GNUC__
53634           && !(defined __HP_cc || defined __xlc__
53635                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
53636                || defined __sgi))]:
53637         #define to signed char in these cases too; this simplifies
53638         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
53639         etc., separately) and makes it more conservative.
53640
53641 2006-01-25  Simon Josefsson  <jas@extundo.com>
53642
53643         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
53644         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
53645         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
53646
53647 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
53648
53649         * lib/argp-namefrob.h: Bugfix. Remove stray #
53650
53651 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
53652
53653         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
53654         so that we test the test.
53655         Check for yet another HP-UX cc bug involving *bool |= bool.
53656
53657 2006-01-25  Karl Berry  <karl@gnu.org>
53658
53659         * config/srclist.txt (vasnprintf.c): sync lost.
53660
53661 2006-01-25  Jim Meyering  <jim@meyering.net>
53662
53663         Sync from the stable (b5) branch of coreutils:
53664
53665         * lib/fts.c (fts_children): Don't let close() clobber errno from
53666         failed fchdir().
53667
53668         * lib/fts.c (fts_stat): When following a symlink-to-directory,
53669         don't necessarily interpret stat-fails+lstat-succeeds as indicating
53670         a dangling symlink.  That can also happen at least for ELOOP.
53671         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
53672         FYI, this bug predates the inclusion of fts.c in coreutils.
53673
53674         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
53675         in their own block, so pre-c99 compilers don't object.
53676
53677         Avoid the double-free (first in fts_read, second in fts_close) that
53678         would occur when an `active' directory is made inaccessible (e.g.,
53679         via chmod a-x) during a traversal.
53680         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
53681         before returning.  Reproduce this failure by
53682         mkdir -p a/b; cd a; chmod a-x . b
53683         Reported by Stavros Passas.
53684
53685 2006-01-25  Jim Meyering  <jim@meyering.net>
53686
53687         * lib/fileblocks.c: Remove more useless parentheses.
53688         * lib/readutmp.h: Likewise.
53689
53690 2006-01-25  Bruno Haible  <bruno@clisp.org>
53691
53692         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
53693         warnings.
53694         Reported by Paul Eggert.
53695
53696 2006-01-25  Bruno Haible  <bruno@clisp.org>
53697
53698         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
53699         rid of a trap command. For Solaris sh.
53700         Reported by Mark D. Baushke <mdb@gnu.org>.
53701
53702 2006-01-24  Simon Josefsson  <jas@extundo.com>
53703
53704         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
53705         Bruno.
53706
53707 2006-01-24  Karl Berry  <karl@gnu.org>
53708
53709         * config/srclist.txt (argp-namefrob.h): sync lost.
53710
53711 2006-01-24  Jim Meyering  <jim@meyering.net>
53712
53713         * modules/openat (Files): Add lib/intprops.h.
53714         From Mark D. Baushke.
53715
53716 2006-01-24  Jim Meyering  <jim@meyering.net>
53717
53718         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
53719         Reported by Mark D. Baushke.
53720
53721 2006-01-24  Jim Meyering  <jim@meyering.net>
53722
53723         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
53724
53725 2006-01-24  Bruno Haible  <bruno@clisp.org>
53726
53727         * modules/strnlen (Maintainer): Change from glibc to all.
53728
53729 2006-01-24  Bruno Haible  <bruno@clisp.org>
53730
53731         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
53732         Patch by Paul Eggert.
53733
53734 2006-01-24  Bruno Haible  <bruno@clisp.org>
53735
53736         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
53737         already has it.
53738         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
53739         2005-11-26.
53740
53741         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
53742         'signed char' to avoid problems with the built-in _Bool type.
53743         Reported by Paul Eggert on 2005-11-26.
53744
53745 2006-01-24  Bruno Haible  <bruno@clisp.org>
53746
53747         * gnulib-tool (func_import): Avoid constructing complicated sed
53748         expressions inside backquote.
53749         Report and solution by Mark D. Baushke <mdb@gnu.org>.
53750
53751 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
53752
53753         These changes imported from libc.
53754         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
53755         test and two separate function calls.
53756         * lib/strndup.c (__strndup): Add libc_hidden_def.
53757
53758 2006-01-23  Simon Josefsson  <jas@extundo.com>
53759
53760         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
53761         Remove the test_*_SOURCES variable: automake infers it by default.
53762         * modules/tls-tests: Likewise.
53763
53764 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
53765
53766         Work around porting bugs reported by Dieter in
53767         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
53768         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
53769         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
53770         Include "getopt.h" first, to check interface.
53771         (getenv): Declare only if defined HAVE_DECL_GETENV &&
53772         !HAVE_DECL_GETENV.
53773         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
53774         (__strndup): Revert to K&R-style function dfns, the glibc style.
53775         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
53776         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
53777         Include strnlen.h first, to get prototype properly.
53778         (strnlen): Renamed from __strnlen.
53779         Remove weak alias.
53780
53781 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
53782
53783         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
53784
53785 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
53786
53787         * config/srclist.txt: Adjust to reflect glibc reorganization.
53788         This affects only comments.
53789
53790 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
53791
53792          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
53793          Reported by Bruce Korb <bkorb@gnu.org>.
53794
53795 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
53796
53797         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
53798         to pacify gcc -Wswitch-default.
53799
53800 2006-01-22  Bruno Haible  <bruno@clisp.org>
53801
53802         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
53803         temporary buffer for sprintf, take into account the precision also
53804         for 'd', 'i', 'u', 'o', 'x', 'X'.
53805
53806 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
53807
53808         * modules/argp-tests: New module
53809         * tests/test-argp.c: New file
53810         * tests/test-argp-2.sh: New file
53811
53812 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
53813
53814         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
53815         (__argp_base_name): Removed
53816         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
53817         typo.
53818         (__argp_base_name): Provide macro definition or extern declaration
53819         depending on the configuration
53820
53821 2006-01-20  Simon Josefsson  <jas@extundo.com>
53822
53823         * modules/inet_ntop (Depends-on): Depend on sys_socket.
53824
53825 2006-01-20  Simon Josefsson  <jas@extundo.com>
53826
53827         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
53828
53829 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
53830
53831         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
53832         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
53833         Suggested by Bruno Haible.
53834
53835 2006-01-20  Karl Berry  <karl@gnu.org>
53836
53837         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
53838         until changes propagate, I guess.
53839
53840 2006-01-19  Simon Josefsson  <jas@extundo.com>
53841
53842         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
53843
53844 2006-01-19  Simon Josefsson  <jas@extundo.com>
53845
53846         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
53847
53848 2006-01-19  Simon Josefsson  <jas@extundo.com>
53849
53850         * gnulib-tool: Set check_PROGRAMS.
53851
53852         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
53853         modules/des-tests, modules/gc-arcfour-tests,
53854         modules/gc-arctwo-tests, modules/gc-des-tests,
53855         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
53856         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
53857         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
53858         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
53859         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
53860         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
53861         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
53862         test_*_SOURCES.
53863
53864 2006-01-18  Simon Josefsson  <jas@extundo.com>
53865
53866         * modules/socklen (Depends-on): Depend on sys_socket.
53867
53868 2006-01-18  Simon Josefsson  <jas@extundo.com>
53869
53870         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
53871         modules/des-tests, modules/gc-arcfour-tests,
53872         modules/gc-arctwo-tests, modules/gc-des-tests,
53873         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
53874         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
53875         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
53876         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
53877         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
53878         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
53879         $(EXEEXT) to automake TESTS variable, for mingw32.
53880
53881 2006-01-17  Simon Josefsson  <jas@extundo.com>
53882
53883         * modules/socklen (Include): Need sys/socket.h.
53884
53885 2006-01-17  Bruno Haible  <bruno@clisp.org>
53886
53887         * modules/ssize_t (Include): Add <sys/types.h>.
53888
53889 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
53890
53891         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
53892         it's not portable and it doesn't work with cross-compiles.
53893         Problem reported by Bruno Haible.  Fix missing-$ typo in
53894         'test "gl_cv_ignore_unused_libraries" ...' that prevented
53895         -zignore from being used with Sun's C compiler.
53896
53897 2006-01-12  Simon Josefsson  <jas@extundo.com>
53898
53899         * lib/base64.c: Fix warning, reported by Bruno Haible
53900         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
53901
53902 2006-01-12  Bruno Haible  <bruno@clisp.org>
53903
53904         * modules/ldd: New file.
53905         * build-aux/ldd.sh.in: New file.
53906         * MODULES.html.sh (Support for building libraries and executables): Add
53907         ldd.
53908
53909 2006-01-12  Bruno Haible  <bruno@clisp.org>
53910
53911         * m4/ldd.m4: New file.
53912
53913 2006-01-12  Bruno Haible  <bruno@clisp.org>
53914
53915         * gnulib-tool (func_import, func_create_testdir): Don't go into an
53916         endless loop while replacing $auxdir with build-aux.
53917
53918 2006-01-11  Simon Josefsson  <jas@extundo.com>
53919
53920         * lib/stdint_.h (SIZE_MAX): Add missing (.
53921
53922 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
53923
53924         Sync from coreutils.
53925         * lib/md5.c: Fix commentary typos.
53926         (alignof, UNALIGNED_P): No need for a GCC-specific version.
53927         * lib/md5.h (__attribute__): Remove; unused.
53928         * lib/sha1.c: Fix commentary to match md5 better.
53929         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
53930         so that we don't need to worry about alignment.  All uses changed.
53931         This merges the 2005-10-28 md5 change into sha1.
53932
53933 2006-01-11  Jim Meyering  <jim@meyering.net>
53934
53935         Sync from coreutils.
53936         * lib/md5.c (OP): Fix spacing.
53937
53938 2006-01-11  Bruno Haible  <bruno@clisp.org>
53939
53940         Ensure automatic ordering between gl_LOCK and gl_ARGP.
53941         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
53942         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
53943
53944 2006-01-11  Bruno Haible  <bruno@clisp.org>
53945
53946         Ensure automatic ordering between gl_LOCK and gl_ARGP.
53947         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
53948         the "early" section as well.
53949
53950 2006-01-11  Bruno Haible  <bruno@clisp.org>
53951
53952         Avoid "ar: no archive members specified" error on MacOS X.
53953         * gnulib-tool (func_modules_add_dummy): New function.
53954         (func_import, func_create_testdir): Invoke it.
53955
53956 2006-01-11  Bruno Haible  <bruno@clisp.org>
53957
53958         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
53959         with $auxdir in AC_CONFIG_FILES statements.
53960
53961 2006-01-11  Bruno Haible  <bruno@clisp.org>
53962
53963         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
53964         Initialize also noinst_HEADERS to empty.
53965
53966 2006-01-11  Bruno Haible  <bruno@clisp.org>
53967
53968         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
53969         variables.
53970         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
53971         autoreconf.
53972
53973 2006-01-11  Bruno Haible  <bruno@clisp.org>
53974
53975         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
53976         overridable by the user.
53977         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
53978
53979 2006-01-10  Simon Josefsson  <jas@extundo.com>
53980
53981         * modules/sys_socket: New file.
53982
53983 2006-01-10  Simon Josefsson  <jas@extundo.com>
53984
53985         * m4/sys_socket_h.m4: New file.
53986
53987 2006-01-10  Simon Josefsson  <jas@extundo.com>
53988
53989         * lib/socket_.h: New file.
53990
53991 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
53992
53993         * modules/readutmp (Maintainer): Add myself.
53994
53995 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
53996
53997         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
53998         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
53999         People who are still concerned with buggy memcmp implementations
54000         can invoke gl_FUNC_MEMCMP themselves.
54001
54002 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
54003
54004         * lib/regex_internal.h (BITSET_WORD_BITS):
54005         Work around a bug in 64-bit PGC (before version 6.1-2), where the
54006         preprocessor mishandles large unsigned values as if they were signed.
54007         Problem reported by Claudio Fontana in
54008         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
54009
54010 2006-01-10  Jim Meyering  <jim@meyering.net>
54011
54012         Avoid the double-free (first in fts_read, second in fts_close) that
54013         would occur when an `active' directory is made inaccessible (e.g.,
54014         via chmod a-x) during a traversal.
54015         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
54016         before returning.  Reproduce this failure by
54017         mkdir -p a/b; cd a; chmod a-x . b
54018         Reported by Stavros Passas.
54019
54020         Sync from coreutils.
54021         * lib/sha1.c: Tweak grammar in a comment.
54022
54023 2006-01-10  Jim Meyering  <jim@meyering.net>
54024
54025         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
54026         Patch by Joerg Sonnenberger.
54027
54028 2006-01-10  Bruno Haible  <bruno@clisp.org>
54029
54030         * modules/readutmp: Depend on module free.
54031         * modules/strtok_r: Depend on module restrict.
54032
54033 2006-01-10  Bruno Haible  <bruno@clisp.org>
54034
54035         * modules/gettext (configure.ac): Add an invocation of
54036         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
54037
54038 2006-01-10  Bruno Haible  <bruno@clisp.org>
54039
54040         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
54041         Reported by Werner Lemberg <wl@gnu.org>.
54042
54043 2006-01-10  Bruno Haible  <bruno@clisp.org>
54044
54045         * lib/localcharset.c: Update from GNU gettext.
54046
54047 2006-01-10  Bruno Haible  <bruno@clisp.org>
54048
54049         * lib/argp.h (__const): Remove macro. Use const instead.
54050         * lib/argp-fmtstream.h (__const): Likewise.
54051         * lib/glob_.h (__const): Remove macro.
54052         * lib/glob-libc.h: Use const instead of __const.
54053
54054 2006-01-10  Bruno Haible  <bruno@clisp.org>
54055
54056         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
54057         variable.
54058         Needed to avoid an automake error regarding the 'gettext' module.
54059
54060 2006-01-09  Simon Josefsson  <jas@extundo.com>
54061
54062         * modules/inet_ntop (Depends-on): Add restrict.
54063
54064 2006-01-09  Simon Josefsson  <jas@extundo.com>
54065
54066         * modules/gc-rijndael-tests (License): Put under LGPL.
54067
54068         * modules/gc-des-tests (License): Likewise.
54069
54070         * modules/gc-arcfour-tests (License): Likewise.
54071
54072         * modules/gc-arctwo-tests (License): Likewise.
54073
54074         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
54075
54076         * modules/gc-hmac-sha1-tests (Files): Likewise.
54077
54078         * modules/gc-hmac-md5-tests (License): Likewise.
54079
54080         * modules/gc-sha1-tests (License): Likewise.
54081
54082         * modules/gc-md5-tests (License): Likewise.
54083
54084         * modules/gc-md4-tests (License): Likewise.
54085
54086         * modules/gc-md2-tests (License): Likewise.
54087
54088         * modules/gc-tests (License): Likewise.
54089
54090         * modules/des-tests (License): Likewise.
54091
54092         * modules/md4-tests (License): Likewise.
54093
54094         * modules/md2-tests (License): Likewise.
54095
54096 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
54097
54098         Sync from coreutils:
54099
54100         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
54101         * modules/lib-ignore: New file.
54102         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
54103         chdir-safer.m4, lchmod.m4.
54104         * modules/openat: Add mkdirat.c, openat-priv.h.
54105
54106 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
54107
54108         Sync from coreutils.
54109         * m4/lib-ignore.m4: New file.
54110         * m4/lchmod.m4: New file.
54111
54112 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
54113
54114         Sync from coreutils.
54115         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
54116         for write access: POSIX says that must fail.
54117         * lib/fts.c (diropen): Likewise.
54118         * lib/save-cwd.c (save_cwd): Likewise.
54119         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
54120         well, for minor improvements on hosts that lack O_DIRECTORY.
54121         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
54122         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
54123         Fall back on chown if open failed with EACCES.
54124
54125         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
54126         Report an error at compile-time if only a 1-second nominal clock
54127         resolution is found.
54128
54129         * lib/lchmod.h: New file.
54130         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
54131         (make_dir_parents): Use lchown rather than chown, and
54132         lchmod rather than chmod.
54133
54134         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
54135         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
54136         "proc" reported by n0dalus.
54137
54138         * lib/mountlist.c: Include <limits.h>.
54139         (dev_from_mount_options)
54140         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
54141         New function.  It no longer assumes "dev=" has the System V meaning
54142         on Linux (since it doesn't).  It also parses "dev=" more carefully.
54143         (read_file_system_list)
54144         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
54145         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
54146         dev= in that case.
54147
54148         * lib/posixtm.h (PDS_PRE_2000): New macro.
54149         * lib/posixtm.c (year): Arg is now syntax_bits rather than
54150         allow_century.  All usages changed.  Reject dates outside the range
54151         1969-1999 if PDS_PRE_2000 is used.
54152
54153 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
54154
54155         Sync from coreutils.
54156         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
54157         (Time of day items): Mention the possibility of leap seconds.
54158         Problem reported by Dr. David Alan Gilbert.
54159
54160 2006-01-09  Jim Meyering  <jim@meyering.net>
54161
54162         Sync from coreutils.
54163
54164         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
54165
54166         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
54167
54168         * lib/modechange.c (mode_compile): Reject an invalid mode string
54169         that starts with an octal digit.  From Andreas Gruenbacher.
54170
54171         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
54172         and dup to open_safer and dup_safer, respectively.
54173         (openat_permissive): Fix typo in comment.
54174
54175         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
54176         "gettext.h"; either no longer needed or are guaranteed by openat.h.
54177         (_): Remove; no longer needed.
54178         (openat): Renamed from rpl_openat; no need for rpl_openat
54179         since openat.h renames openat for us.
54180         Replace most of the body with a call to openat_permissive,
54181         to avoid duplicate code.
54182         Port to (probably hypothetical) environments were mode_t is
54183         wider than int.
54184         (openat_permissive): Require mode arg, so that we can check
54185         types better.  Put it just after flags.  Change cwd failure
54186         indicator from pointer-to-bool to pointer-to-errno-value.
54187         All callers changed.
54188         Invoke openat_save_fail and/or openat_restore_fail if
54189         cwd_errno is null, so that openat can call us.
54190         (openat_permissive, fdopendir, fstatat, unlinkat):
54191         Simplify errno handling to avoid some duplicate code,
54192         as it's OK to set errno on success.
54193         * lib/openat.h: Revamp code so that function macros depend on
54194         __OPENAT_PREFIX only, not also on AT_FDCWD.
54195         (openat_ro): Remove.  Caller changed to use openat_permissive.
54196         (openat_permissive): Now a macro, if not a function.
54197         (openat_restore_fail, openat_save_fail): Now always functions,
54198         since mkdirat needs them even if __OPENAT_PREFIX is defined.
54199
54200         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
54201         and openat.c.
54202         * lib/mkdirat.c: Include openat-priv.h.
54203         Remove definitions of macros defined therein.
54204         * lib/openat.c: Likewise.
54205
54206         * lib/mkdirat.c (mkdirat): New file and function.
54207         * lib/openat.h (mkdirat): Declare.
54208
54209         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
54210
54211         * lib/openat.h (openat_permissive): Declare.
54212         (openat_ro): Define.
54213
54214         * lib/openat.c (EXPECTED_ERRNO): New macro.
54215         (openat_permissive): New function -- used in remove.c rewrite.
54216         (all functions): Set errno just before returning, only if there
54217         was an actual failure.
54218         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
54219
54220         Emulate openat-family functions using Linux's procfs, if possible.
54221         Idea and some code based on Ulrich Drepper's glibc changes.
54222
54223         * lib/openat.c: (BUILD_PROC_NAME): New macro.
54224         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
54225         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
54226         before falling back on save_cwd and restore_cwd.
54227         (fdopendir, fstatat, unlinkat): Likewise.
54228
54229         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
54230         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
54231
54232         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
54233         as second argument to va_arg.  Otherwise, some versions of gcc
54234         warn that `if this code is reached, the program will abort'.
54235
54236 2006-01-09  Jim Meyering  <jim@meyering.net>
54237
54238         Sync from coreutils.
54239         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
54240         Require openat-priv.h.
54241
54242 2006-01-09  Bruno Haible  <bruno@clisp.org>
54243
54244         * modules/strnlen (Include): Use strnlen.h.
54245
54246 2006-01-09  Bruno Haible  <bruno@clisp.org>
54247
54248         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
54249
54250 2006-01-09  Bruno Haible  <bruno@clisp.org>
54251
54252         * lib/sysexit_.h (EX_OK): New macro.
54253         Suggested by Martin Lambers <marlam@marlam.de>.
54254
54255 2006-01-09  Bruno Haible  <bruno@clisp.org>
54256
54257         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
54258         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
54259
54260 2006-01-09  Bruno Haible  <bruno@clisp.org>
54261
54262         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
54263         numbers.
54264
54265 2006-01-09  Bruno Haible  <bruno@clisp.org>
54266
54267         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
54268         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
54269         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
54270         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
54271
54272 2006-01-09  Bruno Haible  <bruno@clisp.org>
54273
54274         * build-aux/javacomp.sh.in: New file, moved from lib/.
54275         * modules/javacomp-script (Files): Update.
54276         (configure.ac): Add AC_CONFIG_FILES invocation.
54277         (EXTRA_DIST): Remove variable.
54278
54279         * build-aux/javaexec.sh.in: New file, moved from lib/.
54280         * modules/javaexec (Files): Update.
54281         (configure.ac): Add AC_CONFIG_FILES invocation.
54282         (EXTRA_DIST): Remove javaexec.sh.in.
54283
54284         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
54285         * modules/csharpcomp-script (Files): Update.
54286         (configure.ac): Add AC_CONFIG_FILES invocation.
54287         (EXTRA_DIST): Remove variable.
54288
54289         * build-aux/csharpexec.sh.in: New file, moved from lib/.
54290         * modules/csharpexec (Files): Update.
54291         (configure.ac): Add AC_CONFIG_FILES invocation.
54292         (EXTRA_DIST): Remove csharpexec.sh.in.
54293
54294 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
54295
54296         Sync from coreutils.
54297
54298         Add POSIX ACL support
54299         * lib/acl.h (copy_acl, set_acl): Add declarations.
54300         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
54301         systems other than Linux.
54302         (chmod_or_fchmod): New function: use fchmod when possible,
54303         and chmod otherwise.
54304         (file_has_acl): Add a POSIX ACL implementation, with a
54305         Linux-specific subcase.
54306         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
54307         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
54308         acls are unsupported.
54309         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
54310         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
54311         are unsupported.
54312
54313 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
54314
54315         Sync from coreutils.
54316         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
54317
54318 2006-01-07  Bruno Haible  <bruno@clisp.org>
54319
54320         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
54321         gl_EARLY.
54322
54323 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
54324
54325         * lib/strftime.c (tzname): Don't declare if it is already #defined.
54326         Problem reported for Mingw by Mark Junker.
54327
54328 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
54329
54330         * README: Gnulib normally doesn't generate a tarball.
54331
54332 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
54333
54334         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
54335         long int, not int, for nanosecond counts, so that people who are
54336         used to POSIX struct timespec won't be surprised.  Reported by Jim
54337         Meyering.
54338
54339 2005-12-28  Bruno Haible  <bruno@clisp.org>
54340
54341         * build-aux/config.rpath: Update from GNU gettext.
54342
54343 2005-12-16  Jim Meyering  <jim@meyering.net>
54344
54345         * modules/fprintftime: New module.
54346         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
54347
54348 2005-12-16  Jim Meyering  <jim@meyering.net>
54349
54350         * m4/fprintftime.m4: New file.
54351
54352 2005-12-16  Jim Meyering  <jim@meyering.net>
54353
54354         * lib/fprintftime.c, lib/fprintftime.h: New files.
54355
54356 2005-12-15  Simon Josefsson  <jas@extundo.com>
54357
54358         * modules/socklen (configure.ac): Fix M4 macro name, to align with
54359         new m4/socklen.m4.
54360
54361 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
54362
54363         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
54364         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
54365
54366 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
54367
54368         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
54369         * lib/argp-help.c (fill_in_uparams): Check if the constructed
54370         struct uparams is valid. Fall back to the default values if it is
54371         not.
54372
54373 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
54374
54375         * modules/argp (Files): Add argp-pin.c
54376         (Depends-on): dirname
54377         (lib_SOURCES): Add argp-pin.c
54378
54379 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
54380
54381         * m4/argp.m4:  Check if program_invocation_name and
54382         program_invocation_short_name are declared and define appropriate
54383         macros if they are not.
54384
54385 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
54386
54387         * lib/argp-help.c (__argp_base_name): New function
54388         (__argp_short_program_name): Rewrite using __argp_base_name
54389         * lib/argp-namefrob.h: Define program_invocation_name and
54390         program_invocation_short_name if requested
54391         (__argp_base_name): Add prototype
54392         * lib/argp-parse.c (argp_def): Use gettext wrappers
54393         (argp_default_parser): Use __argp_base_name
54394         * lib/argp-pin.c: New file. Defines program_invocation_name and
54395         program_invocation_short_name on systems that lack them.
54396
54397 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
54398
54399         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
54400         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
54401         porting problem reported by Georg Schwarz in
54402         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
54403
54404 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
54405
54406         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
54407         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
54408         porting problem reported by Georg Schwarz in
54409         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
54410
54411 2005-12-05  Bruno Haible  <bruno@clisp.org>
54412
54413         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
54414         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
54415         Reported by Mark Junker <mjscod@gmx.de>.
54416
54417 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
54418
54419         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
54420         Use implementation from Albert Chin, with some
54421         comments/corrections by Stepan Kasal and myself.
54422
54423 2005-12-02  Bruno Haible  <bruno@clisp.org>
54424
54425         * gnulib-tool (func_import): Accept GPLed build tool modules when
54426         --lgpl is given.
54427         * modules/csharpcomp-script: New file.
54428         * modules/csharpcomp: Depend on it.
54429         * modules/javacomp-script: New file.
54430         * modules/javacomp: Depend on it.
54431         Suggested by Simon Josefsson.
54432
54433 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
54434
54435         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
54436         statement, to work around an HP-UX 10.20 compiler bug reported by
54437         Peter O'Gorman.
54438
54439 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
54440
54441         * modules/savedir (Depends-on): Add openat.
54442
54443 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
54444
54445         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
54446         (uintmax_t) [defined uintmax_t]: Do not declare.
54447         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
54448         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
54449         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
54450         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
54451         sake of portability to weird hosts that C allows (though we don't
54452         know of any practical examples).
54453
54454         * lib/savedir.h (fdsavedir): New decl.
54455         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
54456         contains most of the former guts of savedir.
54457         (savedir): Use savedirstream.
54458         Include "openat.h".
54459
54460 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
54461
54462         * modules/obstack (Files): Add m4/ulonglong.m4.
54463         Problem reported by Davide Angelocola.
54464
54465 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
54466
54467         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
54468         coreutils no longer futzes with rounding modes.
54469
54470 2005-11-14  Jim Meyering  <jim@meyering.net>
54471
54472         * lib/mkstemp-safer.c: Include <config.h>, required for possible
54473         replacement of mkstemp.
54474
54475 2005-11-10  Simon Josefsson  <jas@extundo.com>
54476
54477         * lib/readline.c: Remove EOL.
54478
54479 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
54480
54481         * modules/gethrxtime (Depends-on): Add gettime.
54482
54483 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
54484
54485         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
54486         or gettimeofday; no longer needed.
54487
54488 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
54489
54490         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
54491         time business.
54492         (gethrxtime) [! (HAVE_NANOUPTIME
54493         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
54494         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
54495         our own approximation.
54496
54497 2005-11-08  Eric Blake  <ebb9@byu.net>
54498
54499         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
54500
54501 2005-11-08  Eric Blake  <ebb9@byu.net>
54502
54503         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
54504
54505 2005-11-04  Bruno Haible  <bruno@clisp.org>
54506
54507         * gnulib-tool: Implement --update mode.
54508
54509 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
54510
54511         Fix porting problem reported by Theodoros V. Kalamatianos.
54512         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
54513         Don't assume that futimes failing means we must fail.
54514
54515 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
54516
54517         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
54518         variables to suggest the intended function of the PATH_MAX check.
54519
54520 2005-10-30  Kean Johnston  <jkj@sco.com>
54521
54522         Trivial changes to support SCO systems.
54523         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
54524         as PATH_MAX.
54525         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
54526         where __ptr is null when no I/O is pending.
54527
54528 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
54529
54530         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
54531         leave errno alone.  Problem reported by Dmitry V. Levin.
54532
54533 2005-10-28  Simon Josefsson  <jas@extundo.com>
54534
54535         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
54536         Test more.
54537
54538         * tests/test-gc-md2.c, tests/test-md2.c: New files.
54539
54540         * modules/md2, modules/md2-tests: New files.
54541
54542 2005-10-28  Simon Josefsson  <jas@extundo.com>
54543
54544         * m4/inet_ntop.m4: More tests.
54545
54546         * m4/gc-md2.m4, md2.m4: New file.
54547
54548 2005-10-28  Simon Josefsson  <jas@extundo.com>
54549
54550         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
54551         "restrict" keywords, as per POSIX.  Protect the function
54552         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
54553         Don't use K&R prototypes.  Check the sprintf return values.
54554         Re-define EAFNOSUPPORT if not present.  Indent.
54555
54556         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
54557         suggested by Bruno Haible <bruno@clisp.org>.
54558
54559         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
54560
54561         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
54562
54563         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
54564         libgcrypt).
54565
54566         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
54567
54568         * lib/md2.h, lib/md2.c: New files.
54569
54570 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
54571
54572         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
54573         errno alone.  Problem reported by Frederic Jolliton.
54574
54575 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
54576
54577         * modules/verify (License): Change from GPL to LGPL.  This is a
54578         tiny module and there are apparently near-equivalents that are
54579         under the BSD license.
54580
54581 2005-10-24  Simon Josefsson  <jas@extundo.com>
54582
54583         * modules/sha1: Relicense to LGPL.
54584
54585 2005-10-24  Simon Josefsson  <jas@extundo.com>
54586
54587         * lib/md4.h: Shrink buffer size, now that we changed the type.
54588
54589 2005-10-23  Simon Josefsson  <jas@extundo.com>
54590
54591         * gnulib-tool (func_import): Fix --tests-base.
54592
54593 2005-10-22  Simon Josefsson  <jas@extundo.com>
54594
54595         * modules/arcfour (Depends-on): Need stdint.
54596
54597 2005-10-22  Simon Josefsson  <jas@extundo.com>
54598
54599         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
54600         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
54601
54602 2005-10-22  Simon Josefsson  <jas@extundo.com>
54603
54604         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
54605         suggested by Bruno Haible <bruno@clisp.org>.
54606
54607 2005-10-22  Simon Josefsson  <jas@extundo.com>
54608
54609         * lib/crc.h: Include stddef.h, for size_t.
54610
54611 2005-10-22  Simon Josefsson  <jas@extundo.com>
54612
54613         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
54614         arcfour_context struct (simplify test vector testing in GNU
54615         Shishi).
54616
54617 2005-10-21  Simon Josefsson  <jas@extundo.com>
54618
54619         * modules/des, modules/des-tests: New files.
54620
54621         * modules/gc-des, modules/gc-des-tests: New files.
54622
54623         * tests/test-des.c, tests/test-gc-des.c: New file.
54624
54625 2005-10-21  Simon Josefsson  <jas@extundo.com>
54626
54627         * modules/arctwo, modules/arctwo-tests: New files.
54628
54629         * tests/test-arctwo.c: New file.
54630
54631         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
54632
54633         * tests/test-gc-arctwo.c: New file.
54634
54635 2005-10-21  Simon Josefsson  <jas@extundo.com>
54636
54637         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
54638         Bruno Haible <bruno@clisp.org>.
54639
54640         * m4/gc-des.m4: New file.
54641
54642 2005-10-21  Simon Josefsson  <jas@extundo.com>
54643
54644         * m4/arctwo.m4: New file.
54645
54646         * m4/gc-arctwo.m4: New file.
54647
54648 2005-10-21  Simon Josefsson  <jas@extundo.com>
54649
54650         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
54651         block.
54652
54653 2005-10-21  Simon Josefsson  <jas@extundo.com>
54654
54655         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
54656         <bruno@clisp.org>.
54657
54658         * lib/hmac-sha1.c (hmac_sha1): Likewise.
54659
54660         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
54661         Bruno Haible <bruno@clisp.org>.
54662
54663         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
54664         <bruno@clisp.org>.
54665
54666 2005-10-21  Simon Josefsson  <jas@extundo.com>
54667
54668         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
54669
54670 2005-10-21  Simon Josefsson  <jas@extundo.com>
54671
54672         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
54673
54674 2005-10-21  Simon Josefsson  <jas@extundo.com>
54675
54676         * lib/des.h, lib/des.c: New files.
54677
54678         * lib/gc-gnulib.c: Support DES.c
54679
54680 2005-10-21  Simon Josefsson  <jas@extundo.com>
54681
54682         * lib/arctwo.h, lib/arctwo.c: New files.
54683
54684         * lib/gc-gnulib.c: Support ARCTWO.
54685
54686 2005-10-21  Simon Josefsson  <jas@extundo.com>
54687
54688         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
54689         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
54690
54691 2005-10-21  Simon Josefsson  <jas@extundo.com>
54692
54693         * gnulib-tool (func_import, func_create_testdir): Define automake
54694         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
54695         Makefile.am snippet),
54696         suggested by Bruno Haible <bruno@clisp.org>.
54697
54698         * modules/gc (Makefile.am): Use it.
54699
54700 2005-10-21  Bruno Haible  <bruno@clisp.org>
54701
54702         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
54703         patch.
54704
54705 2005-10-19  Simon Josefsson  <jas@extundo.com>
54706
54707         * tests/test-gc-rijndael.c: New file.
54708
54709         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
54710
54711 2005-10-19  Simon Josefsson  <jas@extundo.com>
54712
54713         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
54714         interface too.
54715
54716 2005-10-19  Simon Josefsson  <jas@extundo.com>
54717
54718         * tests/test-gc-arcfour.c: New file.
54719
54720         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
54721
54722 2005-10-19  Simon Josefsson  <jas@extundo.com>
54723
54724         * modules/gc-md4, modules/gc-md4-tests: New file.
54725
54726         * tests/test-gc-md4.c: New file.
54727
54728 2005-10-19  Simon Josefsson  <jas@extundo.com>
54729
54730         * m4/gc-md4.m4: New file.
54731
54732 2005-10-19  Simon Josefsson  <jas@extundo.com>
54733
54734         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
54735         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
54736         <kasal@ucw.cz>.
54737
54738 2005-10-19  Simon Josefsson  <jas@extundo.com>
54739
54740         * m4/gc-arcfour.m4: New file.
54741
54742         * m4/gc-rijndael.m4: New file.
54743
54744 2005-10-19  Simon Josefsson  <jas@extundo.com>
54745
54746         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
54747
54748 2005-10-19  Simon Josefsson  <jas@extundo.com>
54749
54750         * lib/gc-gnulib.c: Support ARCFOUR.
54751
54752 2005-10-19  Simon Josefsson  <jas@extundo.com>
54753
54754         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
54755         support.
54756
54757         * lib/gc.h: Add ECB enum type.
54758
54759         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
54760
54761 2005-10-18  Simon Josefsson  <jas@extundo.com>
54762
54763         * tests/test-md5.c: New file.
54764
54765         * modules/md5-tests: New file.
54766
54767 2005-10-18  Simon Josefsson  <jas@extundo.com>
54768
54769         * tests/test-md4.c: New file.
54770
54771         * modules/md4, modules/md4-tests: New files.
54772
54773 2005-10-18  Simon Josefsson  <jas@extundo.com>
54774
54775         * m4/md4.m4: New file.
54776
54777 2005-10-18  Simon Josefsson  <jas@extundo.com>
54778
54779         * lib/md4.h, lib/md4.c: New files, based on md5.?.
54780
54781 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
54782
54783         * gnulib-tool (func_create_testdir): Omit the second check whether
54784         BUILT_SOURCES in nonempty.
54785
54786 2005-10-17  Simon Josefsson  <jas@extundo.com>
54787
54788         * tests/test-rijndael.c: New file.
54789
54790 2005-10-17  Simon Josefsson  <jas@extundo.com>
54791
54792         * modules/sha1: Depend on stdint instead of md5.
54793
54794         * modules/md5: Depend on stdint, remove uint32_t.
54795
54796 2005-10-17  Simon Josefsson  <jas@extundo.com>
54797
54798         * modules/gc-sha1-tests: New file.
54799
54800         * tests/test-gc-sha1.c: New file.
54801
54802 2005-10-17  Simon Josefsson  <jas@extundo.com>
54803
54804         * m4/md5.m4: Remove call to uint32_t.m4.
54805
54806 2005-10-17  Simon Josefsson  <jas@extundo.com>
54807
54808         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
54809
54810         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
54811         md5.h.
54812
54813         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
54814
54815         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
54816
54817 2005-10-17  Simon Josefsson  <jas@extundo.com>
54818
54819         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
54820
54821 2005-10-17  Simon Josefsson  <jas@extundo.com>
54822
54823         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
54824
54825 2005-10-17  Simon Josefsson  <jas@extundo.com>
54826
54827         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
54828
54829         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
54830
54831 2005-10-17  Bruno Haible  <bruno@clisp.org>
54832
54833         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
54834         that it can also be used in a test.
54835
54836 2005-10-16  Bruno Haible  <bruno@clisp.org>
54837
54838         * gnulib-tool (func_emit_tests_Makefile_am): Also define
54839         TESTS_ENVIRONMENT, so that individual tests can augment it.
54840
54841         * gnulib-tool (func_create_testdir): Use an intermediate target for
54842         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
54843         macros, like $(ALLOCA_H), which cannot be passed through the command
54844         line.
54845
54846 2005-10-15  Simon Josefsson  <jas@extundo.com>
54847
54848         * modules/rijndael-tests: New file.
54849
54850         * modules/rijndael: New file.
54851
54852 2005-10-15  Simon Josefsson  <jas@extundo.com>
54853
54854         * m4/rijndael.m4: New file.
54855
54856 2005-10-15  Simon Josefsson  <jas@extundo.com>
54857
54858         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
54859
54860         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
54861
54862 2005-10-14  Simon Josefsson  <jas@extundo.com>
54863
54864         * tests/test-arcfour.c: New file.
54865
54866         * modules/arcfour, modules/arcfour-tests: New files.
54867
54868 2005-10-14  Simon Josefsson  <jas@extundo.com>
54869
54870         * m4/arcfour.m4: New file.
54871
54872 2005-10-14  Simon Josefsson  <jas@extundo.com>
54873
54874         * lib/arcfour.h, lib/arcfour.c: New files.
54875
54876 2005-10-14  Roland McGrath  <roland@redhat.com>
54877
54878         Import from libc.  [BZ #1331]
54879         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
54880         macro argument.
54881         Reported by Matej Vela <vela@debian.org>.
54882
54883 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
54884
54885         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
54886         include <wchar.h>; no longer needed.
54887
54888 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
54889
54890         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
54891
54892 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
54893         and  Ulrich Drepper  <drepper@redhat.com>
54894
54895         Import from libc.
54896         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
54897         instead of inline stream orientation test and two separate
54898         function calls.  Pay no attention to USE_IN_LIBIO.
54899
54900 2005-10-13  Simon Josefsson  <jas@extundo.com>
54901
54902         * modules/gc-hmac-md5-tests: New file.
54903
54904         * tests/test-gc-hmac-sha1.c: New file.
54905
54906         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
54907
54908         * modules/gc-hmac-md5-tests: New file.
54909
54910         * tests/test-gc-md5.c: New file.
54911
54912         * modules/gc-md5-tests: New file.
54913
54914 2005-10-13  Simon Josefsson  <jas@extundo.com>
54915
54916         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
54917         Move memory allocation outside of loop.
54918
54919 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
54920
54921         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
54922         intermediate directory is in a read-only file system.  Problem
54923         reported by Eric Blake.
54924
54925 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
54926
54927         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
54928
54929 2005-10-12  Simon Josefsson  <jas@extundo.com>
54930
54931         * tests/test-hmac-sha1.c: New file.
54932
54933         * modules/hmac-sha1-tests: New file.
54934
54935         * modules/hmac-sha1: New file.
54936
54937 2005-10-12  Simon Josefsson  <jas@extundo.com>
54938
54939         * modules/gc-sha1: New file.
54940
54941 2005-10-12  Simon Josefsson  <jas@extundo.com>
54942
54943         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
54944
54945         * tests/test-gc-pbkdf2-sha1.c: New file.
54946
54947 2005-10-12  Simon Josefsson  <jas@extundo.com>
54948
54949         * modules/gc-md5, modules/gc-hmac-md5: New files.
54950
54951         * modules/gc (Files): Remove md5, memxor and hmac files.
54952
54953 2005-10-12  Simon Josefsson  <jas@extundo.com>
54954
54955         * m4/gc-pbkdf2-sha1.m4: New file.
54956
54957         * m4/gc-hmac-sha1.m4: New file.
54958
54959         * m4/gc-sha1: New file.
54960
54961         * m4/hmac-sha1.m4: New file.
54962
54963 2005-10-12  Simon Josefsson  <jas@extundo.com>
54964
54965         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
54966
54967         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
54968
54969 2005-10-12  Simon Josefsson  <jas@extundo.com>
54970
54971         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
54972         suggested by Bruno Haible <bruno@clisp.org>.
54973
54974 2005-10-12  Simon Josefsson  <jas@extundo.com>
54975
54976         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
54977
54978 2005-10-12  Simon Josefsson  <jas@extundo.com>
54979
54980         * lib/gc-pbkdf2-sha1.c: New file.
54981
54982         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
54983
54984 2005-10-12  Simon Josefsson  <jas@extundo.com>
54985
54986         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
54987
54988         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
54989
54990 2005-10-12  Simon Josefsson  <jas@extundo.com>
54991
54992         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
54993         GC_USE_HMAC_MD5, respectively.
54994
54995         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
54996         (gc_md5): Fix typo.
54997
54998         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
54999
55000         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
55001
55002         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
55003
55004 2005-10-12  Bruno Haible  <bruno@clisp.org>
55005
55006         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
55007         Reported by Stepan Kasal <kasal@ucw.cz>.
55008
55009 2005-10-11  Simon Josefsson  <jas@extundo.com>
55010
55011         * tests/test-crc.c: New file.
55012
55013         * modules/crc, modules/crc-tests: New files.
55014
55015 2005-10-11  Simon Josefsson  <jas@extundo.com>
55016
55017         * m4/crc.m4: New file.
55018
55019 2005-10-11  Simon Josefsson  <jas@extundo.com>
55020
55021         * lib/gc.h: Add gc_hash and gc_hash_buffer.
55022
55023         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
55024
55025         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
55026
55027 2005-10-11  Simon Josefsson  <jas@extundo.com>
55028
55029         * lib/crc.h, lib/crc.c: New files.
55030
55031         * lib/gc.h (gc_hash_buffer): Add doc.
55032
55033 2005-10-11  Bruno Haible  <bruno@clisp.org>
55034
55035         * modules/c-strcasestr: New file.
55036         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
55037
55038 2005-10-11  Bruno Haible  <bruno@clisp.org>
55039
55040         * modules/c-strcase: New file.
55041         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
55042
55043 2005-10-11  Bruno Haible  <bruno@clisp.org>
55044
55045         * lib/strcasecmp.c: Include limits.h.
55046         (strcasecmp): Avoid integer overflow on exotic platforms.
55047         * lib/strncasecmp.c: Include limits.h.
55048         (strncasecmp): Avoid integer overflow on exotic platforms.
55049         Reported by Paul Eggert.
55050
55051 2005-10-11  Bruno Haible  <bruno@clisp.org>
55052
55053         * lib/c-strcasestr.h: New file, from GNU gettext.
55054         * lib/c-strcasestr.c: New file, from GNU gettext.
55055
55056 2005-10-11  Bruno Haible  <bruno@clisp.org>
55057
55058         * lib/c-strcase.h: New file, from GNU gettext.
55059         * lib/c-strcasecmp.c: New file, from GNU gettext.
55060         * lib/c-strncasecmp.c: New file, from GNU gettext.
55061
55062 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
55063
55064         * modules/mempcpy (License): GPL -> LGPL.
55065         * modules/strchrnul (License): Likewise.
55066         * modules/sysexits (License): Likewise.
55067
55068 2005-10-08  Simon Josefsson  <jas@extundo.com>
55069
55070         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
55071
55072 2005-10-07  Simon Josefsson  <jas@extundo.com>
55073
55074         * m4/memxor.m4: Remove gl_C_RESTRICT call.
55075
55076 2005-10-06  Simon Josefsson  <jas@extundo.com>
55077
55078         * tests/test-hmac-md5.c: New file.
55079
55080         * modules/hmac-md5-tests: New file.
55081
55082         * modules/hmac-md5: New file.
55083
55084 2005-10-06  Simon Josefsson  <jas@extundo.com>
55085
55086         * m4/hmac-md5.m4: New file.
55087
55088         * m4/memxor.m4: Require gl_C_RESTRICT.
55089
55090 2005-10-06  Simon Josefsson  <jas@extundo.com>
55091
55092         * lib/memxor.c (memxor): Avoid casts and warnings.
55093
55094 2005-10-06  Simon Josefsson  <jas@extundo.com>
55095
55096         * lib/hmac-md5.c: New file.
55097
55098         * lib/hmac.h: New file.
55099
55100 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
55101
55102         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
55103         promotes to int, not unsigned int, to catch the AIX 5.3
55104         compiler bug.
55105
55106 2005-10-05  Simon Josefsson  <jas@extundo.com>
55107
55108         * modules/memxor: New file.
55109
55110         * modules/iconv (Files): Move config.rpath to havelib, it is used
55111         there.
55112
55113         * modules/havelib (Files): Add config.rpath.
55114
55115 2005-10-05  Simon Josefsson  <jas@extundo.com>
55116
55117         * m4/memxor.m4: New file.
55118
55119 2005-10-05  Simon Josefsson  <jas@extundo.com>
55120
55121         * lib/memxor.c (memxor): Fix compiler error.
55122
55123         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
55124         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
55125
55126         * lib/memxor.h, lib/memxor.c: New files.
55127
55128         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
55129         we assume all systems have it, suggested by Jim Meyering
55130         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
55131         any systems lack sys/socket.h; mingw32 is known to lack it, but we
55132         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
55133         same reasons.
55134
55135 2005-10-05  Simon Josefsson  <jas@extundo.com>
55136
55137         * config/srclist.txt: Add glibc bug 1423 for md5.h.
55138
55139 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
55140
55141         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
55142         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
55143         needed, since the source code now assumes these .h files.
55144
55145 2005-10-05  Derek Price  <derek@ximbiot.com>
55146
55147         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
55148
55149 2005-10-05  Bruno Haible  <bruno@clisp.org>
55150
55151         * modules/stdint (License): Change to LGPL.
55152
55153 2005-10-04  Simon Josefsson  <jas@extundo.com>
55154
55155         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
55156         D. Baushke" <mdb@gnu.org>.
55157
55158 2005-10-04  Bruno Haible  <bruno@clisp.org>
55159
55160         * lib/verify.h (verify_true): Provide alternative definition for C++.
55161
55162 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
55163
55164         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
55165         (SSIZE_MAX): New macro, if not already defined.
55166         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
55167         than 2 GiB.
55168
55169 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
55170
55171         Sync from coreutils.
55172         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
55173         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
55174         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
55175         ULLONG_MAX doesn't work with 2.7.2.1.
55176
55177 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
55178
55179         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
55180         From Ben Pfaff.
55181
55182         * modules/exclude (Depends-on): Depend on verify.
55183         * modules/strtoimax (Depends-on): Likewise.
55184         * modules/utimecmp (Depends-on): Likewise.
55185
55186 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
55187
55188         * lib/exclude.c: Include verify.h.
55189         (verify): Remove.  All callers changed to use verify.h's version.
55190         * lib/strtoimax.c: Likewise.
55191         * lib/utimecmp.c: Likewis.e
55192
55193         Sync from coreutils.
55194         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
55195         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
55196         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
55197         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
55198         bother returning ENOSYS if settimeofday or stime fails; just let
55199         them return whatever errno they want to return.
55200         * lib/utimens.c: Include unistd.h, for dup2.
55201         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
55202         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
55203
55204 2005-10-02  Jim Meyering  <jim@meyering.net>
55205
55206         Sync from coreutils.
55207         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
55208         from glibc-2.2.5 that fails for read-only files.
55209
55210 2005-10-02  Jim Meyering  <jim@meyering.net>
55211
55212         Sync from coreutils.
55213         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
55214         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
55215         `#if HAVE_CONFIG_H'.
55216         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
55217         Remove AT_FDCWD test.
55218         Do not consume the fd unless successful.
55219         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
55220         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
55221         block, so that we don't even try to compile it if settimeofday is
55222         available.  This works around a compilation failure on OSF1 V5.1,
55223         due to stime requiring a `long int*' while tv_sec is `int'.
55224
55225 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
55226
55227         Sync from coreutils.
55228         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
55229         against `yes', rather than just testing for nonempty.
55230
55231 2005-10-01  Simon Josefsson  <jas@extundo.com>
55232
55233         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
55234         and Darwin.
55235
55236         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
55237         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
55238         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
55239         freeaddrinfo and gai_strerror are declared by the POSIX headers.
55240         Check if struct addrinfo is declared.
55241
55242 2005-10-01  Simon Josefsson  <jas@extundo.com>
55243
55244         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
55245         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
55246         AI_* and EAI_* definitions.  Protect function declarations.
55247
55248 2005-10-01  Jim Meyering  <jim@meyering.net>
55249
55250         Sync from coreutils.
55251
55252         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
55253         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
55254         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
55255         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
55256         in the inet and nsl libraries.  Required on Solaris 5.7.
55257
55258 2005-10-01  Jim Meyering  <jim@meyering.net>
55259
55260         Sync from coreutils.
55261         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
55262         in the inet and nsl libraries.  Required on Solaris 5.7.
55263
55264 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
55265
55266         * lib/getdelim.c (getdelim): Remove unused variables.
55267
55268 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
55269
55270         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
55271         so that the code works even with ancient cpp.  Portability problem
55272         with GCC 2.7.2.1 reported by Thomas M.Ott.
55273
55274 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
55275
55276         * modules/regex (Depends-on): Add strcase.
55277
55278         * modules/gethostname (Licence): Change from GPL to LGPL, since
55279         gethostname.c is a trivial implementation of a standard library
55280         function.
55281         * modules/poll (License): Change from GPL to LGPL, since it's
55282         derived from LGPL code.
55283
55284 2005-09-27  Jim Meyering  <jim@meyering.net>
55285
55286         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
55287         HAVE_CONFIG_H.
55288
55289         * lib/intprops.h (signed_type_or_expr__): Define.
55290         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
55291         for unsigned types.
55292
55293 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
55294
55295         * lib/verify.h (verify_expr): Remove, replacing with:
55296         (verify_true): New macro that returns true instead of void.
55297         (verify_type__): Remove.
55298         (verify): Use verify_true rather than verify_type__.
55299
55300 2005-09-26  Bruno Haible  <bruno@clisp.org>
55301
55302         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
55303         is necessary.
55304         (lib_SOURCES): Remove mbchar.c.
55305         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
55306         (Files): Add m4/mbrtowc.m4.
55307         * modules/mbiter: Likewise.
55308         * modules/mbuiter: Likewise.
55309
55310 2005-09-26  Bruno Haible  <bruno@clisp.org>
55311
55312         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
55313         compile mbchar.c if they are not both present.
55314         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
55315         * m4/mbiter.m4 (gl_MBITER): Likewise.
55316         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
55317         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
55318         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
55319
55320 2005-09-25  Jim Meyering  <jim@meyering.net>
55321
55322         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
55323         also uses socklen_t.
55324
55325 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
55326
55327         * lib/utimens.c (ENOSYS): Define if not already defined.
55328         (futimens): Support having a null PATH if the file descriptor
55329         is nonnegative.
55330
55331         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
55332         Remove.
55333         (__attribute): Define to empty unless GCC 3.1 or later.
55334         This works around a core dump on OpenBSD 3.4, which has GCC
55335         2.95.3, which dumps core when given __attribute__(()).  It also
55336         simplifies other tests, since we really don't want to bother with
55337         worrying about which ancient version of GCC supported what.
55338         Original problem reported by Yoann Vandoorselaere, with part of
55339         the fix suggested by Derek Price.
55340
55341 2005-09-24  Jim Meyering  <jim@meyering.net>
55342
55343         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
55344         so we can once again use a positive bitfield width of 1 -- now we
55345         don't have to explain why we were using a bitfield width of 2.
55346
55347 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
55348
55349         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
55350         and similarly for the other external symbols.  Problem reported
55351         by James Gallager.
55352
55353         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
55354         bug reported by Jim Meyering.
55355
55356         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
55357         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
55358         not needed, since socklen is a prerequisite module.
55359
55360 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
55361
55362         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
55363         Problem reported by Eric Blake.
55364         (getaddrinfo): Initialize se so that it's not garbage.
55365         Redo internal storage allocation so that it doesn't make unportable
55366         assumptions about alignment.
55367         Fix a memory leak.
55368
55369         * lib/utimens.c (futimens): Use futimesat if available.
55370         Prefer it to futimes since it doesn't have the futimes bug.
55371
55372         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
55373         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
55374         Instead, declare a function that returns a pointer to an array,
55375         and use verify_type__ to declare the size of the array.
55376         Problem and germ of a solution reported by Bruno Haible.
55377         (verify_type__): Use 2, not 1, for bitfield size, to avoid
55378         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
55379
55380 2005-09-23  Jim Meyering  <jim@meyering.net>
55381
55382         Sync from coreutils.
55383         Correct build failure (socklen_t not defined) on at least
55384         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
55385         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
55386
55387 2005-09-23  Jim Meyering  <jim@meyering.net>
55388
55389         * modules/getaddrinfo (Depends-on): Add socklen.
55390
55391 2005-09-23  Bruno Haible  <bruno@clisp.org>
55392
55393         * tests/test-verify.c: New file.
55394
55395 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
55396
55397         Sync from coreutils.
55398
55399         * modules/argmatch (Depends-on): Add verify.
55400         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
55401         unistd-safer.
55402         * modules/save-cwd (Depends-on): Likewise.
55403
55404         * modules/openat (Files): Add lib/openat-die.c.
55405         (Depends-on): Remove error, exitfail.
55406         Add dirname.
55407
55408         * modules/verify: New file.
55409         * MODULES.html.sh (Diagnostics <assert.h>): New section,
55410         with "verify" module.
55411
55412 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
55413
55414         Sync from coreutils.
55415
55416         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
55417         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
55418         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
55419         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
55420         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
55421         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
55422         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
55423         Don't bother checking for string.h, stdlib.h, unistd.h.
55424         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
55425         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
55426         module's job.
55427         * m4/jm-macros.m4 (gl_MACROS): Likewise.
55428         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
55429
55430         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
55431         (gl_GETDATE): Use it.
55432
55433         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
55434
55435 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
55436
55437         Sync from coreutils.
55438
55439         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
55440         stat-time.h.
55441         * lib/argmatch.h: Include verify.h
55442         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
55443         (ARGMATCH_ASSERT): Remove; unused.
55444         * lib/canonicalize.c: Assume STDC_HEADERS.
55445         * lib/exclude.c: Include "strcase.h".
55446         * lib/regex_internal.h [!defined _LIBC]: Likewise.
55447         * lib/getusershell.c: Include stdio--.h rather than stdio.h
55448         and stdio-safer.h.
55449         (getusershell): Call fopen, not fopen_safer.
55450         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
55451         Do not include unistd-safer.h.
55452         (save_cwd): Don't call fd_safer; no longer needed
55453         now that we include fcntl--.h.
55454
55455         * lib/getdate.y (relative_time): New type.
55456         (RELATIVE_TIME_0): New constant.
55457         (parser_control): Use relative_time instead of doing it ourselves.
55458         (%union): Add new relative_time rel member.
55459         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
55460         Now typeless.
55461         (relunit, relunit_snumber): Now of type rel.
55462         (zone, rel, relunit, get_date): Adjust to above changes.
55463
55464         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
55465         Do not include unistd-safer.h.
55466         (getloadavg): Don't call fd_safer; no longer needed
55467         now that we include fcntl--.h.
55468
55469         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
55470         (make_dir_parents): Treat ENOSYS like EEXIST.
55471
55472         Improve quality of diagnostics on restore_cwd failure.
55473         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
55474         (make_dir_parents): Last arg is now int * (for errno), not bool *.
55475         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
55476         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
55477         each time through the loop.  Do not diagnose restore_cwd failure;
55478         that is the caller's job (and perhaps the caller does not care).
55479
55480         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
55481         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
55482         If the file already exists but is not a directory, don't bother
55483         to try to make its parents.
55484         Close potential file descriptor leak if we can't chdir("/") (!).
55485         Don't always return true if chdir($PWD) fails; return true only
55486         if the requested action was done successfully (except for the
55487         chdir($PWD)).
55488         Don't log final directory unless we actually made it.
55489         Refactor to avoid duplicate code to fix up permissions.
55490         Don't attempt to fix up parent permissions if chdir($PWD) fails.
55491
55492         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
55493         to make it a bit faster and (I hope) clearer.
55494         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
55495         Fix bug in formats like %2N.
55496
55497         * lib/verify.h: New file.
55498
55499 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
55500
55501         Sync from coreutils.
55502         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
55503
55504 2005-09-22  Jim Meyering  <jim@meyering.net>
55505
55506         Sync from coreutils.
55507
55508         * m4/lstat.m4 (gl_FUNC_LSTAT):
55509         Use AC_LIBSOURCES to require lstat.c and lstat.h.
55510         Remove obsolete comment.
55511         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
55512         * m4/xstrtod.m4: Likewise.
55513
55514         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
55515
55516 2005-09-22  Jim Meyering  <jim@meyering.net>
55517
55518         Sync from coreutils.
55519
55520         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
55521
55522         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
55523         the .tm_year member, since otherwise gcc-4.0 would now warn about
55524         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
55525
55526         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
55527         order to avoid an unsuppressible warning from gcc on 64-bit systems.
55528
55529         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
55530         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
55531         when run in a time zone for which daylight savings time is in effect
55532         for the starting date.
55533
55534         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
55535         stop us from restricting permissions of just-created absolute-named
55536         directories.
55537         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
55538         to restore initial working directory.
55539         * lib/mkdir-p.c (make_dir_parents): New parameter:
55540         different_working_dir, to tell caller if/when we change the working
55541         directory and are unable to return to the initial one.
55542         * lib/mkdir-p.h (make_dir_parents): Update prototype.
55543         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
55544         `return false'.  This fixes a bug introduced on 2004-07-30.
55545
55546         * lib/openat.c (fdopendir): Be sure to close the supplied
55547         file descriptor before returning.  This makes our replacement
55548         implementation a little closer to Solaris's, where fdopendir
55549         ties the file descriptor to the returned DIR* pointer.
55550         * lib/openat.c (unlinkat): New function.
55551         * lib/openat.h (unlinkat): Add prototype.
55552         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
55553         (openat_restore_fail): Rename from openat_restore_die.
55554         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
55555
55556         Provide an alternative to exiting immediately upon save_cwd or
55557         restore_cwd failure.  Now, an application can arrange e.g.,
55558         to perform a longjump in that case.
55559         * lib/openat.c: Include dirname.h.
55560         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
55561         (rpl_openat, fdopendir, fstatat): Call openat_save_die
55562         and openat_restore_die rather than calling error directly.
55563         Don't include "error.h" or "exitfail.h"; they're no longer needed.
55564
55565         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
55566         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
55567         define.
55568
55569         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
55570         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
55571                             int utc, int nanoseconds);
55572         Background:
55573         date should not have to allocate a megabyte of virtual memory to
55574         handle a format argument like +%1048575T.  When implemented with
55575         strftime, it must allocate such a buffer, use strftime to fill it
55576         in, print it, then free it.
55577         With fprintftime, it simply prints everything and exits.
55578         With no need for memory allocation, that's one fewer way to fail.
55579         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
55580         optional field width, not before, so we accept %9:z, not %:9z.
55581         (my_strftime): Be sure to use L_('x') for literals.
55582
55583         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
55584         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
55585         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
55586         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
55587         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
55588         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
55589         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
55590         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
55591         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
55592         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
55593         * lib/xgethostname.c, lib/xreadlink.c:
55594         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
55595
55596         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
55597         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
55598         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
55599         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
55600         and don't include <sys/file.h>).
55601
55602 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
55603
55604         Sync from coreutils.
55605
55606         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
55607         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
55608         [!LDAV_DONE]: Avoid unused variable warning.
55609
55610 2005-09-21  Bruno Haible  <bruno@clisp.org>
55611
55612         * lib/unicodeio.h (unicode_to_mb): New declaration.
55613
55614 2005-09-20  Derek Price  <derek@ximbiot.com>
55615
55616         * lib/getaddrinfo.c: Don't include <netdb.h> included from
55617         getaddrinfo.h.
55618
55619 2005-09-20  Bruno Haible  <bruno@clisp.org>
55620
55621         * gnulib-tool: Remove trailing slashes from the values specified for
55622         --source-base, --m4-base, --tests-base, --aux-dir.
55623         Suggested by Simon Josefsson <jas@extundo.com>.
55624
55625 2005-09-20  Bruno Haible  <bruno@clisp.org>
55626
55627         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
55628         func_modules_to_filelist, func_import, func_create_testdir): Make all
55629         sorting results locale-independent, so that gnulib-cache.m4 doesn't
55630         change when gnulib-tool is invoked in a different locale.
55631
55632 2005-09-19  Simon Josefsson  <jas@extundo.com>
55633
55634         * m4/socklen.m4: Fix typo.
55635
55636 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
55637
55638         Use a consistent style for including <config.h>.
55639         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
55640         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
55641         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
55642         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
55643         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
55644         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
55645         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
55646         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
55647         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
55648         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
55649         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
55650         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
55651         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
55652         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
55653         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
55654         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
55655         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
55656         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
55657         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
55658         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
55659         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
55660         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
55661         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
55662         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
55663         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
55664         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
55665         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
55666         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
55667         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
55668         lib/xstrtoumax.c, lib/yesno.c:
55669         Standardize inclusion of config.h.
55670         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
55671         lib/inttostr.h:  Removed inclusion of config.h from header files.
55672         * lib/inttostr.c:  Adjusted in-tree users.
55673         * lib/timespec.h: Remove superfluous warning to include config.h.
55674         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
55675         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
55676         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
55677         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
55678         config.h with HAVE_CONFIG_H.
55679
55680 2005-09-19  Jim Meyering  <jim@meyering.net>
55681
55682         * modules/pathmax (License): Change to LGPL.
55683
55684 2005-09-19  Derek Price  <derek@ximbiot.com>
55685
55686         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
55687
55688 2005-09-19  Bruno Haible  <bruno@clisp.org>
55689
55690         * gnulib-tool (import): Provide default for --tests-base.
55691
55692 2005-09-19  Bruno Haible  <bruno@clisp.org>
55693
55694         * doc/quote.texi: New file, extracted from gnulib.texi.
55695         * doc/ctime.texi: New file, extracted from gnulib.texi.
55696         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
55697         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
55698         * doc/gnulib.texi: Include them.
55699
55700 2005-09-18  Bruno Haible  <bruno@clisp.org>
55701
55702         Portability fix.
55703         * gnulib-tool (func_readlink): New function.
55704         (func_ln_if_changed): Use it.
55705
55706 2005-09-18  Bruno Haible  <bruno@clisp.org>
55707
55708         * gnulib-tool: Support --with-tests also with --import.
55709         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
55710         (func_import): Use variables $testsbase and $inctests. Emit a
55711         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
55712         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
55713         SUBDIRS += $testsdir.
55714         (func_create_testdir): Update.
55715
55716 2005-09-18  Bruno Haible  <bruno@clisp.org>
55717
55718         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
55719         instead of $dry_run.
55720         (func_cp_if_changed, func_mv_if_changed): Remove functions.
55721         (func_ln_if_changed): Don't handle dry-run here.
55722         (func_import): In dry-run mode, detect more precisely which actions
55723         would be performed, and don't use "...ing" verbs.
55724
55725 2005-09-18  Bruno Haible  <bruno@clisp.org>
55726
55727         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
55728         (func_import): Use join on two temporary files instead of three nested
55729         loops, in order to determine which files are new or old.
55730
55731 2005-09-18  Bruno Haible  <bruno@clisp.org>
55732
55733         * gnulib-tool (func_import): Comment out code that spits out the
55734         new files with --dry-run.
55735
55736 2005-09-18  Bruno Haible  <bruno@clisp.org>
55737
55738         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
55739
55740 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
55741
55742         * lib/stat-time.h: New file.
55743         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
55744         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
55745         in a different way.
55746         (timespec_cmp): New function.
55747         * lib/utimecmp.c: Include stat-time.h.
55748         (SYSCALL_RESOLUTION): Depend on whether various struct stat
55749         members exist, not on the obsolescent ST_MTIM_NSEC.
55750         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
55751
55752 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
55753
55754         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
55755
55756 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
55757
55758         * MODULES.html.sh (File system functions): Add stat-time.
55759         * modules/stat-time: New file.
55760         * modules/timespec (Files): Remove m4/st_mtim.m4; this
55761         is now done in a different way, by the stat-time module.
55762         * modules/utimecmp (Depends-on): Add stat-time.
55763
55764 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
55765
55766         * m4/st_mtim.m4: Remove.  Superseded by...
55767         * m4/stat-time.m4: New file.
55768         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
55769         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
55770
55771 2005-09-15  Derek Price  <derek@ximbiot.com>
55772
55773         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
55774
55775 2005-09-15  Derek Price  <derek@ximbiot.com>
55776
55777         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
55778         * lib/regex_internal.c: Ditto, using this...
55779         (__GNUC_PREREQ): ...new macro.
55780         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
55781         using...
55782         (__GNUC_PREREQ): ...this new macro.
55783
55784         * lib/strstr.h: Include string.h. Define strstr as a macro here.
55785
55786 2005-09-15  Derek Price  <derek@ximbiot.com>
55787             Paul Eggert  <eggert@cs.ucla.edu>
55788
55789         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
55790         changes, consolidating in...
55791         * lib/regex_internal.h: ...this file.
55792
55793 2005-09-13  Jim Meyering  <jim@meyering.net>
55794
55795         * lib/canon-host.c: Filter through gnu indent and reword comments
55796         slightly.
55797         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
55798
55799 2005-09-13  Derek Price  <derek@ximbiot.com>
55800
55801         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
55802         failure.
55803         Reported by Jim Meyering  <jim@meyering.net>.
55804
55805 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
55806
55807         * lib/base64.c: Typo.
55808         (base64_encode): Put b64str in initialized data section.
55809
55810 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
55811
55812         Merge glibc and coreutils changes into gnulib, plus a few
55813         extra fixes.
55814         * lib/md5.c: Use #error rather than a string.
55815         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
55816         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
55817         (__attribute__): Define to empty for non recent-GCC.
55818         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
55819         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
55820         Renamed from their non-__ counterparts, with new macros replacing
55821         them if not _LIBC.  Add __THROW attribute.
55822         (rol): Remove.
55823         (struct md5_ctx): Align buffer if using GCC.
55824         * lib/sha1.h (struct sha1_ctx): Likewise.
55825         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
55826         The old name was backwards.
55827         (NOTSWAP): Remove; not used.
55828         (rol): New macro, moved here from md5.h.
55829         (sha1_process_block): Remove a FIXME that doesn't make sense.
55830
55831 2005-09-12  Derek Price  <derek@ximbiot.com>
55832
55833         Return usable errors from canon-host.
55834         * lib/canon-host.h: New file.
55835         * lib/canon-host.c (canon_host): Wrap...
55836         (canon_host_r): ...this new function, which now relies exclusively on
55837         getaddrinfo.
55838         (ch_strerror): New function.
55839         (last_cherror): New global.
55840         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
55841         interface.
55842         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
55843         void *.
55844         (freeaddrinfo): Free ai->ai_canonname when set.
55845
55846 2005-09-12  Derek Price  <derek@ximbiot.com>
55847
55848         Make canon-host require getaddrinfo.
55849         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
55850         AC_LIBSOURCE canon-host.h.  Call...
55851         (gl_PREREQ_CANON_HOST): ...this new function, which requires
55852         gl_GETADDRINFO.
55853         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
55854
55855 2005-09-12  Derek Price  <derek@ximbiot.com>
55856
55857         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
55858         LGPL.
55859         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
55860
55861 2005-09-12  Derek Price  <derek@ximbiot.com>
55862
55863         * lib/gai_strerror.c: Include config.h when available.  Include
55864         getaddrinfo.h before other headers to test interface.
55865         Reported by Larry Jones <lawrence.jones@ugs.com>.
55866
55867 2005-09-12  Derek Price  <derek@ximbiot.com>
55868             Paul Eggert  <eggert@cs.ucla.edu>
55869
55870         * modules/glob (Files): Add glob-libc.h.
55871
55872 2005-09-12  Derek Price  <derek@ximbiot.com>
55873             Paul Eggert  <eggert@cs.ucla.edu>
55874
55875         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
55876         glob_.h, glob-libc.h.
55877         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
55878
55879 2005-09-12  Derek Price  <derek@ximbiot.com>
55880             Paul Eggert  <eggert@cs.ucla.edu>
55881
55882         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
55883         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
55884         protecting things that should be done only in gnulib contexts.
55885         * lib/glob_.h: New file, containing only the glob things needed for
55886         gnulib.
55887         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
55888         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
55889         (glob, globfree, glob_pattern_p): Now defined simply in terms of
55890         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
55891         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
55892         and to respect the namespace rules better.
55893
55894 2005-09-08  Simon Josefsson  <jas@extundo.com>
55895
55896         * modules/socklen: New file.
55897
55898 2005-09-08  Simon Josefsson  <jas@extundo.com>
55899
55900         * m4/socklen.m4: New file.
55901
55902 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
55903
55904         * modules/utimens (Files): Add m4/utimbuf.m4, since
55905         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
55906         Reported by Sergey Poznyakoff.
55907
55908 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
55909
55910         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
55911         definitions, since that's the preferred style in glibc.
55912         Fix a minor spacing issue, and update copyright notice to match
55913         glibc's.
55914
55915 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
55916
55917         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
55918
55919 2005-09-06  Simon Josefsson  <jas@extundo.com>
55920
55921         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
55922         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
55923
55924 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
55925
55926         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
55927         warning.
55928
55929 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
55930
55931         * config/srclist.txt: Add glibc bug 1302.
55932
55933 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
55934
55935         Change bitset word type from unsigned int to unsigned long int,
55936         as this has better performance on typical 64-bit hosts.
55937         Port bitset code to hosts with unusual word sizes.
55938         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
55939         (build_collating_symbol):
55940         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
55941         argument is a bitset.  This is merely a style issue, but it makes
55942         it clearer that an entire array is expected.
55943         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
55944         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
55945         Port to the case where bitset_word is not the same as unsigned int.
55946         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
55947         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
55948         Likewise.
55949         * lib/regexec.c (check_dst_limits_calc_pos_1,
55950         check_subexp_matching_top):
55951         (build_trtable, group_nodes_into_DFAstates):
55952         Likewise.
55953         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
55954         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
55955         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
55956         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
55957         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
55958         * lib/regcomp.c (optimize_subexps, lower_subexp):
55959         Work even if bitset_word has holes in its bitwise representation.
55960         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
55961         * lib/regexec.c (check_dst_limits_calc_pos_1,
55962         check_subexp_matching_top):
55963         Likewise.
55964         * lib/regex_internal.c (re_string_reconstruct):
55965         Don't assume UCHAR_MAX == 255.
55966         * lib/regex_internal.h (bitset_set_all): Likewise.
55967         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
55968         All uses changed.
55969         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
55970         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
55971         All uses changed.
55972         (BITSET_WORD_MAX): New macro.
55973         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
55974         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
55975         (bitset_empty, bitset_copy):
55976         Prefer sizeof (bitset) to multiplying it out ourselves.
55977         (bitset_not_merge): Remove; unused.
55978         (bitset_contain): Return bool, not unsigned int with one bit on.
55979         All callers changed.
55980         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
55981         alignment than re_node_set; do this by defining a new internal
55982         type struct dests_alloc and using it to allocate memory.
55983
55984 2005-09-05  Bruno Haible  <bruno@clisp.org>
55985
55986         * gnulib-tool (func_import): Fix comparison in handling of symbolic
55987         links.
55988
55989 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
55990
55991         * modules/size_max (Makefile.am): Add size_max.h
55992
55993 2005-09-04  Derek Price  <derek@ximbiot.com>
55994
55995         * gnulib-tool (func_import): Fix reversed $symbolic logic.
55996
55997 2005-09-03  Simon Josefsson  <jas@extundo.com>
55998
55999         * gnulib-tool: Fix typo.
56000
56001 2005-09-03  Simon Josefsson  <jas@extundo.com>
56002
56003         * config/srclist.txt: Add glibc bug 1293.
56004
56005 2005-09-03  Derek Price  <derek@ximbiot.com>
56006
56007         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
56008         From Larry Jones <lawrence.jones@ugs.com>.
56009
56010 2005-09-02  Simon Josefsson  <jas@extundo.com>
56011
56012         * modules/socklen: New file.
56013
56014 2005-09-02  Simon Josefsson  <jas@extundo.com>
56015
56016         * modules/havelib: New module.
56017
56018         * modules/gettext, modules/iconv, modules/lock, modules/readline:
56019         Use havelib.
56020
56021 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
56022
56023         Check for arithmetic overflow when calculating sizes, to prevent
56024         some buffer-overflow issues.  These patches are conservative, in the
56025         sense that when I couldn't determine whether an overflow was possible,
56026         I inserted a run-time check.
56027         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
56028         macros.
56029         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
56030         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
56031         (re_xnrealloc, re_x2nrealloc): New inline functions.
56032         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
56033         parse_bracket_exp):
56034         (build_equiv_class, build_charclass): Check for arithmetic overflow
56035         in size expression calculations.
56036         * lib/regex_internal.c (re_string_realloc_buffers):
56037         (build_wcs_upper_buffer, re_node_set_add_intersect):
56038         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
56039         (re_dfa_add_node, register_state): Likewise.
56040         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
56041         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
56042         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
56043         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
56044
56045 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
56046
56047         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
56048         m4/ulonglong.m4.  Problem reported by Martin Lambers.
56049
56050 2005-09-02  Bruno Haible  <bruno@clisp.org>
56051
56052         Support for lib vs. lib64 distinction on biarch platforms.
56053         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
56054         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
56055         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
56056
56057 2005-09-02  Bruno Haible  <bruno@clisp.org>
56058
56059         * gnulib-tool (import): In the other first-use case, provide defaults
56060         as well.
56061
56062 2005-09-02  Bruno Haible  <bruno@clisp.org>
56063
56064         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
56065         patches not yet found in the latest gettext release.
56066
56067 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
56068
56069         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
56070         to avoid a collision with bits/local_lim.h in glibc.
56071         All uses changed.  Problem reported by Dmitry V. Levin in
56072         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
56073
56074         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
56075         bugs in int versus size_t comparisons.
56076         (re_string_context_at): Fix bug where the code assumed that
56077         Idx is signed.
56078
56079         Use bool where appropriate.
56080         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
56081         All callers changed.
56082         (calc_eclosure_iter): Likewise, for ROOT arg.
56083         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
56084         (build_charclass_op): Likewise, for NON_MATCH arg.
56085         * lib/regex_internal.c (re_string_allocate, re_string_construct):
56086         (re_string_construct_common): Likewise, for ICASE arg.
56087         * lib/regexec.c (re_search_2_stub, re_search_stub):
56088         Likewise, for RET_LEN arg.
56089         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
56090         (set_regs): Likewise, for FL_BACKTRACK arg.
56091         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
56092         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
56093         (calc_eclosure_iter, parse_bracket_exp):
56094         Use bool for internal variables that are booleans.
56095         * lib/regexec.c (re_search_internal, check_matching,
56096         proceed_next_node):
56097         (set_regs, build_sifted_states, sift_states_bkref):
56098         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
56099         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
56100         (find_collation_sequence_value):
56101         Likewise.
56102         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
56103         (re_node_set_compare):
56104         Return bool, not int. All callers changed.
56105         * lib/regexec.c (check_halt_node_context, check_dst_limits):
56106         (build_trtable, check_node_accept): Likewise.
56107         * lib/regex_internal.h: Include stdbool.h.
56108
56109         Fix bugs uncovered when converting to bool.
56110         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
56111         failure instead of charging ahead blindly.
56112         * lib/regex_internal.c (register_state): Likewise.
56113         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
56114         for freeing internal storage.
56115         (group_nodes_into_DFA_states): Use unsigned int, not int, for
56116         bitset pieces used as boolean, to avoid undefined behavior
56117         on hosts that do int overflow checking.
56118
56119 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
56120
56121         * config/srclist.txt: Add glibc bugs 1285-1287.
56122
56123 2005-09-01  Jim Meyering  <jim@meyering.net>
56124
56125         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
56126         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
56127         Require gl_STAT_MACROS, too.
56128
56129 2005-09-01  Bruno Haible  <bruno@clisp.org>
56130
56131         * gnulib-tool (import): In the first-use case, provide defaults.
56132
56133 2005-09-01  Bruno Haible  <bruno@clisp.org>
56134
56135         * gnulib-tool (func_import): Remove the .tmp files.
56136
56137 2005-09-01  Bruno Haible  <bruno@clisp.org>
56138
56139         * gnulib-tool (func_import): Fix handling of symbolic links.
56140
56141 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
56142
56143         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
56144         old glibc regex code mishandles strings longer than 2**31 bytes.
56145         This patch fixes this when the regex code is used in gnulib
56146         (i.e., outside glibc).
56147
56148         This patch should not affect the use of the regex code inside
56149         glibc.  No doubt this problem also needs to be handled for glibc
56150         as well, but the result will be an incompatible change to the
56151         glibc ABI, and the old ABI will have to be supported too.  That
56152         can be the the subject for another patch.
56153
56154         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
56155         governing whether the rest of this patch is active.  By default,
56156         the macro is disabled and the patch has no effect.
56157         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
56158         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
56159         (struct re_pattern_buffer, re_search, re_search_2, re_match):
56160         (re_match_2, re_set_registers): Use the new types.
56161         * lib/regex_internal.h (Idx, re_hashval_t): New types.
56162         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
56163         New macros.
56164         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
56165         (re_string_context_at, bin_tree_t, re_dfastate_t):
56166         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
56167         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
56168         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
56169         (re_string_char_size_at, re_string_wchar_at):
56170         (re_string_elem_size_at):
56171         Use the new types and macros to port to 64-bit hosts.
56172         Use unsigned types for internal values, so that the code
56173         mostly works even for arrays larger than SSIZE_MAX.
56174         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
56175         (search_duplicated_node, calc_eclosure_iter, fetch_number):
56176         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
56177         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
56178         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
56179         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
56180         (calc_inveclosure, parse_dup_op, build_range_exp):
56181         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
56182         (fetch_number, create_token_tree, mark_opt_subexp):
56183         Likewise.
56184         * lib/regex_internal.c (re_string_construct_common,
56185         create_ci_newstate):
56186         (create_cd_newstate, re_string_allocate, re_string_construct):
56187         (re_string_realloc_buffers, build_wcs_upper_buffer):
56188         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
56189         (re_string_reconstruct, re_string_peek_byte_case):
56190         (re_string_fetch_byte_case, re_string_context_at):
56191         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
56192         (re_node_set_init_copy, re_node_set_add_intersect):
56193         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
56194         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
56195         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
56196         (re_acquire_state, re_acquire_state_context, register_state):
56197         Likewise.
56198         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
56199         search_cur_bkref_entry):
56200         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
56201         (re_search_internal, re_search_2_stub, re_search_stub)
56202         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
56203         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
56204         (update_cur_sifted_state, check_dst_limits):
56205         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
56206         (check_subexp_limits, sift_states_bkref, merge_state_array):
56207         (check_subexp_matching_top, get_subexp, get_subexp_sub):
56208         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
56209         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
56210         (expand_bkref_cache, check_node_accept_bytes):
56211         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
56212         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
56213         (acquire_init_state_context, check_halt_node_context):
56214         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
56215         (sift_states_backward, clean_state_log_if_needed):
56216         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
56217         (find_recover_state, transit_state_sb, transit_state_mb):
56218         (transit_state_bkref, build_trtable, match_ctx_clean):
56219         Likewise.
56220         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
56221         to work around an assumption that REG_MISSING is negative.
56222
56223         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
56224         (seek_collating_symbol_entry) [defined _LIBC]:
56225         (lookup_collation_sequence_value) [defined _LIBC]:
56226         (build_range_exp, build_collating_symbol) [defined _LIBC]:
56227         Use prototypes rather than old-style function definitions.
56228         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
56229         (transit_state_sb) [0]:
56230         (find_collation_sequence_value) [defined _LIBC]: Likewise.
56231
56232         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
56233         rm_eo.
56234
56235         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
56236         (optimize_subexps, lower_subexp):
56237         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
56238         since the signed shift might overflow.  Use 1u<<31 instead.
56239         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
56240         Likewise.
56241         * lib/regexec.c (check_dst_limits_calc_pos_1,
56242         check_subexp_matching_top): Likewise.
56243
56244         * lib/regcomp.c (optimize_subexps, lower_subexp):
56245         Use CHAR_BIT rather than 8, for clarity.
56246         * lib/regexec.c (check_dst_limits_calc_pos_1):
56247         (check_subexp_matching_top): Likewise.
56248         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
56249         have to worry about portability issues when shifting it left.
56250         Remove no-longer-needed test for table_size > 0.
56251         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
56252         in a word, as the resulting behavior is undefined.
56253         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
56254         in one case, a <= should have been an <, and in another case the
56255         whole test was missing.
56256         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
56257         the standard name CHAR_BIT.
56258         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
56259         this is not true on one's complement and signed-magnitude hosts.
56260
56261         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
56262         next_last_offset.
56263         (struct re_dfa_t): Remove unused member states_alloc.
56264         * lib/regcomp.c (init_dfa): Don't initialize unused members.
56265
56266 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
56267
56268         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
56269         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
56270         and large-file glibc and in 32-bit large-file Solaris.
56271
56272 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
56273
56274         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
56275         lengths fit in regoff_t; this isn't true if regoff_t is the same
56276         width as size_t.
56277         * lib/regex.c (re_search_internal): 5th arg is LAST_START
56278         (= START + RANGE) instead of RANGE.  This avoids overflow
56279         problems when regoff_t is the same width as size_t.
56280         All callers changed.
56281         (re_search_2_stub): Check for overflow when adding the
56282         sizes of the two strings.
56283         (re_search_stub): Check for overflow when adding START
56284         to RANGE; if it occurs, substitute the extreme value.
56285
56286 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
56287
56288         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
56289
56290 2005-08-31  Jim Meyering  <jim@meyering.net>
56291
56292         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
56293         a pointer-to-const.
56294         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
56295         (register_state): Likewise.
56296         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
56297         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
56298         (group_nodes_into_DFAstates): Likewise.
56299
56300 2005-08-31  Jim Meyering  <jim@meyering.net>
56301
56302         * check-module: Add a FIXME comment.
56303
56304 2005-08-31  Eric Blake  <ebb9@byu.net>
56305
56306         * modules/unistd-safer (Files): Add unistd--.h.
56307         * modules/stdio-safer (Files): Add stdio--.h.
56308
56309 2005-08-31  Derek Price  <derek@ximbiot.com>
56310
56311         * lib/getdelim.c (getdelim): Return EOF on EOF.
56312         Reported by Larry Jones <lawrence.jones@ugs.com>.
56313
56314 2005-08-31  Bruno Haible  <bruno@clisp.org>
56315
56316         Avoid unnecessary diffs in the generated lib/Makefile.am.
56317         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
56318         the generated files.
56319         (func_import): Don't set cmd.
56320
56321 2005-08-31  Bruno Haible  <bruno@clisp.org>
56322
56323         * lib/strstr.c: Include <stddef.h>, for NULL.
56324         * lib/strcasestr.c: Likewise.
56325         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
56326
56327 2005-08-31  Bruno Haible  <bruno@clisp.org>
56328
56329         * gnulib-tool: New option --macro-prefix.
56330         (func_import): Use macro_prefix.
56331         (import): Handle option --macro-prefix.
56332
56333 2005-08-31  Bruno Haible  <bruno@clisp.org>
56334
56335         * gnulib-tool (import): Rename most ac_* variables to cached_*.
56336         Also use new variables cached_lgpl, cached_libtool.
56337
56338 2005-08-31  Bruno Haible  <bruno@clisp.org>
56339
56340         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
56341         always instantiating them.
56342
56343 2005-08-31  Bruno Haible  <bruno@clisp.org>
56344
56345         * gnulib-tool (func_import): Read the previous cached settings
56346         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
56347         earlier added by gnulib but are now dropped. Warn when a gnulib file
56348         overwrites a non-gnulib file.
56349
56350 2005-08-31  Bruno Haible  <bruno@clisp.org>
56351
56352         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
56353         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
56354         projects that don't keep autogenerated files in CVS. Put into
56355         actioncmd only the specified modules, not the transitive closure.
56356
56357 2005-08-31  Bruno Haible  <bruno@clisp.org>
56358
56359         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
56360         Create directories that shall be filled.
56361         (import): Don't look for gl_* macros in configure.ac. Recurse across
56362         all directories containing a gnulib-cache.m4 files, if meaningful.
56363
56364 2005-08-31  Bruno Haible  <bruno@clisp.org>
56365
56366         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
56367         (import): Set seen_libtool when we see gl_LIBTOOL.
56368
56369 2005-08-31  Bruno Haible  <bruno@clisp.org>
56370
56371         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
56372         declaration macro definitions from generated gnulib.m4.
56373
56374 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
56375
56376         * lib/iconvme.h: Add prototype for iconv_alloc.
56377
56378 2005-08-29  Simon Josefsson  <jas@extundo.com>
56379
56380         * lib/iconvme.c: Fix errno.
56381
56382 2005-08-29  Bruno Haible  <bruno@clisp.org>
56383
56384         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
56385         that it works when the directory contains spaces.
56386
56387 2005-08-29  Bruno Haible  <bruno@clisp.org>
56388
56389         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
56390
56391 2005-08-29  Bruno Haible  <bruno@clisp.org>
56392
56393         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
56394         Emit more advice.
56395
56396 2005-08-29  Bruno Haible  <bruno@clisp.org>
56397         and Stepan Kasal  <kasal@ucw.cz>
56398
56399         * check-module: If more parameters are given, check each of them
56400         separately; add more exceptions, as noted by Jim Meyering.
56401         (check_module): New procedure.
56402         (%exempt_header): Now contains all exceptions.
56403
56404 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
56405
56406         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
56407
56408 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
56409
56410         * lib/iconvme.c: Split iconv_string into iconv_alloc.
56411
56412 2005-08-28  Bruno Haible  <bruno@clisp.org>
56413
56414         * m4/gnulib-tool.m4: New file.
56415
56416 2005-08-27  Jim Meyering  <jim@meyering.net>
56417
56418         * modules/unistd-safer (Files): Add pipe-safer.c.
56419         * modules/fcntl-safer (Files): Add creat-safer.c.
56420
56421 2005-08-27  Jim Meyering  <jim@meyering.net>
56422
56423         * m4/stdlib-safer.m4: New file.  From coreutils.
56424         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
56425         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
56426         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
56427         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
56428         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
56429
56430 2005-08-27  Jim Meyering  <jim@meyering.net>
56431
56432         * lib/fopen-safer.c: Merge minor changes from coreutils.
56433         * lib/dup-safer.c: Likewise.
56434         * lib/fd-safer.c: Likewise.
56435
56436         Merge from coreutils.
56437         * lib/stdio--.h: New file.
56438         * lib/stdlib--.h: New file.
56439         * lib/mkstemp-safer.c: New file.
56440
56441         GNU tar needs these.
56442         * lib/pipe-safer.c: New file.
56443         * lib/creat-safer.c: New file.
56444         * lib/fcntl--.h (creat): Define to creat_safer.
56445         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
56446         * lib/unistd--.h (pipe): Define to pipe_safer.
56447         * lib/unistd-safer.h: Declare pipe_safer.
56448
56449 2005-08-26  Simon Josefsson  <jas@extundo.com>
56450
56451         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
56452         Haible <bruno@clisp.org>.
56453
56454 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
56455
56456         * lib/regex_internal.h: Remove all references to
56457         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
56458         or better.
56459         (bitset_not, bitset_merge, bitset_not_merge):
56460         (bitset_mask, re_string_allocate, re_string_construct):
56461         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
56462         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
56463         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
56464         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
56465         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
56466         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
56467         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
56468         (re_acquire_state_context):
56469         Remove unnecessary forward decls.
56470         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
56471         Put __attribute at function definition,
56472         now that the function decl has been removed.
56473         * lib/regex_internal.c (re_string_peek_byte_case):
56474         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
56475         Likewise.
56476
56477 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
56478
56479         * m4/regex.m4: Add AC_PREREQ(2.50).
56480         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
56481
56482 2005-08-25  Simon Josefsson  <jas@extundo.com>
56483
56484         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
56485         __fsetlocking.
56486
56487 2005-08-25  Simon Josefsson  <jas@extundo.com>
56488
56489         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
56490         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
56491         GLIBC specific code.
56492
56493 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
56494
56495         Make regex safe for g++.  This fixes one real bug (an "err"
56496         that should have been "*err").  g++ problem reported by
56497         Sam Steingold.
56498         * lib/regex_internal.h (re_calloc): New macro, consistent with
56499         re_malloc etc.  All callers of calloc changed to use re_calloc.
56500         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
56501         not int.  All callers changed.
56502         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
56503         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
56504         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
56505         (find_recover_state): Change "err" to "*err"; this fixes what
56506         appears to be a real bug.
56507         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
56508         versus int.
56509
56510 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
56511
56512         * modules/regex (Depends-on): Add malloc, since the code
56513         assumes that !malloc(0) means failure.
56514
56515 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
56516
56517         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
56518
56519         alloca modernization/simplification for regex.
56520         * lib/regex.c: Remove portability cruft for alloca.  This no longer
56521         needs to be at the start of the file, and can be moved into
56522         regex_internal.h and simplified.
56523         * lib/regex_internal.h: Include <alloca.h>.
56524         (__libc_use_alloca) [!defined _LIBC]: New macro.
56525         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
56526         now works outside glibc.
56527
56528 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
56529
56530         * config/srclist.txt: Add glibc bugs 1241, 1245.
56531
56532 2005-08-25  Jim Meyering  <jim@meyering.net>
56533
56534         * lib/open-safer.c: Include <config.h>.
56535         Otherwise, we'd lose LARGEFILE support in any file using
56536         e.g. "fcntl--.h"
56537
56538 2005-08-25  Bruno Haible  <bruno@clisp.org>
56539
56540         * m4/minmax.m4: Require autoconf 2.52.
56541         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
56542         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
56543         alternatives of translit over the alphabet.
56544         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
56545
56546 2005-08-24  Simon Josefsson  <jas@extundo.com>
56547
56548         * tests/test-getpass.c: New file.
56549
56550 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
56551
56552         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
56553         for GNU regex features.
56554
56555 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
56556
56557         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
56558         * lib/regex.h (regerror): Likewise.
56559
56560         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
56561         requires this.  (The code never needed it.)
56562
56563         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
56564         All uses of recently-renamed identifiers changed to use the new,
56565         POSIX-compliant names.  The code will build and run just fine
56566         without these changes, but it's better to eat our own dog food
56567         and use the standard-conforming names.
56568
56569         * lib/regex.h: Fix a multitude of POSIX name space violations.
56570         These changes have an effect only for programs that define
56571         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
56572         do not change anything for programs compiled in the normal way.
56573         Also, there is no effect on the ABI.
56574
56575         (_REGEX_SOURCE): New macro.
56576         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
56577         defined and _GNU_SOURCE is not; this fixes a name space violation.
56578
56579         Rename the following macros to obey POSIX requirements.
56580         The old names are still visible as macros if _REGEX_SOURCE is defined.
56581         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
56582         RE_BACKSLASH_ESCAPE_IN_LISTS.
56583         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
56584         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
56585         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
56586         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
56587         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
56588         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
56589         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
56590         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
56591         (REG_INTERVALS): renamed from RE_INTERVALS.
56592         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
56593         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
56594         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
56595         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
56596         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
56597         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
56598         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
56599         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
56600         RE_UNMATCHED_RIGHT_PAREN_ORD.
56601         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
56602         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
56603         (REG_DEBUG): renamed from RE_DEBUG.
56604         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
56605         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
56606         unusual, since we can't clash with the POSIX REG_ICASE.
56607         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
56608         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
56609         (REG_NO_SUB): renamed from RE_NO_SUB.
56610         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
56611         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
56612         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
56613         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
56614         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
56615         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
56616         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
56617         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
56618         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
56619         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
56620         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
56621         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
56622         RE_SYNTAX_POSIX_MINIMAL_BASIC.
56623         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
56624         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
56625         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
56626         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
56627         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
56628         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
56629         (REG_FIXED): Renamed from REGS_FIXED.
56630         (REG_NREGS): Renamed from RE_NREGS.
56631
56632         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
56633         of other REG_* macros, since POSIX says the user is allowed to
56634         #undef these macros selectively.
56635
56636         (reg_errcode_t): Update comment stating what other tables need
56637         to be consistent.
56638
56639         Rename the following enum values to obey POSIX requirements.
56640         The old names are still visible as macros.
56641         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
56642         is not defined, since GNU is supposed to be a superset of POSIX as
56643         much as possible, and since we want reg_errcode_t to be a signed
56644         type for implementation consistency.
56645         (_REG_NOERROR): Renamed from REG_NOERROR.
56646         (_REG_NOMATCH): Renamed from REG_NOMATCH.
56647         (_REG_BADPAT): Renamed from REG_BADPAT.
56648         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
56649         (_REG_ECTYPE): Renamed from REG_ECTYPE.
56650         (_REG_EESCAPE): Renamed from REG_EESCAPE.
56651         (_REG_ESUBREG): Renamed from REG_ESUBREG.
56652         (_REG_EBRACK): Renamed from REG_EBRACK.
56653         (_REG_EPAREN): Renamed from REG_EPAREN.
56654         (_REG_EBRACE): Renamed from REG_EBRACE.
56655         (_REG_BADBR): Renamed from REG_BADBR.
56656         (_REG_ERANGE): Renamed from REG_ERANGE.
56657         (_REG_ESPACE): Renamed from REG_ESPACE.
56658         (_REG_BADRPT): Renamed from REG_BADRPT.
56659         (_REG_EEND): Renamed from REG_EEND.
56660         (_REG_ESIZE): Renamed from REG_ESIZE.
56661         (_REG_ERPAREN): Renamed from REG_ERPAREN.
56662         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
56663         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
56664         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
56665         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
56666
56667         (_REG_RE_NAME, _REG_RM_NAME): New macros.
56668         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
56669         changed.  But support the old name if the new one is not defined
56670         and if _REGEX_SOURCE.
56671
56672         Change the following member names in struct re_pattern_buffer.
56673         The old names are still supported if !_REGEX_SOURCE.
56674         The new names are always supported, regardless of _REGEX_SOURCE.
56675         (re_buffer): Renamed from buffer.
56676         (re_allocated): Renamed from allocated.
56677         (re_used): Renamed from used.
56678         (re_syntax): Renamed from syntax.
56679         (re_fastmap): Renamed from fastmap.
56680         (re_translate): Renamed from translate.
56681         (re_can_be_null): Renamed from can_be_null.
56682         (re_regs_allocated): Renamed from regs_allocated.
56683         (re_fastmap_accurate): Renamed from fastmap_accurate.
56684         (re_no_sub): Renamed from no_sub.
56685         (re_not_bol): Renamed from not_bol.
56686         (re_not_eol): Renamed from not_eol.
56687         (re_newline_anchor): Renamed from newline_anchor.
56688
56689         Change the following member names in struct re_registers.
56690         The old names are still supported if !_REGEX_SOURCE.
56691         The new names are always supported, regardless of _REGEX_SOURCE.
56692         (rm_num_regs): Renamed from num_regs.
56693         (rm_start): Renamed from start.
56694         (rm_end): Renamed from end.
56695
56696         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
56697         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
56698         Prepend __ to parameter names.
56699
56700         Undo yesterday's changes.
56701
56702 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
56703
56704         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
56705         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
56706         lib/regex.c.
56707
56708 2005-08-24  Jim Meyering  <jim@meyering.net>
56709
56710         Sync from coreutils.
56711         * m4/fcntl-safer.m4: New file.
56712
56713         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
56714         and object files for this module.
56715
56716 2005-08-24  Jim Meyering  <jim@meyering.net>
56717
56718         Sync from coreutils.
56719         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
56720
56721 2005-08-24  Jim Meyering  <jim@meyering.net>
56722
56723         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
56724         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
56725
56726 2005-08-24  Jim Meyering  <jim@meyering.net>
56727
56728         * modules/fcntl-safer: New module.
56729         * modules/fts (Depends-on): Add fcntl-safer.
56730         * MODULES.html.sh (File descriptor based Input/Output):
56731         Add fcntl-safer.
56732
56733 2005-08-24  Bruno Haible  <bruno@clisp.org>
56734
56735         Support for unit test modules.
56736         * modules/README: Mention tests modules.
56737         * modules/TEMPLATE-TESTS: New file.
56738         * gnulib-tool: New options --extract-tests-module, --with-tests and
56739         --tests-base (unused for the moment).
56740         (testsbase, inctests): New variables.
56741         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
56742         (func_verify_module): Exclude TEMPLATE-TESTS.
56743         (func_verify_nontests_module, func_verify_tests_module): New functions.
56744         (func_get_dependencies): Add implicit dependency for tests modules.
56745         (func_get_tests_module): New function.
56746         (func_modules_transitive_closure): When --with-tests was specified,
56747         include the unit tests as well, unless explicitly avoided.
56748         (func_emit_lib_Makefile_am): Ignore the tests modules here.
56749         (func_emit_tests_Makefile_am): New function.
56750         (func_create_testdir): When --with-tests was specified, emit a
56751         tests/ directory.
56752         * MODULES.html.sh (Future developments): Update.
56753
56754 2005-08-24  Bruno Haible  <bruno@clisp.org>
56755
56756         * modules/tls-tests: New file.
56757         * tests/test-tls.c: New file, from GNU gettext.
56758
56759 2005-08-24  Bruno Haible  <bruno@clisp.org>
56760
56761         * modules/lock-tests: New file.
56762         * tests/test-lock.c: New file, from GNU gettext.
56763
56764 2005-08-24  Bruno Haible  <bruno@clisp.org>
56765
56766         * lib/lock.h: Add multiple inclusion guard.
56767         * lib/tls.h: Add multiple inclusion guard.
56768
56769 2005-08-24  Bruno Haible  <bruno@clisp.org>
56770
56771         * gnulib-tool: Add support for the --aux-dir option to
56772         --create-testdir, --create-megatestdir, --test, --megatest.
56773         (func_create_testdir, func_create_megatestdir): Optionally emit a
56774         AC_CONFIG_AUX_DIR directive.
56775         (create-testdir, create-megatestdir, test, megatest): Provide a
56776         default value for $auxdir.
56777
56778 2005-08-24  Bruno Haible  <bruno@clisp.org>
56779
56780         * gnulib-tool (import): Use compound statement instead of subshell
56781         where possible.
56782
56783 2005-08-24  Bruno Haible  <bruno@clisp.org>
56784
56785         * gnulib-tool (import): Change --aux-dir default to "build-aux".
56786
56787 2005-08-24  Bruno Haible  <bruno@clisp.org>
56788
56789         * gnulib-tool (func_version): Update.
56790
56791 2005-08-24  Bruno Haible  <bruno@clisp.org>
56792
56793         * gnulib-tool (func_import, func_create_testdir,
56794         func_create_megatestdir): Quote all autoconf macro arguments.
56795
56796 2005-08-24  Bruno Haible  <bruno@clisp.org>
56797
56798         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
56799         option --force, because --force causes the aclocal.m4 of each
56800         subdirectory to be newer than the corresponding config.h.in.
56801
56802 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
56803
56804         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
56805         All contents moved to gl_REGEX.
56806         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
56807         assume that it does.
56808
56809 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
56810
56811         * lib/regex.h (REG_NOSYS)
56812         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
56813         Define, since POSIX requires it as of 2001.
56814         (_REG_ENOSYS)
56815         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
56816         New private symbol, used to keep the enum signed in all cases.
56817         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
56818         Youngman in
56819         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
56820
56821         * lib/regex_internal.c (re_string_skip_chars, register_state):
56822         (calc_state_hash):
56823         Remove forward decls; no longer needed now that we use prototypes.
56824         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
56825         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
56826         (clean_state_log_if_needed): Likewise.
56827
56828 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
56829
56830         * config/srclist.txt: Add glibc bugs 1231-1233.
56831
56832 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
56833
56834         Fix problems reported by Sam Steingold in
56835         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
56836         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
56837         assumed that reg_errcode_t is a signed type, which is not
56838         necessarily true if _XOPEN_SOURCE is not defined.
56839         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
56840         since some compilers warn about it otherwise.
56841
56842 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
56843
56844         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
56845         (init_word_char, create_initial_state, duplicate_node_closure):
56846         (fetch_token, peek_token_bracket, build_range_exp):
56847         (build_collating_symbol): Remove forward decls; no longer needed
56848         now that we use prototypes.
56849
56850         * lib/regcomp.c:
56851         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
56852         (re_compile_fastmap_iter, regcomp, regerror, regfree):
56853         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
56854         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
56855         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
56856         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
56857         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
56858         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
56859         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
56860         (build_range_exp, build_collating_symbol, parse_bracket_exp):
56861         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
56862         (build_charclass, build_charclass_op, fetch_number, create_tree):
56863         (create_token_tree, mark_opt_subexp, duplicate_tree):
56864         Use prototypes rather than old-style definitions.
56865
56866         * lib/regex_internal.c:
56867         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
56868         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
56869         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
56870         (re_string_reconstruct, re_string_peek_byte_case):
56871         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
56872         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
56873         (re_node_set_init_copy, re_node_set_add_intersect):
56874         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
56875         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
56876         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
56877         (re_acquire_state, re_acquire_state_context, register_state):
56878         (create_ci_newstate, create_cd_newstate, free_state):
56879         Likewise.
56880         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
56881         re_search_2):
56882         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
56883         (re_search_internal, prune_impossible_nodes):
56884         (acquire_init_state_context, check_matching, static):
56885         (check_halt_node_context, check_halt_state_context, proceed_next_node):
56886         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
56887         (update_regs, sift_states_backward, build_sifted_states):
56888         (clean_state_log_if_needed, merge_state_array):
56889         (update_cur_sifted_state, add_epsilon_src_nodes):
56890         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
56891         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
56892         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
56893         (find_recover_state, check_subexp_matching_top, transit_state_mb):
56894         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
56895         (check_arrival, check_arrival_add_next_nodes):
56896         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
56897         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
56898         (check_node_accept_bytes, check_node_accept, extend_buffers):
56899         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
56900         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
56901         (sift_ctx_init):
56902         Likewise.
56903
56904         * lib/regex_internal.h:
56905         (re_string_allocate, re_string_construct, re_string_reconstruct):
56906         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
56907         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
56908         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
56909         (re_string_context_at, re_string_peek_byte_case):
56910         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
56911         is defined, since we now use prototypes always.
56912
56913         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
56914         C89 or better.  All uses removed.
56915
56916 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
56917
56918         * config/srclist.txt: Add glibc bugs 1220-1227.
56919
56920 2005-08-20  Jim Meyering  <jim@meyering.net>
56921
56922         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
56923         of unused local, dfa.
56924
56925 2005-08-20  Bruno Haible  <bruno@clisp.org>
56926
56927         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
56928
56929 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
56930
56931         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
56932         (re_node_set_insert_last, re_dfa_add_node):
56933         Rename local variables to avoid GCC shadowing warnings.
56934
56935 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
56936
56937         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
56938         [defined lint]: Suppress bogus uninitialized-variable warnings.
56939
56940         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
56941         and let the caller return REG_ESPACE if out of space.  This
56942         removes an uninitialied-variable warning with GCC 4.0.1, and also
56943         avoids taking the address of a local variable.  All callers
56944         changed.
56945
56946 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
56947
56948         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
56949         $LIBCSRC/posix/regexec.c.
56950         Add glibc bug 1217 for regcomp.c.
56951
56952 2005-08-19  Jim Meyering  <jim@meyering.net>
56953
56954         * lib/regexec.c (proceed_next_node): Redo local variables to
56955         avoid GCC shadowing warnings.
56956
56957 2005-08-18  Bruno Haible  <bruno@clisp.org>
56958
56959         * lib/strstr.c (strstr): Fix return value in multibyte case.
56960         * lib/strcasestr.c (strcasestr): Likewise.
56961
56962 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
56963
56964         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
56965
56966 2005-08-17  Jim Meyering  <jim@meyering.net>
56967
56968         Make the %s format (seconds since the epoch) work for a negative
56969         number and when used with a zero-padded field width, e.g. %015s.
56970
56971         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
56972         label so that it precedes the code to set `digits'.  Otherwise,
56973         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
56974         print `00-22'.  Now, it prints `-0022', as it should.
56975
56976 2005-08-17  Bruno Haible  <bruno@clisp.org>
56977
56978         * modules/strstr (Files): Add m4/mbrtowc.m4.
56979         (Depends-on): Add mbuiter.
56980
56981 2005-08-17  Bruno Haible  <bruno@clisp.org>
56982
56983         * modules/strcasestr: New file.
56984         * MODULES.html.sh (String handling, based on ANSI C 89): Add
56985         strcasestr.
56986
56987 2005-08-17  Bruno Haible  <bruno@clisp.org>
56988
56989         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
56990
56991 2005-08-17  Bruno Haible  <bruno@clisp.org>
56992
56993         * modules/mbuiter: New file.
56994         * MODULES.html.sh (Extended multibyte and wide character utilities):
56995         Add mbuiter.
56996
56997 2005-08-17  Bruno Haible  <bruno@clisp.org>
56998
56999         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
57000         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
57001
57002 2005-08-17  Bruno Haible  <bruno@clisp.org>
57003
57004         * m4/strcasestr.m4: New file.
57005
57006 2005-08-17  Bruno Haible  <bruno@clisp.org>
57007
57008         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
57009         * lib/strstr.c: Completely rewritten, with multibyte locale support.
57010
57011 2005-08-17  Bruno Haible  <bruno@clisp.org>
57012
57013         * lib/strcasestr.h: New file.
57014         * lib/strcasestr.c: New file.
57015
57016 2005-08-17  Bruno Haible  <bruno@clisp.org>
57017
57018         * lib/strcasecmp.c: Use mbuiter.h.
57019
57020 2005-08-17  Bruno Haible  <bruno@clisp.org>
57021
57022         * lib/mbuiter.h: New file.
57023
57024 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
57025
57026         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
57027         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
57028         and gl_GETOPT are both invoked via different paths (as happens
57029         with GNU tar CVS because it uses both argp and getopt), the former
57030         wins.
57031
57032 2005-08-16  Bruno Haible  <bruno@clisp.org>
57033
57034         * modules/tls: New file.
57035         * MODULES.html.sh (Multithreading): Add tls.
57036
57037 2005-08-16  Bruno Haible  <bruno@clisp.org>
57038
57039         * modules/strnlen1: New file.
57040         * MODULES.html.sh (String handling): Add strnlen1.
57041
57042 2005-08-16  Bruno Haible  <bruno@clisp.org>
57043
57044         * modules/strcase (Files): Add m4/mbrtowc.m4.
57045         (Depends-on): Add strnlen1, mbchar.
57046
57047 2005-08-16  Bruno Haible  <bruno@clisp.org>
57048
57049         * modules/mbiter: New file.
57050         * MODULES.html.sh (Extended multibyte and wide character utilities):
57051         Add mbiter.
57052
57053 2005-08-16  Bruno Haible  <bruno@clisp.org>
57054
57055         * modules/mbfile: New file.
57056         * MODULES.html.sh (Extended multibyte and wide character utilities):
57057         Add mbfile.
57058
57059 2005-08-16  Bruno Haible  <bruno@clisp.org>
57060
57061         * modules/mbchar: New file.
57062         * MODULES.html.sh (Extended multibyte and wide character utilities):
57063         New section.
57064
57065 2005-08-16  Bruno Haible  <bruno@clisp.org>
57066
57067         * m4/tls.m4: New file, from GNU gettext.
57068
57069 2005-08-16  Bruno Haible  <bruno@clisp.org>
57070
57071         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
57072         always.
57073         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
57074
57075 2005-08-16  Bruno Haible  <bruno@clisp.org>
57076
57077         * m4/mbiter.m4: New file.
57078
57079 2005-08-16  Bruno Haible  <bruno@clisp.org>
57080
57081         * m4/mbfile.m4: New file.
57082
57083 2005-08-16  Bruno Haible  <bruno@clisp.org>
57084
57085         * m4/mbchar.m4: New file.
57086
57087 2005-08-16  Bruno Haible  <bruno@clisp.org>
57088
57089         * lib/tls.h: New file, from GNU gettext.
57090         * lib/tls.c: New file, from GNU gettext.
57091
57092 2005-08-16  Bruno Haible  <bruno@clisp.org>
57093
57094         * lib/strnlen1.h: New file.
57095         * lib/strnlen1.c: New file.
57096
57097 2005-08-16  Bruno Haible  <bruno@clisp.org>
57098
57099         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
57100         (mbi_init): Update.
57101         (mbi_avail, mbi_advance): Let the iteration end before the terminating
57102         NUL byte, not after it.
57103
57104 2005-08-16  Bruno Haible  <bruno@clisp.org>
57105
57106         * lib/strcase.h (strcasecmp): Add note in comments.
57107         * lib/strncasecmp.c: Use code from strcasecmp.c.
57108         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
57109         (strcasecmp): Work correctly in multibyte locales.
57110
57111 2005-08-16  Bruno Haible  <bruno@clisp.org>
57112
57113         * lib/mbiter.h: New file.
57114
57115 2005-08-16  Bruno Haible  <bruno@clisp.org>
57116
57117         * lib/mbfile.h: New file.
57118
57119 2005-08-16  Bruno Haible  <bruno@clisp.org>
57120
57121         * lib/mbchar.h: New file.
57122         * lib/mbchar.c: New file.
57123
57124 2005-08-16  Bruno Haible  <bruno@clisp.org>
57125
57126         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
57127         the valid ones. Makes the comparison operations transitive:
57128         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
57129         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
57130
57131 2005-08-15  Simon Josefsson  <jas@extundo.com>
57132
57133         * modules/ssize_t (License): Change to 'unlimited'.
57134
57135         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
57136
57137 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
57138
57139         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
57140         Add comments for each pending glibc patch.
57141
57142 2005-08-15  Bruno Haible  <bruno@clisp.org>
57143
57144         * lib/regex.h (__restrict_arr): Don't define to __restrict if
57145         __cplusplus is defined.
57146
57147 2005-08-14  Jim Meyering  <jim@meyering.net>
57148
57149         Sync from coreutils.
57150
57151         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
57152         Use the hash-table-based cycle-detection code not just when
57153         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
57154         Reported by James Youngman in
57155         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
57156         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
57157         FTS_TIGHT_CYCLE_CHECK.
57158         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
57159         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
57160         once again.
57161         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
57162         * lib/fts.c (fd_safer): Remove decl.
57163         Include fcntl--.h rather than unistd-safer.h
57164         (fts_safe_changedir): Don't call fd_safer; no longer needed
57165         now that we include fcntl--.h.
57166
57167 2005-08-12  Simon Josefsson  <jas@extundo.com>
57168
57169         * modules/getndelim2: Use ssize_t module.
57170         * modules/getnline: Likewise.
57171         * modules/safe-read: Likewise.
57172         * modules/xreadlink: Likewise.
57173
57174         * modules/ssize_t: New file.
57175
57176 2005-08-12  Simon Josefsson  <jas@extundo.com>
57177
57178         * m4/readline.m4: Look for termcap, curses or ncurses if required.
57179
57180 2005-08-12  Simon Josefsson  <jas@extundo.com>
57181
57182         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
57183         ssize_t.
57184
57185 2005-08-12  Simon Josefsson  <jas@extundo.com>
57186
57187         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
57188         readline, getdelim and check_version.
57189         (Support for systems lacking ISO C 99: Sizes of integer types):
57190         Add size_max.
57191
57192 2005-08-12  Bruno Haible  <bruno@clisp.org>
57193
57194         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
57195
57196 2005-08-11  Simon Josefsson  <jas@extundo.com>
57197
57198         * modules/readline: New file.
57199
57200         * modules/strnlen (Files): Add strnlen.h.
57201
57202 2005-08-11  Simon Josefsson  <jas@extundo.com>
57203
57204         * m4/readline.m4: New file.
57205
57206 2005-08-11  Simon Josefsson  <jas@extundo.com>
57207
57208         * lib/readline.h, readline.c: New file.
57209
57210 2005-08-11  Simon Josefsson  <jas@extundo.com>
57211
57212         * doc/gnulib.texi (Initial import, Finishing touches): Mention
57213         gl_AVOID.
57214
57215 2005-08-11  Bruno Haible  <bruno@clisp.org>
57216
57217         * lib/strnlen.h (strnlen): Change parameter name to match comment.
57218
57219 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
57220
57221         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
57222
57223 2005-08-10  Simon Josefsson  <jas@extundo.com>
57224
57225         * tests/test-iconvme.c: New file.
57226
57227 2005-08-10  Simon Josefsson  <jas@extundo.com>
57228
57229         * m4/strnlen.m4: New file.
57230
57231         * m4/strndup.m4: Don't check for strnlen declaration, done in
57232         strnlen.m4.
57233
57234 2005-08-10  Simon Josefsson  <jas@extundo.com>
57235
57236         * lib/strndup.c: Use strnlen.h.
57237
57238         * lib/strnlen.h: New file.
57239
57240 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
57241
57242         * README: Typos.
57243
57244 2005-08-02  Simon Josefsson  <jas@extundo.com>
57245
57246         * modules/readline: New file.
57247
57248 2005-08-02  Simon Josefsson  <jas@extundo.com>
57249
57250         * modules/getdelim: New file.
57251
57252         * modules/getline: Rewrite, don't use getndelim2.
57253
57254 2005-08-02  Simon Josefsson  <jas@extundo.com>
57255
57256         * m4/getline.m4: Separate out getdelim stuff into separate module.
57257
57258         * m4/getdelim.m4: New file.
57259
57260 2005-08-02  Simon Josefsson  <jas@extundo.com>
57261
57262         * lib/getline.h, getline.c: Rewrite.
57263
57264         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
57265
57266 2005-07-31  Bruno Haible  <bruno@clisp.org>
57267
57268         * lib/lock.h (gl_lock_initializer): New macro.
57269         (gl_lock_define_initialized): Use it.
57270         (gl_rwlock_initializer): New macro.
57271         (gl_rwlock_define_initialized): Use it.
57272         (gl_recursive_lock_initializer): New macro.
57273         (gl_recursive_lock_define_initialized): Use it.
57274
57275 2005-07-30  Karl Berry  <karl@gnu.org>
57276
57277         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
57278         Report from Ben Pfaff, regarding getopt.
57279
57280 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
57281
57282         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
57283         normal way.
57284         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
57285         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
57286         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
57287         (gl_GETOPT): Use the new macros.  Most of the implementation
57288         is moved to the new macros.  This is for programs like Emacs
57289         that don't want all the functionality of gl_GETOPT.
57290
57291 2005-07-26  Bruno Haible  <bruno@clisp.org>
57292
57293         * m4/lock.m4: Update from GNU gettext.
57294
57295 2005-07-26  Bruno Haible  <bruno@clisp.org>
57296
57297         * lib/lock.h: Update from GNU gettext.
57298         * lib/lock.c: Update from GNU gettext.
57299
57300 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
57301
57302         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
57303         obsolescent AC_TRY_RUN.  Include the default includes files, for
57304         'exit'.
57305
57306 2005-07-24  Bruno Haible  <bruno@clisp.org>
57307
57308         * modules/visibility: New file.
57309         * MODULES.html.sh (Misc): Add visibility.
57310
57311 2005-07-24  Bruno Haible  <bruno@clisp.org>
57312
57313         * m4/visibility.m4: New file.
57314
57315 2005-07-24  Bruno Haible  <bruno@clisp.org>
57316
57317         * doc/visibility.texi: New file.
57318
57319 2005-07-22  Bruno Haible  <bruno@clisp.org>
57320
57321         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
57322         $(ALLOCA_H), redundant through BUILT_SOURCES.
57323         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
57324         redundant through BUILT_SOURCES.
57325         * modules/byteswap (Makefile.am): Remove explicit dependency on
57326         $(BYTESWAP_H), redundant through BUILT_SOURCES.
57327         * modules/fnmatch (Makefile.am): Remove explicit dependency on
57328         $(FNMATCH_H), redundant through BUILT_SOURCES.
57329         * modules/getopt (Makefile.am): Remove explicit dependency on
57330         $(GETOPT_H), redundant through BUILT_SOURCES.
57331         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
57332         redundant through BUILT_SOURCES.
57333         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
57334         redundant through BUILT_SOURCES.
57335         * modules/stdbool (Makefile.am): Remove explicit dependency on
57336         $(STDBOOL_H), redundant through BUILT_SOURCES.
57337         * modules/stdint (Makefile.am): Remove explicit dependency on
57338         $(STDINT_H), redundant through BUILT_SOURCES.
57339         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
57340         Remove explicit dependency on $(SYSEXITS_H).
57341         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
57342
57343 2005-07-18  Simon Josefsson  <jas@extundo.com>
57344
57345         * lib/check-version.c (check_version): Accept identical versions too.
57346
57347 2005-07-18  Bruno Haible  <bruno@clisp.org>
57348
57349         * modules/lock: New file.
57350         * MODULES.html.sh (Multithreading): New section.
57351
57352 2005-07-18  Bruno Haible  <bruno@clisp.org>
57353
57354         * m4/lock.m4: New file, from GNU gettext.
57355
57356 2005-07-18  Bruno Haible  <bruno@clisp.org>
57357
57358         * lib/lock.h: New file, from GNU gettext.
57359         * lib/lock.c: New file, from GNU gettext.
57360
57361 2005-07-18  Bruno Haible  <bruno@clisp.org>
57362
57363         * lib/lock.h (gl_once_t): New type.
57364         (gl_once_define, gl_once): New macros.
57365         * lib/lock.c (fresh_once): New variable.
57366         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
57367         functions.
57368
57369 2005-07-16  Simon Josefsson  <jas@extundo.com>
57370
57371         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
57372         workaround, suggested by Bruno.
57373
57374 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
57375
57376         * modules/xalloc (Depends-on): Add xalloc-die.
57377         * modules/xvasprintf (Depends-on): Add xalloc-die.
57378
57379 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
57380
57381         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
57382         with a minor change.
57383
57384 2005-07-15  Bruno Haible  <bruno@clisp.org>
57385
57386         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
57387         When using lib/poll.c, define poll as rpl_poll.
57388
57389 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
57390
57391         * modules/argp (Depends-on): Remove unlocked-io.
57392
57393 2005-07-14  Derek Price  <derek@ximbiot.com>
57394
57395         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
57396         for glob symlink bug.
57397
57398 2005-07-14  Bruno Haible  <bruno@clisp.org>
57399
57400         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
57401         Instead, test for *_unlocked function declarations directly.
57402
57403 2005-07-11  Simon Josefsson  <jas@extundo.com>
57404
57405         * modules/size_max: New file.
57406
57407         * modules/xsize: Depend on size_max module for size_max.m4.
57408
57409 2005-07-11  Simon Josefsson  <jas@extundo.com>
57410
57411         * lib/size_max.h: New file.
57412
57413 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
57414
57415         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
57416         copyright symbol and the year.
57417         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
57418         (version_etc_va): Use parameterized copyright notice.
57419         Reword to conform to the current GNU coding standards.
57420
57421 2005-07-11  Karl Berry  <karl@gnu.org>
57422
57423         * doc/gnulib.texi (Quoting): new node.
57424         (Initial import): more info, from Patrice.
57425
57426 2005-07-11  Bruno Haible  <bruno@clisp.org>
57427
57428         * gnulib-tool (func_usage): Document option --avoid.
57429         (Command line options): Handle --avoid.
57430         (func_acceptable): New function.
57431         (func_modules_transitive_closure): Use it.
57432
57433 2005-07-11  Bruno Haible  <bruno@clisp.org>
57434
57435         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
57436         Reported by Jim Meyering.
57437
57438 2005-07-10  Bruno Haible  <bruno@clisp.org>
57439
57440         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
57441         Needed when size_t is smaller than 'unsigned int'.
57442         Reported by Paul Eggert.
57443
57444 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
57445
57446         * modules/argp (Depends-on): Add unlocked-io
57447
57448 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
57449
57450         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
57451         block of defines.
57452
57453 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
57454
57455         * config/srclist.txt: Comment out regcomp.c, since we have a porting
57456         fix now.
57457
57458 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
57459         and Paul Eggert  <eggert@cs.ucla.edu>
57460
57461         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
57462         in wint_t, not wchar_t.  Remove now-unnecessary cast.
57463
57464 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
57465
57466         * modules/regex (Files): Add lib/regex_internal.c,
57467         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
57468         (Depends-on): Add extensions.
57469         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
57470
57471 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
57472
57473         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
57474         pathconf.
57475         * m4/same.m4 (gl_SAME): Likewise.
57476         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
57477
57478         * m4/regex.m4: Adjust to new libc regex implementation.
57479         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
57480         all the .c and .h parts of (the new) regex.
57481         Quote the m4 stuff better.
57482         Check for RE_ICASE bug of old gnulib.
57483         Check for REG_STARTEND of recent libc.
57484         Rename local variables from jm_* to gl_*.
57485         Quote operand of "test -f".
57486         Say "recent enough" version of libc, not "version 2".
57487         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
57488         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
57489         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
57490         Remove check for btowc, isascii.
57491         Require AM_LANGINFO_CODESET.
57492
57493 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
57494
57495         * lib/regex.c, regex.h: Sync from libc.
57496         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
57497         * lib/regexec.c:
57498         New files, synced from libc, except that regex_internal.h
57499         currently has a small porting fix.
57500
57501 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
57502
57503         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
57504         regex_internal.c, regexec.c.
57505         Add regex_internal.h too, but as a comment, since the libc version
57506         is currently broken in gnulib mode.
57507
57508 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
57509
57510         Support programs like Emacs that use gnulib but not gettext.
57511         * MODULES.html.sh (Internationalization functions): Add gettext-h.
57512         * modules/gettext-h: New file.
57513         * modules/gettext (Files): Remove lib/gettext.h.
57514         (Depends-on): Add gettext-h.
57515         (Makefile.am): Remove lib_SOURCES.
57516         * modules/argmatch, modules/c-stack, modules/closeout:
57517         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
57518         * modules/execute, modules/file-type, modules/getaddrinfo:
57519         * modules/getopt, modules/human, modules/javacomp:
57520         * modules/javaexec, modules/mkdir-p, modules/obstack:
57521         * modules/openat, modules/pagealign_alloc, modules/pipe:
57522         * modules/quotearg, modules/regex, modules/rpmatch:
57523         * modules/unicodeio, modules/userspec, modules/version-etc:
57524         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
57525         * modules/xsetenv:
57526         Depend on gettext-h, not gettext.
57527
57528 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
57529
57530         * gnulib-tool (func_import): Add support for 'public domain' license.
57531         * modules/alloca, modules/atexit, modules/memmove:
57532         Now public domain, not GPL.
57533         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
57534         * modules/realloc, modules/strerror, modules/strtod:
57535         Now LGPL, not GPL.
57536
57537 2005-07-05  Bruno Haible  <bruno@clisp.org>
57538
57539         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
57540         autoconf CVS. Needed for mingw.
57541
57542 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
57543
57544         Remove the dependency of the strftime module on the tzset module.
57545         * modules/strftime (Depends-on): Remove dependency on tzset.
57546
57547 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
57548
57549         Remove the dependency of the strftime module on the tzset module.
57550         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
57551         gl_FUNC_TZSET_CLOBBER.
57552
57553 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
57554
57555         Remove the dependency of the strftime module on the tzset module.
57556         * lib/strftime.c (my_strftime)
57557         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
57558         Copy the input structure, to work around some of the bug with
57559         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
57560         Solaris releases, you should also use the tzset module, but we won't
57561         require it as a dependency any more since we don't want LGPLed code
57562         to depend on GPLed code.
57563
57564 2005-07-02  Jim Meyering  <jim@meyering.net>
57565
57566         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
57567         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
57568         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
57569         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
57570
57571 2005-07-02  Jim Meyering  <jim@meyering.net>
57572
57573         * lib/backupfile.c (backup_args): Change a `0' to NULL.
57574
57575 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
57576
57577         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
57578         declares only 'struct timespec;' (!).
57579
57580 2005-07-01  Jim Meyering  <jim@meyering.net>
57581
57582         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
57583         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
57584         * lib/save-cwd.c, tempname.c:
57585         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
57586         and don't include <sys/file.h>).
57587
57588 2005-06-29  Jim Meyering  <jim@meyering.net>
57589
57590         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
57591         type name.  Use the variable name instead.
57592         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
57593         Likewise.
57594
57595 2005-06-28  Simon Josefsson  <jas@extundo.com>
57596
57597         * modules/check-version (Files): Add check-version.m4.
57598
57599 2005-06-28  Simon Josefsson  <jas@extundo.com>
57600
57601         * m4/check-version.m4: New file, suggested by Jim Meyering
57602         <jim@meyering.net>.
57603
57604 2005-06-28  Simon Josefsson  <jas@extundo.com>
57605
57606         * lib/check-version.h, lib/check-version.c: New files.
57607
57608 2005-06-28  Simon Josefsson  <jas@extundo.com>
57609
57610         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
57611         collision with global variable.  Better indentation.  Don't
57612         increment buffer pointer beyond buffer end.  Based on comments
57613         from Paul Eggert <eggert@cs.ucla.edu>.
57614
57615         * lib/base64.h: Indent.
57616
57617 2005-06-28  Simon Josefsson  <jas@extundo.com>
57618
57619         * doc/gnulib.texi (Library version handling): New section.
57620
57621 2005-06-28  Jim Meyering  <jim@meyering.net>
57622
57623         * check-module (find_included_lib_files): Hard-code another
57624         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
57625         but modules/fts-lgpl (correctly) does not list those files.
57626
57627         * modules/canonicalize (Files): Add lib/pathmax.h.
57628
57629 2005-06-25  Simon Josefsson  <jas@extundo.com>
57630
57631         * modules/check-version: New file.
57632
57633 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
57634
57635         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
57636         initializer of struct addrinfo, as an indication that we don't
57637         care how many members the structure has.
57638
57639 2005-06-24  Derek Price  <derek@ximbiot.com>
57640         and Bruno Haible  <bruno@clisp.org>
57641
57642         Remove stat module & update lstat.
57643         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
57644         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57645         * m4/stat.m4: Remove this file.
57646
57647 2005-06-24  Derek Price  <derek@ximbiot.com>
57648         and Bruno Haible  <bruno@clisp.org>
57649
57650         Remove stat module & update lstat.
57651         * lib/stat.c: Remove this file...
57652         (slash_aware_lstat): ...moving this content and its support...
57653         * lib/lstat.c (rpl_lstat): ...into here.
57654         * lib/lstat.h: New file.
57655
57656 2005-06-24  Derek Price  <derek@ximbiot.com>
57657         and Bruno Haible  <bruno@clisp.org>
57658
57659         Remove stat module & update lstat.
57660         * config/srclist.txt (libc sources): Remove stat.
57661
57662 2005-06-24  Derek Price  <derek@ximbiot.com>
57663         and Bruno Haible  <bruno@clisp.org>
57664
57665         Remove stat module & update lstat.
57666         * MODULES.html.sh (stat): Remove.
57667         * MODULES.html: Regenerated.
57668         * modules/lstat (Description): Correct function name.
57669         (Files): Add "lstat.h".
57670         (Depends-on): Remove stat, add xalloc, stat-macros.
57671         * modules/stat: Remove this file.
57672         (Include): Add "lstat.h", remove <sys/stat.h>.
57673
57674 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
57675
57676         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
57677         (ranged_convert): Don't save conversion in a temporary struct.
57678         This causes a warning with GCC 4.0.0, and anyway in the typical
57679         case it's not worth the extra 100 bytes or so of code.
57680         (ranged_convert, __mktime_internal): When calling a function via a
57681         pointer P, use P () rather than (*P) (), as we now assume C89 or
57682         better.
57683
57684 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
57685
57686         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
57687         "who -r" failed to give output.  Problem reported by Tim Waugh.
57688
57689         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
57690         (xcalloc): Use it to avoid needless tests.
57691         Problem reported by Jim Meyering.
57692
57693 2005-06-20  Derek Price  <derek@ximbiot.com>
57694
57695         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
57696         unnecessary for Autoconfs > 2.59c.
57697
57698 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
57699
57700         * lib/argp.h (__option_is_short): Check upper limit of
57701         __key. Isprint() requires its argument to have the value
57702         of an unsigned char or EOF.
57703
57704 2005-06-16  Jim Meyering  <jim@meyering.net>
57705
57706         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
57707         when either N or S is zero.
57708
57709 2005-06-16  Derek Price  <derek@ximbiot.com>
57710
57711         * m4/bison.m4: Declare YACC & YFLAGS precious.
57712
57713 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
57714
57715         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
57716         multibyte string or pattern, fall back on unibyte matching.
57717         Problem reported by James Youngman.
57718
57719 2005-06-08  Bruno Haible  <bruno@clisp.org>
57720
57721         * modules/csharpcomp: New file.
57722         * MODULES.html.sh (C#): Add csharpcomp.
57723
57724 2005-06-08  Bruno Haible  <bruno@clisp.org>
57725
57726         * m4/csharpcomp.m4: New file, from GNU gettext.
57727
57728 2005-06-08  Bruno Haible  <bruno@clisp.org>
57729
57730         * lib/csharpcomp.h: New file, from GNU gettext.
57731         * lib/csharpcomp.c: New file, from GNU gettext.
57732         * lib/csharpcomp.sh.in: New file, from GNU gettext.
57733
57734 2005-06-08  Bruno Haible  <bruno@clisp.org>
57735
57736         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
57737         warning on mingw.
57738
57739 2005-06-07  Derek Price  <derek@ximbiot.com>
57740
57741         Sync from CVS.
57742         * lib/glob_.h: Indent nested #ifdef.
57743
57744 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
57745
57746         Sync from coreutils.
57747         Use "file name" when talking about file names, instead of "filename"
57748         or "path", as per the GNU coding standards.
57749         * lib/mkdir-p.c: Renamed from makepath.c.
57750         (make_dir_parents): Renamed from make_path.  All callers changed.
57751         * lib/mkdir-p.h: Likewise.  All includers changed.
57752         * lib/filenamecat.c: Renamed from path-concat.c.
57753         (file_name_concat): Renamed from path_concat.  All callers changed.
57754         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
57755         * lib/filenamecat.h: Likewise.  All includers changed.
57756         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
57757         in comments or local variable names.
57758         * lib/basename.c: Likewise.
57759         * lib/canonicalize.c, canonicalize.h: Likewise.
57760         * lib/dirname.c, dirname.h: Likewise.
57761         * lib/euidaccess.c: Likewise.
57762         * lib/exclude.c: Likewise
57763         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
57764         * lib/fsusage.c, fsuage.h: Likewise.
57765         * lib/fts.c, fts_.h: Likewise.
57766         * lib/getcwd.c: Likewise.
57767         * lib/getloadavg.c: Likewise.
57768         * lib/mkstemp.c: Likewise.
57769         * lib/mountlist.c, mountlist.h: Likewise.
57770         * lib/openat.c, openat.h: Likewise.
57771         * lib/readlink-stub.c: Likewise.
57772         * lib/readutmp.c, readutmp.h: Likewise.
57773         * lib/rename.c: Likewise.
57774         * lib/rmdir.c: Likewise.
57775         * lib/same.c: Likewise.
57776         * lib/savedir.c: Likewise.
57777         * lib/stripslash.c: Likewise.
57778         * lib/tempname.c: Likewise.
57779         * lib/xreadlink.c: Likewise.
57780         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
57781         All uses changed.
57782         * lib/exclude.h: Likewise.
57783
57784         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
57785         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
57786         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
57787         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
57788         * lib/pathmax.h: Include <limits.h> unconditionally, since other
57789         files have been getting away with it for years (MORE/BSD 4.3
57790         is extinct now).
57791         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
57792         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
57793
57794         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
57795         Define to 256, not 255, as per modern POSIX.
57796
57797 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
57798
57799         Sync from coreutils.
57800         Use "file name" when talking about file names, instead of "filename"
57801         or "path", as per the GNU coding standards.
57802         * MODULES.html.sh: mkdir-p renamed from makepath.
57803         filenamecat renamed from path-concat.
57804         * modules/filenamecat: Renamed from modules/path-concat.
57805         (Files): filenamecat.h and filenamecat.c renamed from
57806         path-concat.h and path-concat.c.
57807         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
57808         (Include): filenamecat.h, not path-concat.h.
57809         * modules/mkdir-p: Renamed from modules/makepath.
57810         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
57811         makepath.c.
57812         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
57813         (Include): mkdir-p.h, not makepath.h.
57814
57815 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
57816
57817         Sync from coreutils.
57818         * m4/mkdir-p.m4: Renamed from makepath.m4.
57819         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
57820         Rename files from makepath.c to mkdir-p.c, and from
57821         makepath.h to mkdir-p.h.
57822         * m4/filenamecat.m4: Renamed from path-concat.m4.
57823         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
57824         Rename files from path-concat.c to filenamecat.c,
57825         and from path-concat.h to filenamecat.h.
57826         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
57827         "file name" in local variables or comments.
57828         * m4/rename.m4: Likewise.
57829
57830 2005-06-01  Bruno Haible  <bruno@clisp.org>
57831
57832         * modules/csharpexec: New file.
57833         * MODULES.html.sh (C#): New section.
57834
57835 2005-06-01  Bruno Haible  <bruno@clisp.org>
57836
57837         * m4/csharp.m4: New file, from GNU gettext.
57838         * m4/csharpexec.m4: New file, from GNU gettext.
57839
57840 2005-06-01  Bruno Haible  <bruno@clisp.org>
57841
57842         * lib/csharpexec.h: New file, from GNU gettext.
57843         * lib/csharpexec.c: New file, from GNU gettext.
57844         * lib/csharpexec.sh.in: New file, from GNU gettext.
57845
57846 2005-05-31  Derek Price  <derek@ximbiot.com>
57847             Paul Eggert  <eggert@cs.ucla.edu>
57848
57849         Sync from cvs.
57850         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
57851
57852 2005-05-31  Derek Price  <derek@ximbiot.com>
57853             Paul Eggert  <eggert@cs.ucla.edu>
57854
57855         Sync from cvs.
57856         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
57857
57858 2005-05-29  Derek Price  <derek@ximbiot.com>
57859
57860         * config/srclist.txt (glob_.h, glob.c): Add these files.
57861
57862 2005-05-29  Derek Price  <derek@ximbiot.com>
57863
57864         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
57865         * modules/glob: New file.
57866         * modules/getlogin_r: Add link to POSIX spec in description.
57867
57868 2005-05-29  Derek Price  <derek@ximbiot.com>
57869             Paul Eggert  <eggert@cs.ucla.edu>
57870
57871         * m4/glob.m4: New file.
57872
57873 2005-05-29  Derek Price  <derek@ximbiot.com>
57874             Paul Eggert  <eggert@cs.ucla.edu>
57875
57876         * lib/glob_.h, lib/glob.c: New files.
57877
57878 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
57879
57880         * modules/fts (Files): Remove m4/inttypes-pri.m4.
57881         * modules/fts-lgpl (Depends-on): Remove gettext.
57882
57883 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
57884
57885         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
57886         and don't require gt_INTTYPES_PRI.
57887
57888 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
57889
57890         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
57891
57892         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
57893         the configuration hassle isn't worth it.
57894         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
57895         (LONGEST_MODIFIER, PRIuMAX): Remove.
57896
57897 2005-05-27  Bruno Haible  <bruno@clisp.org>
57898
57899         * lib/getlogin_r.h: Remove second include of <stddef.h>.
57900
57901 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
57902
57903         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
57904         _POSIX_PTHREAD_SEMANTICS for Solaris.
57905
57906 2005-05-25  Derek Price  <derek@ximbiot.com>
57907
57908         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
57909
57910 2005-05-25  Derek Price  <derek@ximbiot.com>
57911             Paul Eggert  <eggert@cs.ucla.edu>
57912
57913         * modules/getlogin_r, m4/getlogin_r.m4: New files.
57914         * lib/getlogin_r.c, getlogin_r.h: New files.
57915
57916 2005-05-25  Bruno Haible  <bruno@clisp.org>
57917             Derek Price  <derek@ximbiot.com>
57918
57919         * lib/getlogin_r.h: Simplify API documentation.
57920
57921 2005-05-23  Derek Price  <derek@ximbiot.com>
57922
57923         * modules/minmax (Files): Add m4/minmax.m4.
57924         (configure.ac): Add gl_MINMAX.
57925
57926 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
57927
57928         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
57929         so that unistd-safer.h (GPL'ed code) need not be included.
57930
57931 2005-05-22  Bruno Haible  <bruno@clisp.org>
57932
57933         * m4/minmax.m4: New file.
57934         Based on a patch by Derek Price <derek@ximbiot.com>.
57935
57936 2005-05-22  Bruno Haible  <bruno@clisp.org>
57937
57938         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
57939         (INT64_MIN): Fix definition.
57940         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
57941
57942         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
57943         NEED_SIGNED_INT_TYPES.
57944
57945         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
57946         HAVE_SYSTEM_INTTYPES.
57947
57948 2005-05-22  Bruno Haible  <bruno@clisp.org>
57949
57950         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
57951         Also include <sys/param.h> if it defines MIN, MAX.
57952         Based on a patch by Derek Price <derek@ximbiot.com>.
57953
57954 2005-05-21  Jim Meyering  <jim@meyering.net>
57955
57956         * modules/fts (Files): Add m4/inttypes-pri.m4.
57957         (Depends-on): Add lstat and remove gettext.  Alphabetize.
57958
57959 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
57960
57961         New fts module.
57962         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
57963         (setup_dir, free_dir): New functions.
57964         (enter_dir, leave_dir): Define trivial
57965         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
57966         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
57967         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
57968         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
57969         Move to fts-cycle.c.
57970         (fts_open): Use setup_dir.
57971         (fts_close): Use free_dir.
57972         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
57973         This adds a label and some gotos, but the alternatives were messier.
57974         Check for memory allocation failure when entering a dir.
57975         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
57976         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
57977         (FTS): New member fts_cycle, that is a union that contains the
57978         old active_dir_ht and cycle_state.  All uses changed to mention
57979         fts_cycle.ht and fts_cycle.state.
57980         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
57981         fts.c, with the following changes:
57982         (setup_dir, free_dir): New functions.
57983         (enter_dir): Now returns bool.  Return true if successful, false
57984         if memory exhausted.  All callers changed.
57985         Do not bother partly cleaning up on
57986         memory allocation failure; that is free_dir's job.
57987         However, free ad if hash_insert fails, to avoid memory leak.
57988         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
57989         fts->fts_options to see which union member to use.
57990
57991 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
57992
57993         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
57994         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
57995
57996 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
57997
57998         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
57999
58000 2005-05-20  Jim Meyering  <jim@meyering.net>
58001
58002         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
58003         Now a macro, to pacify GCC.
58004
58005 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
58006
58007         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
58008         of -1.
58009
58010 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
58011
58012         * lib/chown.c (rpl_chown): Return -1 on failure.
58013
58014 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
58015
58016         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
58017         Don't check for stddef.h.
58018         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
58019         don't use its results.
58020         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
58021         since we include them unconditionally.  Don't require
58022         AM_STDBOOL_H, since stdbool is a prerequisite.
58023         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
58024         since we assume C89 or better.
58025         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
58026         as we don't use their results.
58027         Don't check for fchdir, memmove, memset, strrchr, as we use
58028         them unconditionally.
58029         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
58030         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
58031
58032 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
58033
58034         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
58035         Include <stddef.h> unconditionally, since we assume C89 now.
58036         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
58037         * lib/fts.c: Include fts_.h first, to check interface.
58038         Do not include intprops.h; no longer needed.
58039         Include cycle-check.h and hash.h, since fts_.h no longer does.
58040         Remove unnecessary casts of closedir to void.
58041         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
58042         decide whether to decrement nlinks.
58043         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
58044         (FTS): Use struct hash_table * instead of Hash_table, so that
58045         we no longer need to include hash.h here.
58046
58047 2005-05-18  Jim Meyering  <jim@meyering.net>
58048
58049         * modules/dirfd (License): Change to LGPL.  Most of the code
58050         is already in the public domain.
58051
58052 2005-05-18  Jim Meyering  <jim@meyering.net>
58053
58054         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
58055         Reported by Yoann Vandoorselaere.
58056
58057 2005-05-17  Jim Meyering  <jim@meyering.net>
58058
58059         * m4/fts.m4: New file, from coreutils.
58060
58061 2005-05-17  Jim Meyering  <jim@meyering.net>
58062
58063         * lib/fts.c, lib/fts_.h: New files, from coreutils.
58064
58065 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
58066
58067         Sync from coreutils.
58068         * m4/unlinkdir.m4: New file.
58069
58070 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
58071
58072         Sync from coreutils.
58073         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
58074         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
58075         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
58076         White space changes only.
58077         * lib/makepath.c (make_path): Port to hosts where leading "//" is
58078         special.
58079         * lib/yesno.c: Include getline.h, not ctype.h.
58080         (yesno): Don't remove leading white space; POSIX doesn't allow it.
58081         Use getline to remove arbitrary restriction on response length.
58082
58083 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
58084
58085         * config/srclist-update: Spell out "Street" in FSF postal
58086         mail address; this is the style the FSF seems to prefer.
58087
58088         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
58089         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
58090         this updates FSF postal mail address.
58091
58092         Sync from coreutils.
58093         * modules/unlinkdir: New file.
58094         * modules/yesno (Depends-on): Add getline.
58095         * MODULES.html.sh (File system functions): Add unlinkdir.
58096
58097 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
58098
58099         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
58100         lib/strsep.h:
58101         Change the initial comment to refer to GPL, not LGPL.
58102         gnulib-tool will change it to LGPL as needed.
58103
58104         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
58105         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
58106         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
58107         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
58108         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
58109         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
58110         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
58111         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
58112         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
58113         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
58114         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
58115         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
58116         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
58117         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
58118         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
58119         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
58120         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
58121         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
58122         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
58123         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
58124         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
58125         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
58126         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
58127         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
58128         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
58129         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
58130         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
58131         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
58132         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
58133         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
58134         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
58135         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
58136         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
58137         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
58138         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
58139         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
58140         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
58141         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
58142         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
58143         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
58144         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
58145         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
58146         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
58147         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
58148         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
58149         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
58150         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
58151         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
58152         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
58153         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
58154         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
58155         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
58156         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
58157         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
58158         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
58159         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
58160         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
58161         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
58162         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
58163         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
58164         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
58165         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
58166         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
58167         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
58168         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
58169         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
58170         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
58171         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
58172         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
58173         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
58174         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
58175         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
58176         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
58177         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
58178         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
58179         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
58180         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
58181         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
58182         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
58183         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
58184         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
58185         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
58186         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
58187         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
58188         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
58189         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
58190         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
58191         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
58192         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
58193         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
58194         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
58195         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
58196         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
58197         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
58198         lib/yesno.c, lib/yesno.h:
58199         Update FSF postal mail address.
58200
58201 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
58202
58203         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
58204         tests/test-memmem.c, tests/test-stpncpy.c:
58205         Update FSF postal mail address.
58206
58207 2005-05-13  Bruno Haible  <bruno@clisp.org>
58208
58209         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
58210         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
58211         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
58212         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
58213         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
58214         Add support for 64-bit integers in the MSVC compiler.
58215
58216 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
58217
58218         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
58219
58220 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
58221
58222         * gnulib-tool (func_import): Sort and uniquify recommended includes.
58223
58224 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
58225
58226         * doc/getdate.texi (General date syntax): Don't say that date
58227         date --iso-8601=ns generates acceptable dates; it doesn't yet.
58228         Problem reported by Nic Ferrier.
58229
58230 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
58231
58232         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
58233         specified in ai_socktype. Fix invalid ai_protocol
58234         check. ai_protocol is usually set to 0 or depending on
58235         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
58236         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
58237         ai_socktype / ai_protocol in the returned addrinfo structure.
58238
58239 2005-05-10  Simon Josefsson  <jas@extundo.com>
58240
58241         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
58242         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
58243
58244 2005-05-10  Karl Berry  <karl@gnu.org>
58245
58246         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
58247         (from http://www.gnu.org/licenses).
58248         * doc/COPYING.LIB: also rename to COPYING.LESSER.
58249         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
58250         fdl.texi suffices.
58251
58252 2005-05-10  Karl Berry  <karl@gnu.org>
58253
58254         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
58255         (COPYING.DOC): remove.
58256
58257         * config/srclist-update: new FSF address.
58258
58259 2005-05-10  Derek Price  <derek@ximbiot.com>
58260
58261         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
58262         possible.
58263
58264 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
58265             Bruno Haible  <bruno@clisp.org>
58266
58267         * modules/inet_ntop: New file.
58268         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
58269         inet_ntop.
58270
58271 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
58272             Bruno Haible  <bruno@clisp.org>
58273
58274         * m4/inet_ntop.m4: New file.
58275
58276 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
58277             Bruno Haible  <bruno@clisp.org>
58278
58279         * lib/inet_ntop.h: New file.
58280         * lib/inet_ntop.c: New file, from glibc with modifications.
58281
58282 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
58283
58284         * modules/time_r (License): Change to LGPL.
58285         * modules/extensions (License): Change to LGPL.  Actually,
58286         the license is more permissive than that, but currently gnulib-tool
58287         doesn't know how to handle more-permissive licenses.
58288
58289         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
58290         Problem reported by Dave Love.
58291
58292 2005-05-08  Jim Meyering  <jim@meyering.net>
58293
58294         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
58295         blank.
58296
58297 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
58298
58299         * modules/argmatch (Depends-on): Add stdbool.
58300         * modules/backupfile (Depends-on): Likewise.
58301         * modules/chdir-long (Depends-on): Likewise.
58302         * modules/closeout (Depends-on): Likewise.
58303         * modules/cycle-check (Depends-on): Likewise.
58304         * modules/dirname (Depends-on): Likewise.
58305         * modules/fnmatch (Depends-on): Likewise.
58306         * modules/fsusage (Depends-on): Likewise.
58307         * modules/fwriteerror (Depends-on): Likewise.
58308         * modules/getcwd (Depends-on): Likewise.
58309         * modules/getloadavg (Depends-on): Likewise.
58310         * modules/hard-locale (Depends-on): Likewise.
58311         * modules/makepath (Depends-on): Likewise.
58312         * modules/mountlist (Depends-on): Likewise.
58313         * modules/nanosleep (Depends-on): Likewise.
58314         * modules/posixtm (Depends-on): Likewise.
58315         * modules/quotearg (Depends-on): Likewise.
58316         * modules/readtokens (Depends-on): Likewise.
58317         * modules/readtokens0 (Depends-on): Likewise.
58318         * modules/readutmp (Depends-on): Likewise.
58319         * modules/save-cwd (Depends-on): Likewise.
58320         * modules/strftime (Depends-on): Likewise.
58321         * modules/userspec (Depends-on): Likewise.
58322         * modules/utimecmp (Depends-on): Likewise.
58323         * modules/xgetcwd (Depends-on): Likewise.
58324         * modules/xnanosleep (Depends-on): Likewise.
58325         * modules/xstrtod (Depends-on): Likewise.
58326         * modules/yesno (Depends-on): Likewise.
58327
58328 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
58329
58330         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
58331         needless checks.
58332
58333 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
58334
58335         Merge from coreutils.  Among other things,
58336         add bulletproofing for cases where stdin, stdout, or stderr are closed.
58337         * lib/fd-safer.c: New file.
58338         * lib/fcntl-safer.h, open-safer.c: Remove.
58339         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
58340         * lib/dup-safer.c: Include unistd-safer.h first.
58341         Don't include errno.h.
58342         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
58343         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
58344         * lib/file-type.c: Rely on file-type.h change.
58345         * lib/getloadavg.c: Include unistd-safer.h.
58346         (getloadavg): Use safer open.
58347         * lib/getusershell.c: Include "stdio-safer.h".
58348         (getusershell): Use safer fopen.
58349         * lib/long-options.c (long_options): Use NULL rather than 0.
58350         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
58351         'free'.
58352         * lib/modechange.c: Likewise.
58353         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
58354         (MODE_DONE): New constant.
58355         (struct mode_change): Remove 'next' member.
58356         (make_node_op_equals): New function; like the old one of the
58357         same name, except it allocates an array.
58358         (mode_compile, mode_create_from_ref): Use it.
58359         (mode_compile): Allocate result as an array, not a linked list.
58360         Parse octal string ourself, so that we catch mistakes like "+0".
58361         (mode_adjust): Arg is an array, not a linked list.
58362         * lib/modechange.c: Include stat-macros.h, xalloc.h.
58363         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
58364         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
58365         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
58366         Remove.  This is now stat-macros.h's job.
58367         (talloc): Remove.  All callers replaced by xalloc, so that
58368         our invokers don't have to worry about reporting memory failures.
58369         (make_node_op_equals): Remove.
58370         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
58371         New constants.
58372         (struct mode_change): Moved here from modechange.h.
58373         (mode_append_entry): Remove.
58374         (mode_compile): Remove MASKED_OPS arg, since it encouraged
58375         apps to have incorrect behavior.  Use simpler algorithm for head
58376         and tail.  Don't futz with umask; that's now the job of mode_adjust.
58377         Detect more invalid usages rather than having somewhat-random behavior.
58378         Don't insert an "a=" action, as that leads to incorrect behavior.
58379         (mode_compile, mode_create_from_ref): Return NULL on error instead
58380         of an enum, since now there's only one way to have an error.  All
58381         callers changed.
58382         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
58383         at the correct time.  Simplify calculation of "+u" and its ilk.
58384         Don't mishandle "+X".
58385         (mode_free): Remove "register" and localize decls.
58386         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
58387         (struct mode_change): Move to modechange.c; callers don't
58388         need to see this stuff.
58389         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
58390         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
58391         (mode_change, mode_adjust): Reflect the new signatures noted above.
58392         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
58393         that might redefine system include files.
58394         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
58395         (my_usleep): Use NULL rather than (void *) 0.
58396         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
58397         Use siginterrupt to specify that system calls should be interrupted.
58398         (rpl_nanosleep): Move initialization of suspended closer to call of
58399         my_usleep.
58400         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
58401         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
58402         (desirable_utmp_entry): New function.
58403         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
58404         using x2nrealloc, to simplify logic.
58405         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
58406         size calculation.  Do not assume utmp file is a regular file.
58407         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
58408         (READ_UTMP_CHECK_PIDS): New constant.
58409         * lib/save-cwd.c: Include unistd-safer.h.
58410         (save_cwd): Use fd_safer.
58411         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
58412         [!_LIBC] Include "stat-macros.h" instead.
58413         * lib/unistd-safer.h (fd_safer): New decl.
58414
58415 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
58416
58417         * modules/getloadavg (Depends-on): Add unistd-safer.
58418         * modules/getusershell (Depends-on): Add stdio-safer.
58419         * modules/lstat (Depends-on): Remove xalloc.
58420         * modules/mkstemp (Depends-on): Add stat-macros.
58421         * modules/modechange (Depends-on): Remove xstrtol.
58422         Add stat-macros, xalloc.
58423         * modules/save-cwd (Depends-on): Add unistd-safer.
58424         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
58425         * modules/unistd-safer (Files): Add lib/fd-safer.c
58426         (Makefile.am): Remove lib_SOURCES.
58427
58428         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
58429         Remove fcntl-safer; unistd-safer supersedes it.
58430
58431 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
58432
58433         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
58434         AC_HEADER_STAT.
58435         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
58436         (gl_PREREQ_CHOWN): Remove.
58437         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
58438         it.  Don't require AC_HEADER_STAT.
58439         (gl_PREREQ_LSTAT): Remove.
58440         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
58441         Don't require AC_HEADER_STAT.
58442         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
58443         (gl_PREREQ_RMDIR): Remove.
58444         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
58445         mention stat-macros.h or AC_HEADER_STAT, since we'll make
58446         the stat-macros module a prerequisite.
58447         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
58448         * m4/filemode.m4 (gl_FILEMODE): Likewise.
58449         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
58450         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
58451         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
58452         variable names.
58453         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
58454         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
58455         variable prefixes.
58456         * m4/fcntl-safer.m4: Remove.
58457         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
58458         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
58459         Invoke gl_PREREQ_FD_SAFER.
58460         (gl_PREREQ_FD_SAFER): New macro.
58461         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
58462         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
58463         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
58464         Remove duplicate call to AC_LIBOBJ(readutmp).
58465         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
58466
58467         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
58468         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
58469
58470 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
58471
58472         * MODULES.html.sh (Misc): Add byteswap.
58473
58474 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
58475
58476         * modules/getcwd (Depends-on): Add extensions.
58477         * modules/openat (Depends-on): Likewise.
58478
58479 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
58480
58481         * modules/byteswap: New file.
58482
58483 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
58484
58485         * m4/byteswap.m4: New file.
58486
58487 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
58488
58489         * lib/byteswap_.h: New file.
58490
58491 2005-04-25  Karl Berry  <karl@gnu.org>
58492
58493         * m4/gettext.m4: Update from GNU gettext 0.14.4.
58494
58495 2005-04-25  Albert Chin  <china@thewrittenword.com>
58496
58497         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
58498         Toolkit C bug.
58499
58500 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
58501
58502         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
58503         (func_ln_if_changed) Remove forcibly for no error message
58504         in case file does not exist.
58505
58506 2005-04-19  Simon Josefsson  <jas@extundo.com>
58507
58508         * gnulib-tool (Options): Make --symlink mean --symbolic.
58509
58510 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
58511
58512         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
58513
58514 2005-04-16  Simon Josefsson  <jas@extundo.com>
58515
58516         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
58517
58518 2005-04-15  Simon Josefsson  <jas@extundo.com>
58519
58520         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
58521
58522 2005-04-15  Simon Josefsson  <jas@extundo.com>
58523
58524         * gnulib-tool: Rename --symlink to --symbolic.
58525
58526 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
58527
58528         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
58529         symbolic links to files instead of copying/moving.  Add --aux-dir,
58530         specifying directory relative --dir where auxiliary build tools
58531         are placed.
58532
58533 2005-04-14  Bruno Haible  <bruno@clisp.org>
58534
58535         * modules/allocsa (License): Change to LGPL.
58536         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
58537
58538 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
58539
58540         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
58541         that "UTC +1 second" continues to work.  Problem reported
58542         by Dmitry V. Levin.
58543         (relunit_snumber): New rule.
58544         (relunit): Use it.
58545
58546 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
58547
58548         * lib/getdate.y (universal_time_zone_table): New constant.
58549         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
58550         universal_time_zone_table.
58551         (lookup_zone): Prefer universal_time_zone_table to
58552         local_time_zone_table, so that "GMT" time stamps are allowed in
58553         London during the summer.  Problem reported by Ian Abbott.
58554
58555 2005-04-12  Jim Meyering  <jim@meyering.net>
58556
58557         * lib/human.c (humblock): Set *options even when returning due to
58558         xstrtoumax conversion failure.  Thanks to a used-uninitialized
58559         warning from gcc-4.
58560
58561 2005-04-09  Jim Meyering  <jim@meyering.net>
58562
58563         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
58564         -Wuninitialized: initialize tm0.tm_year.
58565
58566 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
58567
58568         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
58569         count, since there's no maximum.  All uses changed.
58570         Add member dsts_seen.
58571         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
58572         not being INT_MAX.
58573         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
58574         Use pc_rels_seen to decide whther a date is absolute.
58575
58576         * lib/getdate.y (number): Don't overwrite year.
58577         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
58578         check.
58579
58580 2005-04-02  Simon Josefsson  <jas@extundo.com>
58581
58582         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
58583         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
58584
58585 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
58586
58587         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
58588         where no absolute path name can be longer than PATH_MAX.
58589
58590 2005-03-27  Jim Meyering  <jim@meyering.net>
58591
58592         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
58593
58594 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
58595
58596         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
58597         "one's complement" -> "ones' complement" in comment, as per Knuth.
58598         "value of type" -> "type or expression" in comment.
58599         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
58600
58601 2005-03-26  Jim Meyering  <jim@meyering.net>
58602
58603         Comment nits.
58604         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
58605         Correct typos: s/or/of/.
58606
58607 2005-03-26  Jim Meyering  <jim@meyering.net>
58608
58609         * modules/check-include-files: Move to ../ and rename to...
58610         * check-module: ...this.
58611
58612 2005-03-25  Jim Meyering  <jim@meyering.net>
58613
58614         * modules/xvasprintf (Files): Add xalloc.h.
58615
58616 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
58617
58618         * modules/gettext (Files): config/config.rpath ->
58619         build-aux/config.rpath
58620         * modules/iconv (Files): Likewise.
58621         Problem reported by Oskar Liljeblad.
58622
58623 2005-03-23  Jim Meyering  <jim@meyering.net>
58624
58625         * modules/check-include-files: New script to check for
58626         missing dependencies, multiple includes, etc.
58627
58628         * modules/c-strtold (Depends-on): Add xalloc.
58629         * modules/c-strtod (Depends-on): Add xalloc.
58630         * modules/hash (Depends-on): Add xalloc.
58631         (Files): Remove lib/xalloc.h.
58632
58633         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
58634         * modules/userspec (Files): Add lib/inttostr.h.
58635
58636 2005-03-23  Jim Meyering  <jim@meyering.net>
58637
58638         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
58639
58640 2005-03-22  Jim Meyering  <jim@meyering.net>
58641
58642         * modules/stat-macros: New module.
58643         * modules/canonicalize, modules/euidaccess, modules/file-type,
58644         * modules/filemode, modules/lchown, modules/makepath,
58645         * modules/rmdir, modules/stat: Depend on new stat-macros module
58646         rather than listing lib/stat-macros.h manually.
58647         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
58648
58649 2005-03-22  Jim Meyering  <jim@meyering.net>
58650
58651         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
58652
58653 2005-03-22  Bruno Haible  <bruno@clisp.org>
58654
58655         * config/srclist.txt: Replace target directory 'config' with
58656         'build-aux'.
58657         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
58658         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
58659         ../build-aux/.
58660
58661 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
58662
58663         * modules/chdir-long (Depends-on): Add mempcpy.
58664
58665         * modules/acl, modules/backupfile, modules/c-strtod,
58666         modules/c-strtold, modules/canon-host, modules/canonicalize,
58667         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
58668         modules/exclude, modules/exitfail, modules/file-type,
58669         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
58670         modules/getdate, modules/getline, modules/getpagesize,
58671         modules/getpass, modules/getugroups, modules/group-member,
58672         modules/hard-locale, modules/hash, modules/human, modules/idcache,
58673         modules/inttostr, modules/long-options, modules/makepath,
58674         modules/md5, modules/memcasecmp, modules/memcoll,
58675         modules/modechange, modules/mountlist, modules/path-concat,
58676         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
58677         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
58678         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
58679         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
58680         modules/strftime, modules/strndup, modules/strverscmp,
58681         modules/timespec, modules/unlocked-io, modules/userspec,
58682         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
58683         modules/yesno:
58684         Remove lib_SOURCES line from Makefile.am section, as this is now
58685         done automatically by the corresponding Autoconf macro.
58686
58687 2005-03-21  Jim Meyering  <jim@meyering.net>
58688
58689         Changes imported from coreutils.
58690
58691         * lib/cycle-check.c: Don't include xalloc.h.
58692
58693         * lib/path-concat.c: Don't include assert.h.
58694         (path_concat): Remove assertion that would have triggered
58695         for ABASE starting with more than one slash.
58696         Reported by Andreas Schwab.
58697
58698         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
58699         properly when ABASE is an absolute file name.
58700         Correct the description of this function.
58701         Include <assert.h>.
58702         Add an assertion and a test driver.
58703         This fixes a bug introduced on 2004-07-02.
58704         Andreas Schwab reported the resulting failure of cp --parents:
58705         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
58706
58707 2005-03-21  Jim Meyering  <jim@meyering.net>
58708
58709         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
58710         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
58711
58712 2005-03-21  Jim Meyering  <jim@meyering.net>
58713         and  Paul Eggert  <eggert@cs.ucla.edu>
58714
58715         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
58716         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
58717         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
58718         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
58719         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
58720         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
58721         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
58722         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
58723         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
58724         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
58725         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
58726         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
58727         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
58728         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
58729         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
58730         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
58731         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
58732         for these modules.
58733
58734 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
58735
58736         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
58737         (which shouldn't happen), generate nothing instead of returning 0
58738         immediately, so that nstrftime (NULL, ...) doesn't return 0.
58739
58740 2005-03-16  Bruno Haible  <bruno@clisp.org>
58741
58742         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
58743         HAVE_LONGLONG_64BIT.
58744
58745 2005-03-16  Bruno Haible  <bruno@clisp.org>
58746
58747         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
58748         HAVE_LONGLONG_64BIT.
58749
58750 2005-03-16  Bruno Haible  <bruno@clisp.org>
58751
58752         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
58753         HAVE_LONGLONG_64BIT.
58754
58755 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
58756
58757         * lib/strftime.c (my_strftime): Prepend space to format so that we can
58758         reliably distinguish strftime failure from empty output on POSIX
58759         hosts.
58760
58761 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
58762
58763         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
58764         (iconv_string): Don't guess a size-zero buffer, as that might cause
58765         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
58766         result would be 'too large', where 'too large' is (heuristically)
58767         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
58768         overflow concerns.  This will prevent some unwanted malloc failures
58769         when the inputs are very large.
58770
58771 2005-03-15  Karl Berry  <karl@gnu.org>
58772
58773         * config/srclist.txt (config.rpath): from gettext.
58774         * config/config.rpath: update.
58775
58776 2005-03-15  Bruno Haible  <bruno@clisp.org>
58777
58778         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
58779         to 'negate'.
58780
58781         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
58782         variable.
58783
58784         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
58785         results.
58786
58787 2005-03-14  Simon Josefsson  <jas@extundo.com>
58788
58789         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
58790         <fx@gnu.org>.
58791
58792 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
58793
58794         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
58795         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
58796         intprops.h.
58797         * lib/strtol.c: Likewise.
58798
58799 2005-03-14  Jim Meyering  <jim@meyering.net>
58800
58801         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
58802         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
58803         to be nonzero so that we (and caller) can detect the difference
58804         between a valid zero-length expansion and an error return, even
58805         when the underlying strftime fails before writing anything into
58806         that location.
58807
58808 2005-03-14  Bruno Haible  <bruno@clisp.org>
58809
58810         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
58811         Update from GNU gettext 0.14.3.
58812
58813 2005-03-10  Jim Meyering  <jim@meyering.net>
58814
58815         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
58816
58817 2005-03-10  Jim Meyering  <jim@meyering.net>
58818
58819         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
58820         so that this module works on systems without fchdir.
58821
58822 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
58823
58824         Factor int-properties macros into a single file, except for
58825         glibc-related files.
58826         * lib/intprops.h: New file.
58827         * lib/getloadavg.c: Include it instead of limits.h.
58828         (INT_STRLEN_BOUND): Remove.
58829         * lib/human.c: Include intprops.h.
58830         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
58831         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
58832         302/1000.
58833         * lib/inttostr.h: Include intprops.h instead of limits.h.
58834         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
58835         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
58836         for consistency with intprops.h.
58837         (time_t_is_integer, twos_complement_arithmetic): Use them.
58838         * lib/sig2str.h: Include <signal.h>, intprops.h.
58839         (INT_STRLEN_BOUND): Remove.
58840         * lib/strftime.c (TYPE_SIGNED): Remove.
58841         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
58842         * lib/strtol.c: Adjust comments to match intprops.h.
58843         * lib/userspec.c: Include intprops.h.
58844         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
58845         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
58846         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
58847         instead of rolling our own expressions.
58848         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
58849
58850         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
58851         instead of int.
58852         (my_strftime): Do not mishandle years close to INT_MAX, by doing
58853         the right thing even if adding 1900 would overflow.  Similarly
58854         for tm_mon + 1 and tm_yday + 1.
58855         Make %Y always equivalent to %C%y, and similarly for %G and %g.
58856         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
58857         (DO_SIGNED_NUMBER): New macro.
58858         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
58859
58860 2005-03-07  Bruno Haible  <bruno@clisp.org>
58861
58862         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
58863
58864 2005-03-07  Bruno Haible  <bruno@clisp.org>
58865
58866         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
58867
58868 2005-03-04  Derek R. Price  <derek@ximbiot.com>
58869
58870         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
58871         (func_import): Only replace files via --import when they have actually
58872         changed.
58873
58874 2005-03-03  Derek R. Price  <derek@ximbiot.com>
58875
58876         * m4/mmap-anon.m4: New file.
58877         * m4/pagealign_alloc.m4: New file.
58878
58879 2005-03-03  Derek R. Price  <derek@ximbiot.com>
58880             Bruno Haible  <bruno@clisp.org>
58881
58882         * modules/pagealign_alloc: New file.
58883         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
58884
58885 2005-03-03  Derek R. Price  <derek@ximbiot.com>
58886             Bruno Haible  <bruno@clisp.org>
58887
58888         * lib/pagealign_alloc.h: New file.
58889         * lib/pagealign_alloc.c: New file.
58890
58891 2005-03-03  Bruno Haible  <bruno@clisp.org>
58892
58893         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
58894         Use an all-permissive copyright notice, recommended by RMS.
58895
58896 2005-03-02  Bruno Haible  <bruno@clisp.org>
58897
58898         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
58899         of AIX, the replacement has to be done only after <string.h> is
58900         included, therefore not in config.h. stpncpy.h does the replacement,
58901         and stpncpy.c uses it.
58902
58903 2005-03-02  Bruno Haible  <bruno@clisp.org>
58904
58905         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
58906         stpncpy.c uses it.
58907
58908 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
58909
58910         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
58911         The workaround isn't strictly needed for POSIX conformance, and
58912         it's too much of a pain to configure and maintain.  We'll ask
58913         people to fix their kernels instead.
58914         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
58915         (NANOSLEEP_BUG_WORKAROUND): Remove.
58916         (xnanosleep): Remove the workaround.
58917
58918 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
58919
58920         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
58921         Reported by Derek Price.
58922         (Include): Add "timespec.h".
58923
58924         * modules/xnanosleep (Depends-on): Remove gethrxtime.
58925
58926 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
58927
58928         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
58929         to detect nanosleep bug.
58930
58931 2005-03-01  Bruno Haible  <bruno@clisp.org>
58932
58933         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
58934
58935 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
58936
58937         * modules/gethrxtime: New file.
58938         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
58939         (Depends-on): Add gethrxtime.
58940         (configure.ac): Add gl_XNANOSLEEP.
58941         (Makefile.am): Remove lib_SOURCES line.
58942
58943 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
58944
58945         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
58946         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
58947
58948 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
58949
58950         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
58951         * lib/timespec.h (gettime): Return void, since it always
58952         succeeds now.  All uses changed.
58953         * lib/gettime.c (gettime) Likewise.
58954         [HAVE_NANOTIME]: Prefer nanotime.
58955         Assume gettimeofday succeeds, as POSIX requires.
58956         Assime time () succeeds, since other code already does.
58957         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
58958         (timespec_subtract): Remove.
58959         (NANOSLEEP_BUG_WORKAROUND): New constant.
58960         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
58961         things considerably.  Use it only on GNU/Linux hosts, since the
58962         workaround shouldn't be needed elsewhere.
58963
58964 2005-02-24  Bruno Haible  <bruno@clisp.org>
58965
58966         * modules/gettext (Files): Add m4/glibc2.m4.
58967
58968 2005-02-24  Bruno Haible  <bruno@clisp.org>
58969
58970         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
58971         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
58972         * m4/progtest.m4:
58973         Update from GNU gettext 0.14.2.
58974         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
58975
58976 2005-02-24  Bruno Haible  <bruno@clisp.org>
58977
58978         * lib/localcharset.c: Update from GNU gettext 0.14.2.
58979         * lib/config.charset: Update from GNU gettext 0.14.2.
58980
58981 2005-02-24  Bruno Haible  <bruno@clisp.org>
58982
58983         * lib/gettext.h: Update from GNU gettext 0.14.2.
58984
58985 2005-02-23  Simon Josefsson  <jas@extundo.com>
58986
58987         * m4/iconvme.m4: New file.
58988
58989 2005-02-23  Jim Meyering  <jim@meyering.net>
58990
58991         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
58992         change.
58993         Thanks to Bruno Haible for catching it.
58994
58995 2005-02-22  Simon Josefsson  <jas@extundo.com>
58996
58997         * modules/iconvme: New file.
58998
58999         * MODULES.html.sh: Add iconvme.
59000
59001 2005-02-22  Simon Josefsson  <jas@extundo.com>
59002
59003         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
59004
59005 2005-02-22  Simon Josefsson  <jas@extundo.com>
59006
59007         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
59008
59009 2005-02-22  Jim Meyering  <jim@meyering.net>
59010
59011         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
59012         s/ifndef/ifdef/.
59013
59014 2005-02-20  Neil Conway  <neilc@samurai.com>
59015
59016         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
59017         returned by OSX/Darwin if the specified buffer is not large
59018         enough for the hostname.
59019
59020 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
59021
59022         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
59023         pass it to _help, otherwise the latter coredumps trying to
59024         dereference state.root_argp.
59025
59026 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
59027
59028         * modules/chdir-long (Depends-on): Add memrchr.
59029         * modules/memrchr (Files): Add lib/memrchr.h.
59030         (Include): "memrchr.h".
59031
59032 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
59033
59034         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
59035
59036 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
59037
59038         * lib/memrchr.h: New file.
59039         * lib/chdir-long.c: Include it.
59040         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
59041         Don't bother including stddef.h.
59042
59043 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
59044
59045         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
59046         inclusion.
59047         Include <sys/types.h>, for dev_t.
59048         (ME_DUMMY, ME_REMOTE): Move from here....
59049         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
59050         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
59051         Dmitry V. Levin.
59052         Include mountlist.h first, to test the interface.
59053
59054 2005-01-29  Bruno Haible  <bruno@clisp.org>
59055
59056         * lib/progname.c (program_name): Initialize.
59057         Needed when linking statically on MacOS X.
59058
59059 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
59060
59061         Sync from coreutils.
59062         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
59063         (Depends-on): Add c-strtod.
59064         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
59065
59066 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
59067
59068         Sync from coreutils.
59069         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
59070
59071         Remove files that are specific to coreutils.
59072         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
59073
59074 2005-01-28  Bruno Haible  <bruno@clisp.org>
59075
59076         * modules/javacomp: New file.
59077         * MODULES.html.sh (Java): Add javacomp.
59078
59079 2005-01-28  Bruno Haible  <bruno@clisp.org>
59080
59081         * m4/javacomp.m4: New file, from GNU gettext.
59082
59083 2005-01-28  Bruno Haible  <bruno@clisp.org>
59084
59085         * lib/javacomp.sh.in: New file, from GNU gettext.
59086         * lib/javacomp.h: New file, from GNU gettext.
59087         * lib/javacomp.c: New file, from GNU gettext.
59088
59089 2005-01-26  Simon Josefsson  <jas@extundo.com>
59090
59091         * lib/gai_strerror.c: Use GPL in header.
59092
59093 2005-01-26  Bruno Haible  <bruno@clisp.org>
59094
59095         * modules/javaexec: New file.
59096         * MODULES.html.sh (Java): Add javaexec.
59097
59098 2005-01-26  Bruno Haible  <bruno@clisp.org>
59099
59100         * m4/javaexec.m4: New file, from GNU gettext.
59101
59102 2005-01-26  Bruno Haible  <bruno@clisp.org>
59103
59104         * lib/javaexec.sh.in: New file, from GNU gettext.
59105         * lib/javaexec.h: New file, from GNU gettext.
59106         * lib/javaexec.c: New file, from GNU gettext.
59107
59108 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
59109
59110         * modules/lchown (Depends-on): Remove lchown.h
59111
59112 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
59113
59114         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
59115         must be defined if the header file was not found, in order
59116         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
59117
59118 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
59119
59120         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
59121         initializers for struct pentry_state.
59122         (__argp_error): Check return value of __asprintf
59123         (__argp_failure): Translate error message
59124
59125         * lib/argp-parse.c: Removed braces around the expansion of N_()
59126
59127 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
59128
59129         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
59130         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
59131         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
59132         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
59133         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
59134         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
59135         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
59136         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
59137         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
59138         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
59139         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
59140         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
59141         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
59142         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
59143         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
59144         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
59145         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
59146         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
59147         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
59148         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
59149         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
59150         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
59151         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
59152         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
59153         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
59154         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
59155         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
59156         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
59157         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
59158         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
59159         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
59160         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
59161         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
59162         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
59163         xstrtol.m4, xstrtoumax.m4, yesno.m4:
59164         Use an all-permissive copyright notice, recommended by RMS.
59165
59166 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
59167
59168         * modules/chdir-long (Depends-on): Remove mempcpy.
59169
59170 2005-01-21  Jim Meyering  <jim@meyering.net>
59171
59172         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
59173         same value as for Solaris 9.
59174
59175         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
59176         component length.  This included changing the parameter to be
59177         of type `char *' rather than `char const *'.
59178         * lib/chdir-long.h (chdir_long): Update prototype.
59179
59180         * lib/openat.c (fdopendir, fstatat): New functions.
59181         * lib/openat.h: Include headers required for use of DIR and struct
59182         stat.
59183         [AT_SYMLINK_NOFOLLOW]: Define.
59184         (fdopendir, fstatat): Add prototypes.
59185
59186 2005-01-21  Bruno Haible  <bruno@clisp.org>
59187
59188         * modules/classpath: New file.
59189         * MODULES.html.sh (Java): Add classpath.
59190
59191 2005-01-21  Bruno Haible  <bruno@clisp.org>
59192
59193         * lib/classpath.h: New file, from GNU gettext.
59194         * lib/classpath.c: New file, from GNU gettext.
59195
59196 2005-01-20  Simon Josefsson  <jas@extundo.com>
59197
59198         * modules/version-etc-fsf: New file.
59199
59200 2005-01-20  Simon Josefsson  <jas@extundo.com>
59201
59202         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
59203         * lib/version-etc.c: Remove version_etc_copyright.
59204         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
59205         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
59206
59207 2005-01-20  Simon Josefsson  <jas@extundo.com>
59208
59209         * lib/base64.h (isbase64): Add.
59210
59211         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
59212         using a unsigned prototype, don't inline.
59213         (base64_decode): Use it.
59214
59215 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
59216
59217         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
59218         it.
59219
59220 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
59221
59222         * lib/save-cwd.c (save_cwd): Remove code to support the case
59223         where fchdir is missing or flaky.
59224
59225 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
59226
59227         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
59228
59229 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
59230
59231         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
59232         AC_LIBSOURCES now does this.
59233         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
59234         with new ullong_max module.
59235
59236 2005-01-19  Bruno Haible  <bruno@clisp.org>
59237
59238         * modules/sh-quote: New file.
59239         * MODULES.html.sh (Executing programs): Add sh-quote.
59240
59241 2005-01-19  Bruno Haible  <bruno@clisp.org>
59242
59243         * lib/sh-quote.h: New file, from GNU gettext.
59244         * lib/sh-quote.c: New file, from GNU gettext.
59245
59246 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
59247
59248         Merge from coreutils.
59249         * m4/ullong_max.m4: New file.
59250         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
59251         (gl_MACROS): Assume localeconv exists.
59252
59253 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
59254
59255         Merge changes from coreutils, as described below in several
59256         changelogs dated today.
59257
59258         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
59259         (O_DIRECTORY): Remove; not needed here, since "." must be
59260         a directory.  All uses removed.
59261         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
59262         universal on Suns, and we also need to test for IRIX.
59263         Revamp code to use 'if' rather than '#if'.
59264         Avoid unnecessary comparison of cwd->desc to 0.
59265
59266         * lib/utimens.c (futimens): Robustify the previous patch, by checking
59267         for known valid error numbers rather than observed invalid ones.
59268
59269 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
59270
59271         * modules/ullong_max: New file.
59272
59273         * modules/chdir-long, modules/openat: New files.
59274         * modules/save-cwd (Depends-on): Depend on chdir-long.
59275         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
59276
59277 2005-01-18  Jim Meyering  <jim@meyering.net>
59278
59279         Merge from coreutils.
59280         * m4/chdir-long.m4, m4/openat.m4: New files.
59281         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
59282         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
59283         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
59284         is sane and DOES follow symlinks.  Besides, testing 20 different
59285         systems found no broken chown implementations.
59286         Prompted by a change in rsync's copy of this macro.
59287         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
59288
59289         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
59290
59291         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
59292         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
59293         NULL-means-set-to-current-time semantics.
59294         Remove temporary file immediately, rather than waiting
59295         for configure's at-exit trap code to do it.
59296
59297 2005-01-18  Jim Meyering  <jim@meyering.net>
59298
59299         * lib/version-etc.c (version_etc_copyright): Update copyright date.
59300
59301         * lib/utimens.c (futimens): Account for the fact that futimes
59302         can also fail with errno == ENOSYS or errno == ENOENT.
59303         Patch from Dmitry V. Levin.
59304
59305         Change the name of the robust chdir function from chdir to chdir_long.
59306         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
59307         (restore_cwd): Use chdir_long, not chdir.
59308         * lib/chdir-long.c: Renamed from chdir.c.
59309         * lib/chdir-long.h: Renamed from chdir.h.
59310         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
59311         Hurd.
59312
59313 2005-01-18  Bruno Haible  <bruno@clisp.org>
59314
59315         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
59316         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
59317         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
59318         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
59319         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
59320         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
59321         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
59322         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
59323         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
59324         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
59325         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
59326         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
59327         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
59328         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
59329         Use an all-permissive copyright notice, recommended by RMS.
59330
59331 2005-01-18  Bob Proulx  <bob@proulx.com>
59332
59333         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
59334         simplify offsetof() macro construct to avoid compile failure with
59335         native HP-UX 11.0 ANSI C compiler.
59336
59337 2005-01-17  Bruno Haible  <bruno@clisp.org>
59338
59339         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
59340         redundant because stpncpy.m4 takes care of it.
59341
59342 2005-01-17  Bruno Haible  <bruno@clisp.org>
59343
59344         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
59345
59346 2005-01-17  Bruno Haible  <bruno@clisp.org>
59347
59348         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
59349         used.
59350
59351 2005-01-17  Bruno Haible  <bruno@clisp.org>
59352
59353         * lib/fwriteerror.h (fwriteerror): Change specification to include
59354         fclose.
59355         * lib/fwriteerror.c: Include <stdbool.h>.
59356         (fwriteerror): At the end, close the file stream. Record whether
59357         stdout was already closed.
59358
59359 2005-01-17  Bruno Haible  <bruno@clisp.org>
59360
59361         * lib/execute.c (environ): Declare if needed.
59362         * lib/pipe.c (environ): Likewise.
59363         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
59364
59365 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
59366
59367         * modules/argp: Depend on vsnprintf
59368
59369 2005-01-10  Jim Meyering  <jim@meyering.net>
59370
59371         * modules/closeout (Depends-on): Add atexit.
59372
59373 2005-01-06  Bruno Haible  <bruno@clisp.org>
59374
59375         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
59376
59377 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
59378
59379         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
59380         definitions to be after all include files, to avoid collisions.
59381         Problem reported by Bob Proulx.
59382
59383 2005-01-04  Jim Meyering  <jim@meyering.net>
59384
59385         Changes imported from coreutils.
59386         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
59387         as the mkstemp template, use a temporary directory and an
59388         8.3-friendly template to avoid trouble on systems like DJGPP.
59389         Reported by Juan M. Guerrero via Stepan Kasal.
59390         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
59391         close. Remove the temporary directory right away, rather than waiting
59392         for configure's at-exit trap code to do it.
59393         Suggestion from Stepan Kasal.
59394
59395 2005-01-01  Simon Josefsson  <jas@extundo.com>
59396
59397         * gnulib-tool: Print #include directives when --import'ing.
59398
59399 2004-12-28  Simon Josefsson  <jas@extundo.com>
59400
59401         * tests/test-base64.c: Include required header files.  Remove
59402         unused variables.
59403
59404 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
59405
59406         * modules/error (Depends-on): Remove gettext.
59407
59408 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
59409
59410         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
59411         not needed.  This removes a dependency on the gettext module.
59412         [defined _LIBC]: Do not include <libintl.h>; not needed.
59413
59414 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
59415
59416         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
59417         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
59418
59419 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
59420
59421         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
59422         HAVE_DECL_STRTOLD.
59423
59424 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
59425
59426         * modules/getdate (Depends-on): Remove alloca-opt.
59427
59428 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
59429
59430         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
59431
59432 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
59433
59434         * lib/argp-parse.c: Include <stddef.h>.
59435         (alignof, alignto): New macros.
59436         (parser_init): Don't assume that void * is aligned sufficiently
59437         for struct option.
59438
59439         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
59440         need to extend the stack.
59441         (YYINITDEPTH): New macro, so that the initial stack isn't overly
59442         large.
59443
59444 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
59445
59446         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
59447
59448 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
59449
59450         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
59451         (2004-10-24) change.  Apparently this was a false alarm.
59452
59453         * modules/getdate: Depend on alloca-opt, not alloca.
59454
59455 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
59456
59457         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
59458         Remove now-obsolete comment about AIX.
59459         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
59460         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
59461         (YYMAXDEPTH): New macro.
59462
59463 2004-12-18  Simon Josefsson  <jas@extundo.com>
59464
59465         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
59466
59467 2004-12-18  Bruno Haible  <bruno@clisp.org>
59468
59469         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
59470
59471 2004-12-18  Bruno Haible  <bruno@clisp.org>
59472
59473         * lib/fatal-signal.c (fatal_signals): Make non-const.
59474         (init_fatal_signals): New function.
59475         (uninstall_handlers, install_handlers): Ignore signals that were set to
59476         SIG_IGN.
59477         (at_fatal_signal): Call init_fatal_signals.
59478         (init_fatal_signal_set): Likewise. Ignore signals that were set to
59479         SIG_IGN.
59480         Reported by Paul Eggert.
59481
59482 2004-12-18  Bruno Haible  <bruno@clisp.org>
59483
59484         * doc/alloca.texi: New file.
59485         * doc/alloca-opt.texi: New file.
59486
59487 2004-12-17  Jim Meyering  <jim@meyering.net>
59488
59489         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
59490         Otherwise, install-sh could exit with improper exit status when
59491         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
59492
59493 2004-12-16  Simon Josefsson  <jas@extundo.com>
59494
59495         * tests/test-base64.c: Add license.
59496
59497 2004-12-15  Stepan Kasal  <address@hidden>
59498
59499         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
59500
59501 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
59502
59503         * modules/getcwd (Files): Add m4/d-ino.m4.
59504         Suggested by Mark D. Baushke.
59505
59506 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
59507
59508         * lib/getdate.y (textint): New member "negative".
59509         (time_zone_hhmm): New function.
59510         Expect 14 shift-reduce conflicts, not 13.
59511         (o_colon_minutes): New rule.
59512         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
59513         (yylex): Set the "negative" member of signed numbers.
59514
59515 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
59516
59517         * doc/getdate.texi (Time of day items, Time zone items):
59518         Describe new formats +00:00, UTC+00:00.
59519
59520 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
59521
59522         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
59523         spurious "-l"s.  Problem reported by Stepan Kasal.
59524
59525 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
59526
59527         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
59528         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
59529
59530 2004-12-04  Simon Josefsson  <jas@extundo.com>
59531
59532         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
59533         Vandoorselaere <yoann@prelude-ids.org>.
59534
59535 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
59536
59537         Changes imported from coreutils.
59538         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
59539         exist.
59540         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
59541
59542 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
59543
59544         Changes imported from coreutils.
59545         * lib/hard-locale.c: Assume <locale.h> exists.
59546         Include "strdup.h".
59547         (GLIBC_VERSION): New macro.
59548         (hard_locale): Assume setlocale exists.
59549         Rewrite to avoid #ifdef.
59550         Use strdup rather than malloc + strcpy.
59551         * lib/human.c: Assume <locale.h> exists.
59552         (human_readable): Assume localeconv exists.
59553
59554 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
59555
59556         * modules/hard-locale (Depends-on): Add strdup.
59557
59558 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
59559
59560         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
59561         convert T2, not T.  (Imported from libc.)
59562
59563 2004-11-30  Simon Josefsson  <jas@extundo.com>
59564
59565         * modules/restrict (License): Change to LGPL.
59566
59567 2004-11-30  Simon Josefsson  <jas@extundo.com>
59568
59569         * m4/restrict.m4: Add copyright and copying conditions.
59570
59571 2004-11-30  Simon Josefsson  <jas@extundo.com>
59572
59573         * m4/base64.m4: New file.
59574
59575 2004-11-30  Simon Josefsson  <jas@extundo.com>
59576
59577         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
59578         base64.
59579
59580         * tests/test-base64.c: New file.
59581
59582         * modules/base64: New file.
59583
59584 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
59585
59586         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
59587         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
59588
59589         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
59590
59591 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
59592
59593         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
59594         (__getcwd.c): Don't restore errno; glibc doesn't.
59595         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
59596         first, falling back to our code only if its results look suspicious.
59597         Ensure that the resulting buffer is only as large as necessary.
59598
59599         * lib/readutmp.c: Include readutmp.h first.
59600         Include <errno.h>, since readutmp.h no longer does that.
59601         * lib/readutmp.h: Don't include <errno.h>,
59602         <sys/param.h>, <time.h>; not needed to establish interface.
59603         (errno): Remove decl.
59604         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
59605         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
59606         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
59607
59608 2004-11-28  Simon Josefsson  <jas@extundo.com>
59609
59610         * lib/base64.h, base64.c: New file.
59611
59612 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
59613
59614         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
59615
59616 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
59617
59618         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
59619         (Depends-on): Remove pathmax, same.  Add mempcpy.
59620         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
59621         (Makefile.am): Append getcwd.h to lib_SOURCES.
59622         (Include): Add getcwd.h.
59623         (Maintainer): Change from Jim Meyering to "all, glibc",
59624         since getdate now uses intended-for-glibc code.
59625         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
59626         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
59627
59628 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
59629
59630         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
59631         HP's ANSI C compiler.
59632         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
59633         Declaring int functions causes warnings on some modern systems and
59634         shouldn't be needed to compile on ancient ones.
59635         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
59636         defined.
59637
59638         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
59639         with the following changes.
59640         (__set_errno): Parenthesize properly.
59641         Include <stdbool.h>.
59642         (MIN, MAX, MATCHING_INO): New macros.
59643         (__getcwd): Define with prototype, not K&R form.
59644         Use heuristics to allocate default buffer on stack if possible.
59645         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
59646         behavior, and to avoid the PATH_MAX limit when computing
59647         ../../../../...
59648         Use MATCHING_INO to compare inode number to file.
59649         Check for arithmetic overflow in size calculations.
59650         Fix bug in reallocation of dot array that caused getcwd to fail
59651         on directories nested deeper than 75.
59652         Be more careful about saving errno on error.
59653         Do not use realloc; use only free+malloc, as this is a bit
59654         more flexible and avoids a needless copy operation.
59655         Do not inspect st_dev and st_ino for symbolic links; POSIX
59656         doesn't specify the latter.
59657         Check for closedir errors.
59658         Avoid needless casts.
59659         Use "#ifdef weak_alias" around weak_alias, to be like other
59660         glibc code.
59661         The following changes to getcwd.c have effect only when used in
59662         gnulib; they have no effect inside glibc proper.
59663         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
59664         as alloca isn't used.
59665         (alloca, __alloca): Likewise.
59666         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
59667         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
59668         unconditionally, as gnulib assumes C89 or better.
59669         Do not include <sys/param.h>.
59670         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
59671         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
59672         better.
59673         (NULL) [!defined NULL]: Remove; we assume C89 or better.
59674         Include <dirent.h> in a way that is compatible with modern Autoconf.
59675         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
59676         New macros, if not already defined.
59677         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
59678         Use "_LIBC", not "defined _LIBC", for consistency.
59679         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
59680         a mempcpy module.
59681         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
59682         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
59683         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
59684         credit only to Jim Meyering and adjust the copyright dates.
59685         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
59686         <stdlib.h>, <unistd.h>, "pathmax.h".
59687         Instead, include "xgetcwd.h" (first) and "getcwd.h".
59688         (INITIAL_BUFFER_SIZE): Remove.
59689         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
59690
59691 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
59692
59693         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
59694         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
59695         Use the _ONCE methods, for efficiency.
59696         Check for fcntl.h.  In test program, include <errno.h>
59697         and <fcntl.h> if available.  Remove old K&R cruft from
59698         test program.  Check for common errors in GNU/Linux,
59699         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
59700         don't do AC_LIBOBJ, as that's getcwd.m4's job.
59701         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
59702         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
59703         name accordingly.
59704         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
59705         accommodate new getcwd.c.
59706         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
59707         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
59708         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
59709         that's all we need now.
59710
59711 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
59712
59713         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
59714         argp-parse.c depends on getopt internals, that means we should
59715         always use our getopt, to be on the safe side.
59716         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
59717         order not to spoil the result of an eventual previous invocation
59718         of gl_GETOPT_SUBSTITUTE.
59719
59720 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
59721
59722         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
59723         redefinition warnings. To avoid them, include the defines
59724         in `#if !defined __need_getopt ... #endif'. The only place
59725         where __getopt_argv_const is used is in definitions
59726         of getopt_long and getopt_long_only below, which are as well
59727         protected by `#ifndef __need_getopt'.
59728         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
59729         __need_getopt after including <stdio.h> and <unistd.h> These
59730         headers might have defined it.
59731
59732 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
59733
59734         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
59735
59736 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
59737
59738         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
59739         (futimens): New function, which uses futimes if available.
59740         (futimens, utimens): Support timespec==NULL, with same semantics
59741         as utime and utimens.
59742         * lib/utimens.h (futimens): New decl.
59743
59744 2004-11-23  Jim Meyering  <jim@meyering.net>
59745
59746         * lib/getopt_.h: Remove trailing blanks.
59747
59748 2004-11-23  Jim Meyering  <jim@meyering.net>
59749
59750         * lib/__fpending.c: Add comment.
59751
59752 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
59753
59754         * modules/canonicalize (Depends-on): Add xreadlink.
59755         Problem reported by James Youngman.
59756
59757 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
59758
59759         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
59760         New macros.
59761         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
59762         optopt): Use them instead of invoking ## directly; otherwise, the
59763         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
59764
59765 2004-11-19  Bruno Haible  <bruno@clisp.org>
59766
59767         * lib/strtok_r.c: Move comments from here...
59768         * lib/strtok_r.h: ... to here.
59769
59770 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
59771
59772         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
59773         implementations that mishandle size_t overflow.
59774
59775 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
59776
59777         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
59778         might fail.  Problem reported by Yoann Vandoorselaere.
59779         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
59780         implementations that mishandle size_t overflow.
59781
59782 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
59783
59784         * modules/canon-host (Depends-on): Add strdup.
59785
59786 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
59787
59788         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
59789
59790 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
59791
59792         * lib/canon-host.c: Include "strdup.h".
59793         (canon_host): Use getaddrinfo if available, so that IPv6 works.
59794         Use strdup instead of malloc/strcpy to duplicate strings.
59795
59796         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
59797         (human_space_before_unit): New constant.
59798         * lib/human.c (human_readable): Support it.
59799
59800         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
59801         (xgetcwd): Set errno correctly when failing.
59802         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
59803         the failure is actually due to a PATH_MAX problem.
59804
59805         Further getopt changes to make it more likely that glibc will
59806         buy the changes back.
59807         * lib/getopt.c (POSIXLY_CORRECT): New constant.
59808         (getopt): Use it, so to preserve glibc semantic
59809         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
59810         when compiling for libc.
59811         * lib/getopt_.h (__getopt_argv_const): Bring it back.
59812         (getopt_long, getopt_long_only): Use it.
59813
59814         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
59815         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
59816         (getopt): Argv is now char * const *, as per standard.
59817         (_getopt_internal_r, _getopt_internal): Argv is now char **,
59818         not char *__getopt_argv_const *.
59819         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
59820         _getopt_long_only_r): Likewise.
59821         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
59822         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
59823         _getopt_long_r, _getopt_long_only_r): Likewise.
59824         * lib/getopt_.h (__getopt_argv_const): Remove.
59825         (getopt): Argv is now char * const *, as per standard.
59826
59827         * lib/getdate.y (tORDINAL): New token.
59828         (day, relunit): Allow it for relative times.
59829         (relative_time_table): Use tORDINAL for ordinals.
59830
59831 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
59832
59833         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
59834         Document that "second" isn't allowed as an ordinal number.
59835
59836 2004-11-16  Jim Meyering  <jim@meyering.net>
59837
59838         * modules/closeout (Depends-on): Add fpending.
59839
59840 2004-11-15  Jim Meyering  <jim@meyering.net>
59841
59842         * lib/closeout.c: Include "__fpending.h" once again.
59843         Include <stdbool.h>.
59844         (close_stdout): Don't fail just because stdout was closed initially,
59845         since some programs don't write to stdout in the normal course of
59846         operation (other than --version and --help), and we don't want this
59847         function to make e.g. `touch file >&-' fail.
59848         But do fail if it was closed and someone has tried to write to it.
59849         E.g., `printf foo >&-' must fail.
59850
59851 2004-11-13  Jim Meyering  <jim@meyering.net>
59852
59853         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
59854
59855 2004-11-12  Simon Josefsson  <jas@extundo.com>
59856
59857         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
59858         small doc fix is still pending.
59859
59860 2004-11-11  Simon Josefsson  <jas@extundo.com>
59861
59862         * modules/strtok_r: New file.
59863
59864         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
59865         strtok_r.
59866
59867 2004-11-11  Simon Josefsson  <jas@extundo.com>
59868
59869         * m4/strtok_r.m4: New file.
59870
59871         * m4/getopt.m4: Replace opterr.
59872
59873 2004-11-11  Simon Josefsson  <jas@extundo.com>
59874
59875         * lib/strtok_r.h, strtok_r.c: New file.
59876
59877 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
59878
59879         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
59880         of replacing opterr, getopt, etc.  This should handle the
59881         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
59882
59883 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
59884
59885         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
59886         we can stop lying to compilers about the constness of argv when we
59887         are compiled outside glibc.
59888         (getopt, getopt_long, getopt_long_only): Use it.
59889         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
59890         _getopt_internal, getopt): Likewise.
59891         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
59892         _getopt_long_only_r): Likewise.
59893         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
59894         _getopt_long_r, _getopt_long_only_r): Likewise.
59895
59896         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
59897         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
59898         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
59899         the other external symbols.
59900         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
59901         declaration, since the above renaming now works around collisions.
59902
59903 2004-11-11  Jim Meyering  <jim@meyering.net>
59904
59905         * lib/linebreak.c: Remove trailing blanks.
59906         * lib/alloca_.h: Likewise.
59907         * lib/acosl.c: Likewise.
59908         * lib/euidaccess.c: Likewise.
59909         * lib/allocsa.h: Likewise.
59910
59911 2004-11-10  Simon Josefsson  <jas@extundo.com>
59912
59913         * m4/getaddrinfo.m4: New file.
59914
59915 2004-11-10  Simon Josefsson  <jas@extundo.com>
59916
59917         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
59918
59919 2004-11-10  Simon Josefsson  <jas@extundo.com>
59920
59921         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
59922         getaddrinfo.
59923
59924         * modules/getaddrinfo: New file.
59925
59926 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
59927
59928         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
59929
59930 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
59931
59932         * lib/mktime.c (SHR): New macro, which is a portable
59933         substitute for >> that should work even on Crays.
59934         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
59935         Problem reported by Mark D. Baushke in
59936         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
59937         * lib/getdate.y (SHR): Likewise.
59938         (tm_diff): Use it.
59939         * lib/strftime.c (SHR): Likewise.
59940         (tm_diff): Use it.
59941         * lib/quotearg.c (struct quoting_options): Use unsigned int for
59942         quote_these_too, so that right shifts are well defined.  All uses
59943         changed.
59944
59945 2004-11-10  Jim Meyering  <jim@meyering.net>
59946
59947         Ensure that no close failure goes unreported.
59948         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
59949         return early when it seems there's nothing to flush.
59950         Don't include __fpending.h.
59951
59952 2004-11-10  Jim Meyering  <jim@meyering.net>
59953
59954         * modules/closeout (Depends-on): Remove fpending.
59955
59956 2004-11-10  Jim Meyering  <jim@meyering.net>
59957
59958         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
59959
59960 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
59961
59962         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
59963         gl_FUNC_STRFTIME.
59964         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
59965         and AC_REQUIRE when possible, to avoid duplicate checks.
59966         Check for <wchar.h>.
59967
59968 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
59969
59970         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
59971
59972 2004-11-09  Bruno Haible  <bruno@clisp.org>
59973
59974         * m4/sockpfaf.m4: New file.
59975
59976 2004-11-05  Bruno Haible  <bruno@clisp.org>
59977
59978         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
59979         Reported by Mark D. Baushke <mdb@cvshome.org>.
59980
59981 2004-11-04  Bruno Haible  <bruno@clisp.org>
59982
59983         2004-09-11  Bruno Haible  <bruno@clisp.org>
59984                 * allocsa.valgrind: New file.
59985         2004-02-06  Bruno Haible  <bruno@clisp.org>
59986                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
59987                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
59988                 Reported by Christopher Seip <chris.seip@hp.com>.
59989
59990 2004-11-04  Bruno Haible  <bruno@clisp.org>
59991
59992         * modules/allocsa (Files): Add lib/allocsa.valgrind.
59993         (Makefile.am): Distribute it.
59994
59995 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
59996
59997         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
59998         with errno == ERANGE if the buffer is too small.
59999         Problem reported by Mark D. Baushke.
60000
60001 2004-11-03  Albert Chin  <china@thewrittenword.com>
60002             Paul Eggert  <eggert@cs.ucla.edu>
60003
60004         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
60005         equivalent, substitute $ac_type for equivalent type rather than
60006         blindly using uint32_t *always* which won't work if uint32_t is not
60007         available.  Define _UINT32_T to work around typedef of uint32_t if
60008         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
60009         2.5.1.
60010
60011 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
60012
60013         * m4/jm-macros.m4: Sync from coreutils.
60014         (gl_MACROS): Check for mbrlen, for pathchk.
60015         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
60016
60017 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
60018
60019         * lib/xreadlink.c (MAXSIZE): New macro.
60020         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
60021         size does not exceed MAXSIZE.  Avoid cast.
60022         As suggested by Mark D. Baushke in
60023         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
60024         if readlink fails with buffer size just under MAXSIZE, try again
60025         with MAXSIZE.
60026
60027 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
60028
60029         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
60030
60031 2004-11-02  Derek R. Price  <derek@ximbiot.com>
60032         and  Paul Eggert  <eggert@cs.ucla.edu>
60033
60034         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
60035         (get_date): Overparenthesize to avoid GCC warning.
60036
60037 2004-11-02  Bruno Haible  <bruno@clisp.org>
60038
60039         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
60040         returns void.
60041
60042 2004-11-02  Bruno Haible  <bruno@clisp.org>
60043
60044         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
60045         function returns void.
60046
60047 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
60048
60049         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
60050         fflush_unlocked, flockfile, funlockfile, funlockfile,
60051         fputs_unlocked, putc_unlocked.
60052
60053 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
60054
60055         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
60056         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
60057         already declared.
60058
60059 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
60060
60061         * modules/getdate (Files): Add doc/getdate.texi.
60062         (Depends-on): Add setenv, xalloc.
60063
60064 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
60065
60066         * lib/getdate.y: Add support for TZ="foo" within a date string.
60067         Fix some bugs near time_t boundaries.  Reject dates with
60068         out-of-range components, e.g., "Sept 31".
60069         Include <stdlib.h>, "setenv.h", "xalloc.h".
60070         (ISDIGIT_LOCALE): Remove; unused.
60071         Note that the TZ and time functions used here are not reentrant.
60072         (mktime_ok, get_tz): New functions.
60073         (TZBUFSIZE): New constant.
60074         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
60075         This requires that we sometimes generate our own TZ="XXX..." setting.
60076
60077 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
60078
60079         * doc/getdate.texi: New file, from coreutils with modifications for
60080         the new TZ parsing.
60081
60082 2004-10-27  Derek R. Price  <derek@ximbiot.com>
60083
60084         * lib/mktime.c (not_equal_tm): Remove redundant check.
60085
60086 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
60087
60088         * modules/regex (lib_SOURCES): Add regex.c.
60089         Reported by James Youngman in
60090         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
60091
60092 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
60093
60094         * lib/getdate.y: Use Bison 1.875 features, and some minor
60095         code cleanups.  This change does not affect semantics.
60096         Don't include <stdlib.h>; no longer needed.
60097         Don't include unlocked-io.h; only the "#if TEST" code uses
60098         stdio, and performance isn't crucial there.
60099         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
60100         Bison 1.875 features as described below.
60101         All uses of "PC." replaced by "pc->".
60102         (YYSTYPE): Add a forward declaration.
60103         (yylex, yyerror): Use full prototypes in forward decls.
60104         Use "%pure-parser" rather than obsolescent "%pure_parser".
60105         Use %parse-param and %lex-param instead of obsolescent
60106         YYPARSE_PARAM and YYLEX_PARAM.
60107         (meridian_table, month_and_day_table, time_units_table,
60108         relative_time_table, time_zone_table, military_table,
60109         lookup_zone, lookup_word, get_date):
60110         Use NULL instead of 0 where appropriate.
60111         (to_hour): Avoid abort (), to avoid a dependency on
60112         stdlib.h.
60113         (yyerror, yylex): Now accepts parser_control * arg.
60114         (main) [TEST]: Use '\0' rather than 0 for char.
60115
60116 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
60117
60118         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
60119
60120 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
60121
60122         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
60123         It's now the caller's responsibility to handle the case where
60124         !HAVE_GETPAGESIZE && !defined getpagesize.
60125
60126         * lib/mktime.c (leapyear): Arg is long int, not int.
60127
60128 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
60129
60130         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
60131
60132 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
60133
60134         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
60135         missing.  Problem reported by James Youngman.
60136
60137 2004-10-16  Simon Josefsson  <jas@extundo.com>
60138
60139         * gnulib-tool: Fix comments.  Fix parse problem.
60140         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
60141
60142 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
60143
60144         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
60145         implementation of getopt_long.  Problem reported by Alexander Taler in:
60146         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
60147
60148 2004-10-15  Bruno Haible  <bruno@clisp.org>
60149
60150         * gnulib-tool: Untabify. Initialize supplied_libname.
60151         (func_usage): More homogenous output.
60152         (func_modules_transitive_closure, func_modules_to_filelist,
60153         func_emit_lib_Makefile_am): New functions.
60154         (func_import): New function, extracted from big case statement. Use
60155         func_get_license, func_modules_transitive_closure,
60156         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
60157         opt_lgpl. Don't use test -a, as it's not portable.
60158         (func_create_testdir): Use func_modules_transitive_closure,
60159         func_modules_to_filelist, func_emit_lib_Makefile_am.
60160
60161 2004-10-15  Bruno Haible  <bruno@clisp.org>
60162
60163         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
60164
60165 2004-10-15  Bruno Haible  <bruno@clisp.org>
60166
60167         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
60168         the portions belonging to each module.
60169         Suggested by Derek Robert Price <derek@ximbiot.com>.
60170
60171 2004-10-12  Simon Josefsson  <jas@extundo.com>
60172
60173         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
60174         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
60175         to real functions.
60176
60177 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
60178
60179         * modules/vsnprintf: New file.
60180
60181 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
60182
60183         * m4/vsnprintf.m4: New file.
60184
60185 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
60186
60187         * lib/vsnprintf.h: New file.
60188         * lib/vsnprintf.c: New file.
60189
60190 2004-10-11  Bruno Haible  <bruno@clisp.org>
60191
60192         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
60193         vsnprintf.
60194
60195 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
60196
60197         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
60198
60199 2004-10-07  Bruno Haible  <bruno@clisp.org>
60200
60201         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
60202         fits into the provided buffer.
60203
60204 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
60205
60206         * lib/diacrit.c, diacrit.h: Add GPL notice.
60207
60208         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
60209         notice.
60210         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
60211         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
60212         This avoids a potential constant-folding bug.
60213
60214 2004-10-05  Bruno Haible  <bruno@clisp.org>
60215
60216         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
60217         for the declaration of strsep.
60218
60219 2004-10-05  Bruno Haible  <bruno@clisp.org>
60220
60221         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
60222
60223 2004-10-04  Simon Josefsson  <jas@extundo.com>
60224
60225         * modules/memmem: New file.
60226         * tests/test-memmem.c: New file.
60227         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
60228
60229 2004-10-04  Simon Josefsson  <jas@extundo.com>
60230
60231         * m4/memmem.m4: New file.
60232
60233 2004-10-04  Simon Josefsson  <jas@extundo.com>
60234
60235         * lib/memmem.h: New file.
60236         * lib/memmem.c: New file, taken from glibc.
60237
60238 2004-10-04  Simon Josefsson  <jas@extundo.com>
60239
60240         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
60241         '#ifdef USE_UNLOCKED_IO'.
60242
60243 2004-10-04  Simon Josefsson  <jas@extundo.com>
60244
60245         * config/srclist.txt: Add memmem from glibc.
60246
60247 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
60248
60249         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
60250
60251         * modules/argmatch, modules/argp, modules/closeout, modules/error,
60252         modules/exclude, modules/getdate, modules/getline,
60253         modules/getndelim2, modules/getpass, modules/getpass-gnu,
60254         modules/getusershell, modules/linebuffer, modules/md5,
60255         modules/mountlist, modules/posixtm, modules/readtokens,
60256         modules/readutmp, modules/regex, modules/sha1,
60257         modules/version-etc, modules/yesno:
60258         Remove dependency on unlocked-io.
60259
60260 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
60261
60262         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
60263
60264         * m4/unlocked-io.m4: Add copyright notice.
60265         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
60266
60267 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
60268
60269         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
60270         * lib/xmalloc.c (xmemdup): Likewise.
60271         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
60272         XFREE): Remove these long-obsolescent macros.
60273         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
60274         * lib/xstrdup.c: Remove.
60275
60276         * lib/regex.c (re_comp): Cast gettext return value to char *,
60277         Problem reported by Martin Neitzel via Mark D. Baushke.
60278
60279 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
60280
60281         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
60282         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
60283         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
60284         regex.c, sha1.c, version-etc.c, yesno.c:
60285         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
60286         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
60287         the includer's responsibility.
60288
60289         Sync from coreutils.
60290
60291         * lib/modechange.c (mode_compile): Don't decrement a pointer that
60292         points to the start of a string, as the C Standard says the
60293         resulting behavior is undefined.
60294
60295         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
60296         simple -> simple_backups, numbered_existing ->
60297         numbered_existing_backups, numbered -> numbered_backups
60298         to avoid shadowing problems.  All uses changed.
60299         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
60300         * lib/backupfile.c (check_extension, numbered_backup):
60301         Rename locals to avoid shadowing 'basename'.
60302         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
60303         once.
60304
60305         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
60306         * lib/.cvsignore: Add getopt.h.
60307
60308 2004-10-04  Bruno Haible  <bruno@clisp.org>
60309
60310         * modules/README: New file.
60311         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
60312         not a module.
60313
60314 2004-10-02  Jim Meyering  <jim@meyering.net>
60315
60316         * lib/dirfd.h, getpagesize.h: Add copyright notice.
60317
60318 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
60319
60320         * modules/strsep: New file.
60321
60322 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
60323
60324         * m4/strsep.m4: New file.
60325
60326 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
60327
60328         * lib/strsep.h: New file.
60329         * lib/strsep.c: New file.
60330
60331 2004-10-01  Simon Josefsson  <jas@extundo.com>
60332
60333         * lib/snprintf.c (snprintf): Handle size==0.
60334
60335 2004-10-01  Simon Josefsson  <jas@extundo.com>
60336             Bruno Haible  <bruno@clisp.org>
60337
60338         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
60339         (snprintf): Declare 'args'.
60340
60341 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
60342
60343         * lib/snprintf.c: Remove comments as to why each header is needed.
60344
60345 2004-10-01  Bruno Haible  <bruno@clisp.org>
60346
60347         * MODULES.html.sh: Add strsep.
60348
60349 2004-09-30  Simon Josefsson  <jas@extundo.com>
60350
60351         * modules/snprintf: New file.
60352
60353 2004-09-30  Simon Josefsson  <jas@extundo.com>
60354
60355         * m4/snprintf.m4: New file.
60356
60357 2004-09-30  Simon Josefsson  <jas@extundo.com>
60358
60359         * lib/snprintf.h, lib/snprintf.c: New files.
60360
60361 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
60362
60363         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
60364         (hol_entry_help): Never translate an empty string.
60365         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
60366         * lib/argp.h (OPTION_NO_TRANS): New option.
60367
60368 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
60369
60370         * modules/argp (Maintainer): Replace Simon Josefsson
60371         by Sergey Poznyakoff.
60372
60373 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
60374
60375         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
60376         changes merged back into glibc.
60377
60378 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
60379
60380         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
60381
60382 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
60383
60384         * lib/xvasprintf.c: Include xalloc.h.
60385         (xvasprintf): Use xalloc_die, not xmalloc_die.
60386
60387 2004-09-29  Bruno Haible  <bruno@clisp.org>
60388
60389         * modules/alloca-opt: New file, derived from modules/alloca.
60390         * modules/allocsa: Depend on alloca-opt instead of alloca.
60391         * modules/setenv: Likewise.
60392         * modules/vasnprintf: Likewise.
60393         * MODULES.html.sh: Add alloca-opt.
60394
60395 2004-09-28  Simon Josefsson  <jas@extundo.com>
60396
60397         * gnulib-tool: New parameter --lgpl, to asseert that modules are
60398         LGPL, and to replace license template from GPL to LGPL.
60399
60400 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
60401
60402         * modules/dummy: Change license to LGPL.
60403
60404 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
60405
60406         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
60407
60408 2004-09-24  Simon Josefsson  <jas@extundo.com>
60409
60410         * modules/minmax (License): Change from GPL to LGPL.
60411
60412 2004-09-23  Simon Josefsson  <jas@extundo.com>
60413
60414         * gnulib-tool (--import): Typo.
60415
60416 2004-09-23  Simon Josefsson  <jas@extundo.com>
60417
60418         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
60419
60420 2004-09-22  Bruno Haible  <bruno@clisp.org>
60421
60422         * modules/*: Add 'License' field.
60423         * gnulib-tool: Accept --extract-license option.
60424         (func_get_license): New function.
60425
60426 2004-09-21  Bruno Haible  <bruno@clisp.org>
60427
60428         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
60429         Reported by Simon Josefsson.
60430
60431 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
60432
60433         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
60434         gl_AC_TYPE_LONG_LONG.
60435
60436 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
60437
60438         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
60439
60440 2004-09-18  Simon Josefsson  <jas@extundo.com>
60441         and  Paul Eggert  <eggert@cs.ucla.edu>
60442
60443         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
60444         calls with autoreconf.  Define GL_LIB.
60445
60446 2004-09-14  Karl Berry  <karl@gnu.org>
60447
60448         * config/srclist.txt: unsync setenv.c, sigh.
60449
60450 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
60451
60452         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
60453         Problem reported by Bruno Haible in:
60454         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
60455
60456 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
60457
60458         * config/srclist.txt: Comment out argp-pvh.c.
60459
60460 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
60461
60462         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
60463         in case some system header has #define'd it.  Problem reported by
60464         Soeren D. Schulze in
60465         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
60466
60467 2004-09-09  Karl Berry  <karl@gnu.org>
60468
60469         * regex.[ch]: delete from the root.  These were supposed to be
60470                 synced with emacs cvs, but this has not happened for about
60471                 a year, and anyway nothing else uses emacs regex.[ch].
60472                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
60473                 lib/regex[.ch] is untouched.
60474
60475 2004-09-09  Bruno Haible  <bruno@clisp.org>
60476
60477         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
60478
60479 2004-09-09  Bruno Haible  <bruno@clisp.org>
60480
60481         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
60482         modifications.
60483         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
60484
60485 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
60486
60487         * modules/xvasprintf: New file.
60488         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
60489
60490 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
60491
60492         * lib/xvasprintf.h: New file.
60493         * lib/xvasprintf.c: New file.
60494         * lib/xasprintf.c: New file.
60495
60496 2004-09-08  Bruno Haible  <bruno@clisp.org>
60497
60498         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
60499
60500 2004-09-08  Bruno Haible  <bruno@clisp.org>
60501
60502         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
60503         length is > INT_MAX.
60504         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
60505         more.
60506
60507 2004-09-08  Bruno Haible  <bruno@clisp.org>
60508
60509         * lib/stdint_.h: New file, taken from GNU clisp.
60510
60511 2004-09-08  Bruno Haible  <bruno@clisp.org>
60512             Oskar Liljeblad  <oskar@osk.mine.nu>
60513
60514         * modules/stdint: New file.
60515         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
60516
60517 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
60518
60519         Import from coreutils.
60520         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
60521         strings on unbounded length.  alloca's performance benefits aren't
60522         that important here.
60523         (V_STRDUP): Remove.
60524         (parse_with_separator): New function, with most of the internals
60525         of the old parse_user_spec.  Allow user to omit both user and group,
60526         for compatibility with FreeBSD.
60527         Clone only the user name, not the entire spec.
60528         Do not set *uid, *gid unless entirely successful.
60529         Avoid memory leak in some failing cases.
60530         Fix regression for USER.GROUP reported by Dmitry V. Levin in
60531         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
60532         (parse_user_spec): Rewrite to use parse_with_separator.
60533
60534 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
60535
60536         * modules/userspec: Don't depend on alloca.
60537
60538 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
60539
60540         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
60541
60542 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
60543
60544         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
60545         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
60546         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
60547
60548 2004-08-16  Simon Josefsson  <jas@extundo.com>
60549
60550         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
60551         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
60552         Add --dry-run for --import.
60553         Let user provided command line parameters override configure.ac
60554         settings.
60555
60556 2004-08-12  Simon Josefsson  <jas@extundo.com>
60557
60558         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
60559         as discussed with Paul Eggert in threads rooted at
60560         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
60561         and
60562         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
60563         Before, the test was empty, and relied on ELIDE_CODE in source
60564         code.)
60565         (gl_PREREQ_GETOPT): New macro.
60566         (gl_GETOPT): Use them.
60567
60568 2004-08-12  Simon Josefsson  <jas@extundo.com>
60569
60570         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
60571         * lib/getopt_.h: Renamed from getopt.h.
60572
60573 2004-08-12  Simon Josefsson  <jas@extundo.com>
60574
60575         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
60576         Change default library name from libfoo to libgnu.
60577         Now, if you have a configure.ac that says:
60578                 gl_SOURCE_BASE(gl)
60579                 gl_M4_BASE(gl/m4)
60580                 gl_MODULES(error getopt etcetera)
60581                 gl_INIT
60582         you can import all you need by running:
60583                 ../gnulib/gnulib-tool --import
60584
60585         * modules/getopt (Files): Rename getopt.h to getopt_.h.
60586         (Makefile.am): Rewrite, use logic from argz.
60587         (Include): Use <getopt.h> instead of "getopt.h".
60588
60589 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
60590
60591         * modules/argp (Files): Add m4/unlocked-io.m4.
60592         (Depends-on): Add extensions.
60593
60594 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
60595
60596         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
60597         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
60598         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
60599         Check for program_invocation_name, program_invocation_short_name,
60600         flockfile, funlockfile, features.h, _getopt_long_only_r.
60601
60602 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
60603
60604         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
60605         its complicated substitute.
60606         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
60607         and program_invocation_name.
60608         (__argp_basename) [!_LIBC]: Remove; the only use was
60609         replaced by its body.
60610         (__argp_short_program_name): Change condition from
60611         !defined __argp_short_program_name to
60612         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
60613         to match argp-namefrob.h.
60614         (__argp_failure): Don't assume strerror_r returns char *.
60615         * lib/argp-parse.c (N_): Define unconditionally.
60616         (argp_default_options): Fill out initializers with 0 to avoid
60617         gcc warnings.
60618
60619 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
60620
60621         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
60622         getopt1.c.
60623
60624 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
60625
60626         Merge from coreutils.
60627
60628         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
60629
60630         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
60631         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
60632
60633 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
60634
60635         Merge from coreutils.
60636
60637         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
60638         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
60639         for Reliant Unix 5.43.
60640
60641         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
60642         (union fooround): Use uintmax_t, not long int.
60643         The rest is a merge from libc:
60644         [defined _LIBC]: Include <shlib-compat.h>.
60645         (_obstack) [defined _LIBC]: Remove after 2.3.4.
60646
60647         * lib/settime.c (settime): Recode to avoid warning with
60648         Sun Forte C 6U2.
60649
60650         * lib/strverscmp.c: Convert to UTF-8.
60651
60652 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
60653
60654         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
60655         m4/uintmax_t.m4.
60656
60657 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
60658
60659         * modules/xalloc-die: New file.
60660         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
60661
60662         * modules/md5 (Files): Add m4/uint32_t.m4.
60663         * modules/sha1: Renamed from modules/sha.
60664         (Files):
60665         Rename lib/sha.h to lib/sha1.h.
60666         Rename lib/sha.c to lib/sha1.c.
60667         Rename m4/sha.m4 to m4/sha1.m4.
60668         (lib_SOURCES): Likewise.
60669         (configure.ac): Rename gl_SHA to gl_SHA1.
60670         (Include): sha.h -> sha1.h.
60671
60672 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
60673
60674         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
60675         * m4/sha1.m4: Renamed from sha.m4.
60676         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
60677
60678 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
60679
60680         * lib/obstack.h (obstack_empty_p):
60681         Don't assume that chunk->contents is suitably aligned.
60682         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
60683         Likewise. Problem reported by Benno in
60684         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
60685
60686         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
60687         readable.  This could be improved further but it'd take some work.
60688
60689 2004-08-08  Simon Josefsson  <jas@extundo.com>
60690
60691         * modules/xgethostname (Depends-on): Remove exit and error (not
60692         used).
60693
60694         * modules/getpass-gnu: Add getpass.h.
60695         (Depends-on): Add stdbool.
60696         * modules/getpass: Add getpass.h.
60697
60698 2004-08-08  Simon Josefsson  <jas@extundo.com>
60699
60700         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
60701         Check getpass declaration.
60702
60703 2004-08-08  Simon Josefsson  <jas@extundo.com>
60704
60705         * lib/xgethostname.c: Don't include error.h (not used).
60706
60707         * lib/getpass.h: Add.
60708         * lib/getpass.c: Include getpass.h first.
60709
60710 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
60711
60712         * lib/xalloc-die.c: New file.
60713         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
60714         All uses removed.
60715         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
60716         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
60717         xalloc-die.c.
60718         (_, N_, xalloc_die): Move to xalloc-die.c.
60719         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
60720         so that we needn't mess with xalloc_msg_memory_exhausted.
60721
60722         * lib/sha1.h: Renamed from sha.h.
60723         (SHA1_H): Renamed from _SHA_H.
60724         (sha1_ctx): Renamed from sha_ctx.
60725         (sha1_init_ctx): Renamed from sha_init_ctx.
60726         (sha1_process_block): Renamed from sha_process_block.
60727         (sha1_process_bytes): Renamed from sha_process_bytes.
60728         (sha1_finish_ctx): Renamed from sha_finish_ctx.
60729         (sha1_read_ctx): Renamed from sha_read_ctx.
60730         (sha1_stream): Renamed from sha_stream.
60731         (sha1_buffer): Renamed from sha_buffer.
60732         * lib/sha1.c: Likewise; renamed from sha.c.
60733         Do not include <sys/types.h>.
60734         Include <stddef.h> rather than <stdlib.h>.
60735
60736 2004-08-08  Bruno Haible  <bruno@clisp.org>
60737
60738         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
60739         FILESYSTEM_PREFIX_LEN.
60740         * lib/progreloc.c: Likewise.
60741         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
60742
60743 2004-08-06  Simon Josefsson  <jas@extundo.com>
60744
60745         * modules/progname (Depends-on): Don't depend on stdbool.
60746
60747 2004-08-06  Simon Josefsson  <jas@extundo.com>
60748
60749         * modules/getsubopt: New file.
60750         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
60751         getsubopt.
60752
60753 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
60754
60755         More merge from coreutils.
60756
60757         * m4/utimens.m4, m4/utimecmp.m4: New files.
60758         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
60759         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
60760         prereq.m4, sha.m4: Import changes from coreutils.
60761
60762 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
60763
60764         More merge from coreutils.
60765         * modules/raise, modules/readtokens0, modules/utimens:
60766         * modules/utimecmp, module/xnanosleep: New files.
60767         * modules/strftime: Add lib/strftime.h.
60768         Change include from <time.h> to "strftime.h".
60769         * modules/yesno: Add lib/yesno.h.
60770         * modules/backupfile: Remove lib/addext.c.
60771         * modules/euidaccess: Add stat-macros.h.
60772         * modules/canonicalize, modules/euidaccess,
60773         modules/filemode, modules/lchown, modules/makepath,
60774         modules/rmdir, modules/stat: Likewise.
60775
60776 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
60777
60778         Merge from tar.
60779         * lib/argp-help.c (make_hol, hol_append): Don't assume that
60780         SIZE_MAX is a valid preprocessor constant.
60781         (__argp_basename): Change from "#ifndef _LIBC"
60782         to "#ifndef __argp_short_program_name", so that
60783         we don't compile these functions for tar.
60784
60785         More merges from coreutils.
60786         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
60787         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
60788         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
60789         * lib/addext.c: Remove; no longer needed.
60790         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
60791         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
60792         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
60793         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
60794         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
60795         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
60796         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
60797         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
60798         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
60799         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
60800         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
60801         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
60802         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
60803         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
60804         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
60805         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
60806         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
60807         Import changes from coreutils.
60808
60809 2004-08-05  Simon Josefsson  <jas@extundo.com>
60810
60811         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
60812
60813 2004-08-05  Simon Josefsson  <jas@extundo.com>
60814
60815         * m4/getsubopt.m4: New file.
60816
60817 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
60818
60819         Merge from coreutils.
60820
60821         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
60822         * m4/getcwd-path-max.m4: New files.
60823
60824         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
60825         FILESYSTEM_PREFIX_LEN ->
60826         FILE_SYSTEM_PREFIX_LEN.
60827         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
60828         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
60829         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
60830         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
60831
60832         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
60833         prerequisite modules now handle the DOS stuff.
60834         Don't check for unistd.h.
60835
60836 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
60837
60838         Merge from coreutils.
60839
60840         * lib/.gdb-history: Remove; this doesn't belong here.
60841
60842         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
60843         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
60844         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
60845         * lib/getcwd.c: New files.
60846
60847         * lib/dirname.h: Include <stdbool.h>.
60848         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
60849         for consistency with POSIX terminology.  All uses changed.
60850         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
60851         (strip_trailing_slashes): Use bool for booleans.
60852         * lib/stripslash.c (strip_trailing_slashes): Likewise.
60853
60854         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
60855         sometimes returns a positive errno value even when it succeeds.
60856         (print_errno_message) [!LIBC]: Fall back on strerror if
60857         __strerror_r fails.
60858
60859         * lib/path-concat.c (mempcpy): Don't define if a system header defines
60860         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
60861         (longest_relative_suffix): New function.
60862         (path_concat): Use it.  Assume first argument is not NULL.
60863         Port to DOS.  Omit redundant separators.
60864         Report an error instead of returning NULL.
60865         Use mempcpy instead of memcpy.
60866         (xpath_concat): Remove: not declared or used.
60867
60868         * lib/same.h: Include <stdbool.h>
60869         (same_name): Return bool, not int.
60870         * lib/same.c (same_name): Likewise.
60871         (errno): Don't declare; we assume C89 or better now.
60872
60873         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
60874         if not already defined.
60875
60876         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
60877         * lib/dup-safer.c (errno): Likewise.
60878
60879 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
60880
60881         Merge from coreutils.
60882         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
60883         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
60884         * modules/path-concat: Don't depend on strdup.
60885
60886 2004-08-03  Simon Josefsson  <jas@extundo.com>
60887
60888         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
60889         * lib/progname.h: Don't include stdbool.h.
60890
60891 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
60892
60893         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
60894         * MODULES.html.sh (func_all_modules): Remove fatal.
60895
60896 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
60897
60898         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
60899
60900 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
60901
60902         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
60903         working.
60904
60905 2004-08-02  Simon Josefsson  <jas@extundo.com>
60906
60907         * lib/getsubopt.h: New file, with comments from Bruno Haible.
60908         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
60909         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
60910
60911 2004-08-01  Simon Josefsson  <jas@extundo.com>
60912
60913         * lib/xgetdomainname.c: Include stdlib.h, for free().
60914
60915 2004-07-19  Bruno Haible  <bruno@clisp.org>
60916
60917         * MODULES.html.sh (func_all_modules): Add dummy.
60918
60919 2004-07-16  Simon Josefsson  <jas@extundo.com>
60920
60921         * modules/dummy: New file.
60922
60923 2004-07-16  Simon Josefsson  <jas@extundo.com>
60924
60925         * lib/dummy.c: New file.
60926
60927 2004-07-16  Bruno Haible  <bruno@clisp.org>
60928
60929         * lib/backupfile.h: Add extern "C" for C++.
60930         * lib/closeout.h: Likewise.
60931         * lib/copy-file.h: Likewise.
60932         * lib/findprog.h: Likewise.
60933         * lib/full-write.h: Likewise.
60934         * lib/pathname.h: Likewise.
60935         * lib/progname.h: Likewise.
60936         * lib/stpcpy.h: Likewise.
60937         * lib/stpncpy.h: Likewise.
60938         * lib/strcase.h: Likewise.
60939         * lib/strstr.h: Likewise.
60940         * lib/xalloc.h: Likewise.
60941
60942         * lib/mbswidth.h: Add extern "C" for C++.
60943         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
60944
60945 2004-07-13  Robert Millan  <robertmh@gnu.org>
60946
60947         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
60948
60949 2004-07-09  Simon Josefsson  <jas@extundo.com>
60950
60951         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
60952         failed without this.)
60953
60954 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
60955
60956         * modules/chown (Files): Add lib/fchown-stub.c, since
60957         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
60958
60959 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
60960
60961         * lib/fchown-stub.c: New file.
60962
60963 2004-06-24  Jim Meyering  <jim@meyering.net>
60964
60965         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
60966
60967 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
60968
60969         * modules/argz: Omit "#include".
60970
60971         * MODULES.html.sh (func_all_modules): Add calloc, to match
60972         2004-06-01 addition of calloc module.
60973
60974 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
60975
60976         * m4/argz.m4: New file, which is autoupdated from libtool.
60977
60978 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
60979
60980         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
60981         libtool.
60982
60983 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
60984
60985         * config/srclist-update: Don't insist on "USA." before the
60986         close-comment, as libtool omits the period and puts the */ on a
60987         separate line.
60988         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
60989         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
60990
60991 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
60992
60993         * modules/argz: New file.
60994         * MODULES.html.sh (func_all_modules): Add argz.
60995
60996 2004-06-12  Jim Meyering  <jim@meyering.net>
60997         and  Paul Eggert  <eggert@cs.ucla.edu>
60998
60999         * modules/hash (Files): Add lib/xalloc.h.
61000         * modules/pipe (Depends-on): Add wait-process.
61001         * modules/stat (Depends-on): Add xalloc.
61002         * modules/userspec (Files): Add lib/userspec.h.
61003         * modules/xstrto
61004
61005         Upgrade from gettext-0.13.
61006         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
61007         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
61008         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
61009
61010 2004-06-10  Jim Meyering  <jim@meyering.net>
61011
61012         * lib/calloc.c: New file.
61013
61014 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
61015
61016         * lib/getdate.y (yylex): Allow space between sign and number.
61017         Problem reported by Dan Jacobson.
61018
61019 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
61020
61021         Merge from coreutils CVS.
61022
61023         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
61024         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
61025         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
61026         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
61027         xstrtol.m4: Fix copyright date and/or serial number.
61028
61029         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
61030         See if we need an fchown replacement.
61031         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
61032         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
61033         and use the replacement function if we detect either defect.
61034
61035         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
61036         gl_UTIMECMP.
61037
61038 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
61039         and  Jim Meyering  <jim@meyering.net>
61040
61041         Merge from coreutils CVS.
61042
61043         * lib/stat-macros.h: New file, with contents from file-type.h
61044         and coreutils' system.h.
61045         * lib/file-type.c: Include "stat-macros.h".
61046         * lib/file-type.h (file_type): Move all macro definitions to new file,
61047         stat-macros.h.
61048
61049         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
61050         Wrap old code with this conditional.
61051         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
61052         function that does not dereference symlinks.
61053         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
61054
61055         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
61056         dependency problems.
61057         (xreadlink): Accept new arg SIZE, for efficiency.
61058         All decls and uses changed.
61059         * lib/xreadlink.h: Include <stddef.h>, for size_t.
61060
61061         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
61062         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
61063
61064         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
61065         sysexits.h.
61066
61067 2004-06-01  Jim Meyering  <jim@meyering.net>
61068
61069         * m4/calloc.m4: New file.
61070
61071 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
61072
61073         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
61074         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
61075         Also, fix a typo in a diagnostic.
61076
61077 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
61078
61079         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
61080         or AC_FUNC_REALLOC.
61081
61082 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
61083
61084         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
61085         macros to be defined.
61086         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
61087         the allocator returns NULL because the requested size is zero.
61088
61089 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
61090
61091         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
61092         var.  Add comment explaining why libc still defines it.  This
61093         merges the following patch from glibc:
61094         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
61095
61096 2004-05-20  Andreas Schwab  <schwab@suse.de>
61097
61098         * m4/free.m4: Replace free if it not known to work, not the other
61099         way round.
61100
61101 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
61102
61103         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
61104         present in glibc since revision 1.1 of this file.
61105         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
61106         obstack_alignment_mask, obstack_alloc, obstack_base,
61107         obstack_blank, obstack_blank_fast, obstack_chunk_size,
61108         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
61109         obstack_grow0, obstack_init, obstack_int_grow,
61110         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
61111         obstack_next_free, obstack_object_size, obstack_ptr_grow,
61112         obstack_ptr_grow_fast, obstack_room): Remove declarations of
61113         nonexistent functions.
61114
61115 2004-05-18  Karl Berry  <karl@gnu.org>
61116
61117         * config/srclist.txt: break link for vasnprintf.c.
61118
61119 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
61120
61121         Port obstack to the AS/400, where pointers are 16 bytes wide and
61122         you cannot cast an integer to a valid pointer.  This patch is
61123         currently waiting to be integrated into glibc; see
61124         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
61125
61126         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
61127         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
61128         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
61129         (struct obstack): temp member is now a union of a pointer and
61130         an integer, instead of an integer.  All integer uses changed.
61131         This does not affect the physical layout of struct obstack,
61132         except on hosts (like the AS/400) where the size or alignment of
61133         void * is greater than that of ptrdiff_t.
61134         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
61135         __STDC__)]: Store temporary in pointer member of union, not
61136         integer member.
61137         * lib/obstack.c: Include <stddef.h>, for offsetof.
61138         (struct fooalign): Remove; it doesn't need a name.
61139         (union fooround): Change double to long double, and add void *.
61140         (DEFAULT_ALIGNMENT): Use offsetof to compute.
61141         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
61142         not a macro.  Hence the values are always int; so remove all
61143         casts-to-int in uses.
61144
61145 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
61146
61147         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
61148         we can get this patch merged into glibc.
61149
61150 2004-05-17  Derek R. Price  <derek@ximbiot.com>
61151             Paul Eggert  <eggert@cs.ucla.edu>
61152
61153         * m4/argp: Depend on alloca.
61154
61155 2004-05-17  Derek R. Price  <derek@ximbiot.com>
61156             Paul Eggert  <eggert@cs.ucla.edu>
61157
61158         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
61159         freecoding.
61160
61161 2004-05-17  Bruno Haible  <bruno@clisp.org>
61162
61163         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
61164         precision that consists of a '.' followed by an empty digit string.
61165         Patch by Tor Lillqvist <tml@iki.fi>.
61166
61167 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
61168
61169         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
61170         for backward compatibility with older code.  We need our own
61171         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
61172         it under some other name, and our alloca.h will define it.
61173
61174 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
61175             Derek Price  <derek@ximbiot.com>
61176
61177         * lib/alloca.c: Include <alloca.h>, to get our interface.
61178         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
61179         include <alloca.h> first.  Use C89 prototype for alloca; this
61180         requires including <stddef.h> for size_t.  Use extern "C" if C++.
61181         Use #elif for simplicity, since we can assume C89 now.
61182         Don't try to source the system alloca.h since it will not be found
61183         and to prevent recursively including its replacement.
61184         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
61185         * lib/regex.c: Likewise.
61186
61187 2004-05-16  Derek Price  <derek@ximbiot.com>
61188             Paul Eggert  <eggert@cs.ucla.edu>
61189
61190         getline cleanup.  This changes the getndelim2 API: both order of
61191         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
61192         no delimiter).
61193
61194         * lib/getline.c: Don't include stddef.h or stdio.h, since our
61195         interface does that.
61196         (getline): Always use getdelim, so that we don't have two
61197         copies of this code.
61198         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
61199         if available.
61200         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
61201         (GETNDELIM2_MAXIMUM): New macro.
61202         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
61203         instead of the old practice of delim2==0.  All callers changed.
61204         Return -1 on overflow, instead of returning junk.
61205         Do not set *linesize unless allocation succeeds.
61206         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
61207         that we include sys/types.h.
61208         * lib/getnline.h: Likewise.
61209         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
61210         (getndelim2): Reorder arguments.
61211         * lib/getnline.c (getnline, getndelim):
61212         Don't discard the NMAX argument.
61213         (getnline): Invoke getndelim, to avoid code duplication.
61214         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
61215         of (size_t) -1 by callers of the getnline family.
61216
61217 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
61218
61219         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
61220         Check for gettimeofday.
61221         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
61222         Check for settimeofday, stime.
61223
61224 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
61225
61226         * lib/nanosleep.c (suspended): Change its type from int to
61227         sig_atomic_t volatile.
61228         (first_call): Make it private to rpl_nanosleep, and have it
61229         be zero initially as that's a bit faster.
61230         (my_usleep): Round up fractional times instead of truncating them,
61231         as this is the usual meaning for 'sleep'.
61232
61233         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
61234         doesn't work.
61235         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
61236         (ENOSYS): Define if not defined.
61237         (settime): Fall back on stime if it exists and settimeofday fails.
61238         But don't bother with fallbacks if a method fails with errno == EPERM.
61239
61240 2004-05-11  Jim Meyering  <jim@meyering.net>
61241
61242         Prior to this change, the save_cwd caller required read access to the
61243         current directory on most systems (ones with the fchdir function).
61244
61245         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
61246         fails, try write-only, and finally, resort to using xgetcwd.
61247
61248 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
61249
61250         * lib/obstack.c, obstack.h: Import changes from libc.
61251
61252 2004-04-28  Bruno Haible  <bruno@clisp.org>
61253
61254         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
61255         also implicitly appends .exe to executables.
61256         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
61257         accepts Windows pathnames.
61258         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
61259         Treat Cygwin like Windows, since it now accepts Windows pathnames.
61260         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
61261         Treat Cygwin like Windows, since it now accepts Windows pathnames.
61262         Reported by Derek Robert Price <derek@ximbiot.com>.
61263
61264 2004-04-21  Karl Berry  <karl@gnu.org>
61265
61266         * config/srclist.txt (localcharset.c): break sync.
61267
61268 2004-04-20  Paul Eggert  <eggert@twinsun.com>
61269
61270         * m4/host-os.m4: Add a copyright notice.
61271
61272 2004-04-20  Jim Meyering  <jim@meyering.net>
61273
61274         Change UTILS_ to gl_ in AC_DEFINE'd names.
61275         Change utils_- and jm_-prefixed variables, too.
61276         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
61277         UTILS_FUNC_MKDIR_TRAILING_SLASH.
61278         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
61279
61280         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
61281         Don't emit trailing blanks.
61282         Also rename jm_-prefixed variables to have gl_ prefix.
61283
61284         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
61285         Also rename jm_-prefixed variables to have gl_ prefix.
61286
61287         * m4/jm-macros.m4: Reflect the renamings.
61288         * m4/prereq.m4: Likewise.
61289
61290 2004-04-20  Jim Meyering  <jim@meyering.net>
61291
61292         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
61293         memory.
61294
61295 2004-04-20  Jim Meyering  <jim@meyering.net>
61296             Bruno Haible  <bruno@clisp.org>
61297
61298         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
61299         memory when realloc fails.
61300
61301 2004-04-19  Jim Meyering  <jim@meyering.net>
61302
61303         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
61304         now that readutmp.c may call `free (0)'.
61305
61306 2004-04-19  Bruno Haible  <bruno@clisp.org>
61307
61308         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
61309         * m4/inttypes_h.m4: Likewise.
61310         * m4/stdint_h.m4: Likewise.
61311         * m4/intmax_t.m4: Likewise.
61312         * m4/uintmax_t.m4: Likewise.
61313
61314 2004-04-18  Jim Meyering  <jim@meyering.net>
61315
61316         * m4/prereq.m4: Don't forbid jm_ prefix.
61317
61318         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
61319         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
61320         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
61321         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
61322         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
61323         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
61324         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
61325         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
61326         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
61327         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
61328         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
61329         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
61330         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
61331         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
61332         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
61333         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
61334         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
61335         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
61336         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
61337
61338 2004-04-18  Jim Meyering  <jim@meyering.net>
61339
61340         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
61341         failure, don't leak memory and do call END_UTMP_ENT.
61342
61343 2004-04-16  Jim Meyering  <jim@meyering.net>
61344
61345         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
61346         coreutils' stat program.
61347         (gl_PREREQ): Don't require jm_PREREQ_STAT.
61348
61349 2004-04-11  Paul Eggert  <eggert@twinsun.com>
61350
61351         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
61352         C89.
61353         (CHAR_BIT): Remove, since we assume C89.
61354         Include <stdint.h> if available, as per current Autoconf CVS advice.
61355
61356 2004-03-31  Jim Meyering  <jim@meyering.net>
61357
61358         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
61359         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
61360         * m4/xalloc.m4: Likewise.
61361
61362 2004-03-30  Paul Eggert  <eggert@twinsun.com>
61363
61364         Merge from coreutils.
61365
61366         * m4/inttostr.m4: New file.
61367         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
61368         Require AM_STDBOOL_H and gl_TIMESPEC instead.
61369         Require gl_CLOCK_TIME.
61370         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
61371
61372 2004-03-30  Paul Eggert  <eggert@twinsun.com>
61373
61374         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
61375         not bool, to be more consistent with Unix conventions.
61376         Suggested by Bruno Haible.
61377
61378         Merge from coreutils.
61379
61380         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
61381         * lib/umaxtostr.c: New files.
61382
61383         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
61384         the usual <time.h> dance.
61385         (get_date): Change signature to support fractional time stamps.
61386         All callers changed.
61387         * lib/getdate.y: Include "getdate.h" first, as we can now
61388         assume C89 and don't need to worry about 'const'.
61389         Similarly, include "unlocked-io.h" near start, not in middle.
61390         Include <limits.h>.
61391         (textint.value): Use long int rather than int.
61392         (textint.digits): Use size_t rather than int.
61393         (BILLION, LOG10_BILLION): New constants.
61394         (parser_control): New member rel_ns.  Members day_ordinal,
61395         time_zone, month, day, hour, minutes, rel_year, rel_month,
61396         rel_day, rel_hour, rel_minutes, rel_seconds
61397         are now long int, not int.  Member seconds is now struct timespec,
61398         not int.  New member timespec_seen.  Members dates_seen, days_seen,
61399         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
61400         not int.
61401         (%union.intval): Now long int, not int.
61402         New member timespec.
61403         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
61404         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
61405         (spec): Now is a timespec or an item list.
61406         (timespec, items): New nonterminals.
61407         (time, rel, relunit, number, get_date):
61408         Add support for fractional seconds.
61409         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
61410         (gmtime, localtime, mktime): Remove decls; not needed with C89.
61411         (to_hour): First arg is now long int, not int.
61412         (to_year): Returns long int, not int.
61413         Don't treat year -70 like 70.
61414         (tm_diff): Returns long int, not int.
61415         (lookup_word): Use bool instead of int when appropriate.
61416         (yylex): Use size_t for count, not int.
61417         Detect overflow when parsing large integer constants.
61418         Add support for fractions.
61419         (get_date): Make pointers 'const' if possible.
61420         Use more-portable code to detect integer overflow.
61421         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
61422         Don't use ctime; it's not reliable if the year has >4 digits.
61423
61424         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
61425         This is for compatibility with BSD.
61426
61427         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
61428         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
61429         From coreutils' system.h.
61430
61431         * lib/userspec.c: Don't include "posixver.h".
61432         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
61433         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
61434         compatible extension.  Simplify code by removing a boolean int
61435         that was always nonzero if a string was nonnull.
61436
61437 2004-03-30  Jim Meyering  <jim@meyering.net>
61438
61439         Merge from coreutils.
61440
61441         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
61442         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
61443         on some systems one must include <grp.h> before it.
61444         Reported by Christian Krackowizer.
61445
61446 2004-03-30  Jim Meyering  <jim@meyering.net>
61447
61448         Merge from coreutils.
61449
61450         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
61451
61452         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
61453         an empty input stream.
61454
61455         * lib/readtokens.c: Include <stdbool.h>.
61456         (readtoken): Use `size_t' rather than int/long.
61457         All callers adjusted.
61458         Use `bool' rather than `int' where appropriate.
61459         Use memset rather than an explicit loop.
61460         Use x2nrealloc rather than xrealloc.
61461         Allow the use of `\0' as a delimiter.
61462         (readtokens): Likewise.
61463         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
61464
61465 2004-03-30  Jim Meyering  <jim@meyering.net>
61466
61467         * m4/realloc.m4: Remove file, since now it does no more than
61468         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
61469         the `configure.ac' section of module/realloc.
61470         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
61471
61472 2004-03-30  Bruno Haible  <bruno@clisp.org>
61473
61474         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
61475         nonnull.
61476
61477 2004-03-29  Paul Eggert  <eggert@twinsun.com>
61478
61479         Merge changes to getloadavg.c from coreutils and Emacs.
61480
61481         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
61482         Define to an expression, not to the empty string.
61483         Include cloexec.h and xalloc.h.
61484         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
61485         Use set_cloexec_flag rather than rolling our own.
61486         * lib/cloexec.c, lib/cloexec.h: New files.
61487
61488 2004-03-29  Paul Eggert  <eggert@twinsun.com>
61489
61490         * m4/cloexec.m4: New file.
61491
61492 2004-03-18  Paul Eggert  <eggert@twinsun.com>
61493
61494         * lib/getopt.h: Sync with libc CVS.
61495
61496 2004-03-18  Paul Eggert  <eggert@twinsun.com>
61497             Bruno Haible  <bruno@clisp.org>
61498
61499         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
61500         mbswidth.
61501
61502 2004-03-18  Paul Eggert  <eggert@twinsun.com>
61503             Bruno Haible  <bruno@clisp.org>
61504
61505         * lib/mbswidth.h: Include <wchar.h> only if
61506         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
61507         <wchar.h>.
61508         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
61509
61510 2004-03-09  Paul Eggert  <eggert@twinsun.com>
61511
61512         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
61513         Sync with libc CVS.
61514         * lib/getopt_int.h: New file, also synced from libc.
61515
61516 2004-03-09  Paul Eggert  <eggert@twinsun.com>
61517
61518         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
61519         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
61520         Bring back getopt.c, getopt.h, getopt1.c.
61521
61522 2004-03-07  Paul Eggert  <eggert@twinsun.com>
61523
61524         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
61525         All uses changed.  Check for sa_sigaction member; this fixes
61526         a bug first reported by Jason Andrade in
61527         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
61528
61529 2004-03-07  Paul Eggert  <eggert@twinsun.com>
61530
61531         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
61532         '#if' expressions.  Unlike the code it replaces, it does not
61533         depend on (defined _SC_PAGESIZE).  However, it does depend on
61534         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
61535         first reported by Jason Andrade in
61536         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
61537
61538 2004-02-25  Simon Josefsson  <jas@extundo.com>
61539
61540         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
61541
61542 2004-02-25  Simon Josefsson  <jas@extundo.com>
61543
61544         * lib/strdup.h: New file.
61545         * lib/strdup.c: Include it.
61546         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
61547         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
61548
61549 2004-02-23  Karl Berry  <karl@gnu.org>
61550
61551         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
61552         (from fencepost.gnu.org:/gd/gnuorg).
61553
61554 2004-02-23  Karl Berry  <karl@gnu.org>
61555
61556         * config/srclistvars.sh (GNUORG) [karl]: redefine.
61557         * config/srclist.txt: add maintain/standards documents.
61558
61559 2004-02-18  Bruno Haible  <bruno@clisp.org>
61560
61561         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
61562         Reported by Derek Robert Price <derek@ximbiot.com>.
61563
61564 2004-02-16  Karl Berry  <karl@gnu.org>
61565
61566         * config/mkinstalldirs, install-sh: update from automake.
61567
61568 2004-02-06  Karl Berry  <karl@gnu.org>
61569
61570         * m4/po.m4: update from gettext 0.14.1.
61571
61572 2004-02-06  Karl Berry  <karl@gnu.org>
61573
61574         * lib/config.charset: update from gettext 0.14.1.
61575
61576 2004-02-05  Paul Eggert  <eggert@twinsun.com>
61577
61578         Add comments and code, prompted by suggestions from Bruno Haible
61579         for sh-quote.
61580         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
61581         describing the enum quoting_style values.
61582         * lib/quotearg.c (quotearg_alloc): New function.
61583         (quotearg_buffer_restyled): Treat lone { and } as special.
61584         Treat = as special.  Work around bug with older shells
61585         that "see" a '\' that is really the 2nd byte of a multibyte char.
61586         Quote empty string with shell_quoting_style.
61587
61588 2004-02-03  Bruno Haible  <bruno@clisp.org>
61589
61590         * m4/pipe.m4: New file, from GNU gettext.
61591
61592 2004-02-03  Bruno Haible  <bruno@clisp.org>
61593
61594         * lib/pipe.h: New file, from GNU gettext.
61595         * lib/pipe.c: New file, from GNU gettext.
61596
61597 2004-01-27  Bruno Haible  <bruno@clisp.org>
61598
61599         * m4/execute.m4: New file, from GNU gettext.
61600
61601 2004-01-27  Bruno Haible  <bruno@clisp.org>
61602
61603         * lib/execute.h: New file, from GNU gettext.
61604         * lib/execute.c: New file, from GNU gettext.
61605         * lib/w32spawn.h: New file, from GNU gettext.
61606
61607 2004-01-24  Paul Eggert  <eggert@twinsun.com>
61608
61609         Merge from diffutils.
61610
61611         * lib/file-type.c (file_type): Add typed memory objects.
61612         * lib/file-type.h (S_TYPEISTMO): New macro.
61613
61614         * lib/c-stack.h (c_stack_action): Remove argv argument.
61615         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
61616         (die): Don't calculate message unless segv_action returns.
61617         (get_stack_location, min_address_from_argv, max_address_from_argv,
61618         volatile stack_base, volatile_stack_size): Remove.
61619         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
61620         that every segmentation violation is a stack overflow.  (Ouch!)
61621         See Debian bug 136249 (still outstanding) for more info about why
61622         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
61623
61624 2004-01-24  Paul Eggert  <eggert@twinsun.com>
61625
61626         Exit-status fix from coreutils.
61627
61628         Use exit_failure consistently in place of EXIT_FAILURE,
61629         so that program exit statuses are consistent on failure.
61630
61631         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
61632         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
61633         * lib/argmatch.h: Comment fix to match the above.
61634         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
61635         Now a macro referring to exit_failure, instead of a separate
61636         variable.  Include "exitfail.h" to get it.
61637         * lib/xstrtol.h: Include "exitfail.h".
61638         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
61639
61640         * lib/long-options.c (parse_long_options): Use prototype
61641         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
61642         for clarity.
61643
61644 2004-01-21  Jim Meyering  <jim@meyering.net>
61645
61646         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
61647         so as not to conflict with a different-sized __mktime_internal
61648         function in GNU libc.
61649         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
61650         Problem building statically-linked `ls' reported by Michael Brunnbauer.
61651
61652 2004-01-20  Karl Berry  <karl@gnu.org>
61653
61654         * config/config.guess: update from config.
61655
61656         * config/srclistvars.sh: GNUWWWLICENSES for karl.
61657
61658 2004-01-20  Bruno Haible  <bruno@clisp.org>
61659
61660         Safer stack allocation.
61661         * lib/setenv.c: Include allocsa.h.
61662         (alloca): Remove fallback definition.
61663         (freea): Remove macro.
61664         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
61665         instead of freea.
61666
61667 2004-01-20  Bruno Haible  <bruno@clisp.org>
61668
61669         * m4/eealloc.m4: New file, from GNU gettext.
61670
61671 2004-01-20  Bruno Haible  <bruno@clisp.org>
61672
61673         * m4/allocsa.m4: New file, from GNU gettext.
61674
61675 2004-01-20  Bruno Haible  <bruno@clisp.org>
61676
61677         * lib/xallocsa.h: New file, from GNU gettext.
61678         * lib/xallocsa.c: New file, from GNU gettext.
61679
61680 2004-01-20  Bruno Haible  <bruno@clisp.org>
61681
61682         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
61683
61684 2004-01-20  Bruno Haible  <bruno@clisp.org>
61685
61686         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
61687         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
61688         specially.
61689
61690 2004-01-20  Bruno Haible  <bruno@clisp.org>
61691
61692         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
61693         patch.
61694
61695 2004-01-20  Bruno Haible  <bruno@clisp.org>
61696
61697         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
61698
61699 2004-01-20  Bruno Haible  <bruno@clisp.org>
61700
61701         * lib/eealloc.h: New file.
61702
61703 2004-01-20  Bruno Haible  <bruno@clisp.org>
61704
61705         * lib/binary-io.h: Avoid warnings on Cygwin.
61706
61707 2004-01-20  Bruno Haible  <bruno@clisp.org>
61708
61709         * lib/allocsa.h: New file, from GNU gettext.
61710         * lib/allocsa.c: New file, from GNU gettext.
61711
61712 2004-01-18  Karl Berry  <karl@gnu.org>
61713
61714         * doc/gpl.texi, doc/lgpl.texi: new files.
61715
61716 2004-01-18  Karl Berry  <karl@gnu.org>
61717
61718         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
61719         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
61720
61721 2004-01-15  Paul Eggert  <eggert@twinsun.com>
61722
61723         Merge from coreutils.
61724
61725         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
61726         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
61727         (gl_DEFAULT_POSIX2_VERSION): Move
61728         the documentation from 'configure' into 'config.hin',
61729         so that 'configure --help' isn't burdened by it and
61730         we don't have to worry about its formatting there.
61731         Reword the documentation so that it's more succinct
61732         and can be run together into a single paragraph.
61733         * m4/same.m4 (gl_SAME): Check for pathconf.
61734
61735 2004-01-15  Paul Eggert  <eggert@twinsun.com>
61736
61737         Merge from coreutils.
61738
61739         * lib/posixver.c: Include posixver.h.
61740
61741         * lib/same.c: Include <stdbool.h>, <limits.h>.
61742         (_POSIX_NAME_MAX): Define if not defined.
61743         (MIN): New macro.
61744         (same_name): If file names are silently truncated, report
61745         that the file names are the same if they are the same after
61746         the silent truncation.
61747
61748         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
61749         conversion function.
61750         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
61751         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
61752         longer needed.
61753
61754 2004-01-15  Jim Meyering  <jim@meyering.net>
61755
61756         Merge from coreutils.
61757
61758         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
61759         if no library is required.
61760         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
61761         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
61762         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
61763         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
61764         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
61765         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
61766         value, $ac_cv_search_crypt, if it's "none required".
61767         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
61768         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
61769         not gl_FUNC_GETLOADAVG.
61770         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
61771         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
61772
61773 2004-01-15  Jim Meyering  <jim@meyering.net>
61774
61775         Merge from coreutils.
61776
61777         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
61778         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
61779         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
61780
61781         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
61782         optional configure-time default.
61783
61784         * lib/version-etc.c (version_etc_copyright): Update copyright date.
61785
61786         * lib/xreadlink.c (xreadlink): Correct outdated comment.
61787
61788 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
61789
61790         Merge from coreutils.
61791
61792         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
61793         value, $ac_cv_search_nanosleep, if it's "none required".
61794
61795 2004-01-14  Paul Eggert  <eggert@twinsun.com>
61796
61797         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
61798         with like-named macro in fnmatch.c.
61799         (EXT): Use an internal constant instead.
61800
61801         Merge fnmatch patches from glibc.
61802         * lib/fnmatch.c (mbsinit): Remove define.
61803         Add libc_hidden_ver (__fnmatch, fnmatch).
61804         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
61805         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
61806
61807 2004-01-14  Karl Berry  <karl@gnu.org>
61808
61809         * config/install-sh: update from automake.
61810
61811 2004-01-13  Karl Berry  <karl@gnu.org>
61812
61813         * config/install-sh: update from automake.
61814
61815 2004-01-09  Karl Berry  <karl@gnu.org>
61816
61817         * config/install-sh: update from automake.
61818
61819 2004-01-05  Karl Berry  <karl@gnu.org>
61820
61821         * config/config.{sub,guess}: update from config.
61822
61823 2003-12-31  Karl Berry  <karl@gnu.org>
61824
61825         * config/depcomp: update from automake.
61826
61827 2003-12-14  Karl Berry  <karl@gnu.org>
61828
61829         * lib/config.charset: update from gettext-runtime.
61830
61831 2003-12-03  Paul Eggert  <eggert@twinsun.com>
61832
61833         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
61834         Bug reported by Alfred M. Szmidt.
61835
61836 2003-12-03  Bruno Haible  <bruno@clisp.org>
61837
61838         * m4/gettext.m4: Upgrade from gettext-0.13.
61839         * m4/po.m4: Upgrade from gettext-0.13.
61840         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
61841         * m4/intmax.m4: New file, from gettext-0.13.
61842         * m4/printf-posix.m4: New file, from gettext-0.13.
61843
61844 2003-11-29  Karl Berry  <karl@gnu.org>
61845
61846         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
61847
61848 2003-11-25  Paul Eggert  <eggert@twinsun.com>
61849             Bruno Haible  <bruno@clisp.org>
61850
61851         * lib/printf-parse.h: Don't include sys/types.h.
61852         (ARG_NONE): New macro.
61853         (char_directive): Change type of *arg_index fields to size_t.
61854         * lib/printf-parse.c: Don't include sys/types.h.
61855         (SSIZE_MAX): Remove macro.
61856         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
61857         Remove unnecessary overflow check.
61858         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
61859         fields.
61860
61861 2003-11-25  Bruno Haible  <bruno@clisp.org>
61862
61863         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
61864
61865 2003-11-25  Bruno Haible  <bruno@clisp.org>
61866
61867         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
61868         gt_TYPE_SSIZE_T.
61869
61870 2003-11-24  Paul Eggert  <eggert@twinsun.com>
61871
61872         * modules/alloca: Remove dependency on xalloc.
61873
61874 2003-11-24  Paul Eggert  <eggert@twinsun.com>
61875
61876         * lib/alloca.c: Remove dependency on xalloc module.
61877         (xalloc_die): Remove.
61878         (memory_full) [!defined emacs]: New macro.
61879         [!defined emacs]: Don't include xalloc.h.
61880         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
61881         address arithmetic overflows.  Change datatypes a bit to avoid
61882         unnecessary casts.
61883
61884 2003-11-22  Jim Meyering  <jim@meyering.net>
61885
61886         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
61887         s/size/size_t/.
61888
61889 2003-11-21  Karl Berry  <karl@gnu.org>
61890
61891         * config/config.{sub,guess}: update from config.
61892
61893 2003-11-18  Karl Berry  <karl@gnu.org>
61894
61895         * config/config.{sub,guess}: update from config.
61896
61897         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
61898
61899 2003-11-17  Paul Eggert  <eggert@twinsun.com>
61900
61901         * README: Mention that S+T cannot overflow if S is the size of
61902         an existing object and T is sufficiently small.
61903
61904 2003-11-17  Jim Meyering  <jim@meyering.net>
61905
61906         On systems without utime and without a utimes function capable of
61907         dealing with a NULL struct utimbuf* argument, this utime replacement
61908         could -- in unusual circumstances -- leak a file descriptor.
61909         * lib/utime.c: Include <unistd.h> and <errno.h>.
61910         (utime_null): Be sure to close `fd' and to preserve errno.
61911         Reported by Geoff Collyer via Arnold Robbins.
61912
61913 2003-11-17  Bruno Haible  <bruno@clisp.org>
61914
61915         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
61916         (Depends-on): Add xsize.
61917
61918 2003-11-17  Bruno Haible  <bruno@clisp.org>
61919
61920         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
61921
61922 2003-11-17  Bruno Haible  <bruno@clisp.org>
61923
61924         * lib/vasnprintf.c (alloca): Remove fallback definition.
61925         (freea): Remove definition.
61926         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
61927         Reported by Paul Eggert.
61928
61929 2003-11-16  Paul Eggert  <eggert@twinsun.com>
61930             Bruno Haible  <bruno@clisp.org>
61931
61932         Protect against address arithmetic overflow.
61933         * lib/printf-args.h: Include stddef.h.
61934         (arguments): Change type of field 'count' to size_t.
61935         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
61936         'unsigned int' where appropriate.
61937         * lib/printf-parse.h: Include sys/types.h.
61938         (char_directive): Change type of *arg_index fields to ssize_t.
61939         (char_directives): Change type of fields 'count', max_*_length to
61940         size_t.
61941         * lib/printf-parse.c: Include sys/types.h and xsize.h.
61942         (SSIZE_MAX): Define fallback value.
61943         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
61944         instead of 'int' where appropriate. Check a_allocated, d_allocated
61945         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
61946         * lib/vasnprintf.c: Include xsize.h.
61947         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
61948         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
61949         overflow. Avoid wraparound when converting a width or precision from
61950         decimal to binary.
61951
61952 2003-11-16  Bruno Haible  <bruno@clisp.org>
61953
61954         Update from GNU gettext.
61955         * lib/printf-parse.c: Generalize to it can be compiled for wide
61956         strings.
61957         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
61958         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
61959         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
61960         SNPRINTF): New macros.
61961         Don't include <alloca.h> if the file is used inside libintl.
61962         (local_wcslen): New function, for Solaris 2.5.1.
61963         (VASNPRINTF): Use it instead of wcslen.
61964
61965 2003-11-16  Bruno Haible  <bruno@clisp.org>
61966
61967         * lib/xsize.h (xmax): New function.
61968         (xsum, xsum3, xsum4): Declare as "pure" functions.
61969
61970 2003-11-12  Paul Eggert  <eggert@twinsun.com>
61971
61972         * modules/xalloc (Files): Undo latest change, since xalloc.h
61973         no longer needs SIZE_MAX or PTRDIFF_MAX.
61974
61975 2003-11-12  Paul Eggert  <eggert@twinsun.com>
61976
61977         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
61978         gl_PTRDIFF_MAX.
61979
61980 2003-11-12  Paul Eggert  <eggert@twinsun.com>
61981
61982         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
61983         "return", to pacify some unknown compiler.  Problem reported
61984         by Joerg Schilling.
61985
61986 2003-11-12  Paul Eggert  <eggert@twinsun.com>
61987
61988         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
61989         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
61990         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
61991         heuristic is just as accurate as far as we know, and it removes a
61992         dependency on size_max.m4 and ptrdiff_max.m4.
61993
61994 2003-11-11  Bruno Haible  <bruno@clisp.org>
61995
61996         * modules/xsize (Files): Add m4/size_max.m4.
61997         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
61998
61999 2003-11-11  Bruno Haible  <bruno@clisp.org>
62000
62001         * m4/size_max.m4: New file.
62002         * m4/ptrdiff_max.m4: New file.
62003         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
62004         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
62005         (gl_XALLOC): Invoke it.
62006
62007 2003-11-11  Bruno Haible  <bruno@clisp.org>
62008
62009         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
62010         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
62011         defined.
62012
62013 2003-11-10  Paul Eggert  <eggert@twinsun.com>
62014
62015         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
62016         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
62017         rejected some allocations of exactly SIZE_MAX - 2 bytes.
62018         From Bruno Haible.
62019         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
62020         not (size_t) -1, since it's defined here.
62021
62022 2003-11-09  Karl Berry  <karl@gnu.org>
62023
62024         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
62025
62026 2003-11-06  Paul Eggert  <eggert@twinsun.com>
62027
62028         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
62029         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
62030         Reject sizes of exactly SIZE_MAX bytes.
62031         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
62032         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
62033
62034 2003-11-05  Bruno Haible  <bruno@clisp.org>
62035
62036         * lib/xsize.h: Include limits.h, to avoid a possible collision with
62037         SIZE_MAX defined in <limits.h> on Solaris.
62038
62039 2003-11-04  Jim Meyering  <jim@meyering.net>
62040
62041         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
62042         variable names, rather than @VAR@.
62043         * modules/poll: Likewise.
62044
62045 2003-11-04  Bruno Haible  <bruno@clisp.org>
62046
62047         * modules/xsize: New file.
62048         * modules/linebreak: Depend on xsize.
62049         * MODULES.html.sh (func_all_modules): Add xsize.
62050
62051 2003-11-04  Bruno Haible  <bruno@clisp.org>
62052
62053         * m4/xsize.m4: New file.
62054
62055 2003-11-04  Bruno Haible  <bruno@clisp.org>
62056
62057         * lib/xsize.h: New file.
62058         * lib/linebreak.c: Include xsize.h.
62059         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
62060         argument for overflow.
62061         Suggested by Paul Eggert.
62062
62063 2003-11-03  Karl Berry  <karl@gnu.org>
62064
62065         * config/config.{guess,sub}: update from config.
62066
62067 2003-11-03  Jim Meyering  <jim@meyering.net>
62068
62069         * modules/userspec (lib_SOURCES): Add userspec.h.
62070         (Include): Add "userspec.h".
62071         Improve description.
62072
62073 2003-11-03  Jim Meyering  <jim@meyering.net>
62074
62075         * lib/userspec.c: Include "userspec.h".
62076         * lib/userspec.h: New file.
62077
62078 2003-11-03  Bruno Haible  <bruno@clisp.org>
62079
62080         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
62081
62082 2003-11-03  Bruno Haible  <bruno@clisp.org>
62083
62084         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
62085         available, to avoid (extremely rare) race condition.
62086         Suggested by Paul Eggert.
62087
62088 2003-11-02  Karl Berry  <karl@gnu.org>
62089
62090         * config/srclist.txt (vasprintf.c): sync broken, sigh.
62091
62092 2003-10-31  Paul Eggert  <eggert@twinsun.com>
62093
62094         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
62095         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
62096         (read_filesystem_list): Set and use me_type_malloced.
62097         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
62098         whatever the type happens to be), for brevity and consistency.
62099         Check for size calculation overflow on Alphas running OSF/1.
62100
62101 2003-10-31  Jim Meyering  <jim@meyering.net>
62102
62103         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
62104
62105         * lib/linebuffer.c: Include <string.h> for declaration of memset.
62106
62107 2003-10-30  Paul Eggert  <eggert@twinsun.com>
62108             Bruno Haible  <bruno@clisp.org>
62109
62110         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
62111         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
62112
62113 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
62114
62115         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
62116         netbsd*-gnu*.  Suggested by Robert Millan.
62117
62118 2003-10-29  Paul Eggert  <eggert@twinsun.com>
62119
62120         * modules/group-member: Depend on stdbool.
62121
62122 2003-10-29  Paul Eggert  <eggert@twinsun.com>
62123
62124         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
62125
62126 2003-10-29  Paul Eggert  <eggert@twinsun.com>
62127
62128         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
62129         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
62130         after the 'gnu' in these cases.  This fixes some bugs in the
62131         previous change, and is based on suggestions by Robert Millan.
62132
62133 2003-10-29  Paul Eggert  <eggert@twinsun.com>
62134
62135         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
62136         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
62137         no longer needed.
62138         * lib/quotearg.c (quotearg_n_options): Use it.
62139         * lib/group-member.c: Include <stdbool.h>.
62140         (free_group_info): Arg is now const *; don't free arg.
62141         (get_group_info): Now returns bool and accepts struct group_info *,
62142         rather than returning a malloc'ed struct group_info *.
62143         All uses changed.  Check for overflow in internal size calculation.
62144
62145         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
62146         rather than xmalloc/xrealloc.
62147         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
62148         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
62149         conformance bug: the old code used a pointer after freeing the
62150         storage that it addressed.
62151         * lib/hash.c (hash_initialize): Simplify the code by using
62152         xalloc_oversized rather than doing it by hand.
62153         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
62154         the buffer preserved.  Use free and xmalloc instead.
62155         * lib/quotearg.c (quotearg_n_options): Likewise.
62156         Use a simpler test for size overflow.  Don't use xalloc_oversized
62157         because unsigned int might be wider than size_t (!); this suggests
62158         that we should switch from unsigned int to size_t for slot numbers.
62159
62160 2003-10-28  Paul Eggert  <eggert@twinsun.com>
62161
62162         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
62163         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
62164         NetBSD kernels.  Requested by Richard Stallman.
62165
62166 2003-10-27  Paul Eggert  <eggert@twinsun.com>
62167
62168         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
62169         to allocate the returned structure.  Do not allocate a subarray,
62170         as x2nrealloc will do that.
62171         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
62172         instead of xnrealloc.
62173         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
62174
62175 2003-10-27  Bruno Haible  <bruno@clisp.org>
62176
62177         * lib/stdbool_.h: Better support for BeOS.
62178
62179 2003-10-26  Paul Eggert  <eggert@twinsun.com>
62180
62181         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
62182         now uses inline.
62183
62184 2003-10-26  Paul Eggert  <eggert@twinsun.com>
62185
62186         * lib/xalloc.h (xalloc_oversized): New static inline function, for
62187         callers that want to do their own size-overflow checking.  Include
62188         <stdbool.h>, since xalloc_oversized returns bool.
62189         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
62190         to use xalloc_oversized.
62191
62192         Add two functions x2realloc, x2nrealloc, for programs that grow
62193         arrays dynamically by doubling their sizes.
62194         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
62195         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
62196         New functions.
62197
62198         Port to C99 semantics for 'inline' of external functions.
62199         Bug reported by Bruno Haible.
62200         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
62201         with the old contents of xnmalloc.
62202         (xnmalloc, xmalloc): Use it.
62203         (xnrealloc_inline): New static inline function,
62204         with the old contents of xnrealloc.
62205         (xnrealloc, xrealloc): Use it.
62206
62207         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
62208         that.
62209
62210 2003-10-26  Karl Berry  <karl@gnu.org>
62211
62212         * config/srclist.txt (COPYING.DOC): no longer available from
62213         /gd/gnuorg; don't know where the ultimate source is.
62214
62215 2003-10-25  Paul Eggert  <eggert@twinsun.com>
62216
62217         Fix several address-calculation bugs in the hash modules,
62218         plus some minor code cleanup.
62219
62220         * lib/hash.h: Include <stdbool.h>, for bool.
62221         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
62222         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
62223         hash_get_n_entries, hash_get_max_bucket_length,
62224         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
62225         hash_rehash): Use size_t rather than unsigned.
62226         * lib/hash.c (struct hash_table, hash_get_n_buckets,
62227         hash_get_n_buckets_used, hash_get_n_entries,
62228         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
62229         hash_get_entries, hash_do_for_each, hash_string, is_prime,
62230         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
62231         Likewise.
62232         (SIZE_MAX): Define if not defined.
62233         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
62234         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
62235         hash_print):
62236         Use const * when possible.
62237         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
62238         (check_tuning): Fix bug: if tuning parameters were very close to
62239         0 or 1, rounding errors could have caused subscript violations.
62240         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
62241         (hash_initialize): Add 'fail:' label
62242         to free table and return NULL, and use it to simplify code.
62243         Use calloc rather than clearing the storage ourself.
62244         (hash_initialize, hash_rehash): Check for arithmetic overflow in
62245         buffer size calculations.
62246         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
62247         Include <stddef.h>, for size_t.
62248         * lib/hash-pjw.c (hash_pjw): Likewise.
62249         Switch to method described by Bruno Haible.
62250         Include <limits.h>, for CHAR_BIT.
62251         (SIZE_BITS): New macro.
62252
62253 2003-10-23  Paul Eggert  <eggert@twinsun.com>
62254
62255         * m4/getline.m4 (AM_FUNC_GETLINE):
62256         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
62257         hosts.  Problem reported by Derek Robert Price in
62258         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
62259         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
62260         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
62261
62262 2003-10-21  Paul Eggert  <eggert@twinsun.com>
62263
62264         * lib/getndelim2.c (getndelim2): When size calculation overflows,
62265         ceiling the allocation at NMAX bytes rather than silently
62266         discarding input bytes before NMAX is reached.  This makes
62267         a difference only if NMAX exceeds SIZE_MAX / 2.
62268
62269         * lib/obstack.c: Merge from glibc.
62270         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
62271         Add libc_hidden_def (_obstack_newchunk).
62272         (_obstack_free) [! defined _LIBC]: Remove.
62273         [defined _LIBC]: Make a strong alias from obstack_free, rather than
62274         a clone of the function body.
62275         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
62276         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
62277
62278         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
62279         glibc.
62280         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
62281         arg to memcpy.
62282
62283         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
62284         (obstack_ptr_grow_fast, obstack_int_grow_fast):
62285         Don't use lvalue casts, as GCC plans to remove support for them
62286         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
62287         was also present in the non-GCC version, indicating that this
62288         code had always been buggy and had never been widely used.
62289         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
62290         Use the fast variant of each macro, rather than copying the
62291         definiens of the fast variant; that way, we'll be more likely to
62292         catch future bugs in the fast variants.
62293
62294 2003-10-20  Bruno Haible  <bruno@clisp.org>
62295
62296         * modules/wait-process: New file.
62297         * MODULES.html.sh (func_all_modules): Add wait-process.
62298
62299 2003-10-20  Bruno Haible  <bruno@clisp.org>
62300
62301         * m4/wait-process.m4: New file.
62302
62303 2003-10-20  Bruno Haible  <bruno@clisp.org>
62304
62305         * lib/wait-process.h: New file, from GNU gettext.
62306         * lib/wait-process.c: New file, from GNU gettext.
62307
62308 2003-10-19  Jim Meyering  <jim@meyering.net>
62309
62310         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
62311         HPUX 10.20.
62312
62313 2003-10-18  Karl Berry  <karl@gnu.org>
62314
62315         * config/config.guess: update from config.
62316
62317 2003-10-16  Paul Eggert  <eggert@twinsun.com>
62318
62319         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
62320         (getgroups): First arg is int, not size_t.
62321         Don't let 'free' mangle errno.
62322
62323 2003-10-16  Paul Eggert  <eggert@twinsun.com>
62324
62325         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
62326
62327 2003-10-16  Karl Berry  <karl@gnu.org>
62328
62329         * config/config.{guess,sub}: update from config.
62330
62331 2003-10-16  Jim Meyering  <jim@meyering.net>
62332
62333         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
62334         memcpy.
62335
62336 2003-10-15  Paul Eggert  <eggert@twinsun.com>
62337
62338         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
62339         (SIZE_MAX): Remove.
62340         (new_exclude, add_exclude_file): Initial size no longer needs to
62341         be a power of 2.
62342         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
62343         our own address arithmetic overflow checking.
62344
62345         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
62346         (fnmatch): Do not alloca more than 2000 wide characters;
62347         instead, use malloc for large buffers.
62348         Check for address arithmetic overflow, and return -1
62349         with errno set to ENOMEM in that case.
62350         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
62351         (NEW_PATTERN): Do not alloca more than 8000 bytes;
62352         instead, return -1.  Check for address arithmetic overflow.
62353
62354 2003-10-14  Paul Eggert  <eggert@twinsun.com>
62355
62356         Handle invalid suffixes and overflow independently, so that
62357         callers can treat them independently as needed.  Fix some bugs in
62358         suffix handling, e.g., "100k@" was not diagnosed as an invalid
62359         suffix for a human-readable blocksize.  The major caller-visible
62360         change is the addition of a new
62361         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
62362         that both overflow and suffix chars were found.
62363
62364         * lib/human.c (humblock): Don't check separately for invalid suffix
62365         char; that is xstrtoumax's job (now that its bug is fixed).
62366         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
62367         INTMAX_MAX]: New macros.
62368         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
62369         TYPE_MAXIMUM): New macros.
62370         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
62371         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
62372         if overflow occurs, as it's what __strtol does and it's more useful
62373         in practice.
62374         (__xstrtol): If __strtol reports some error other than ERANGE,
62375         reflect it to the caller as LONGINT_INVALID.  If it reports
62376         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
62377         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
62378         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
62379         value.
62380         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
62381         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
62382         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
62383         [defined UINTMAX_MAX]: New macros.
62384
62385 2003-10-14  Bruno Haible  <bruno@clisp.org>
62386
62387         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
62388
62389 2003-10-14  Bruno Haible  <bruno@clisp.org>
62390
62391         * m4/sig_atomic_t: New file, from GNU gettext.
62392         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
62393
62394 2003-10-14  Bruno Haible  <bruno@clisp.org>
62395
62396         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
62397         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
62398         Also use volatile where needed.
62399
62400 2003-10-12  Paul Eggert  <eggert@twinsun.com>
62401
62402         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
62403         Change maintainer from Bruno Haible to 'all'.
62404
62405 2003-10-12  Paul Eggert  <eggert@twinsun.com>
62406
62407         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
62408
62409 2003-10-12  Paul Eggert  <eggert@twinsun.com>
62410
62411         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
62412         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
62413         and define in terms of the other primitives.
62414         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
62415         (SIZE_MAX): Define if not already defined.
62416         (array_size_overflow): New function.
62417         (xalloc_die): Abort instead of exiting if 'error' returns.
62418         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
62419         (xmalloc, xrealloc): Use them.
62420         (xcalloc): Check for address arithmetic overflow.
62421         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
62422         a bit faster than strcpy.
62423
62424 2003-10-10  Simon Josefsson  <jas@extundo.com>
62425
62426         * modules/argp (Depends-on): Add restrict and strcase.
62427
62428 2003-10-10  Simon Josefsson  <jas@extundo.com>
62429
62430         * m4/argp.m4: Add AC_C_INLINE.
62431
62432 2003-10-08  Paul Eggert  <eggert@twinsun.com>
62433
62434         Merge getpass from libc, plus a few fixes.
62435
62436         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
62437         Include <stdbool.h>.
62438         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
62439         __fsetlocking to empty.
62440         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
62441         do include <bits/libc-lock.h>.
62442         Do not include <fcntl.h>; not needed.
62443         [_LIBC]: Include <wchar.h>.
62444         (NOTCANCEL_MODE): New macro.
62445         (flockfile, funlockfile) [_LIBC]: New macros.
62446         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
62447         [!_LIBC]: New macros.
62448         (call_fclose): New function.
62449         (getpass): Use it.  Save tty stream separately; this simplifies the
62450         code and makes it more reliable if stdin happens to equal stdout.
62451         Invoke __fsetlocking on tty.
62452         Handle thread cancellation if needed.
62453         Namespace cleanup (use __tcgetattr, __getline).
62454         Use bool for Booleans.
62455         [USE_IN_LIBIO]: Handle wide streams.
62456         [!_LIBC]: Unconditionally do the fseek, since we don't know what
62457         stream might go where.
62458
62459         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
62460         doesn't have to include <stdio.h> before us.
62461         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
62462         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
62463         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
62464         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
62465         if not declared, so that we can use getpass.c code from libc without
62466         rewriting it.
62467         (flockfile, ftrylockfile, funlockfile): New macros.
62468
62469 2003-10-08  Paul Eggert  <eggert@twinsun.com>
62470
62471         * modules/getpass: Depend on stdbool.
62472
62473 2003-10-08  Paul Eggert  <eggert@twinsun.com>
62474
62475         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
62476
62477 2003-10-07  Karl Berry  <karl@gnu.org>
62478
62479         * config/config.{guess,sub}: update from config.
62480
62481 2003-10-06  Jim Meyering  <jim@meyering.net>
62482             Bruno Haible  <bruno@clisp.org>
62483
62484         This lets translators provide better translations for the
62485         "Written by ..." part of --version output.
62486         * lib/version-etc.h: Include stdarg.h.
62487         (version_etc_copyright): Declare as readonly.
62488         (version_etc): Make this function variadic with a NULL-terminated list
62489         of author name strings.
62490         (version_etc_va): New declaration.
62491         * lib/version-etc.c: Include stdarg.h, stdlib.h.
62492         (version_etc_copyright): Declare as readonly.
62493         (version_etc_va): New function. Provide a different translatable string
62494         for each possible number of authors < 10. Abbreviate when there are 10
62495         authors or more.
62496         (version_etc): Make this function variadic. Call version_etc_va.
62497         Suggestion from Gary V. Vaughan.
62498
62499         * lib/long-options.h (parse_long_options): Change prototype: the
62500         authors string is moved to the end and becomes variadic.
62501         * lib/long-options.c: Include stdarg.h.
62502         (parse_long_options): Make this function variadic, too.
62503         Call version_etc_va, not version_etc.
62504
62505 2003-10-06  Bruno Haible  <bruno@clisp.org>
62506
62507         * modules/version-etc-2: Remove file.
62508         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
62509
62510 2003-10-06  Bruno Haible  <bruno@clisp.org>
62511
62512         * modules/fatal-signal: New file.
62513         * MODULES.html.sh (func_all_modules): Add fatal-signal.
62514
62515 2003-10-06  Bruno Haible  <bruno@clisp.org>
62516
62517         * m4/fatal-signal.m4: New file.
62518         * m4/signalblocking.m4: New file, from GNU gettext.
62519
62520 2003-10-06  Bruno Haible  <bruno@clisp.org>
62521
62522         * lib/version-etc-2.h: Remove file.
62523         * lib/version-etc-2.c: Remove file.
62524
62525 2003-10-06  Bruno Haible  <bruno@clisp.org>
62526
62527         * lib/fatal-signal.h: New file, from GNU gettext.
62528         * lib/fatal-signal.c: New file, from GNU gettext.
62529
62530 2003-10-05  Paul Eggert  <eggert@twinsun.com>
62531
62532         * README: Rework advice for preventing empty .o files.
62533         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
62534         not <sys/types.h>.
62535
62536 2003-10-04  Karl Berry  <karl@gnu.org>
62537
62538         * lib/argp*: update from libc.
62539
62540 2003-10-04  Karl Berry  <karl@gnu.org>
62541
62542         * config/config.{guess,sub}: update from config.
62543
62544 2003-10-02  Bruno Haible  <bruno@clisp.org>
62545
62546         * modules/lchown (Include): Add lchown.h.
62547         * modules/time_r (Include): Use "..." syntax.
62548         * modules/xgetdomainname (Include): Add xgetdomainname.h.
62549
62550 2003-10-01  Simon Josefsson  <jas@extundo.com>
62551
62552         * MODULES.html.sh (func_all_modules): Move gethostname from section
62553         'based on' to section 'lacking' POSIX:2001.
62554
62555 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
62556
62557         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
62558         to output mode on the same stream.
62559
62560 2003-09-29  Paul Eggert  <eggert@twinsun.com>
62561
62562         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
62563         Fix arg typo in previous patch.
62564
62565 2003-09-28  Jim Meyering  <jim@meyering.net>
62566
62567         * lib/error.c: Correct cpp indentation.
62568
62569 2003-09-27  Paul Eggert  <eggert@twinsun.com>
62570
62571         * modules/free: New file.
62572
62573 2003-09-27  Paul Eggert  <eggert@twinsun.com>
62574
62575         * m4/free.m4: New file.
62576
62577 2003-09-27  Paul Eggert  <eggert@twinsun.com>
62578
62579         * lib/minmax.h (MIN, MAX)
62580         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
62581         Omit the special code that used __typeof__, since we worry that
62582         it could be more trouble than it's worth.  See:
62583         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
62584         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
62585
62586         * lib/free.c: New file.
62587
62588 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
62589
62590         Trivial fixes to Makefile.am parts of module listings.
62591         * modules/strstr: Append strstr.h to lib_SOURCES.
62592         * modules/strcase: Likewise, for strcase.h.
62593
62594 2003-09-27  Karl Berry  <karl@gnu.org>
62595
62596         * config/mkinstalldirs: update from automake.
62597
62598 2003-09-26  Paul Eggert  <eggert@twinsun.com>
62599
62600         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
62601         (error_tail): Do not loop, reallocating temporary buffer, since
62602         the output cannot contain more wide characters than the input
62603         contains bytes, the size must be big enough already.  This avoids
62604         one potential size overflow calculation.  Check for size overflow
62605         when calculating temporary buffer size.  Free temporary buffer
62606         when done, if it was allocated with malloc; this plugs a memory
62607         leak.  Remove casts from void * to pointers, that are no longer
62608         needed now that we're assuming C89 or better.
62609
62610         Merge error changes from glibc.
62611
62612         * lib/error.c, error.h: Update copyright notice header to match glibc.
62613         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
62614         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
62615         Disable cancellation while printing error.
62616         * lib/error.h: Prepend __ to parameter names.
62617
62618 2003-09-26  Jim Meyering  <jim@meyering.net>
62619
62620         * lib/error.c (error_tail): Move some declarations
62621         into inner scope where the local variables are used.
62622
62623 2003-09-26  Bruno Haible  <bruno@clisp.org>
62624
62625         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
62626         stpncpy().
62627         Don't define stpncpy through config.h; it's now done through stpncpy.h.
62628
62629 2003-09-26  Bruno Haible  <bruno@clisp.org>
62630
62631         * lib/stpncpy.h (gnu_stpncpy): New declaration.
62632         (stpncpy): Define as alias for gnu_stpncpy.
62633         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
62634
62635 2003-09-25  Simon Josefsson  <jas@extundo.com>
62636
62637         * lib/xgetdomainname.h: New file.
62638         * lib/xgetdomainname.c: New file.
62639
62640 2003-09-25  Simon Josefsson  <jas@extundo.com>
62641             Bruno Haible  <bruno@clisp.org>
62642
62643         * modules/getdomainname: New file.
62644         * modules/xgetdomainname: New file.
62645         * MODULES.html.sh (func_all_modules): Add getdomainname,
62646         xgetdomainname.
62647
62648 2003-09-25  Simon Josefsson  <jas@extundo.com>
62649             Bruno Haible  <bruno@clisp.org>
62650
62651         * m4/getdomainname.m4: New file.
62652
62653 2003-09-25  Simon Josefsson  <jas@extundo.com>
62654             Bruno Haible  <bruno@clisp.org>
62655
62656         * lib/getdomainname.h: New file.
62657         * lib/getdomainname.c: New file.
62658
62659 2003-09-25  Karl Berry  <karl@gnu.org>
62660
62661         * lib/argp-fmtstream.c, argp-help.c: update from libc.
62662
62663 2003-09-25  Karl Berry  <karl@gnu.org>
62664
62665         * config/install-sh: update from automake.
62666
62667 2003-09-25  Bruno Haible  <bruno@clisp.org>
62668
62669         * modules/version-etc-2: New file, from modules/version-etc with
62670         modifications.
62671         * MODULES.html.sh (func_all_modules): Add version-etc-2.
62672
62673 2003-09-25  Bruno Haible  <bruno@clisp.org>
62674
62675         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
62676         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
62677
62678 2003-09-24  Simon Josefsson  <jas@extundo.com>
62679
62680         * modules/xgethostname: Add xgethostname.h.
62681
62682 2003-09-24  Paul Eggert  <eggert@twinsun.com>
62683
62684         * lib/linebuffer.c (freebuffer): Don't free the argument, just
62685         the buffer associated with the argument.  Bug reported by
62686         Simon Josefsson.
62687
62688 2003-09-24  Paul Eggert  <eggert@twinsun.com>
62689
62690         * README: Document assumptions that 'int' is at least 32 bits
62691         wide, that integer arithmetic is 2's complement without overflow,
62692         that there are no holes in integer values, that adding sizes of
62693         two nonoverlapping objects can't overflow, and that all-bits-zero
62694         yields scalar zero.  Fix spelling and capitalization typos.
62695
62696 2003-09-19  Karl Berry  <karl@gnu.org>
62697
62698         * lib/argp.h: update from libc.
62699
62700 2003-09-17  Paul Eggert  <eggert@twinsun.com>
62701
62702         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
62703         to avoid spurious warnings like "AC_RUN_IFELSE was called before
62704         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
62705
62706 2003-09-17  Paul Eggert  <eggert@twinsun.com>
62707
62708         * gnulib-tool: Use "test -h", not "test -L", for portability
62709         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
62710         (tags_regexp): Remove, since \| doesn't conform to POSIX.
62711         (sed_extract_prog): Issue s commands one-by-one, rather than
62712         using \| in one s command.
62713
62714 2003-09-16  Paul Eggert  <eggert@twinsun.com>
62715
62716         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
62717         input error, instead of returning NULL the next time we are called
62718         (and therefore losing track of errno).
62719
62720 2003-09-16  Bruno Haible  <bruno@clisp.org>
62721
62722         * gnulib-tool (func_create_testdir): Warn about duplicated
62723         dependencies.
62724
62725 2003-09-15  Paul Eggert  <eggert@twinsun.com>
62726
62727         * modules/argmatch, modules/fatal, modules/obstack,
62728         modules/xalloc, modules/xgethostname: Sort dependencies by
62729         importance, not alphabetically.
62730
62731 2003-09-15  Paul Eggert  <eggert@twinsun.com>
62732
62733         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
62734         fails, so that the caller gets the proper errno.
62735
62736         * lib/readutmp.c (read_utmp): Likewise.
62737         Check for fstat error.  Close stream and free storage
62738         when failing.
62739
62740 2003-09-14  Karl Berry  <karl@gnu.org>
62741
62742         * config/srclist.txt (strdup.c): disable for c89 changes.
62743
62744 2003-09-14  Jim Meyering  <jim@meyering.net>
62745
62746         * lib/getloadavg.c: Correct cpp indentation.
62747         * lib/strdup.c: Likewise.
62748         * lib/vasnprintf.c: Likewise.
62749
62750 2003-09-14  Bruno Haible  <bruno@clisp.org>
62751
62752         * modules/fwriteerror: New file.
62753         * MODULES.html.sh (func_all_modules): Add fwriteerror.
62754
62755 2003-09-14  Bruno Haible  <bruno@clisp.org>
62756
62757         * lib/fwriteerror.h: New file.
62758         * lib/fwriteerror.c: New file.
62759
62760 2003-09-12  Paul Eggert  <eggert@twinsun.com>
62761
62762         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
62763         modules/xgethostname, modules/xalloc: Depend on exit.
62764
62765 2003-09-12  Paul Eggert  <eggert@twinsun.com>
62766
62767         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
62768
62769         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
62770         and AC_MINIX, too, so that their extensions are available.
62771
62772         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
62773         This macro has been superseded by gl_BACKUPFILE.
62774
62775         More patches to assume C89 or better.
62776
62777         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
62778
62779         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
62780         unconditionally.
62781         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
62782         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
62783         Include <string.h>, <stdlib.h> unconditionally.
62784         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
62785         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
62786         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
62787         headers or for string.h.
62788         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
62789         or strtoul.
62790
62791         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
62792         headers.
62793         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
62794         * m4/userspec.m4 (gl_USERSPEC): Likewise.
62795         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
62796         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
62797         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
62798         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
62799         memcpy, memset.
62800         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
62801         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
62802         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
62803         strtol.
62804         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
62805         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
62806         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
62807         strtoul.
62808
62809 2003-09-12  Paul Eggert  <eggert@twinsun.com>
62810
62811         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
62812         * lib/obstack.c [!defined _LIBC]: Likewise.
62813         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
62814         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
62815         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
62816
62817         More changes to assume C89 or better.
62818
62819         * lib/error.c (error_tail): Assume vprintf.
62820
62821         * lib/argmatch.c (getenv): Remove decl.
62822         * lib/progreloc.c (get_full_program_name): Define via prototype.
62823         * lib/setenv.c (clearenv): Likewise.
62824         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
62825         needed.
62826         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
62827         (malloc, memcpy): Remove decls.
62828         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
62829         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
62830         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
62831         (memcpy): Remove macro.
62832         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
62833         (__P): Remove.  All uses removed.
62834         (PTR): Remove.  All uses changed to void *.
62835         (CHAR_BIT, NULL): Remove.
62836         (spaces, zeros, memset_space, memset_zero)
62837         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
62838         Remove.
62839         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
62840         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
62841         Define with prototype.
62842         Remove now-unnecessary prototype decl.
62843         (extra_args_spec): Assume ANSI C.  All uses changed.
62844         (extra_args_spec_iso): Remove.
62845         (my_strftime, emacs_strftimeu): Define via prototype.
62846         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
62847         unconditionally.
62848         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
62849         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
62850         (strtoul, strtol): Remove decls.
62851         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
62852         LONG_MAX): Remove.
62853         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
62854         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
62855         (LOCALE_PARAM_PROTO): New macro.
62856         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
62857         (INTERNAL (strtol), strtol): Define with a prototype.
62858         (PARAMS): Remove.  All uses removed.
62859         * lib/tempname.c: Include <string.h> unconditionally.
62860         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
62861         * lib/xgethostname.c (main): Define with a prototype.
62862         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
62863         Include <stdlib.h> unconditionally.
62864         (calloc, malloc, realloc, free): Remove decls.
62865         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
62866         Include <stdlib.h> unconditionally.  Sort include file names.
62867         (strtod): Remove.
62868         (xstrtod): Define with a prototype.
62869         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
62870         (strtol, strtoul): Remove decls.
62871
62872 2003-09-11  Paul Eggert  <eggert@twinsun.com>
62873
62874         More patches to assume C89 or better.
62875         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
62876         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
62877         string.h, memchr, STDC_HEADERS.
62878
62879 2003-09-11  Paul Eggert  <eggert@twinsun.com>
62880
62881         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
62882         Include <stdlib.h>, <string.h> unconditionally.
62883         Remove now-unnecessary cast to char *.
62884         * lib/strnlen.c: Include <string.h> unconditionally.
62885         * lib/yesno.c (yesno): Define with a prototype.
62886
62887 2003-09-11  Bruno Haible  <bruno@clisp.org>
62888
62889         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
62890
62891 2003-09-10  Jim Meyering  <jim@meyering.net>
62892
62893         * lib/error.c: Correct indentation of cpp directives.
62894
62895 2003-09-10  Bruno Haible  <bruno@clisp.org>
62896
62897         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
62898         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
62899         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
62900         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
62901         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
62902         <stdlib.h> and <string.h> checks.
62903         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
62904         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
62905
62906 2003-09-10  Bruno Haible  <bruno@clisp.org>
62907
62908         * lib/strcspn.c: Include <string.h> unconditionally.
62909         * lib/strpbrk.c: Include <string.h> unconditionally.
62910         * lib/strstr.c: Include <string.h> unconditionally.
62911         * lib/unicodeio.c: Include <string.h> unconditionally.
62912         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
62913         * lib/unsetenv.c: Likewise.
62914         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
62915         * lib/yesno.c: Include <stdlib.h> unconditionally.
62916         (rpmatch): Add prototype.
62917
62918 2003-09-09  Paul Eggert  <eggert@twinsun.com>
62919
62920         More patches to assume C89 or better.
62921         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
62922         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
62923         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
62924         or for string.h.
62925         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
62926         stdlib.h.
62927         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
62928         C headers.
62929         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
62930         string.h.
62931         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
62932         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
62933         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
62934         or for string.h.
62935         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
62936         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
62937         C headers.
62938         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
62939         memcpy.
62940         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
62941         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
62942         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
62943         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
62944         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
62945         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
62946         string.h, free.
62947         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
62948         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
62949         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
62950         C headers, or for string.h.
62951         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
62952         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
62953         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
62954         headers, memory.h, stdlib.h, string.h, strings.h.
62955         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
62956         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
62957         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
62958         strchr.
62959         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
62960         headers, memory.h, string.h.
62961         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
62962         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
62963         free.
62964         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
62965         headers.
62966         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
62967         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
62968         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
62969         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
62970         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
62971
62972 2003-09-09  Paul Eggert  <eggert@twinsun.com>
62973
62974         More K&R removal.
62975
62976         * lib/acosl.c (main): Use a prototype.
62977         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
62978         tanl.c: Likewise.
62979
62980         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
62981
62982         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
62983         (getopt, etopt_long, getopt_long_only, _getopt_internal)
62984         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
62985         with a prototype.
62986         * lib/getopt.c (const): Remove macro.
62987         Include <string.h> unconditionally.
62988         (my_index): Remove; all uses changed to strchr.
62989         (strlen): Remove decl.
62990         (exchange): Remove forward decl; no longer needed.
62991         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
62992         Define with prototype.
62993         * lib/getopt1.c (const): Remove macro.
62994         (getopt_long, getopt_long_only, main): Define with prototype.
62995
62996         * lib/getugroups.c: Include <string.h> unconditionally.
62997
62998         * lib/getusershell.c: Include <stdlib.h> unconditionally.
62999         (getusershell, setusershell, endusershell, readname, main):
63000         Define with prototypes.
63001
63002         * lib/group-member.c: Include group-member.h first.
63003         Include <stdlib.h> unconditionally.
63004
63005         * lib/hard-locale.c: Include hard-locale.h first.
63006         Include <stdlib.h>, <string.h> unconditionally.
63007
63008         * lib/hash.c (free, malloc): Remove decls.
63009         Include <stdlib.h> unconditionally.
63010
63011         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
63012         (getenv): Do not declare.
63013
63014         * lib/idcache.c: Include <string.h> unconditionally.
63015
63016         * lib/long-options.c: Include long-options.h first, to test interface.
63017         Include <stdlib.h> unconditionally.
63018
63019         * lib/makepath.c: Include makepath.h first, to test interface.
63020         Include <stdlib.h> and <string.h> unconditionally.
63021
63022         * lib/linebuffer.c: Include <stdlib.h>.
63023         (free): Remove decl.
63024
63025         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
63026         stddef.h. rpl_malloc returns void *, not char *.
63027         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
63028         prototype.
63029
63030         * lib/md5.h: Include <limits.h> unconditionally.
63031         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
63032         (__P): Remove; all uses removed.
63033         * lib/md5.c: Include "md5.h" first.
63034         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
63035         md5_buffer, md5_process_bytes, md5_process_block):
63036         Define with prototypes.
63037         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
63038         * lib/sha.c: Include "sha.h" first.
63039         Include <stdlib.h>, <string.h> unconditionally.
63040
63041         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
63042         * lib/memcmp.c (__ptr_t): Likewise.
63043         * lib/memrchr.c (__ptr_t): Likewise.
63044         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
63045         Include <string.h> unconditionally.
63046         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
63047         * lib/memchr.c: Include <stdlib.h> unconditionally.
63048         * lib/memchr.c (LONG_MAX): Remove.
63049         * lib/memrchr.c (LONG_MAX): Likewise.
63050         * lib/memchr.c (__memchr): Define via a prototype.
63051         * lib/memrchr.c (__memrchr): Likewise.
63052         * lib/memcmp.c (__P): Remove, and remove all uses.
63053         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
63054         Remove forward decls; no longer needed.
63055         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
63056         Use types required by C89 in prototype.
63057
63058         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
63059         * lib/savedir.c: Likewise.
63060         * lib/mkdir.c (free): Remove decl.
63061         * lib/rmdir.c (rmdir): Define with a prototype.
63062         * lib/savedir.c: Include savedir.h first, to test interface.
63063
63064         * lib/mktime.c (STDC_HEADERS): Remove.
63065         Include <stdlib.h>, <string.h> unconditionally.
63066
63067         * lib/modechange.c: Include <stdlib.h> unconditionally.
63068         (malloc): Remove decl.
63069
63070         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
63071         (free): Remove decl.
63072
63073         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
63074         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
63075         (This type really should be intptr_t, but that's a C99ism.)
63076         (_obstack_memcpy): Remove: all uses changed to memcpy.
63077         Include <string.h> unconditionally.
63078         (struct obstack): Assume __STDC__ for types of members
63079         chunkfun, freefun, extra_arg.
63080         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
63081         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
63082         obstack_begin, obstack_specify_allocation,
63083         obstack_specify_allocation_with_arg, obstack_chunkfun,
63084         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
63085         Remove unprototyped decls and the macros that use them.
63086         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
63087         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
63088         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
63089         (defined __STDC__ && __STDC__)]:
63090         Remove nonprototyped code.
63091         Include <stdlib.h> unconditionally.
63092         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
63093         _obstack_allocated_p, _obstack_free, obstack_free,
63094         _obstack_memory_used, print_and_abort):
63095         Define using prototypes.
63096         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
63097         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
63098         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
63099         obstack_next_free, obstack_object_size, obstack_room) [0]:
63100         Remove unused, unprototyped code.
63101
63102         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
63103
63104         * lib/physmem.c (physmem_total, physmem_available, main): Define
63105         with prototypes.
63106
63107         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
63108         (main): Define with a prototype.
63109
63110         * lib/posixver.c (getenv): Remove decl.
63111
63112         * lib/putenv.c (malloc): Returns void *, not char *.
63113         Include <string.h> unconditionally.
63114         (strchr, memcpy, NULL): Do not define.
63115
63116         * lib/readtokens.c: Include readtokens.h first, to test interface.
63117         Include <stdlib.h>, <string.h> unconditionally.
63118         (init_tokenbuffer): Define with a prototype.
63119
63120         * lib/regex.c (PARAMS): Remove.  All uses removed.
63121         All uses of _RE_ARGS removed, too.
63122         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
63123         unconditionally.
63124         (bzero): Assume memset exists.
63125         (memcmp, memcpy, NULL): Remove.
63126         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
63127         char, or assignments to local vars of type signed char.
63128         (init_syntax_once, PREFIX(extract_number_and_incr),
63129         PREFIX(print_partial_compiled_pattern),
63130         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
63131         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
63132         PREFIX(regex_grow_registers), PREFIX(regex_compile),
63133         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
63134         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
63135         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
63136         wcs_compile_range, byte_compile_range, truncate_wchar,
63137         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
63138         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
63139         count_mbs_length, wcs_re_match_2_internal,
63140         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
63141         PREFIX(alt_match_null_string_p),
63142         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
63143         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
63144         regfree, PREFIX(extract_number)): Define with prototype.  Remove
63145         now-unnecessary declaration, if any.
63146         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
63147         regcomp, regexec):
63148         Remove now-unnecessary casts among pointer types.
63149         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
63150
63151         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
63152         (free): Remove decl.
63153
63154         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
63155
63156         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
63157         (free): Remove decl.
63158
63159         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
63160         * lib/xgetcwd.c: Likewise.
63161
63162         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
63163         (free): Remove decl.
63164
63165         * lib/strchrnul.c (strchrnul): Define with a prototype.
63166         Fix bug: c_in was not converted to char before searching.
63167
63168         The following changes are not K&R related:
63169
63170         * lib/group-member.h: Include <sys/types.h>, so that this file is
63171         self-contained.
63172         * lib/makepath.h: Likewise.
63173
63174         * lib/getusershell.c (readname, default_index, line_size, readname):
63175         Use size_t, not int, for sizes.
63176         (readname): If the size overflows, report an error instead of
63177         looping forever.
63178
63179 2003-09-09  Paul Eggert  <eggert@twinsun.com>
63180
63181         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
63182         libc.
63183
63184 2003-09-09  Paul Eggert  <eggert@twinsun.com>
63185
63186         * README: New section: portability guidelines.
63187
63188 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
63189
63190         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
63191         C89 spec.
63192
63193 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
63194
63195         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
63196
63197 2003-09-08  Paul Eggert  <eggert@twinsun.com>
63198
63199         Assume C89 or better; remove K&R cruft.
63200         A few of these changes were first proposed by Derek Robert Price
63201         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
63202
63203         * lib/addext.c: Include <string.h> unconditionally.
63204         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
63205         Don't declare getenv or malloc.
63206
63207         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
63208         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
63209         (NULL): Remove.
63210         (find_stack_direction, alloca): Use prototypes.
63211
63212         * lib/atexit.c (atexit): Define using a prototype.
63213
63214         * lib/basename.c, dirname.c, stripslash.c:
63215         Include <string.h> unconditionally.
63216
63217         * lib/bcopy.c: Include <stddef.h>.
63218         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
63219
63220         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
63221
63222         * lib/error.h (error, error_at_line, error_print_progname)
63223         [! (defined (__STDC__) && __STDC__)]: Remove decls.
63224         * lib/error.c: Include error.h first, to check interface.
63225         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
63226         (VA_START): Remove; all uses changeed to va_start.
63227         (exit, strerror): Remove decls.
63228         (error_print_progname): Prototype uncondionally.
63229         Don't include <errno.h>; no longer needed.
63230         (private_strerror): Remove.
63231         (error_tail): Always define.
63232         (error, error_at_line): Assume C89 or better; always use prototypes.
63233         * lib/fatal.c: Include "fatal.h" first, to test interface.
63234         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
63235         (VA_START): Remove; all uses changed to va_start.
63236         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
63237         this case.
63238         (exit): Remove decl.
63239         (fatal): Prototype unconditionally.  Assume va_start works.
63240         Abort at end, to pacify gcc.
63241
63242         * lib/euidaccess.c (main): Define with a prototype.
63243
63244         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
63245
63246         * lib/exitfail.c: Include <stdlib.h> unconditionally.
63247
63248         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
63249         prototypes.
63250         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
63251         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
63252         (getenv): Remove decl.
63253         (fnmatch): Define using a prototype.
63254         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
63255         (FCT): Define using a prototype.
63256
63257         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
63258
63259         * lib/gethostname.c: Include <stddef.h>.
63260         (gethostname): Define with prototype.  Length is size_t, not int.
63261
63262 2003-09-08  Paul Eggert  <eggert@twinsun.com>
63263
63264         Assume C89 or better; remove K&R cruft.
63265         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
63266         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
63267         string.h, getenv, malloc.
63268         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
63269         headers.
63270         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
63271         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
63272         do not check for strerror.
63273         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
63274         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
63275         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
63276         do not check for doprnt or vprintf.
63277         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
63278         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
63279
63280 2003-09-08  Paul Eggert  <eggert@twinsun.com>
63281
63282         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
63283         getversion.c should have been removed then, but was accidentally
63284         preserved.
63285
63286         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
63287         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
63288
63289 2003-09-08  Karl Berry  <karl@gnu.org>
63290
63291         * config/config.sub, config.guess, srclistvars.sh: update from savannah
63292                 config, forget about prep.
63293
63294         * config/depcomp, missing: update from automake.
63295
63296 2003-09-07  Paul Eggert  <eggert@twinsun.com>
63297
63298         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
63299         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
63300
63301 2003-09-07  Paul Eggert  <eggert@twinsun.com>
63302
63303         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
63304         copy_tm_result.  Bug reported by Simon Josefsson in
63305         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
63306
63307 2003-09-06  Paul Eggert  <eggert@twinsun.com>
63308
63309         * m4/time_r.m4: New file.
63310         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
63311         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
63312         is. Check for timegm declaration.
63313         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
63314         Do not check for gmtime_r.
63315         Replace mktime if __mktime_internal does not exist and if mktime
63316         hasn't been replaced already.
63317
63318 2003-09-06  Paul Eggert  <eggert@twinsun.com>
63319
63320         * lib/time_r.c, lib/time_r.h: New files.
63321
63322         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
63323         __localtime_r.
63324         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
63325         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
63326
63327         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
63328         __gmtime_r.
63329         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
63330         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
63331         Include <time_r.h>.
63332
63333         * lib/timegm.c: Switch to glibc implementation, with the following
63334         changes:
63335         [defined HAVE_CONFIG_H]: Include <config.h>.
63336         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
63337         (__mktime_internal) [!defined _LIBC]: New decl.
63338         (__gmtime_r) [!defined _LIBC]: New macro and function.
63339         (timegm): Use a prototype, since gnulib assumes C89.
63340         Do not bother declaring tmp to be const, as it's not really usefu.
63341         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
63342         (timegm): Declare only if HAVE_DECL_TIMEGM.
63343
63344 2003-09-06  Paul Eggert  <eggert@twinsun.com>
63345
63346         * MODULES.html.sh (func_all_modules): Add time_r.
63347         * modules/time_r: New file.
63348         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
63349         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
63350
63351 2003-09-03  Paul Eggert  <eggert@twinsun.com>
63352
63353         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
63354         Bug reported by Lute Kamstra in
63355         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
63356
63357         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
63358         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
63359         course with correspondingly smaller numbers for tomorrow and
63360         yesterday.  From Tadayoshi Funaba.  Originally installed into
63361         sh-utils on 1999-08-07, but the patch got lost (I guess during the
63362         coreutils merge?).
63363
63364 2003-08-31  Simon Josefsson  <jas@extundo.com>
63365
63366         * modules/timegm: New file.
63367         * MODULES.html.sh (func_all_modules): Add timegm.
63368
63369 2003-08-31  Simon Josefsson  <jas@extundo.com>
63370
63371         * m4/timegm.m4: New file.
63372
63373 2003-08-31  Simon Josefsson  <jas@extundo.com>
63374
63375         * lib/timegm.h: New file.
63376         * lib/timegm.c: New file.  Based on
63377         wget-1.8.2/src/http.c:mktime_from_utc.
63378
63379 2003-08-31  Karl Berry  <karl@gnu.org>
63380
63381         * lib/argp.h: update from libc.
63382
63383 2003-08-28  Bruno Haible  <bruno@clisp.org>
63384
63385         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
63386         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
63387         followed by '#define fnmatch fnmatch_posix' gives an error.
63388
63389 2003-08-28  Bruno Haible  <bruno@clisp.org>
63390
63391         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
63392         warning on QNX, which defines O_BINARY to 000000.
63393
63394 2003-08-27  Jim Meyering  <jim@meyering.net>
63395
63396         * m4/mkstemp.m4: Require that the system mkstemp be able to create
63397         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
63398         would fail after 32.  Reported by Danny Levinson.  Details here:
63399         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
63400
63401 2003-08-24  Bruno Haible  <bruno@clisp.org>
63402
63403         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
63404         MSVC7 <stdio.h> is included later.
63405
63406 2003-08-22  Simon Josefsson  <jas@extundo.com>
63407
63408         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
63409
63410 2003-08-20  Karl Berry  <karl@gnu.org>
63411
63412         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
63413
63414 2003-08-20  Bruno Haible  <bruno@clisp.org>
63415
63416         * modules/progname: New file.
63417         * MODULES.html.sh (func_all_modules): Add progname.
63418
63419 2003-08-20  Bruno Haible  <bruno@clisp.org>
63420
63421         * lib/progname.h: New file, from GNU gettext.
63422         * lib/progname.c: New file, from GNU gettext.
63423         * lib/progreloc.c: New file, from GNU gettext.
63424
63425 2003-08-19  Jim Meyering  <jim@meyering.net>
63426
63427         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
63428         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
63429
63430 2003-08-19  Bruno Haible  <bruno@clisp.org>
63431
63432         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
63433         more.
63434
63435 2003-08-19  Bruno Haible  <bruno@clisp.org>
63436
63437         * lib/xstrdup.c: Assume <string.h> exists.
63438
63439 2003-08-18  Paul Eggert  <eggert@twinsun.com>
63440
63441         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
63442         in makefile rules.
63443
63444 2003-08-18  Jim Meyering  <jim@meyering.net>
63445
63446         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
63447         * m4/lib-ld.m4: Likewise.
63448
63449 2003-08-18  Jim Meyering  <jim@meyering.net>
63450
63451         * lib/setenv.h: Indent nested cpp directive.
63452         * lib/vasnprintf.c: Remove trailing blanks.
63453
63454 2003-08-17  Simon Josefsson  <jas@extundo.com>
63455
63456         * modules/xstrndup: New file.
63457         * MODULES.html.sh (func_all_modules): Add xstrndup.
63458
63459 2003-08-17  Simon Josefsson  <jas@extundo.com>
63460
63461         * modules/argp: Fix autoconf macro name. Add more dependencies.
63462
63463 2003-08-17  Simon Josefsson  <jas@extundo.com>
63464
63465         * m4/xstrndup.m4: New file.
63466
63467 2003-08-17  Simon Josefsson  <jas@extundo.com>
63468
63469         * m4/argp.m4: New file.
63470
63471 2003-08-17  Simon Josefsson  <jas@extundo.com>
63472             Bruno Haible  <bruno@clisp.org>
63473
63474         * lib/xstrndup.h: New file.
63475         * lib/xstrndup.c: New file.
63476
63477 2003-08-17  Bruno Haible  <bruno@clisp.org>
63478
63479         * modules/strndup (Files, Include): Add lib/strndup.h.
63480
63481 2003-08-17  Bruno Haible  <bruno@clisp.org>
63482
63483         * modules/euidaccess (Files): Add lib/euidaccess.h.
63484
63485 2003-08-17  Bruno Haible  <bruno@clisp.org>
63486
63487         * lib/strndup.h: New file.
63488
63489 2003-08-17  Bruno Haible  <bruno@clisp.org>
63490
63491         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
63492         like AC_GNU_SOURCE.
63493         * modules/extensions (configure.ac): Comment out the invocation of
63494         gl_USE_SYSTEM_EXTENSIONS.
63495
63496 2003-08-16  Paul Eggert  <eggert@twinsun.com>
63497
63498         Merges from coreutils, etc.
63499         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
63500         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
63501         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
63502         fixing a typo.
63503         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
63504         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
63505
63506 2003-08-16  Paul Eggert  <eggert@twinsun.com>
63507
63508         Document merge from coreutils.
63509         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
63510         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
63511         * modules/utime: Add m4/utimes-null.m4.
63512
63513 2003-08-16  Paul Eggert  <eggert@twinsun.com>
63514
63515         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
63516         space, undoing this 2003-08-12 change:
63517         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
63518
63519 2003-08-16  Paul Eggert  <eggert@twinsun.com>
63520
63521         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
63522         strtoul.c from libc, undoing this 2003-08-12 change:
63523         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
63524
63525 2003-08-16  Jim Meyering  <jim@meyering.net>
63526
63527         Merges from coreutils.
63528         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
63529         prefix.  Adjust cache variables similarly.  Create 500 rather than
63530         just 300 files, to exercise bug on Darwin6.5, too.
63531         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
63532         $missing_dir.
63533         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
63534         AM_SYS_POSIX_TERMIOS.
63535         Reported by mkc@mathdogs.com.
63536         Also change use of $am_cv_sys_posix_termios
63537         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
63538         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
63539         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
63540         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
63541         in /proc/mounts until it finds one with matching device number.  This
63542         is unnecessary when the FILE argument *is* a mount point.  No stat call
63543         is necessary in that case.  So, disable the statvfs-testing code on
63544         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
63545         as RedHat bug# 84846.
63546         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
63547         to 1MB, so as not to render systems with no stack size limit (e.g.,
63548         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
63549         Include <unistd.h>.  On some systems,
63550         it is required for the definition of _SC_PAGESIZE.
63551
63552 2003-08-16  Jim Meyering  <jim@meyering.net>
63553
63554         Merge from coreutils.
63555         * lib/xstrtoimax.c: #else #if -> #elif.
63556         * lib/xstrtoumax.c: Likewise.
63557
63558 2003-08-16  Jim Meyering  <jim@meyering.net>
63559
63560         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
63561         * m4/utimes.m4: Removed.
63562         * m4/utimes-null.m4: Renamed from utimes.m4.
63563
63564         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
63565         to 1MB, so as not to render systems with no stack size limit (e.g.,
63566         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
63567         Include <unistd.h>.  On some systems,
63568         it is required for the definition of _SC_PAGESIZE.
63569
63570 2003-08-16  Jim Meyering  <jim@meyering.net>
63571         and Paul Eggert  <eggert@cs.ucla.edu>
63572
63573         Merges from coreutils, etc.
63574
63575         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
63576         using the latest version from cvs.  This avoids problems with #line
63577         directives using a vendor (Sun) compiler.
63578         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
63579         Don't set GETGROUPS_LIB here; now it's
63580         done via getgroups.m4's wrapper function.
63581         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
63582         rather than just in sh-util/configure.in, so that the
63583         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
63584         same.
63585         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
63586         AC_FUNC_GETLOADAVG where to find getloadavg.c.
63587         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
63588         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
63589         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
63590         Remove code that is now done by the newly-required macros.
63591         Append $(EXEEXT) to DF_PROG.
63592         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
63593         Do not invoke or require the following here,
63594         since prereq.m4 or some gnulib .m4 now does this for us:
63595         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
63596         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
63597         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
63598         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
63599         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
63600         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
63601         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
63602         AC_FUNC_OBSTACK.
63603         Do not replace the following functions, as this is now the job
63604         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
63605         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
63606         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
63607         atexit getpass, strdup, getpagesize.
63608         Replace 'raise'.
63609         Do not check for the following functions, as this is now the job
63610         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
63611         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
63612         setregid.
63613         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
63614         Check for sys/sysctl.h.
63615         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
63616         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
63617         of checking for ssize_t ourselves.
63618
63619         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
63620         Require every macro that gnulib/modules/* suggests for us.
63621         (jm_PREREQ_ADDEXT): New macro.
63622         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
63623         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
63624
63625         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
63626         (gl_PHYSMEM): Use it.
63627         Also check for `table' function.
63628         Check for new headers and functions.
63629         Add check for sys/sysmp.h.
63630         With suggestions from Kaveh Ghazi.
63631         Ignore headers that are present but cannot be compiled.  This
63632         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
63633         C 5.4.
63634
63635 2003-08-15  Paul Eggert  <eggert@twinsun.com>
63636
63637         Document merge from coreutils.
63638         * modules/userspec: Depend on posixver.
63639         * modules/strftime: Depend on tzset.
63640
63641 2003-08-15  Paul Eggert  <eggert@twinsun.com>
63642
63643         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
63644         rather than tab, after '#' in shell-script copyright notices.
63645         Suggested by Bruno Haible.
63646
63647 2003-08-15  Paul Eggert  <eggert@twinsun.com>
63648
63649         * config/srclist-update: Use three spaces, rather than tab, after '#'
63650         in shell-script copyright notices.  Suggested by Bruno Haible.
63651         Remove unnecessary parenthesization in regular expression.
63652
63653 2003-08-15  Jim Meyering  <jim@meyering.net>
63654
63655         Merge from coreutils.
63656         * lib/xgethostname.c: Include <stdlib.h>.
63657         (xghostname): Don't exit for anything other than memory-related
63658         failure; just return NULL.
63659         * lib/userspec.c: Include "posixver.h".
63660         (parse_user_spec): Accept `.' as a separator only
63661         in pre-POSIX-200112 mode.
63662         * lib/strtoimax.c: Use #elif rather than #else #if.
63663         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
63664         Remove function, now that we can rely on a working tzset function.
63665         [!_LIBC]: Ensure that the required autoconf test has been run.
63666         [!defined _NL_CURRENT && HAVE_STRFTIME]:
63667         Use underlying_strftime for %r.
63668         * lib/sha.c: Merge in some clean-up and optimization changes from
63669         glibc.
63670         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
63671         Ensure that it is a multiple of 64.
63672         Rearrange loop exit tests so as to avoid performing an
63673         additional fread after encountering an error or EOF.
63674         * lib/realloc.c: Update copyright date.
63675
63676 2003-08-15  Jim Meyering  <jim@meyering.net>
63677         and Paul Eggert  <eggert@twinsun.com>
63678
63679         Merge from coreutils.
63680         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
63681         member but strut utmpx does not.  Needed for AIX 4.3.3.
63682         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
63683
63684 2003-08-15  Jim Meyering  <jim@meyering.net>
63685         and Paul Eggert  <eggert@cs.ucla.edu>
63686
63687         Merges from coreutils, etc.
63688         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
63689         Require gl_FUNC_TZSET_CLOBBER.
63690         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
63691         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
63692         members.
63693
63694 2003-08-14  Paul Eggert  <eggert@twinsun.com>
63695
63696         Help the merge from coreutils.
63697         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
63698         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
63699         * m4/tzset.m4: Use it too.
63700
63701 2003-08-14  Paul Eggert  <eggert@twinsun.com>
63702
63703         * modules/tzset: New file.
63704
63705 2003-08-14  Jim Meyering  <jim@meyering.net>
63706
63707         Merges from coreutils.
63708         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
63709         variable names, rather than @FNMATCH_H@.
63710         * modules/alloca: Likewise for $(ALLOCA_H).
63711
63712         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
63713         the three copies of the literal target, `fnmatch.h'.
63714         * modules/alloca (alloca.h): Likewise.
63715
63716 2003-08-14  Jim Meyering  <jim@meyering.net>
63717
63718         Merge from coreutils.
63719         * m4/tzset.m4: New file.
63720         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
63721         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
63722         otherwise, AIX 5.1 systems would end up using the latter.
63723         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
63724         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
63725         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
63726         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
63727
63728 2003-08-14  Jim Meyering  <jim@meyering.net>
63729
63730         Merge from coreutils.
63731         * lib/obstack.h: Whitespace changes.
63732         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
63733         and xcalloc return values.
63734         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
63735         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
63736         hang on OSF/1 5.1 for DIR on both local and remote file systems.
63737         Reported by (and fix confirmed by) Nelson H. F. Beebe.
63738         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
63739         error from mntctl.
63740         Use mntctl's return value to drive the entry-processing loop, since
63741         we can't rely on the value of the vmt_length member in the last
63742         entry.  On some systems doing so could result in exhausting
63743         virtual memory.  Based in part on a patch from Mike Jetzer.
63744
63745 2003-08-14  Jim Meyering  <jim@meyering.net>
63746         and Paul Eggert  <eggert@twinsun.com>
63747
63748         Merges from coreutils, plus other fixes.
63749         * lib/physmem.c: Merge in portability changes from gcc/libiberty
63750         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
63751         for credits and details.  Thanks to Kaveh Ghazi for helping
63752         to keep these files in sync.
63753         (ARRAY_SIZE): Define it.
63754         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
63755         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
63756         (memcasecmp): Don't assume size_t fits in unsigned int.
63757         Remove casts and duplicate code.
63758         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
63759         (memcpy): Remove definition.
63760         Merge in some clean-up and optimization changes from glibc.
63761         [BLOCKSIZE]: Move definition to top of file.
63762         Ensure that it is a multiple of 64.
63763         Rearrange loop exit tests so as to avoid performing an
63764         additional fread after encountering an error or EOF.
63765         * lib/md5.h (md5_uintptr): Define.
63766         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
63767         return to the initial working directory.  Preserve errno
63768         for caller.
63769         * lib/idcache.c: Include "xalloc.h".
63770         (xmalloc, xrealloc): Remove decls.
63771         (getuser): Remove casts no longer required in C89.
63772         * lib/human.c: Include stdio.h, for sprintf.
63773         * lib/group-member.c: Include "xalloc.h".
63774         (xmalloc, xrealloc): Remove decls.
63775         (get_group_info): Remove casts no longer required in C89.
63776         * lib/getusershell.c (readname): Remove casts no longer required in
63777         C89.
63778         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
63779         * lib/getline.c: Whitespace fix, from coreutils.
63780
63781 2003-08-13  Paul Eggert  <eggert@twinsun.com>
63782
63783         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
63784         Check for isascii.
63785
63786         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
63787         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
63788         Undo previous (whitespace-only) change.
63789
63790 2003-08-13  Paul Eggert  <eggert@twinsun.com>
63791
63792         * lib/exclude.c: Include <ctype.h>
63793         (IN_CTYPE_DOMAIN): New macro.
63794         (is_space): New fn.
63795         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
63796         and empty lines.
63797
63798         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
63799         Undo previous (whitespace-only) change.
63800
63801 2003-08-13  Paul Eggert  <eggert@twinsun.com>
63802
63803         * config/srclist-update: Change update back to the old behavior,
63804         leaving whitespace alone.  Use one 'sed' command rather than a
63805         pipeline.
63806         (fixlicense): Now a variable, not a function.
63807         (remove_trailing_blanks): Remove.
63808         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
63809         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
63810         Undo previous (whitespace-only) change.
63811
63812 2003-08-12  Paul Eggert  <eggert@twinsun.com>
63813
63814         Merge from coreutils.
63815         * modules/euidaccess: Add lib_SOURCES, include for new
63816         file euidaccess.h
63817
63818 2003-08-12  Paul Eggert  <eggert@twinsun.com>
63819
63820         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
63821         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
63822         Normalize leading white space and remove trailing white space.
63823
63824         Merge from coreutils
63825         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
63826
63827         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
63828         0.12.1.  These files are now being upgraded automatically by
63829         ../config/srclist-update.
63830
63831 2003-08-12  Paul Eggert  <eggert@twinsun.com>
63832
63833         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
63834         Normalize leading white space and remove trailing white space.
63835         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
63836         notice, as per ../config/srclist-update.
63837
63838         Merge from coreutils.
63839         * lib/euidaccess.h: New file.
63840         * lib/euidaccess.c: Include it.
63841         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
63842         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
63843         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
63844
63845 2003-08-12  Paul Eggert  <eggert@twinsun.com>
63846
63847         * config/srclist-update: Add copyright notice.
63848         (remove_id_lines, remove_trailing_blanks): New constants.
63849         (fixfile): Use them to normalize spacing a bit in copied files.
63850         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
63851         Normalize leading white space and remove trailing white space.
63852
63853         * config/texinfo.tex: Sync with texinfo.
63854
63855         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
63856         strtoul.c from libc, to merge coreutils whitespace changes.
63857
63858         * config/srclist.txt: Get the following m4 files from gettext:
63859         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
63860         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
63861         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
63862         wint_t.m4.
63863
63864 2003-08-12  Karl Berry  <karl@gnu.org>
63865
63866         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
63867         been made.
63868
63869 2003-08-11  Paul Eggert  <eggert@twinsun.com>
63870
63871         * modules/gnu-source, m4/gnu-source.m4:
63872         Remove; we're assuming Autoconf 2.54 or later now.
63873         Suggested by Bruno Haible.
63874         * MODULES.html.sh (func_all_modules): Remove gnu-source.
63875
63876 2003-08-11  Bruno Haible  <bruno@clisp.org>
63877
63878         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
63879
63880 2003-08-11  Bruno Haible  <bruno@clisp.org>
63881
63882         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
63883         (vasnprintf): Use it instead of wcslen.
63884
63885 2003-08-11  Bruno Haible  <bruno@clisp.org>
63886
63887         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
63888         value to ensure that _Bool promotes to int. Use #define for _Bool when
63889         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
63890
63891 2003-08-10  Karl Berry  <karl@gnu.org>
63892
63893         * lib/regex.h: update from libc (whitespace fix).
63894
63895 2003-08-09  Paul Eggert  <eggert@twinsun.com>
63896
63897         Merge some files from coreutils.  These changes were
63898         originally made by Jim Meyering.
63899         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
63900         many older Unixes require this.
63901         * lib/alloca.c (alloca): Remove cast to argument of free;
63902         no longer needed in C89.
63903         * lib/alloca_.h, regex.h: Fix white space to match
63904         what GNU indent does.
63905
63906 2003-08-09  Paul Eggert  <eggert@twinsun.com>
63907
63908         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
63909         apparently Emacs's Unicode mode got confused before my 2003-08-05
63910         checkin.
63911
63912 2003-08-08  Paul Eggert  <eggert@twinsun.com>
63913
63914         * m4/extensions.m4: New file.
63915         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
63916         Require gl_USE_SYSTEM_EXTENSIONS.
63917         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
63918         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
63919
63920 2003-08-08  Paul Eggert  <eggert@twinsun.com>
63921
63922         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
63923         * modules/extensions, modules/gnu-source: New files.
63924         * modules/timespec, modules/unlocked-io: Depend on extensions.
63925
63926 2003-08-07  Paul Eggert  <eggert@twinsun.com>
63927
63928         * modules/restrict: New file.
63929         * MODULES.html.sh (func_all_modules): Add restrict.
63930         * modules/regex: Depend on restrict.
63931
63932 2003-08-07  Paul Eggert  <eggert@twinsun.com>
63933
63934         * m4/restrict.m4: New file.
63935         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
63936
63937 2003-08-07  Bruno Haible  <bruno@clisp.org>
63938
63939         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
63940         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
63941
63942 2003-08-07  Bruno Haible  <bruno@clisp.org>
63943
63944         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
63945         makes the module 'getndelim2' compatible with the module 'getline'.
63946
63947 2003-08-05  Paul Eggert  <eggert@twinsun.com>
63948
63949         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
63950         byte with "\201" to avoid glitches when editing that source file
63951         with multi-gnome-terminal.
63952
63953 2003-08-05  Paul Eggert  <eggert@twinsun.com>
63954
63955         * lib/bumpalloc.h: Remove.
63956
63957 2003-08-05  Paul Eggert  <eggert@twinsun.com>
63958
63959         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
63960         * modules/bumpalloc: Remove.
63961
63962 2003-08-04  Paul Eggert  <eggert@twinsun.com>
63963
63964         * lib/getloadavg.c: Change copyright notice and spacing to conform to
63965         GNU coding style.
63966
63967         Merge from coreutils.
63968         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
63969         1. From glibc.
63970         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
63971         from Karl Berry, implemented by Jim Meyering.
63972         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
63973         from Dmitry V. Levin.
63974         Remove anachronistic cast of xrealloc.
63975         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
63976         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
63977         type. Otherwise, it wouldn't compile with at least /bin/cc on
63978         ymp-cray-unicos9.0.2.X.
63979         Combine two mostly-identical uses of alloca into one.
63980         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
63981
63982 2003-08-04  Dave Love  <d.love@dl.ac.uk>
63983
63984         [From Emacs.]
63985
63986         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
63987         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
63988         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
63989         obsolete NLIST_NAME_UNION.
63990         [__GNU__]: Undef BSD and FSCALE.
63991         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
63992
63993 2003-08-03  Paul Eggert  <eggert@twinsun.com>
63994
63995         * lib/stdbool_.h (_Bool): Make it signed char, instead of
63996         an enum type, so that it's guaranteed to promote to int.  See:
63997         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
63998
63999 2003-08-03  Karl Berry  <karl@gnu.org>
64000
64001         * config/depcomp: update from automake.
64002
64003 2003-07-31  Paul Eggert  <eggert@twinsun.com>
64004
64005         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
64006         (strerror): Don't assume that a printable int fits in 14 bytes.
64007
64008 2003-07-31  Bruno Haible  <bruno@clisp.org>
64009
64010         * modules/getpass-gnu: New file.
64011         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
64012
64013 2003-07-31  Bruno Haible  <bruno@clisp.org>
64014
64015         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
64016
64017 2003-07-24  Karl Berry  <karl@gnu.org>
64018
64019         * config/missing: update from automake.
64020
64021 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
64022             Bruno Haible  <bruno@clisp.org>
64023
64024         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
64025         * lib/getline.c (getline, getdelim): Likewise.
64026         Remove _GNU_SOURCE define; now it's defined in config.h through
64027         m4/getline.m4.
64028
64029 2003-07-23  Karl Berry  <karl@gnu.org>
64030
64031         * config/config.sub: update from prep.
64032
64033 2003-07-22  Paul Eggert  <eggert@twinsun.com>
64034
64035         * modules/xalloc (Depends-on): Add exitfail.
64036         * modules/xmemcoll: Likewise.
64037
64038 2003-07-22  Paul Eggert  <eggert@twinsun.com>
64039
64040         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
64041         over-parenthesization in macros.
64042
64043         Sync with coreutils.
64044
64045         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
64046         required by C99.
64047
64048         Use `exit_failure' for xalloc and xmemcoll instead of their own
64049         private exit-failure variables.
64050         * lib/xalloc.h (xalloc_exit_failure): Remove.
64051         * lib/xmalloc.c: Likewise.  Include exitfail.h.
64052         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
64053         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
64054         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
64055         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
64056
64057 2003-07-20  Jim Meyering  <jim@meyering.net>
64058
64059         * modules/closeout (Depends-on): Add exitfail.
64060         Suggestion from Bruno Haible.
64061
64062 2003-07-19  Karl Berry  <karl@gnu.org>
64063
64064         * config/config.sub: update from prep.
64065
64066 2003-07-18  Paul Eggert  <eggert@twinsun.com>
64067
64068         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
64069         Remove.
64070         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
64071         to test that it can stand by itself.  Include "exitfail.h".
64072         Clients should set exit_failure instead.
64073         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
64074
64075 2003-07-18  Bruno Haible  <bruno@clisp.org>
64076
64077         * modules/getndelim2: New file.
64078         * modules/getline: Share files with module getndelim2.
64079         * modules/getnline: Depend on getndelim2 instead of sharing files with
64080         it. Add getnline.c to lib_SOURCES.
64081         * MODULES.html.sh (func_all_modules): Add getndelim2.
64082
64083 2003-07-18  Bruno Haible  <bruno@clisp.org>
64084
64085         * m4/getndelim2.m4: New file.
64086         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
64087         invoke gl_PREREQ_GETNDELIM2.
64088         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
64089         gl_PREREQ_GETNDELIM2.
64090         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
64091         gl_GETNDELIM2.
64092
64093 2003-07-18  Bruno Haible  <bruno@clisp.org>
64094
64095         * lib/getndelim2.h: New file.
64096         * lib/getndelim2.c: Make into a module of its own. Include config.h,
64097         getndelim2.h.
64098         (getndelim2): Make non-static. Change return type to ssize_t.
64099         * lib/getline.h: Change argument names.
64100         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
64101         * lib/getnline.c: Include getndelim2.h.
64102
64103 2003-07-18  Andreas Schwab  <schwab@suse.de>
64104
64105         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
64106
64107 2003-07-17  Karl Berry  <karl@gnu.org>
64108
64109         * config/config.sub: update from prep.
64110
64111 2003-07-17  Bruno Haible  <bruno@clisp.org>
64112
64113         * modules/getnline: New file.
64114         * modules/getline: Add lib/getndelim2.c to source file list.
64115         * MODULES.html.sh (func_all_modules): Add getnline.
64116
64117 2003-07-17  Bruno Haible  <bruno@clisp.org>
64118
64119         * m4/getnline.m4: New file.
64120
64121 2003-07-17  Bruno Haible  <bruno@clisp.org>
64122
64123         * m4/Makefile.am.in: Remove file.
64124         * m4/Makefile.am: Remove file.
64125         * m4/Makefile.in: Remove file.
64126
64127 2003-07-17  Bruno Haible  <bruno@clisp.org>
64128
64129         * lib/getnline.h: New file.
64130         * lib/getnline.c: New file.
64131         * lib/getndelim2.c: New file, extracted from getline.c.
64132         (getndelim2): Renamed from getdelim2, with added nmax argument.
64133         * lib/getline.c: Include getndelim2.c.
64134         (getdelim2): Moved out to getndelim2.c.
64135         (getline, getdelim): Update.
64136
64137 2003-07-17  Bruno Haible  <bruno@clisp.org>
64138
64139         * lib/Makefile.am: Remove file.
64140         * lib/Makefile.in: Remove file.
64141
64142 2003-07-17  Bruno Haible  <bruno@clisp.org>
64143
64144         * configure.in: Remove file.
64145         * Makefile.in: Remove file.
64146
64147 2003-07-17  Bruno Haible  <bruno@clisp.org>
64148
64149         * MODULES.html.sh: Put the </BODY> right before </HTML>.
64150
64151 2003-07-16  Karl Berry  <karl@gnu.org>
64152
64153         * config/srclist-update: was running fixlicense twice, which caused
64154                 texinfo.tex to be nullified for some reason.  Simplify,
64155                 $gplsrc is no longer needed as far as I can see?
64156
64157 2003-07-16  Jim Meyering  <jim@meyering.net>
64158
64159         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
64160
64161 2003-07-15  Paul Eggert  <eggert@twinsun.com>
64162
64163         * config/srclist.txt: Get the following files from gettext-runtime/intl
64164         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
64165         ref-del.sin.  From Bruno Haible.
64166         * config/srclist-update (fixfile): Change grep pattern again, since the
64167         previous fix didn't work (there was another trailing $).  Use
64168         '[$]' to escape the $s.
64169
64170 2003-07-15  Karl Berry  <karl@gnu.org>
64171
64172         * lib/vasnprintf.c: update from gettext.
64173
64174 2003-07-15  Karl Berry  <karl@gnu.org>
64175
64176         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
64177         gets expanded when surrounded by '$'.
64178
64179 2003-07-15  Jim Meyering  <jim@meyering.net>
64180
64181         * modules/save-cwd: Don't depend on error.  From Derek Price.
64182
64183 2003-07-15  Jim Meyering  <jim@meyering.net>
64184
64185         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
64186
64187 2003-07-14  Simon Josefsson  <jas@extundo.com>
64188
64189         * modules/mempcpy: New file.
64190         * MODULES.html.sh (func_all_modules): Add mempcpy.
64191
64192 2003-07-14  Simon Josefsson  <jas@extundo.com>
64193
64194         * m4/mempcpy.m4: New file.
64195
64196 2003-07-14  Simon Josefsson  <jas@extundo.com>
64197
64198         * lib/mempcpy.h: New file.
64199         * lib/mempcpy.c: New file.
64200
64201 2003-07-14  Paul Eggert  <eggert@twinsun.com>
64202
64203         * modules/getdate, modules/posixtm: Depend on mktime.
64204
64205 2003-07-14  Paul Eggert  <eggert@twinsun.com>
64206
64207         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
64208         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
64209         unicodeio.c, unicodeio.h, unlocked-io.h:
64210         Switch from LGPL to GPL.
64211
64212 2003-07-14  Paul Eggert  <eggert@twinsun.com>
64213
64214         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
64215         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
64216         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
64217         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
64218         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
64219         updated automatically by ../config/srclist-update.  This changes
64220         their license from LPGL to GPL.
64221
64222 2003-07-14  Paul Eggert  <eggert@twinsun.com>
64223
64224         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
64225         assumed to refer to the root of the most recent stable gettext version.
64226         * config/srclistvars.sh: Add defaults for eggert.
64227         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
64228         Match "This program" as well as "The program".  This is needed
64229         for gettext.
64230
64231 2003-07-14  Jim Meyering  <jim@meyering.net>
64232
64233         Don't emit diagnostics.  Let callers do that.
64234         * lib/save-cwd.c: Don't include "error.h".
64235         (save_cwd): Don't call error.  Ensure that errno is valid
64236         when returning nonzero.
64237
64238         * lib/save-cwd.h (restore_cwd): Update prototype.
64239         * lib/save-cwd.c (restore_cwd): Remove two parameters.
64240         Simplify.  Don't call error upon failure.  Let callers do that.
64241         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
64242         when auditing is enabled.  But don't bother updating the #if.
64243
64244 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
64245
64246         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
64247         it breaks C++ compilation.
64248         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
64249
64250 2003-07-10  Simon Josefsson  <jas@extundo.com>
64251
64252         * modules/strchrnul (Makefile.am): Add strchrnul.h.
64253
64254 2003-07-10  Jim Meyering  <jim@meyering.net>
64255
64256         * m4/clock_time.m4: Remove trailing blank.
64257         * m4/intmax_t.m4: Likewise.
64258
64259 2003-07-10  Jim Meyering  <jim@meyering.net>
64260
64261         * lib/vasnprintf.c: Remove trailing blanks.
64262         Make cpp indentation consistent.
64263
64264 2003-07-09  Paul Eggert  <eggert@twinsun.com>
64265
64266         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
64267         posixver.c, strftime.c, strnlen.c, strverscmp.c:
64268         Switch from LGPL to GPL.
64269
64270 2003-07-09  Paul Eggert  <eggert@twinsun.com>
64271
64272         * config/srclist.txt: Sort sublists.  Add
64273         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
64274         that differ from gnulib for one reason or another; we'd like this list
64275         to be smaller but for now let's document what we have.
64276
64277 2003-07-08  Paul Eggert  <eggert@twinsun.com>
64278
64279         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
64280         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
64281         and sweeter "eval x=$x".
64282         * config/srclist.txt: Get lib/argp* from glibc.
64283
64284 2003-07-07  Paul Eggert  <eggert@twinsun.com>
64285
64286         * lib/mktime.c: Fix some boundary cases and remove need for floating
64287         point.
64288
64289         Issue a compile-time diagnostic if time_t is floating point, or if
64290         two's complement arithmetic is not in effect, or if arithmetic
64291         right shift does not propagate the sign.  These assumptions were
64292         all in the original code but they weren't checked.
64293
64294         (TIME_T_MIDPOINT, verify): New macros.
64295         (__isleap): Remove; it has integer overflow problems.
64296         (leapyear): New function, without those problems.
64297         (ydhms_tm_diff): Remove; splitting into two parts.
64298         (ydhms_diff): New function, containing the arithmetic part of
64299         the old ydhms_tm_diff function.  Issue a compile-time
64300         diagnostic if we are not using C99 integer division.
64301         Avoid casts when possible.
64302         (guess_time_tm): New function, containing the checking part of
64303         the old ydhms_tm_diff function.  Return the new value, rather than
64304         the difference between it and the old.  Accept a new argument T
64305         so that *T specifies the old value.  Check for overflow in the result.
64306
64307         (__mktime_internal): Use a time_t offset, not a long int offset.
64308         This undoes the 2003-06-04 change, which is no longer needed now
64309         that we have better overflow checking.
64310         (localtime_offset): Likewise.
64311
64312         (__mktime_internal): Avoid harmful overflow on hosts where time_t
64313         and long are 64-bit but int is only 32-bit.
64314         (ydhms_diff): Use long int to store year1 and yday1.
64315         Issue a compile-time diagnostic if long int is not wide enough.
64316
64317         (__mktime_internal): Use long int to store adjusted year and yday.
64318         Use plain C rather than preprocessor commands, if that doesn't
64319         affect efficiency.
64320         Check for overflow (and try to repair) after each probe
64321         rather than checking only at the very end.  This avoids some bugs
64322         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
64323         does not equal GMT offset at maximum time).
64324         Use integer to check for overflow rather than floating point; this
64325         is more portable to non-IEEE hosts, and is a tad faster.
64326         When we detect that we are oscillating between two values,
64327         don't check whether tm_isdst has the requested value, since
64328         we already know the answer.  When tm_isdst has the wrong value,
64329         use a different heuristic to find the right one, based on the
64330         extreme values actually observed in practice in tz2003a,
64331         rather than the (overly optimistic) "previous 3 calendar quarters".
64332
64333         (not_equal_tm, print_tm, check_result): Use "const T" rather than
64334         "T const" to accommodate glibc style.
64335         (check_result): Use less-confusing report format.  "long" -> "long int.
64336         (main): Likewise.
64337         Don't loop if the iteration overflows time_t.
64338         Allow a negative step in the iteration.
64339
64340 2003-07-06  Karl Berry  <karl@gnu.org>
64341
64342         * config/depcomp: update from automake.
64343         * config/config.sub: update from prep.
64344
64345 2003-07-03  Karl Berry  <karl@gnu.org>
64346
64347         * config/config.guess: update from prep.
64348
64349 2003-07-01  Paul Eggert  <eggert@twinsun.com>
64350
64351         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
64352         xreadlink.c now includes it unconditionally.
64353
64354 2003-07-01  Paul Eggert  <eggert@twinsun.com>
64355
64356         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
64357         having it depend on HAVE_SYS_TYPES_H.
64358
64359 2003-07-01  Bruno Haible  <bruno@clisp.org>
64360
64361         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
64362         <sys/types.h> should be sufficient.
64363         Reported by Paul Eggert.
64364
64365 2003-06-26  Karl Berry  <karl@gnu.org>
64366
64367         * config/depcomp: update from automake.
64368
64369 2003-06-26  Bruno Haible  <bruno@clisp.org>
64370
64371         * modules/human: Depend on module stdbool.
64372
64373 2003-06-25  Bruno Haible  <bruno@clisp.org>
64374
64375         * modules/readlink: New file.
64376         * modules/xreadlink: Depend on it.
64377         * MODULES.html.sh (func_all_modules): Add readlink.
64378
64379 2003-06-25  Bruno Haible  <bruno@clisp.org>
64380
64381         * m4/readlink.m4: New file.
64382
64383 2003-06-25  Bruno Haible  <bruno@clisp.org>
64384
64385         * lib/readlink.c: New file.
64386
64387 2003-06-22  Karl Berry  <karl@gnu.org>
64388
64389         * config/srclist.txt: update mkinstalldirs from automake.
64390         * config/mkinstalldirs: update.
64391
64392 2003-06-22  Bruno Haible  <bruno@clisp.org>
64393
64394         Portability to mingw32.
64395         * m4/ssize_t.m4: New file, from GNU gettext.
64396         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
64397         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
64398
64399 2003-06-22  Bruno Haible  <bruno@clisp.org>
64400
64401         * modules/safe-read: Add m4/ssize_t.m4.
64402         * modules/xreadlink: Add m4/ssize_t.m4.
64403
64404 2003-06-20  Bruno Haible  <bruno@clisp.org>
64405
64406         Assume C89, so PARAMS isn't needed.
64407         * lib/unicodeio.h (PARAMS): Remove.
64408         * lib/unicodeio.c: Don't use PARAMS.
64409
64410 2003-06-18  Karl Berry  <karl@gnu.org>
64411
64412         * config/config.{guess,sub}: update from prep.
64413
64414 2003-06-18  Jim Meyering  <jim@meyering.net>
64415
64416         Merge changes from coreutils.
64417         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
64418         Remove explicit declarations of xmalloc and realloc.
64419         Include xalloc.h.
64420         (read_utmp): Remove anachronistic cast of xmalloc.
64421
64422 2003-06-17  Paul Eggert  <eggert@twinsun.com>
64423
64424         Assume C89, so PARAMS isn't needed.
64425         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
64426         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
64427         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
64428         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
64429         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
64430         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
64431         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
64432         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
64433         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
64434         lib/xstrtod.h, lib/xstrtol.h: Likewise.
64435         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
64436         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
64437         no longer needed. Anyway, config.h should always be included before any
64438         other file.
64439
64440 2003-06-11  Simon Josefsson  <jas@extundo.com>
64441
64442         * modules/sysexits: New file.
64443         * MODULES.html.sh (func_all_modules): Add sysexits.
64444
64445 2003-06-11  Simon Josefsson  <jas@extundo.com>
64446
64447         * lib/sysexit_.h: New file.
64448
64449 2003-06-11  Derek Price  <derek@ximbiot.com>
64450
64451         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
64452         necessary.
64453
64454 2003-06-11  Bruno Haible  <bruno@clisp.org>
64455
64456         * m4/sysexits.m4: New file.
64457
64458 2003-06-10  Simon Josefsson  <jas@extundo.com>
64459
64460         * lib/argp.h: New file, from glibc.
64461         * lib/argp-ba.c: New file, from glibc.
64462         * lib/argp-eexst.c: New file, from glibc.
64463         * lib/argp-fmtstream.c: New file, from glibc.
64464         * lib/argp-fmtstream.h: New file, from glibc.
64465         * lib/argp-fs-xinl.c: New file, from glibc.
64466         * lib/argp-help.c: New file, from glibc.
64467         * lib/argp-namefrob.h: New file, from glibc.
64468         * lib/argp-parse.c: New file, from glibc.
64469         * lib/argp-pv.c: New file, from glibc.
64470         * lib/argp-pvh.c: New file, from glibc.
64471         * lib/argp-xinl.c: New file, from glibc.
64472
64473 2003-06-10  Simon Josefsson  <jas@extundo.com>
64474
64475         * modules/strchrnul: New file.
64476
64477 2003-06-10  Simon Josefsson  <jas@extundo.com>
64478
64479         * modules/argp: New file.
64480
64481 2003-06-10  Simon Josefsson  <jas@extundo.com>
64482
64483         * m4/strchrnul.m4: New file.
64484
64485 2003-06-10  Simon Josefsson  <jas@extundo.com>
64486
64487         * lib/strchrnul.h: New file.
64488         * lib/strchrnul.c: New file.
64489
64490 2003-06-10  Bruno Haible  <bruno@clisp.org>
64491
64492         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
64493
64494 2003-06-07  Karl Berry  <karl@gnu.org>
64495
64496         * config/config.{guess,sub}: update from prep.
64497
64498 2003-06-07  Jim Meyering  <jim@meyering.net>
64499
64500         * modules/strtod: Use $(...) notation, not @...@ for
64501         AC_REPLACE'd variables.
64502         * modules/localcharset: Likewise.
64503
64504 2003-06-07  Jim Meyering  <jim@meyering.net>
64505
64506         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
64507         in place of my name in the copyright comment.
64508         Remove definition and uses of __P.
64509
64510         From coreutils.
64511         * lib/stat.c: Don't declare xmalloc explicitly.
64512         Instead, include "xalloc.h".
64513         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
64514         xrealloc, and xcalloc return values.
64515         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
64516         Improve comment.
64517         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
64518
64519 2003-06-07  Bruno Haible  <bruno@clisp.org>
64520
64521         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
64522         avoid AC_CONFIG_LINKS.
64523         * modules/fnmatch (Makefile.am): Use explicit creation rule for
64524         fnmatch.h, to avoid AC_CONFIG_LINKS.
64525         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
64526
64527 2003-06-07  Bruno Haible  <bruno@clisp.org>
64528
64529         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
64530         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
64531         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
64532         directory.
64533         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
64534         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
64535         directory.
64536
64537 2003-06-06  Jim Meyering  <jim@meyering.net>
64538
64539         Merge from coreutils.
64540         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
64541         Consolidate declarations and initializations of *_base* locals.
64542
64543         Merge from coreutils.
64544         This avoids a core dump on systems without GNU putenv,
64545         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
64546         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
64547         (unsetenv): New static function, from GNU libc.
64548         (rpl_putenv): Use it.
64549
64550         * lib/modechange.c: Remove trailing blanks.
64551
64552         Merge from coreutils.
64553         * lib/fsusage.c: Remove declaration of statfs.
64554         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
64555
64556         * lib/posixtm.c: Include <stdbool.h> unconditionally.
64557
64558 2003-06-06  Jim Meyering  <jim@meyering.net>
64559
64560         * lib/stdbool_.h: Renamed from stdbool.h.in.
64561
64562 2003-06-06  Jim Meyering  <jim@meyering.net>
64563             Bruno Haible  <bruno@clisp.org>
64564
64565         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
64566         Adjust Makefile.am snippet not to redirect directly to target.
64567         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
64568
64569 2003-06-05  Paul Eggert  <eggert@twinsun.com>
64570
64571         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
64572         mismatch, look in future quarters as well as past.  This fixes a
64573         bug when processing fall-backwards gaps immediately after a long
64574         period of daylight-saving time.
64575
64576         * lib/mktime.c: Assume freestanding C89 or better.
64577         (HAVE_LIMITS_H): Remove.  Assume it's 1.
64578         (__P): Remove; not used.
64579         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
64580         (mktime, not_equal_tm, print_tm, check_result,
64581         main): Use prototypes.  Use const * where appropriate.
64582         (main): Fix typo in testing code that uncovered by above changes.
64583         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
64584
64585 2003-06-04  Paul Eggert  <eggert@twinsun.com>
64586
64587         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
64588         locale.h, localeconv.  This merges changes from coreutils.
64589
64590         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
64591         It can be removed after the next Autoconf is released.
64592         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
64593         needed.
64594
64595 2003-06-04  Paul Eggert  <eggert@twinsun.com>
64596
64597         * lib/mktime.c: Fix Debian bug 177940
64598         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
64599         (localtime_offset): Now long int, not time_t, because we want it
64600         to be guaranteed to be signed.  All uses changed.
64601         (__mktime_internal): If overflow would occur when adding offset,
64602         don't add it.
64603
64604         Merge 'human' changes from coreutils.  Rewrite to support
64605         locale-specific notations like thousands separators.
64606         * lib/human.c: Simplify authorship notice.
64607         Include human.h immediately after config.h.
64608         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
64609         <limits.h>: Do not include, since human.h does.
64610         (SIZE_MAX, UINTMAX_MAX): New macros.
64611         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
64612         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
64613         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
64614         (power_letter): Renamed from suffixes.
64615         (generate_suffix_backwards): Remove.
64616         (adjust_value): Now takes int style (because of human.h changes)
64617         and long double value (for greater precision on some platforms).
64618         (group_number): New function.
64619         (human_readable): Use it.  Use integer options, not enum.
64620         Put the options before the sizes in the arg list.
64621         Support all the new options.
64622         The old human_readable function has been removed;
64623         use inttostr.h instead.
64624         (human_readable, default_block_size, humblock):
64625         Use uintmax_t, not int, for block sizes.
64626         (human_readable_inexact, block_size_types): Remove.
64627         (block_size_opts): New constant.
64628         (human_options): Renamed from human_block_size, with new signature
64629         that allows block sizes up to UINTMAX_MAX.  All callers changed.
64630         * lib/human.h: Add copyright and authorship notice.
64631         Include <limits.h> and <stdbool.h> unconditionally.
64632         (PARAMS): Remove.  All uses removed.
64633         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
64634         (enum human_inexact_style): Remove tag; now a nameless enum.
64635         (human_floor, human_ceiling, human_round_to_even): Now have
64636         values 2, 0, 1 rather than -1, 1, 0.
64637         (human_group_digits, human_suppress_point_zero, human_autoscale,
64638         human_base_1024, human_SI, human_B): New constants.
64639         (human_readable_inexact, human_block_size): Remove.
64640         (human_readable): Size args are now uintmax_t, not int.
64641         (human_options): New decl.
64642
64643         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
64644         unnecessary now that we assume C89 or better.  This change
64645         imported from coreutils.
64646
64647         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
64648         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
64649         in the 2003-05-30 sync from glibc.
64650
64651         .h files should stand alone, but we shouldn't include <sys/types.h>
64652         if we can get away with just <stddef.h>.
64653
64654         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
64655         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
64656         rather than <sys/types.h>, as we merely need size_t.
64657         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
64658         to get size_t.
64659         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
64660         Include <stdio.h>, to get FILE.
64661         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
64662         memcasecmp.h has included <stddef.h> and all we need is size_t.
64663         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
64664         our interface, instead of including <sys/types.h>
64665
64666 2003-06-04  Paul Eggert  <eggert@twinsun.com>
64667
64668         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
64669         now, as glibc mktime is buggy on non-glibc systems.
64670
64671 2003-06-03  Karl Berry  <karl@gnu.org>
64672
64673         * config/config.sub: update from prep.
64674
64675 2003-06-02  Paul Eggert  <eggert@twinsun.com>
64676
64677         [from coreutils]
64678         Fix some minor time-related bugs with POSIX time arguments.
64679         Some valid time stamps were being rejected (notably -1, and
64680         time stamps before 1900 on 64-bit hosts).  And some invalid
64681         time stamps were being accepted, e.g. September 31.
64682
64683         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
64684         that we can return (time_t) -1 successfully.
64685         * lib/posixtm.c: Likewise.
64686         [HAVE_STDBOOL_H]: Include <stdbool.h>.
64687         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
64688         (t): Remove static var.
64689         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
64690         of static var.  All uses changed.
64691         (year): Do not reject years before 1900; they can occur with
64692         64-bit time_t.
64693         (posix_time_parse): Do not check for out-of-range components;
64694         that is now the caller's responsibility, since our checks were
64695         only approximations.
64696         (posixtime): Use mktime to check for out-of-range components,
64697         since it knows them exactly.
64698         If mktime returns (time_t) -1, check whether an error actually occurred
64699         by invoking localtime on -1.
64700         (main) [TEST_POSIXTIME]: Check for input data errors, and report
64701         posixtime failures better.
64702         Improve the test data (in comments only).
64703
64704 2003-06-02  Karl Berry  <karl@gnu.org>
64705
64706         * config/mkinstalldirs (version): new variable.
64707         (--version): new option.
64708         (usage): improve message.
64709
64710 2003-05-30  Karl Berry  <karl@gnu.org>
64711
64712         * lib/mktime.c: update from libc.
64713
64714 2003-05-30  Bruno Haible  <bruno@clisp.org>
64715
64716         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
64717         * config/config.rpath: Upgrade to gettext-0.12.1.
64718
64719 2003-05-30  Bruno Haible  <bruno@clisp.org>
64720
64721         * m4/gettext.m4: Upgrade to gettext-0.12.1.
64722         * m4/nls.m4: New file, from gettext-0.12.1.
64723         * m4/po.m4: New file, from gettext-0.12.1.
64724         * m4/progtest.m4: Upgrade to gettext-0.12.1.
64725
64726 2003-05-30  Bruno Haible  <bruno@clisp.org>
64727
64728         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
64729         * lib/localcharset.h: Likewise.
64730         * lib/localcharset.c: Likewise.
64731
64732 2003-05-29  Karl Berry  <karl@gnu.org>
64733
64734         * config/config.rpath: update from gettext.
64735
64736 2003-05-28  Paul Eggert  <eggert@twinsun.com>
64737
64738         Assume the headers required for C89 freestanding compilers.
64739         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
64740         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
64741         * m4/human.m4 (gl_HUMAN): Likewise.
64742         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
64743         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
64744         * m4/userspec.m4 (gl_USERSPEC): Likewise.
64745         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
64746         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
64747         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
64748
64749 2003-05-28  Paul Eggert  <eggert@twinsun.com>
64750
64751         Assume the headers required for C89 freestanding compilers.
64752         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
64753         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
64754         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
64755         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
64756         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
64757         define, since <limits.h> is guaranteed to do that.
64758         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
64759         * lib/exclude.c: Include <stdbool.h> unconditionally.
64760         * lib/tempname.c: Include <stddef.h> unconditionally.
64761         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
64762         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
64763         <stddef.h> does that.
64764         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
64765         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
64766         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
64767         needed.
64768         * lib/xstrtol.c: Likewise.
64769         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
64770         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
64771
64772         * lib/addext.c (addext): Use assignment rather than cast, to avoid
64773         warnings on some platforms.
64774
64775         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
64776         arbitrarily.
64777
64778 2003-05-26  Jim Meyering  <jim@meyering.net>
64779
64780         Merge in a change from coreutils:
64781         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
64782         that is guaranteed to be `no'.  Use `no_such_member' to indicate
64783         that condition, rather than `-1' which is slightly misleading.
64784         Change the name of the cache variable to have the gl_ prefix.
64785         Prompted by a patch from Richard Dawe for DJGPP.
64786
64787 2003-05-24  Karl Berry  <karl@gnu.org>
64788
64789         * config/config.guess: update from prep.
64790
64791 2003-05-22  Karl Berry  <karl@gnu.org>
64792
64793         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
64794
64795 2003-05-20  Karl Berry  <karl@gnu.org>
64796
64797         * config/config.guess: update from prep.
64798
64799 2003-05-18  Karl Berry  <karl@gnu.org>
64800
64801         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
64802         might actually be set by the user.
64803
64804         * config/depcomp, install-sh, mdate-sh: update from automake.
64805
64806 2003-05-17  Bruno Haible  <bruno@clisp.org>
64807
64808         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
64809         invalid expansion for AC_EGREP_CPP.
64810         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
64811         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
64812         Suggested by Akim Demaille <akim@epita.fr> in
64813         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
64814
64815 2003-05-12  Jim Meyering  <jim@meyering.net>
64816
64817         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
64818         the space-padded-by-default conversion specifiers, %e, %k, %l.
64819
64820 2003-05-12  Bruno Haible  <bruno@clisp.org>
64821
64822         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
64823         the string is longer than 4 KB.
64824
64825 2003-05-11  Karl Berry  <karl@gnu.org>
64826
64827         * config/config.{guess,sub}: update from prep.
64828
64829 2003-05-09  Bruno Haible  <bruno@clisp.org>
64830
64831         * modules/error: Add m4/strerror_r.m4 to file list.
64832
64833 2003-05-03  Bruno Haible  <bruno@clisp.org>
64834
64835         Upgrade to Unicode-4.0.
64836         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
64837         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
64838         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
64839         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
64840         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
64841         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
64842         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
64843         Change width of U+E0100..U+E01EF from 1 to 0.
64844
64845 2003-04-25  Jim Meyering  <jim@meyering.net>
64846
64847         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
64848         of type size_t, not int.
64849
64850 2003-04-25  Bruno Haible  <bruno@clisp.org>
64851
64852         * lib/copy-file.c: Include <stddef.h>, for size_t.
64853
64854 2003-04-21  Paul Eggert  <eggert@twinsun.com>
64855
64856         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
64857         code which expansion is under static control.  Patch imported from
64858         Akim Demaille's patch to Bison; see
64859         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
64860
64861 2003-04-14  Bruno Haible  <bruno@clisp.org>
64862
64863         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
64864
64865 2003-04-11  Jim Meyering  <jim@meyering.net>
64866
64867         Merge changes from Coreutils.
64868
64869         2003-03-22  Jim Meyering  <jim@meyering.net>
64870
64871         * lib/strftime.c (widen): Cast alloca return value to proper type.
64872
64873         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
64874
64875         From GNU libc.
64876         * lib/strftime.c (my_strftime): Handle very large width
64877         specifications for numeric values correctly.  Improve checks for
64878         overflow.
64879
64880         2003-01-19  Jim Meyering  <jim@meyering.net>
64881
64882         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
64883         definitions.
64884         (nl_get_alt_digit) [! defined my_strftime]: Define.
64885         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
64886         _nl_get_alt_digit and _nl_get_walt_digit.
64887
64888         * lib/strftime.c (my_strftime): Merge in locale-related changes from
64889         libc. These changes have no effect outside of _LIBC.
64890
64891 2003-04-10  Bruno Haible  <bruno@clisp.org>
64892
64893         * modules/findprog: New file.
64894         * MODULES.html.sh (func_all_modules): Add it.
64895
64896 2003-04-10  Bruno Haible  <bruno@clisp.org>
64897
64898         * m4/findprog.m4: New file.
64899         * m4/eaccess.m4: New file.
64900
64901 2003-04-10  Bruno Haible  <bruno@clisp.org>
64902
64903         * lib/findprog.h: New file, from GNU gettext.
64904         * lib/findprog.c: New file, from GNU gettext.
64905
64906 2003-04-05  Jim Meyering  <jim@meyering.net>
64907
64908         Merge changes from Coreutils.
64909
64910         * lib/exclude.h (PARAMS): Remove definition and uses.
64911         * lib/exclude.c: Remove uses of `PARAMS'.
64912
64913         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
64914         Add test-cases for DOS filenames. Declare program_name.
64915         (main): Set up program_name.  Patch by Rich Dawe.
64916
64917         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
64918         error from mntctl.
64919         Use mntctl's return value to drive the entry-processing loop, since
64920         we can't rely on the value of the vmt_length member in the last
64921         entry.  On some systems doing so could result in exhausting
64922         virtual memory.  Based in part on a patch from Mike Jetzer.
64923
64924 2003-04-04  Bruno Haible  <bruno@clisp.org>
64925
64926         * modules/linebreak: New file.
64927         * MODULES.html.sh (func_all_modules): Add it.
64928
64929 2003-04-04  Bruno Haible  <bruno@clisp.org>
64930
64931         * m4/linebreak.m4: New file.
64932
64933 2003-04-04  Bruno Haible  <bruno@clisp.org>
64934
64935         * lib/linebreak.h: New file, from GNU gettext.
64936         * lib/linebreak.c: New file, from GNU gettext with slight
64937         modifications.
64938         * lib/lbrkprop.h: New file, from GNU gettext.
64939
64940 2003-04-03  Bruno Haible  <bruno@clisp.org>
64941
64942         * modules/utf8-ucs4: New file.
64943         * modules/utf16-ucs4: New file.
64944         * modules/ucs4-utf8: New file.
64945         * modules/ucs4-utf16: New file.
64946         * MODULES.html.sh (func_all_modules): Add them.
64947
64948 2003-04-03  Bruno Haible  <bruno@clisp.org>
64949
64950         * m4/utf-ucs4.m4: New file.
64951         * m4/ucs4-utf.m4: New file.
64952
64953 2003-04-03  Bruno Haible  <bruno@clisp.org>
64954
64955         * lib/utf8-ucs4.h: New file, from GNU gettext.
64956         * lib/utf16-ucs4.h: New file, from GNU gettext.
64957         * lib/ucs4-utf8.h: New file, from GNU gettext.
64958         * lib/ucs4-utf16.h: New file, from GNU gettext.
64959
64960 2003-04-02  Bruno Haible  <bruno@clisp.org>
64961
64962         * modules/binary-io: New file.
64963         * MODULES.html.sh (func_all_modules): Add it.
64964
64965 2003-04-02  Bruno Haible  <bruno@clisp.org>
64966
64967         * lib/binary-io.h: New file, from GNU gettext.
64968
64969 2003-04-01  Bruno Haible  <bruno@clisp.org>
64970
64971         * modules/pathname: New file.
64972         * MODULES.html.sh (func_all_modules): Add it.
64973
64974 2003-04-01  Bruno Haible  <bruno@clisp.org>
64975
64976         * lib/pathname.h: New file, from GNU gettext.
64977         * lib/concatpath.c: New file, from GNU gettext.
64978
64979 2003-03-30  Bruno Haible  <bruno@clisp.org>
64980
64981         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
64982
64983 2003-03-30  Bruno Haible  <bruno@clisp.org>
64984
64985         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
64986         function chown() doesn't exist.
64987
64988 2003-03-28  Bruno Haible  <bruno@clisp.org>
64989
64990         * modules/copy-file: New file.
64991         * MODULES.html.sh (func_all_modules): Add it.
64992
64993 2003-03-28  Bruno Haible  <bruno@clisp.org>
64994
64995         * m4/copy-file.m4: New file.
64996
64997 2003-03-28  Bruno Haible  <bruno@clisp.org>
64998
64999         * lib/copy-file.h: New file, from GNU gettext.
65000         * lib/copy-file.c: New file, from GNU gettext.
65001
65002 2003-03-18  Jim Meyering  <jim@meyering.net>
65003
65004         * lib/quote.c (quote_n): Fix typo in comment.
65005
65006 2003-03-18  Bruno Haible  <bruno@clisp.org>
65007
65008         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
65009         checking.
65010         * m4/onceonly_2_57.m4: Likewise.
65011
65012 2003-03-17  Bruno Haible  <bruno@clisp.org>
65013
65014         * m4/onceonly.m4: Require autoconf 2.54 or newer.
65015         (m4_quote): Remove macro.
65016         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
65017
65018 2003-03-14  Jim Meyering  <jim@meyering.net>
65019
65020         Merge changes from Coreutils.
65021         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
65022         to be const, in order to avoid warnings.
65023         (obstack_room): Likewise.
65024         (obstack_empty_p): Likewise.
65025
65026 2003-03-14  Bruno Haible  <bruno@clisp.org>
65027
65028         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
65029         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
65030
65031 2003-03-13  Paul Eggert  <eggert@twinsun.com>
65032
65033         Merge changes from Bison.
65034         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
65035         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
65036         when compiling Bison 1.875's `bitset bset = obstack_alloc
65037         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
65038         * lib/hash.c: Include <stdbool.h> unconditionally.
65039
65040 2003-03-13  Paul Eggert  <eggert@twinsun.com>
65041
65042         * m4/onceonly.m4 (m4_quote): New macro.
65043         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
65044         Quote AC_FOREACH variable-expansions properly.
65045
65046 2003-03-13  Paul Eggert  <eggert@twinsun.com>
65047
65048         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
65049
65050 2003-03-09  Paul Eggert  <eggert@twinsun.com>
65051
65052         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
65053         Reported by Bruce Becker; see:
65054         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
65055
65056 2003-03-03  Paul Eggert  <eggert@twinsun.com>
65057             Bruno Haible  <bruno@clisp.org>
65058
65059         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
65060         Reported by John Hughes, see
65061         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
65062
65063 2003-02-20  Bruno Haible  <bruno@clisp.org>
65064
65065         * MODULES.html.sh (func_all_modules): Add poll.
65066
65067 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
65068
65069         * modules/poll: New file.
65070
65071 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
65072
65073         * lib/poll_.h: New file.
65074         * lib/poll.c: New file.
65075
65076 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
65077
65078         * m4/poll.m4: New file.
65079
65080 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
65081
65082         * modules/mathl: New file.
65083
65084 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
65085
65086         * lib/mathl.h: New file.
65087         * lib/acosl.c: New file.
65088         * lib/asinl.c: New file.
65089         * lib/atanl.c: New file.
65090         * lib/ceill.c: New file.
65091         * lib/cosl.c: New file.
65092         * lib/expl.c: New file.
65093         * lib/floorl.c: New file.
65094         * lib/frexpl.c: New file.
65095         * lib/ldexpl.c: New file.
65096         * lib/logl.c: New file.
65097         * lib/sincosl.c: New file.
65098         * lib/sinl.c: New file.
65099         * lib/sqrtl.c: New file.
65100         * lib/tanl.c: New file.
65101         * lib/trigl.c: New file.
65102         * lib/trigl.h: New file.
65103
65104 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
65105
65106         * m4/mathl.m4: New file.
65107
65108 2003-02-18  Bruno Haible  <bruno@clisp.org>
65109
65110         * MODULES.html.sh (func_all_modules): Add mathl.
65111
65112 2003-02-17  Bruno Haible  <bruno@clisp.org>
65113
65114         * modules/mkdtemp: New module.
65115         * MODULES.html.sh (func_all_modules): Add it.
65116
65117 2003-02-17  Bruno Haible  <bruno@clisp.org>
65118
65119         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
65120
65121 2003-02-17  Bruno Haible  <bruno@clisp.org>
65122
65123         * lib/mkdtemp.h: New file, from GNU gettext.
65124         * lib/mkdtemp.c: New file, from GNU gettext.
65125
65126 2003-02-02  Jim Meyering  <jim@meyering.net>
65127
65128         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
65129         e.g. glibc-2.2.93.
65130
65131 2003-01-31  Bruno Haible  <bruno@clisp.org>
65132
65133         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
65134         'rpl_rename'.
65135         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
65136         'rpl_strnlen'.
65137         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
65138         'rpl_strtod'.
65139         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
65140         'rpl_utime'.
65141
65142 2003-01-31  Bruno Haible  <bruno@clisp.org>
65143
65144         * lib/rename.c: #undef rename before defining rpl_rename.
65145         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
65146
65147 2003-01-30  Bruno Haible  <bruno@clisp.org>
65148
65149         * modules/vasnprintf, modules/vasprintf: New modules.
65150         * MODULES.html.sh (func_all_modules): Add them.
65151
65152 2003-01-30  Bruno Haible  <bruno@clisp.org>
65153
65154         * m4/signed.m4: New file, from GNU gettext.
65155         * m4/longdouble.m4: New file, from GNU gettext.
65156         * m4/wchar_t.m4: New file, from GNU gettext.
65157         * m4/wint_t.m4: New file, from GNU gettext.
65158         * m4/vasnprintf.m4: New file.
65159         * m4/vasprintf.m4: New file.
65160
65161 2003-01-30  Bruno Haible  <bruno@clisp.org>
65162
65163         * lib/printf-args.h: New file, from GNU gettext.
65164         * lib/printf-args.c: New file, from GNU gettext.
65165         * lib/printf-parse.h: New file, from GNU gettext.
65166         * lib/printf-parse.c: New file, from GNU gettext.
65167         * lib/vasnprintf.h: New file, from GNU gettext.
65168         * lib/vasnprintf.c: New file, from GNU gettext.
65169         * lib/asnprintf.c: New file, from GNU gettext.
65170         * lib/vasprintf.h: New file, from GNU gettext with modifications.
65171         * lib/vasprintf.c: New file, from GNU gettext.
65172         * lib/asprintf.c: New file, from GNU gettext.
65173
65174 2003-01-29  Bruno Haible  <bruno@clisp.org>
65175
65176         * modules/stpncpy: New module.
65177         * MODULES.html.sh (func_all_modules): Add it.
65178
65179 2003-01-29  Bruno Haible  <bruno@clisp.org>
65180
65181         * m4/stpncpy.m4: New file.
65182
65183 2003-01-29  Bruno Haible  <bruno@clisp.org>
65184
65185         * lib/stpncpy.h: New file, from GNU gettext with modifications.
65186         * lib/stpncpy.c: New file, from GNU gettext with modifications.
65187
65188 2003-01-28  Bruno Haible  <bruno@clisp.org>
65189
65190         * modules/c-ctype: New module.
65191         * MODULES.html.sh (func_all_modules): Add it.
65192
65193 2003-01-28  Bruno Haible  <bruno@clisp.org>
65194
65195         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
65196         Paul Eggert.
65197         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
65198         Paul Eggert.
65199
65200 2003-01-27  Bruno Haible  <bruno@clisp.org>
65201
65202         * modules/xsetenv: New module.
65203         * MODULES.html.sh (func_all_modules): Add it.
65204
65205 2003-01-27  Bruno Haible  <bruno@clisp.org>
65206
65207         * lib/xsetenv.h: New file, from GNU gettext.
65208         * lib/xsetenv.c: New file, from GNU gettext.
65209
65210 2003-01-23  Jim Meyering  <jim@meyering.net>
65211
65212         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
65213         from working on systems without dirfd (at least Irix and OSF1/Tru64).
65214
65215 2003-01-23  Bruno Haible  <bruno@clisp.org>
65216
65217         * modules/minmax: New module.
65218         * MODULES.html.sh (func_all_modules): Add it.
65219
65220 2003-01-23  Bruno Haible  <bruno@clisp.org>
65221
65222         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
65223         Eggert.
65224
65225 2003-01-22  Bruno Haible  <bruno@clisp.org>
65226
65227         * modules/exit: New module.
65228         * MODULES.html.sh (func_all_modules): Add it.
65229
65230 2003-01-22  Bruno Haible  <bruno@clisp.org>
65231
65232         * lib/exit.h: New file, from GNU gettext.
65233
65234 2003-01-19  Bruno Haible  <bruno@clisp.org>
65235
65236         * gnulib-tool: Recognize option --extract-maintainer.
65237         (func_get_maintainer): New function.
65238         * modules/*: Add Maintainer entry.
65239
65240 2003-01-16  Jim Meyering  <jim@meyering.net>
65241
65242         * m4/regex.m4: The `regex' struct is both input and output.
65243         Initialize it before each use.  Patch by Tim Waugh.
65244
65245 2003-01-16  Bruno Haible  <bruno@clisp.org>
65246
65247         * MODULES.html.sh: Add a table of contents. Add the module name as
65248         leftmost column. Add hyperlinks.
65249
65250 2003-01-15  Bruno Haible  <bruno@clisp.org>
65251
65252         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
65253
65254 2003-01-15  Bruno Haible  <bruno@clisp.org>
65255
65256         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
65257         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
65258         suffix.
65259
65260 2003-01-15  Bruno Haible  <bruno@clisp.org>
65261
65262         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
65263
65264 2003-01-15  Bruno Haible  <bruno@clisp.org>
65265
65266         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
65267         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
65268
65269 2003-01-14  Jim Meyering  <jim@meyering.net>
65270
65271         * lib/same.c (same_name): Tweak a comment.
65272
65273 2003-01-14  Bruno Haible  <bruno@clisp.org>
65274
65275         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
65276         when a string comparison is sufficient.
65277
65278 2003-01-14  Bruno Haible  <bruno@clisp.org>
65279
65280         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
65281         'unsigned int'.
65282
65283 2003-01-14  Bruno Haible  <bruno@clisp.org>
65284
65285         * lib/hash-pjw.c: Add comment about low quality of this function.
65286
65287 2003-01-13  Bruno Haible  <bruno@clisp.org>
65288
65289         * modules/stpcpy: Distribute lib/stpcpy.h.
65290         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
65291
65292 2003-01-13  Bruno Haible  <bruno@clisp.org>
65293
65294         * modules/*: Add a description.
65295         * modules/strpbrk: Fix Makefile.am snippet.
65296         * modules/strtoimax: Fix dependencies.
65297         * modules/strtoumax: Likewise.
65298
65299 2003-01-13  Bruno Haible  <bruno@clisp.org>
65300
65301         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
65302         * modules/alloca (Makefile.am): All object files depend on alloca.h.
65303         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
65304
65305 2003-01-13  Bruno Haible  <bruno@clisp.org>
65306
65307         * gnulib-tool (func_create_testdir): Store config/* files in the main
65308         directory.
65309         * config.rpath: Move to ...
65310         * config/config.rpath: ... here.
65311         * modules/gettext: Contains config/config.rpath, not config.rpath.
65312         * modules/iconv: Likewise.
65313
65314 2003-01-12  Paul Eggert  <eggert@twinsun.com>
65315
65316         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
65317         to avoid collisions with libcurses and libreadline.
65318
65319         * m4/getstr.m4: Remove.
65320         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
65321
65322 2003-01-12  Paul Eggert  <eggert@twinsun.com>
65323
65324         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
65325         to avoid collisions with libcurses and libreadline.
65326
65327         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
65328         * lib/getstr.h, getstr.c: Remove.
65329         * lib/getline.c: Include "getline.h", to check interface.
65330         Move body of old getstr.c here: this defines MIN_CHUNK and
65331         declares getdelim2, which is renamed from getstr.
65332         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
65333
65334         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
65335         All uses changed.
65336         * lib/linebuffer.h: Likewise.
65337         (readline): Remove backward-compatibility macro.
65338
65339 2003-01-12  Paul Eggert  <eggert@twinsun.com>
65340
65341         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
65342         to avoid collisions with libcurses and libreadline.
65343         * getstr: Remove.
65344         * MODULES.html.sh: Remove getstr.
65345         * modules/getline: Depend on unlocked-io, not getstr.
65346
65347 2003-01-12  Jim Meyering  <jim@meyering.net>
65348
65349         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
65350
65351 2003-01-10  Bruno Haible  <bruno@clisp.org>
65352
65353         * modules/alloca: Change Makefile.am requirements. Simplify Include
65354         requirements. Add lib/alloca_.h to file list.
65355
65356 2003-01-10  Bruno Haible  <bruno@clisp.org>
65357
65358         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
65359
65360 2003-01-10  Bruno Haible  <bruno@clisp.org>
65361
65362         * lib/alloca_.h: New file.
65363         * lib/getdate.y: Unconditionally include alloca.h.
65364         * lib/makepath.c: Likewise.
65365         * lib/setenv.c: Likewise.
65366         * lib/userspec.c: Likewise.
65367
65368 2003-01-09  Karl Berry  <karl@gnu.org>
65369
65370         * MODULES.html.sh: include `dirname $0` in PATH, to find
65371         gnulib-tool.
65372
65373 2003-01-09  Bruno Haible  <bruno@clisp.org>
65374
65375         * modules/stdbool: Change configure.ac, Makefile.am requirements.
65376         Simplify Include requirements. Add lib/stdbool.h.in to file list.
65377
65378 2003-01-09  Bruno Haible  <bruno@clisp.org>
65379
65380         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
65381
65382 2003-01-09  Bruno Haible  <bruno@clisp.org>
65383
65384         * lib/stdbool.h.in: New file.
65385
65386 2003-01-09  Bruno Haible  <bruno@clisp.org>
65387
65388         * gnulib-tool (func_all_modules): Ignore files ending in ~.
65389         * MODULES.html.sh: Likewise.
65390
65391 2003-01-08  Jim Meyering  <jim@meyering.net>
65392
65393         * lib/full-write.c: Undefine and define-away `const' after inclusion
65394         of errno.h, not before.  Suggestion from Bruno Haible.
65395
65396 2003-01-08  Bruno Haible  <bruno@clisp.org>
65397
65398         * modules/full-read: Depend on full-write.
65399
65400 2003-01-08  Bruno Haible  <bruno@clisp.org>
65401
65402         * lib/safe-read.c: Include specification header first, to ensure its
65403         selfcontainedness.
65404         * lib/full-write.c: Likewise.
65405
65406 2003-01-07  Jim Meyering  <jim@meyering.net>
65407
65408         * lib/full-write.c: Rework so that it may serve to define full_read,
65409         too.
65410         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
65411
65412 2003-01-07  Bruno Haible  <bruno@clisp.org>
65413
65414         * lib/strtoimax.c: Include <stdint.h> as an alternative to
65415         <inttypes.h>.
65416         * lib/xstrtol.h: Likewise.
65417         * lib/xstrtoimax.c: Likewise.
65418         * lib/xstrtoumax.c: Likewise.
65419         * lib/human.h: Likewise.
65420
65421         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
65422         on systems that have <inttypes.h> but not <stdint.h>.
65423
65424 2003-01-07  Bruno Haible  <bruno@clisp.org>
65425
65426         * MODULES.html.sh: Add copyright notice.
65427         (missed_files): Omit CVS directory entries.
65428         (func_module): Make it work with sed-3.02.
65429         * MODULES.txt: Remove file.
65430
65431 2003-01-06  Jim Meyering  <jim@meyering.net>
65432
65433         * lib/version-etc.c: Update year in translatable copyright string.
65434
65435 2003-01-03  Karl Berry  <karl@gnu.org>
65436
65437         * config/config.{guess,sub}: update from prep.
65438
65439 2003-01-02  Karl Berry  <karl@gnu.org>
65440
65441         * doc/COPYING.DOC: belatedly updated to 1.2.
65442
65443 2003-01-01  Karl Berry  <karl@gnu.org>
65444
65445         * gnulib-tool (func_verify_module): report module name $module in
65446         error message, not $1.
65447         * gnulib-tool (create-testdir): don't complain if destdir couldn't
65448         be created, only if it doesn't exist.
65449         * gnulib-tool (last_checkin_date): don't expand the $Date here.
65450
65451 2002-12-31  Paul Eggert  <eggert@twinsun.com>
65452
65453         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
65454
65455 2002-12-31  Paul Eggert  <eggert@twinsun.com>
65456
65457         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
65458         memcmp if strcoll doesn't work.
65459
65460 2002-12-31  Bruno Haible  <bruno@clisp.org>
65461
65462         * lib/utime.c (utime_null): No need to call ftruncate if the file was
65463         nonempty.
65464
65465 2002-12-31  Bruno Haible  <bruno@clisp.org>
65466
65467         * lib/memcoll.c (STRCOLL): New macro.
65468         (memcoll): Use it.
65469
65470 2002-12-31  Bruno Haible  <bruno@clisp.org>
65471
65472         * lib/localcharset.h: New file.
65473         * lib/localcharset.c: Include it.
65474         * lib/unicodeio.c: Likewise.
65475
65476 2002-12-31  Bruno Haible  <bruno@clisp.org>
65477
65478         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
65479         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
65480
65481 2002-12-31  Bruno Haible  <bruno@clisp.org>
65482
65483         * lib/getline.h: Include <stddef.h>, for size_t.
65484
65485         * lib/unicodeio.h: Include <stddef.h>, for size_t.
65486         * lib/unicodeio.c: Don't include <stddef.h>.
65487
65488 2002-12-31  Bruno Haible  <bruno@clisp.org>
65489
65490         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
65491         HAVE_TM_ZONE.
65492
65493 2002-12-24  Karl Berry  <karl@gnu.org>
65494
65495         * config/config.guess: update from prep.
65496
65497 2002-12-24  Bruno Haible  <bruno@clisp.org>
65498
65499         General infrasructure.
65500         * m4/README: Rewritten.
65501         * m4/onceonly.m4: New file.
65502         * m4/onceonly_2_57.m4: New file.
65503
65504         Module atexit.
65505         * m4/atexit.m4: New file.
65506
65507         Module strtod.
65508         * m4/strtod.m4: New file.
65509
65510         Module strtol.
65511         * m4/strtol.m4: New file.
65512
65513         Module strtoul.
65514         * m4/strtoul.m4: New file.
65515
65516         Module memchr.
65517         * m4/memchr.m4: New file.
65518
65519         Module memcmp.
65520         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
65521         (jm_FUNC_MEMCMP): Invoke it.
65522
65523         Module memcpy.
65524         * m4/memcpy.m4: New file.
65525
65526         Module memmove.
65527         * m4/memmove.m4: New file.
65528
65529         Module memset.
65530         * m4/memset.m4: New file.
65531
65532         Module strcspn.
65533         * m4/strcspn.m4: New file.
65534
65535         Module strpbrk.
65536         * m4/strpbrk.m4: New file.
65537
65538         Module strstr.
65539         * m4/strstr.m4: New file.
65540
65541         Module strerror.
65542         * m4/strerror.m4: New file.
65543
65544         Module mktime.
65545         * m4/mktime.m4: Renamed from jm-mktime.m4.
65546         (gl_PREREQ_MKTIME): New macro.
65547         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
65548
65549         Module malloc.
65550         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
65551         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
65552         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
65553
65554         Module realloc.
65555         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
65556         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
65557         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
65558
65559         Module strftime.
65560         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
65561         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
65562         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
65563         gl_TM_GMTOFF.
65564         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
65565
65566         Module xalloc.
65567         * m4/xalloc.m4: New file.
65568
65569         Module alloca.
65570         * m4/alloca.m4: New file.
65571
65572         Module putenv.
65573         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
65574         (jm_FUNC_PUTENV): Invoke it.
65575
65576         Module setenv.
65577         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
65578         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
65579         when invoked twice.
65580         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
65581         gt_FUNC_SETENV.
65582
65583         Module memrchr.
65584         * m4/memrchr.m4: New file.
65585
65586         Module stpcpy.
65587         * m4/stpcpy.m4: New file.
65588
65589         Module strcase.
65590         * m4/strcase.m4: New file.
65591
65592         Module strdup.
65593         * m4/strdup.m4: New file.
65594
65595         Module strnlen.
65596         * m4/strnlen.m4: New file.
65597
65598         Module strndup.
65599         * m4/strndup.m4: New file.
65600
65601         Module xstrtod.
65602         * m4/xstrtod.m4: New file.
65603
65604         Module xstrtol.
65605         * m4/xstrtol.m4: New file.
65606
65607         Module getdate.
65608         * m4/getdate.m4: New file.
65609
65610         Module unlocked-io.
65611         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
65612         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
65613         * m4/jm-glibc-io.m4n: Remove file.
65614
65615         Module long-options.
65616         * m4/long-options.m4: New file.
65617
65618         Module md5.
65619         * m4/md5.m4: New file.
65620
65621         Module sha.
65622         * m4/sha.m4: New file.
65623
65624         Module getstr.
65625         * m4/getstr.m4: New file.
65626
65627         Module getline.
65628         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
65629         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
65630         <sys/types.h>, for size_t. Use the function name gnu_getline, not
65631         simply getline. Infoke gl_PREREQ_GETLINE.
65632
65633         Module obstack.
65634         * m4/obstack.m4: New file.
65635
65636         Module hash.
65637         * m4/hash.m4: New file.
65638
65639         Module readtokens.
65640         * m4/readtokens.m4: New file.
65641
65642         Module strverscmp.
65643         * m4/strverscmp.m4: New file.
65644
65645         Module stdbool.
65646         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
65647         OSF/1.
65648
65649         Module strtoll.
65650         * m4/strtoll.m4: New file.
65651
65652         Module strtoull.
65653         * m4/strtoull.m4: New file.
65654
65655         Module strtoimax.
65656         * m4/strtoimax.m4: New file.
65657
65658         Module strtoumax.
65659         * m4/strtoumax.m4: New file.
65660
65661         Module xstrtoimax.
65662         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
65663         jm_AC_PREREQ_XSTRTOIMAX.
65664         Moved the strtol prerequisites to strtol.m4.
65665         Moved the strtoll prerequisites to strtoll.m4.
65666         Moved the strtoimax prerequisites to strtoimax.m4.
65667
65668         Module xstrtoumax.
65669         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
65670         jm_AC_PREREQ_XSTRTOUMAX.
65671         Moved the strtoul prerequisites to strtoul.m4.
65672         Moved the strtoull prerequisites to strtoull.m4.
65673         Moved the strtoumax prerequisites to strtoumax.m4.
65674
65675         Module chown.
65676         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
65677         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
65678
65679         Module dup2.
65680         * m4/dup2.m4: New file.
65681
65682         Module ftruncate.
65683         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
65684         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
65685
65686         Module getgroups.
65687         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
65688         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
65689
65690         Module gettimeofday.
65691         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
65692         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
65693         gl_PREREQ_GETTIMEOFDAY.
65694
65695         Module mkdir.
65696         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
65697         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
65698
65699         Module mkstemp.
65700         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
65701         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
65702         jm_AC_TYPE_UINTMAX_T.
65703         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
65704
65705         Module stat.
65706         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
65707         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
65708
65709         Module lstat.
65710         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
65711         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
65712
65713         Module timespec.
65714         * m4/timespec.m4 (gl_TIMESPEC): New macro.
65715         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
65716         * m4/st_mtim.m4: Indentation.
65717
65718         Module nanosleep.
65719         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
65720         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
65721         gl_PREREQ_NANOSLEEP.
65722
65723         Module regex.
65724         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
65725         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
65726         (gl_REGEX): New macro.
65727
65728         Module rename.
65729         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
65730         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
65731
65732         Module rmdir.
65733         * m4/rmdir.m4: New file.
65734
65735         Module utime.
65736         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
65737         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
65738         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
65739
65740         Module dirname.
65741         * m4/dirname.m4: New file.
65742
65743         Module getopt.
65744         * m4/getopt.m4: New file.
65745
65746         Module unistd-safer.
65747         * m4/unistd-safer.m4: New file.
65748
65749         Module fnmatch.
65750         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
65751         declaration.
65752         (gl_PREREQ_FNMATCH_EXTRA): New macro.
65753         (gl_FUNC_FNMATCH_POSIX): New macro.
65754         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
65755         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
65756         simply fnmatch.
65757
65758         Module exclude.
65759         * m4/exclude.m4: New file.
65760
65761         Module human.
65762         * m4/human.m4: New file.
65763
65764         Module acl.
65765         * m4/acl.m4: Nop.
65766
65767         Module backupfile.
65768         * m4/backupfile.m4: New file.
65769         * m4/d-ino.m4: Indentation.
65770
65771         Module fsusage.
65772         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
65773         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
65774         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
65775
65776         Module dirfd.
65777         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
65778         requirements.
65779
65780         Module euidaccess.
65781         * m4/euidaccess.m4: New file.
65782
65783         Module file-type.
65784         * m4/file-type.m4: New file.
65785
65786         Module fileblocks.
65787         * m4/fileblocks.m4: New file.
65788
65789         Module filemode.
65790         * m4/filemode.m4: New file.
65791
65792         Module isdir.
65793         * m4/isdir.m4: New file.
65794
65795         Module lchown.
65796         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
65797         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
65798
65799         Module makepath.
65800         * m4/makepath.m4: New file.
65801
65802         Module modechange.
65803         * m4/modechange.m4: New file.
65804
65805         Module mountlist.
65806         * m4/mountlist.m4: New file.
65807         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
65808         Indentation.
65809
65810         Module path-concat.
65811         * m4/path-concat.m4: New file.
65812
65813         Module pathmax.
65814         * m4/pathmax.m4: New file.
65815
65816         Module same.
65817         * m4/same.m4: New file.
65818
65819         Module save-cwd.
65820         * m4/save-cwd.m4: New file.
65821
65822         Module savedir.
65823         * m4/savedir.m4: New file.
65824
65825         Module xgetcwd.
65826         * m4/xgetcwd.m4: New file.
65827         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
65828
65829         Module xreadlink.
65830         * m4/xreadlink.m4: New file.
65831
65832         Module safe-read.
65833         * m4/safe-read.m4: New file.
65834
65835         Module safe-write.
65836         * m4/safe-write.m4: New file.
65837
65838         Module closeout.
65839         * m4/closeout.m4: New file.
65840
65841         Module stdio-safer.
65842         * m4/stdio-safer.m4: New file.
65843
65844         Module getpass.
65845         * m4/getpass.m4: New file.
65846
65847         Module getugroups.
65848         * m4/getugroups.m4: New file.
65849
65850         Module group-member.
65851         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
65852         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
65853
65854         Module idcache.
65855         * m4/idcache.m4: New file.
65856
65857         Module userspec.
65858         * m4/userspec.m4: New file.
65859
65860         Module gettime.
65861         * m4/clock_time.m4: New file.
65862         * m4/gettime.m4: New file.
65863
65864         Module settime.
65865         * m4/settime.m4: New file.
65866
65867         Module posixtm.
65868         * m4/posixtm.m4: New file.
65869
65870         Module gethostname.
65871         * m4/gethostname.m4: New file.
65872
65873         Module canon-host.
65874         * m4/canon-host.m4: New file.
65875
65876         Module gettext.
65877         * m4/codeset.m4: New file, from gettext-0.11.5.
65878         * m4/gettext.m4: New file, from gettext-0.11.5.
65879         * m4/glibc21.m4: New file, from gettext-0.11.5.
65880         * m4/iconv.m4: New file, from gettext-0.11.5.
65881         * m4/intdiv0.m4: New file, from gettext-0.11.5.
65882         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
65883         * m4/inttypes.m4: New file, from gettext-0.11.5.
65884         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
65885         * m4/isc-posix.m4: New file, from gettext-0.11.5.
65886         * m4/lcmessage.m4: New file, from gettext-0.11.5.
65887         * m4/lib-ld.m4: New file, from gettext-0.11.5.
65888         * m4/lib-link.m4: New file, from gettext-0.11.5.
65889         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
65890         * m4/progtest.m4: New file, from gettext-0.11.5.
65891         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
65892         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
65893         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
65894
65895         Module localcharset.
65896         * m4/localcharset.m4: New file.
65897
65898         Module hard-locale.
65899         * m4/hard-locale.m4: New file.
65900
65901         Module mbswidth.
65902         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
65903         onceonly macros.
65904         * m4/mbrtowc.m4: Add comment.
65905
65906         Module memcasecmp.
65907         * m4/memcasecmp.m4: New file.
65908
65909         Module memcoll.
65910         * m4/memcoll.m4: New file.
65911
65912         Module unicodeio.
65913         * m4/unicodeio.m4: New file.
65914
65915         Module rpmatch.
65916         * m4/rpmatch.m4: New file.
65917
65918         Module yesno.
65919         * m4/yesno.m4: New file.
65920
65921         Module exitfail.
65922         * m4/exitfail.m4: New file.
65923
65924         Module c-stack.
65925         * m4/c-stack.m4 (gl_C_STACK): New macro.
65926         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
65927
65928         Module error.
65929         * m4/error.m4 (gl_ERROR): New macro.
65930         (jm_PREREQ_ERROR): Use onceonly macros.
65931
65932         Module fatal.
65933         * m4/fatal.m4: New file.
65934
65935         Module getloadavg.
65936         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
65937         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
65938
65939         Module getpagesize.
65940         * m4/getpagesize.m4: New file.
65941
65942         Module getusershell.
65943         * m4/getusershell.m4: New file.
65944
65945         Module physmem.
65946         * m4/physmem.m4: New file.
65947
65948         Module posixver.
65949         * m4/posixver.m4: New file.
65950
65951         Module quotearg.
65952         * m4/quotearg.m4: New file.
65953
65954         Module quote.
65955         * m4/quote.m4: New file.
65956
65957         Module readutmp.
65958         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
65959
65960         Module sig2str.
65961         * m4/sig2str.m4: New file.
65962
65963         Other.
65964         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
65965         ulonglong.m4.
65966         * m4/intmax_t.m4: New file.
65967         * m4/d-type.m4: Indentation.
65968         * m4/jm-macros.m4: Update.
65969         * m4/prereq.m4 (jm_PREREQ): Update.
65970         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
65971         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
65972         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
65973         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
65974         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
65975         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
65976         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
65977         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
65978         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
65979         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
65980         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
65981         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
65982         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
65983         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
65984         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
65985         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
65986         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
65987         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
65988         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
65989
65990 2002-12-24  Bruno Haible  <bruno@clisp.org>
65991
65992         * MODULES.txt: Update according to m4/ changes.
65993
65994         Module gettext.
65995         * config.rpath: New file, from gettext-0.11.5.
65996
65997         * modules/*: New module descriptions.
65998         * gnulib-tool: New file.
65999         * MODULES.html.sh: New file.
66000
66001 2002-12-21  Karl Berry  <karl@gnu.org>
66002
66003         * doc/fdl.texi: update to version 1.2.
66004
66005 2002-12-19  Karl Berry  <karl@gnu.org>
66006
66007         * config/config.guess: update from prep.
66008
66009 2002-12-18  Bruno Haible  <bruno@clisp.org>
66010
66011         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
66012         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
66013
66014 2002-12-17  Bruno Haible  <bruno@clisp.org>
66015
66016         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
66017         stdlib.h, string.h.
66018
66019 2002-12-17  Bruno Haible  <bruno@clisp.org>
66020
66021         * lib/canon-host.c (strdup): Remove unused declaration.
66022
66023         * lib/fsusage.c: Include full_read.h.
66024         (get_fs_usage): Use full_read instead of safe_read.
66025
66026         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
66027
66028 2002-12-12  Karl Berry  <karl@gnu.org>
66029
66030         * config/config.guess: update from prep.
66031
66032 2002-12-11  Bruno Haible  <bruno@clisp.org>
66033
66034         * m4/setenv.m4: New file, from gettext-0.11.5.
66035
66036 2002-12-11  Bruno Haible  <bruno@clisp.org>
66037
66038         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
66039         not unsetenv().
66040         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
66041         modifications:
66042
66043         2002-12-11  Bruno Haible  <bruno@clisp.org>
66044
66045                 * setenv.c (alloca): Fall back to malloc.
66046                 (freea): New macro.
66047                 (setenv): Use freea() to free memory allocated with alloca().
66048
66049         2002-11-13  Bruno Haible  <bruno@clisp.org>
66050
66051                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
66052                 function declarations.
66053                 * unsetenv.c (unsetenv): Likewise.
66054
66055         2002-03-04  Bruno Haible  <bruno@clisp.org>
66056
66057                 Portability to AIX 4.3.3.
66058                 * unsetenv.c: New file, extracted from setenv.c.
66059                 * setenv.c: Move the unsetenv() function to unsetenv.c.
66060
66061         2001-12-20  Bruno Haible  <bruno@clisp.org>
66062
66063                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
66064                 use malloc instead. For SunOS 4.
66065
66066         2001-12-11  Bruno Haible  <bruno@clisp.org>
66067
66068                 * setenv.c: Declare alloca.
66069                 (compar_fn_t): New typedef.
66070                 (KNOWN_VALUE, STORE_VALUE): Use it.
66071
66072         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
66073         setenv.h.
66074
66075 2002-12-10  Paul Eggert  <eggert@twinsun.com>
66076
66077         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
66078         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
66079         Choose values that are less likely to collide with system fnmatch
66080         options.
66081         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
66082         defined (e.g., a pure POSIX system).
66083         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
66084         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
66085
66086 2002-12-06  Paul Eggert  <eggert@twinsun.com>
66087
66088         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
66089         a pain in practice to deal with generated m4 files.  This change
66090         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
66091
66092         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
66093         and jm-glibc-io.m4, as they are no longer a special case.
66094         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
66095         kludge and the auto-generation stuff.  Check only whether the
66096         functions are declared, not whether they exist, since older hosts
66097         that don't declare the functions can't use the optimization anyway.
66098
66099 2002-12-06  Jim Meyering  <jim@meyering.net>
66100
66101         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
66102
66103         Merge in changes from libc's misc/error.c, in preparation
66104         for the merge of gnulib's changes back into libc.
66105
66106         * lib/error.c (_): Define only if not already defined.
66107         Move definition to follow all #include directives.
66108         Include unlocked-io.h only if !_LIBC.
66109         [_LIBC]: Include <libio/libioP.h>.
66110         [USE_IN_LIBIO]: Include <libio/iolibio.h>
66111         (fflush): Tweak definition to use INTUSE.
66112         (putc): Define.
66113
66114 2002-12-05  Paul Eggert  <eggert@twinsun.com>
66115
66116         * lib/alloca.c [defined emacs]: Include "lisp.h".
66117         (xalloc_die) [defined emacs]: New macro.
66118         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
66119         [! defined emacs]: Include <xalloc.h>.
66120         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
66121         (pointer): Typedef to POINTER_TYPE *.
66122         (malloc): Remove decl; we now always use xmalloc.
66123         (alloca): Use old-style definition, since Emacs needs this.
66124         Check for arithmetic overflow when computing combined size.
66125
66126 2002-12-04  Paul Eggert  <eggert@twinsun.com>
66127
66128         Do not generate unlocked-io.h automatically, since it's easier to
66129         maintain it by hand.
66130
66131         * lib/unlocked-io.h: New file, from GNU diffutils,
66132         but with proper copyright notice and attribution.
66133         * lib/gen-uio: Remove.
66134         * lib/Makefile.am: Add copyright notice.
66135         (libfetish_a_SOURCES): Add unlocked-io.h.
66136         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
66137         (DISTCLEANFILES, io_functions): Remove macros.
66138         (EXTRA_DIST): Remove gen_uio.
66139         (unlocked-io.h): Remove rule.
66140
66141 2002-12-04  Jim Meyering  <jim@meyering.net>
66142
66143         Reflect the fact that stat.c and lstat.c are no longer generated.
66144         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
66145         (DISTCLEANFILES): Likewise.
66146         (EXTRA_DIST): Likewise.
66147         (all_local): Don't depend on stat.c or lstat.c.
66148         (stat.c, lstat.c): Remove rules.
66149         (EXTRA_DIST): Remove xstat.in.
66150
66151         * lib/xstat.in: Remove file.  Contents moved into stat.c.
66152         * lib/stat.c: New file.  Contents mostly from xstat.in.
66153         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
66154         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
66155
66156         * lib/safe-read.c: Rework so that it may serve to define safe_write,
66157         too.
66158         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
66159
66160 2002-12-03  Jim Meyering  <jim@meyering.net>
66161
66162         * lib/safe-read.c, safe-write.c: Change variable names and comments,
66163         but not semantics, to minimize the differences between these two files.
66164         (safe_read): Change comment to mention SAFE_READ_ERROR.
66165
66166         * lib/safe-read.c (IS_EINTR): Define.
66167         (safe_read): Use IS_EINTR in place of in-function cpp directives.
66168
66169 2002-12-02  Jim Meyering  <jim@meyering.net>
66170
66171         * lib/safe-read.c (EINTR): Define.
66172         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
66173         (INT_MAX): Provide fallback.
66174         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
66175
66176         * lib/safe-read.h (SAFE_READ_ERROR): Define.
66177
66178 2002-12-02  Bruno Haible  <bruno@clisp.org>
66179
66180         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
66181         Define, taken from safe-read.c.
66182         (INT_MAX): Provide fallback.
66183         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
66184         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
66185
66186         * lib/safe-read.c (EINTR): Remove definition.
66187         (safe_read): Don't use EINTR if it is absent.
66188
66189 2002-12-01  Jim Meyering  <jim@meyering.net>
66190
66191         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
66192         zero.
66193         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
66194
66195 2002-11-27  Paul Eggert  <eggert@twinsun.com>
66196
66197         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
66198         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
66199         with `if (! (value < limit)) abort ();', for readability.
66200
66201 2002-11-26  Karl Berry  <karl@gnu.org>
66202
66203         * lib/strdup.c: copy from libc again, with jim's ok.
66204         * lib/.cppi-disable: re-add strdup.c
66205
66206 2002-11-25  Karl Berry  <karl@gnu.org>
66207
66208         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
66209         instead of "strtol.c".
66210
66211 2002-11-25  Karl Berry  <karl@gnu.org>
66212
66213         * config/install-sh: update from automake for variable quoting, $0 in
66214         error msgs, etc.
66215
66216         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
66217         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
66218         entry.
66219
66220 2002-11-25  Jim Meyering  <jim@meyering.net>
66221
66222         * lib/mktime.c: Sync from libc, now that it has the latest fix.
66223
66224 2002-11-24  Karl Berry  <karl@gnu.org>
66225
66226         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
66227         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
66228
66229 2002-11-24  Jim Meyering  <jim@meyering.net>
66230
66231         Update from coreutils:
66232
66233         * lib/mktime.c: Merge in changes from libc.
66234
66235         Avoid a link-time failure on some Linux systems.
66236         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
66237         (otherwise).
66238         (__mon_yday): Declare with the STATIC attribute.
66239         (__mktime_internal): Likewise.
66240         Based on a report from Greg Schafer.
66241
66242 2002-11-23  Jim Meyering  <jim@meyering.net>
66243
66244         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
66245         Use `unsigned', not `int', as type of index.
66246
66247         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
66248
66249         * lib/fsusage.c: Remove unneeded parentheses around operands of
66250         `defined'.
66251
66252 2002-11-22  Paul Eggert  <eggert@twinsun.com>
66253
66254         * lib/quotearg.h: Allow multiple inclusion by surrounding with
66255         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
66256         so that we can be included first.
66257         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
66258         * lib/quotearg.c: Include quotearg.h immediately after config.h.
66259         No need to include stddef.h or sys/types.h any more.
66260         Surround local include files with "", not "<>".
66261         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
66262         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
66263         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
66264         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
66265         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
66266         (ISPRINT): Remove; no longer needed now that we assume C89.
66267
66268         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
66269         Preserve errno.
66270
66271         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
66272         quotearg_char): Use SIZE_MAX rather than
66273         (size_t) -1 when we are talking about "infinity".
66274
66275         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
66276
66277 2002-11-22  Paul Eggert  <eggert@twinsun.com>
66278
66279         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
66280         hint that one should use `if (! x) abort ();' rather than `assert
66281         (x);', and anyway it's one less thing to worry about configuring.
66282         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
66283         hash_rehash, hash_insert): Use abort rather than assert.
66284
66285 2002-11-22  Bruno Haible  <bruno@clisp.org>
66286
66287         * lib/safe-read.h: Assume C89. Add comments.
66288         (safe_read): Change return type to size_t.
66289         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
66290         byte counts > SSIZE_MAX correctly.
66291         * lib/safe-write.h: New file.
66292         * lib/safe-write.c: New file.
66293         * lib/full-read.h: New file.
66294         * lib/full-read.c: New file.
66295         * lib/full-write.h: Assume C89. Add comments.
66296         * lib/full-write.c: Include safe-write.h.
66297         (full_write): Rewritten to use safe_write.
66298         Suggested by Jim Meyering and Paul Eggert.
66299
66300 2002-11-21  Jim Meyering  <jim@meyering.net>
66301
66302         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
66303
66304         Merge in changes from the coreutils.
66305
66306         2002-09-25  Paul Eggert  <eggert@twinsun.com>
66307         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
66308         <stdint.h>.
66309         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
66310         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
66311         int.  Work more efficiently if X is the same width as uintmax_t.
66312         Do not compare X to -1, to avoid bogus compiler warning.
66313         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
66314         Don't assume that f_frsize and f_bsize are the same type.
66315
66316         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
66317         warning on FreeBSD.
66318
66319         * lib/makepath.c (make_path): Restore umask *before* creating the final
66320         component.
66321         (make_path): Minor reformatting.
66322
66323         * lib/xmalloc.c: Adjust to work with new autoconf macros,
66324         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
66325         HAVE_MALLOC/HAVE_REALLOC.
66326
66327         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
66328         dummy ones.  At least on GNU/Linux systems, `auto' means something
66329         else.
66330         From Michael Stone.
66331
66332 2002-11-21  Bruno Haible  <bruno@clisp.org>
66333
66334         Remove case insensitive option matching.
66335         * lib/argmatch.h (argcasematch): Remove declaration.
66336         (ARGCASEMATCH): Remove macro.
66337         (__xargmatch_internal): Remove case_sensitive argument.
66338         (XARGMATCH): Update.
66339         (XARGCASEMATCH): Remove macro.
66340         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
66341         case_sensitive argument.
66342         (argcasematch): Remove function.
66343         (__xargmatch_internal): Remove case_sensitive argument.
66344         (main): Use XARGMATCH instead of XARGCASEMATCH.
66345
66346         * lib/xmalloc.c: Change compile-time error message. Add comment about
66347         required autoconf version.
66348
66349 2002-11-20  Paul Eggert  <eggert@twinsun.com>
66350
66351         Merge argmatch cleanups from Bison.  Assume C89.
66352
66353         * lib/argmatch.c: Include config.h here, not in argmatch.h.
66354         Include stdlib.h, for EXIT_FAILURE.
66355         Always include <string.h>, since we assume C89.
66356         (EXIT_FAILURE): Remove pre-C89 bug workaround.
66357         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
66358         Include <stddef.h> instead, since it's all we need for size_t.
66359         (PARAMS): Remove.  All uses removed.
66360         (ARRAY_CARDINALITY): Do not bother to #undef.
66361         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
66362         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
66363         Remove unnecessary parentheses.
66364         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
66365         Insert necessary parentheses.
66366         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
66367         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
66368
66369 2002-11-19  Bruno Haible  <bruno@clisp.org>
66370
66371         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
66372         * lib/mbswidth.h: Include <stddef.h>, for size_t.
66373
66374         * lib/mbswidth.h (PARAMS): Remove macro.
66375         (mbswidth, mbsnwidth): Use ANSI C function declarations.
66376         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
66377
66378         * lib/gcd.h (PARAMS): Remove macro.
66379         (gcd): Use ANSI C function declarations.
66380         * lib/gcd.c (gcd): Likewise.
66381
66382 2002-11-15  Bruno Haible  <bruno@clisp.org>
66383
66384         * lib/strcspn.c: Include <stddef.h>.
66385         (strcspn): Use ANSI C function declaration. Change return type to
66386         size_t. Use NULL.
66387         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
66388         (strpbrk): Use NULL.
66389         * lib/strpbrk.h (PARAMS): Remove macro.
66390         (strpbrk): Use ANSI C function declaration.
66391         * lib/strstr.c: Don't include <sys/types.h>.
66392         * lib/strstr.h (PARAMS): Remove macro.
66393         (strstr): Use ANSI C function declarations.
66394
66395 2002-11-14  Karl Berry  <karl@gnu.org>
66396
66397         * config/mkinstalldirs: `do' on separate line, instead of
66398         `for var; do'.
66399
66400 2002-11-06  Bruno Haible  <bruno@clisp.org>
66401
66402         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
66403         * lib/gcd.c (gcd): Likewise.
66404
66405 2002-11-05  Bruno Haible  <bruno@clisp.org>
66406
66407         * lib/gcd.h: New file, from gettext-0.11.5.
66408         * lib/gcd.c: New file, from gettext-0.11.5.
66409
66410 2002-11-05  Bruno Haible  <bruno@clisp.org>
66411
66412         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
66413         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
66414         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
66415         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
66416
66417         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
66418         <libintl.h>.
66419         * lib/makepath.c: Include gettext.h instead of <locale.h> and
66420         <libintl.h>.
66421
66422         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
66423         * lib/human.c: Include gettext.h instead of <libintl.h>.
66424         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
66425         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
66426         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
66427         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
66428         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
66429         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
66430         (textdomain): Remove definition.
66431         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
66432
66433         * lib/long-options.c: Remove include of <libintl.h> and definition of
66434         _.
66435         * lib/same.c: Remove include of <libintl.h> and definition of _.
66436
66437 2002-11-04  Owen Taylor  <otaylor@redhat.com>
66438
66439         * lib/config.charset: A few additions for Solaris.
66440
66441 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
66442
66443         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
66444         * lib/localcharset.c (locale_charset): Declare as extern "C".
66445
66446 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
66447
66448         * lib/config.charset: msdos in uk_UA uses CP1125.
66449
66450 2002-11-04  Bruno Haible  <bruno@clisp.org>
66451
66452         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
66453         * lib/strcase.h: New file, from GNU gettext-0.11.5.
66454         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
66455         * lib/strstr.h: New file, from GNU gettext-0.11.5.
66456         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
66457
66458 2002-11-04  Bruno Haible  <bruno@clisp.org>
66459
66460         * lib/localcharset.c (locale_charset): Don't return an empty string.
66461
66462 2002-11-04  Bruno Haible  <bruno@clisp.org>
66463
66464         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
66465         aliases.
66466
66467 2002-11-04  Bruno Haible  <bruno@clisp.org>
66468
66469         * lib/config.charset: Update for newest glibc. Add canonical names
66470         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
66471
66472 2002-11-04  Bruno Haible  <bruno@clisp.org>
66473
66474         * lib/config.charset: Add support for NetBSD.
66475
66476 2002-11-04  Bruno Haible  <bruno@clisp.org>
66477
66478         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
66479
66480 2002-11-01  Bruno Haible  <bruno@clisp.org>
66481
66482         * configure.in: Add AC_CONFIG_AUX_DIR call.
66483         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
66484         test/Makefile.
66485         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
66486
66487 2002-09-28  Karl Berry  <karl@gnu.org>
66488
66489         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
66490         installed automake until the next release, since changes have been
66491         made.
66492
66493 2002-09-25  Karl Berry  <karl@gnu.org>
66494
66495         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
66496         * lib/getopt*: copy from libc/posix.
66497         * lib/gettext.h: copy from gettext.
66498         * lib/.cppi-disable: add strdup.c, gettext.h.
66499
66500 2002-09-25  Karl Berry  <karl@gnu.org>
66501
66502         * config/srclist.txt: enable gettext.h check.
66503         * config/config.{guess,sub}: update from prep.
66504         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
66505                 from automake 1.6.3.
66506         See srclist*.
66507
66508 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
66509
66510         * regex.c (PATFETCH): Remove the translating fetch.
66511         (PATFETCH_RAW): Rename to PATFETCH.
66512         (set_image_of_range): New fun.
66513         (SET_RANGE_TABLE_WORK_AREA): Use it.
66514         (regex_compile): Don't translate the pattern chars so eagerly.
66515         Only do it when inserting an `exactn' bytecode or when handling
66516         a char-range.
66517         (mutually_exclusive_p): Avoid empty statement.
66518
66519 2002-07-06  Jim Meyering  <meyering@lucent.com>
66520
66521         * m4/README: Don't mention Makefile.am.in.
66522         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
66523
66524 2002-07-01  Jim Meyering  <meyering@lucent.com>
66525
66526         * lib/c-stack.c: Include sys/time.h.
66527         From Volker Borchert.
66528
66529 2002-06-26  Paul Eggert  <eggert@twinsun.com>
66530
66531         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
66532
66533 2002-06-26  Paul Eggert  <eggert@twinsun.com>
66534
66535         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
66536         New macro.  Use it uniformly instead of
66537         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
66538         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
66539         reported by Vin Shelton.
66540
66541 2002-06-22  Paul Eggert  <eggert@twinsun.com>
66542
66543         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
66544         Do not assume SA_SIGINFO behavior.
66545         Bug reported by Jim Meyering on NetBSD 1.5.2.
66546
66547 2002-06-22  Jim Meyering  <meyering@lucent.com>
66548
66549         * m4/c-stack.m4: New file, from diffutils-2.8.2.
66550         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
66551
66552         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
66553         now that configure.ac uses AC_GNU_SOURCE.
66554         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
66555         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
66556
66557         Update to latest tools.  Suggestions from Paul Eggert.
66558         * m4/stdbool.m4: New file, from diffutils-2.8.2.
66559         * m4/gnu-source.m4: Update from diffutils-2.8.2.
66560         * m4/fnmatch.m4: Likewise.
66561         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
66562         to AC_HEADER_STDBOOL
66563
66564 2002-06-22  Jim Meyering  <meyering@lucent.com>
66565
66566         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
66567         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
66568
66569 2002-06-22  Jim Meyering  <meyering@lucent.com>
66570
66571         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
66572
66573         * lib/exitfail.c, exitfail.h: Likewise.
66574         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
66575
66576         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
66577         of fnmatch.h.
66578         (EXTRA_DIST): Add fnmatch_loop.c.
66579         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
66580
66581         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
66582         * lib/fnmatch.c: Update from diffutils-2.8.2.
66583         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
66584         * lib/fnmatch.h: Remove file.
66585
66586 2002-06-21  Jim Meyering  <meyering@lucent.com>
66587
66588         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
66589         * m4/mbrtowc.m4: Likewise.
66590
66591         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
66592         * m4/mbswidth.m4: Reflect name change:
66593         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
66594         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
66595
66596         * m4/lib-link.m4: Update from gettext-0.11.2.
66597         * m4/gettext.m4: Likewise.
66598
66599         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
66600         From Alfred M. Szmidt.
66601
66602 2002-06-18  Paul Eggert  <eggert@twinsun.com>
66603
66604         * lib/file-type.h: Report an error if neither S_ISREG nor
66605         S_IFREG is defined, instead of using a test specific to glibc
66606         2.2.  This should be safe, since POSIX requires S_ISREG and
66607         Unix Version 7 had S_IFREG.  We don't need to check for
66608         <sys/types.h> since we don't use any symbols that it defines.
66609
66610 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
66611
66612         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
66613         $@-t, so that each temporary file name is unique and valid in the first
66614         8 characters, for operation under DOS.
66615
66616 2002-06-15  Paul Eggert  <eggert@twinsun.com>
66617
66618         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
66619
66620 2002-06-15  Jim Meyering  <meyering@lucent.com>
66621
66622         Work even with DJGPP 2.03, which lacks support for symlinks.
66623         From Richard Dawe.
66624         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
66625         is defined.
66626         * lib/lchown.c (S_ISLNK): Likewise.
66627
66628 2002-06-15  Jim Meyering  <meyering@lucent.com>
66629
66630         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
66631         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
66632         have been included before this file.
66633
66634 2002-06-14  Jim Meyering  <meyering@lucent.com>
66635
66636         * lib/file-type.h: Use the version from diffutils-2.8.2.
66637         * lib/file-type.c: Likewise.
66638
66639 2002-06-07  Jim Meyering  <meyering@lucent.com>
66640
66641         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
66642         They're needed at least for NetBSD 1.5.2.
66643         ($statxfs_includes): Include those same headers.
66644         ($statxfs_includes): Include sys/vfs.h if available.
66645         ($statxfs_includes): Likewise for sys/statvfs.h.
66646         Check for the following members in both structs statfs and statvfs:
66647         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
66648
66649 2002-06-01  Jim Meyering  <meyering@lucent.com>
66650
66651         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
66652         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
66653
66654 2002-05-28  Jim Meyering  <meyering@lucent.com>
66655
66656         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
66657         Reported by Volker Borchert.
66658
66659 2002-05-27  Jim Meyering  <meyering@lucent.com>
66660
66661         Fix a problem seen only on nonconforming systems whereby ls.c's
66662         use of localtime, and then of gettimeofday would cause trouble:
66663         the localtime call used to initialize rpl_gettimeofday's save
66664         mechanism would clobber ls's current local time information so
66665         that in any long listing the first file would always be listed
66666         with date 1970-01-01.  Analysis by Volker Borchert.
66667
66668         * lib/gettimeofday.c (localtime): Undefine.
66669         (rpl_localtime): New function.
66670
66671 2002-05-27  Jim Meyering  <meyering@lucent.com>
66672
66673         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
66674         localtime.
66675
66676         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
66677         use the replacement function; it wouldn't resolve at link time.
66678         Reported by Volker Borchert.
66679
66680 2002-05-22  Jim Meyering  <meyering@lucent.com>
66681
66682         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
66683         file-type.h.
66684         * lib/file-type.h: New file.
66685         * lib/file-type.c (file_type): New file/function.  Extracted from
66686         diffutils.
66687
66688 2002-04-30  Jim Meyering  <meyering@lucent.com>
66689
66690         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
66691
66692 2002-04-29  Paul Eggert  <eggert@twinsun.com>
66693
66694         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
66695
66696 2002-04-29  Paul Eggert  <eggert@twinsun.com>
66697
66698         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
66699         Do not check for alloca.h (no longer used) or stdbool.h (was never
66700         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
66701
66702 2002-04-29  Paul Eggert  <eggert@twinsun.com>
66703
66704         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
66705
66706 2002-04-29  Jim Meyering  <meyering@lucent.com>
66707
66708         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
66709         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
66710         Use AC_FUNC_STRNLEN here instead.
66711
66712         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
66713         With autoconf-2.53a, it's part of AC_PROG_CC.
66714
66715 2002-04-28  Paul Eggert  <eggert@twinsun.com>
66716
66717         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
66718         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
66719
66720 2002-04-28  Paul Eggert  <eggert@twinsun.com>
66721
66722         * lib/sig2str.h, lib/sig2str.c: New files.
66723         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
66724
66725 2002-04-28  Paul Eggert  <eggert@twinsun.com>
66726
66727         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
66728         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
66729         of 127, since 64 is the largest conceivable number for ancient
66730         nonstandard hosts.
66731         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
66732
66733 2002-04-28  Jim Meyering  <meyering@lucent.com>
66734
66735         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
66736
66737 2002-04-24  Jim Meyering  <meyering@lucent.com>
66738
66739         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
66740         (jm_PREREQ): Use it.
66741
66742         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
66743         mach/mach.h fcntl.h.
66744         Check for this function: setlocale.
66745
66746 2002-04-24  Jim Meyering  <meyering@lucent.com>
66747
66748         * lib/gettext.h: New file, from Gettext.
66749         * lib/Makefile.am (INCLUDES): Remove -I../intl.
66750         (libfetish_a_SOURCES): Add gettext.h.
66751
66752 2002-04-16  Jim Meyering  <meyering@lucent.com>
66753
66754         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
66755         ut_pid, ut_id, ut_exit.
66756
66757 2002-04-16  Jim Meyering  <meyering@lucent.com>
66758
66759         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
66760         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
66761         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
66762
66763 2002-04-12  Jim Meyering  <meyering@lucent.com>
66764
66765         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
66766         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
66767         existence of the getmntinfo function.  Needed for Darwin 5.3.
66768
66769         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
66770         This is necessary at least on Darwin 5.3.
66771
66772         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
66773         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
66774         strnlen.o in the library, and that makes some versions of ranlib
66775         object.
66776
66777 2002-04-12  Jim Meyering  <meyering@lucent.com>
66778
66779         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
66780
66781 2002-04-09  Jim Meyering  <meyering@lucent.com>
66782
66783         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
66784         to be more precise.  Rather than saying we're checking whether the
66785         function `works', say what we're testing.
66786         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
66787         Reported by Bruno Haible.
66788
66789 2002-03-10  Jim Meyering  <meyering@lucent.com>
66790
66791         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
66792         Suggestion from Santiago Vila.
66793
66794 2002-03-08  Jim Meyering  <meyering@lucent.com>
66795
66796         * lib/rename.c: Mention that this wrapper is needed also on
66797         mips-dec-ultrix4.4 systems.
66798
66799 2002-03-02  Jim Meyering  <meyering@lucent.com>
66800
66801         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
66802         not HAVE_CLOCK_SETTIME.
66803
66804 2002-02-27  Paul Eggert  <eggert@twinsun.com>
66805
66806         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
66807         Check for clock_settime.
66808
66809 2002-02-27  Paul Eggert  <eggert@twinsun.com>
66810
66811         * lib/nanosleep.h: Rename to....
66812         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
66813
66814         * lib/gettime.c: New file.
66815         * lib/settime.c: New file.
66816         * lib/stime.c: Remove.
66817
66818         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
66819         timespec.h.  Remove nanosleep.h.
66820
66821 2002-02-25  Paul Eggert  <eggert@twinsun.com>
66822
66823         * m4/acl.m4: New file.
66824         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
66825         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
66826
66827 2002-02-25  Paul Eggert  <eggert@twinsun.com>
66828
66829         * lib/acl.c, lib/acl.h: New files.
66830         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
66831
66832 2002-02-24  Jim Meyering  <meyering@lucent.com>
66833
66834         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
66835         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
66836         cause trouble.  Reported by Nelson Beebe.
66837
66838 2002-02-23  Paul Eggert  <eggert@twinsun.com>
66839
66840         * lib/path-concat.c (xpath_concat): Reorder code to pacify
66841         compilers that don't know that xalloc_die never returns.
66842
66843 2002-02-20  Jim Meyering  <meyering@lucent.com>
66844
66845         * lib/getdate.c: Regenerate using bison-1.33.
66846
66847 2002-02-17  Jim Meyering  <meyering@lucent.com>
66848
66849         * config/config.guess (main): Don't use `head -1'; it's no longer
66850         portable. Use `sed 1q' instead.
66851
66852 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
66853
66854         * m4/codeset.m4: Upgrade to gettext-0.11.
66855         * m4/gettext.m4: Upgrade to gettext-0.11.
66856         * m4/glibc21.m4: Upgrade to gettext-0.11.
66857         * m4/iconv.m4: Upgrade to gettext-0.11.
66858         * m4/isc-posix.m4: Upgrade to gettext-0.11.
66859         * m4/lcmessage.m4: Upgrade to gettext-0.11.
66860         * m4/lib-ld.m4: New file, from gettext-0.11.
66861         * m4/lib-link.m4: New file, from gettext-0.11.
66862         * m4/lib-prefix.m4: New file, from gettext-0.11.
66863         * m4/progtest.m4: Upgrade to gettext-0.11.
66864
66865 2002-02-15  Paul Eggert  <eggert@twinsun.com>
66866
66867         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
66868         (jm_PREREQ): Use it.
66869
66870 2002-02-15  Paul Eggert  <eggert@twinsun.com>
66871
66872         * lib/posixver.c, lib/posixver.h: New files.
66873         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
66874
66875 2002-02-02  Paul Eggert  <eggert@twinsun.com>
66876             Bruno Haible  <bruno@clisp.org>
66877
66878         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
66879         (fwrite_success_callback): New declaration.
66880         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
66881         print_unicode_char. Call failure callback instead of error.
66882         (fwrite_success_callback): New function.
66883         (exit_failure_callback): New function.
66884         (fallback_failure_callback): New function.
66885         (print_unicode_char): Call unicode_to_mb.
66886
66887 2002-01-26  Jim Meyering  <meyering@lucent.com>
66888
66889         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
66890         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
66891
66892 2002-01-26  Jim Meyering  <meyering@lucent.com>
66893
66894         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
66895
66896 2002-01-22  Paul Eggert  <eggert@twinsun.com>
66897
66898         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
66899
66900 2002-01-22  Jim Meyering  <meyering@lucent.com>
66901
66902         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
66903         Otherwise, some versions of automake would omit the rule that makes
66904         Makefile from Makefile.in.
66905
66906 2002-01-21  Paul Eggert  <eggert@twinsun.com>
66907
66908         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
66909         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
66910         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
66911         (memcoll): Set errno to zero if there is no error.
66912
66913         * lib/quotearg.c (quotearg_buffer_restyled):
66914         Fix bug with quoting buffers containing NUL when backslashing escapes.
66915         This bug was exposed by the other changes in this patch.
66916         (quotearg_n_options): New arg ARGSIZE.
66917         All callers changed.
66918         (quoting_options_from_style): New function.
66919         (quotearg_n_style): Use it.
66920         (quotearg_n_style_mem): New function.
66921
66922         * lib/quotearg.h (quotearg_n_style_mem): New function.
66923
66924 2002-01-19  Jim Meyering  <meyering@lucent.com>
66925
66926         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
66927         Remove useless quotes: DF_PROG="df".
66928         * m4/strnlen.m4: New file.
66929
66930 2002-01-16  Paul Eggert  <eggert@twinsun.com>
66931
66932         * lib/backupfile.c (ISDIGIT): Comment fix.
66933         * lib/getdate.y (ISDIGIT): Likewise.
66934         * lib/posixtm.c (ISDIGIT, year): Likewise.
66935         * lib/strverscmp.c (ISDIGIT): Likewise.
66936         * lib/userspec.c (ISDIGIT): Likewise.
66937
66938 2002-01-16  Jim Meyering  <meyering@lucent.com>
66939
66940         * lib/getdate.y: Add three semicolons, each just before a closing
66941         brace. Bison (as of version 1.31) no longer papers over that mistake.
66942
66943 2002-01-05  Jim Meyering  <meyering@lucent.com>
66944
66945         * lib/version-etc.c (version_etc_copyright): Update copyright year.
66946
66947 2001-12-19  Paul Eggert  <eggert@twinsun.com>
66948
66949         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
66950         not silently exit merely because the output buffer happens to
66951         have nothing pending.
66952
66953 2001-12-18  Paul Eggert  <eggert@twinsun.com>
66954
66955         See the big note in ../ChangeLog.
66956         * lib/human.c (suffixes): Prefer K to k for 1024.
66957         (generate_suffix_backwards): New function.
66958         (human_readable_inexact): Use it.
66959         * lib/xstrtol.c (__xstrtol): If there is no number but there
66960         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
66961         Accept 'K' as well as 'k'.
66962
66963 2001-12-15  Jim Meyering  <meyering@lucent.com>
66964
66965         * lib/regex.h (__restrict_arr): Update from libc.
66966
66967         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
66968         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
66969         (STREQ): Define.
66970
66971 2001-12-14  Jim Meyering  <meyering@lucent.com>
66972
66973         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
66974         Suggestion from Bruno Haible.
66975
66976 2001-12-10  Jim Meyering  <meyering@lucent.com>
66977
66978         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
66979         xrealloc, Instead, include "xalloc.h".
66980         (initbuffer): Don't cast xmalloc return value to char*.
66981         (readline): Reword comment.
66982         Don't cast xrealloc return value to char*
66983         Return NULL, not 0.
66984
66985 2001-12-09  Jim Meyering  <meyering@lucent.com>
66986
66987         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
66988         about `signed and unsigned type in conditional expression'.
66989         * lib/posixtm.c (posix_time_parse): Likewise.
66990
66991         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
66992
66993         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
66994         to avoid a pedantic warning.
66995
66996         * lib/getstr.c: Don't include assert.h.
66997         (getstr): Remove warning-evoking assertions.
66998         Return -1 if offset parameter is out of bounds.
66999         Change the type of a local from int to size_t.
67000
67001         * lib/strftime.c (my_strftime_localtime_r): Include this function
67002         definition in the `#if ! HAVE_TM_GMTOFF' block.
67003
67004         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
67005         Include xalloc.h instead.
67006
67007 2001-12-02  Jim Meyering  <meyering@lucent.com>
67008
67009         * lib/tempname.c: Don't declare getenv, thus reverting the change of
67010         2001-11-18.  It's no longer necessary, now that stdlib.h is always
67011         included.
67012
67013         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
67014         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
67015
67016 2001-11-30  Akim Demaille  <akim@epita.fr>
67017
67018         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
67019         before being defined.
67020
67021 2001-11-27  Paul Eggert  <eggert@twinsun.com>
67022
67023         * lib/quotearg.h (quotearg_n, quotearg_n_style):
67024         First arg is int, not unsigned.
67025         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
67026         (SIZE_MAX, UINT_MAX): New macros.
67027         (quotearg_n_options): Abort if N is negative.
67028         Avoid overflow check on hosts where size_t is 64 bits and int
67029         is 32 bits, as overflow is impossible there.
67030         Fix off-by-one typo that caused unnecessary reallocation.
67031
67032 2001-11-27  Jim Meyering  <meyering@lucent.com>
67033
67034         * lib/tempname.c: Merge with version from libc.
67035         * lib/regex.c: Likewise.
67036
67037         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
67038         systems for which STDC_HEADERS is 0, it was not included, resulting in
67039         a warning about an integer-to-pointer conversion problem with getenv.
67040         Reported by Volker Borchert.
67041
67042 2001-11-26  Jim Meyering  <meyering@lucent.com>
67043
67044         * lib/gtod.h: Remove file.
67045         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
67046         * lib/gettimeofday.c: Don't include gtod.h.
67047         (GTOD_init): Remove function.
67048         (rpl_gettimeofday): Do its job here instead, rather than aborting.
67049         Suggestion from Volker Borchert.
67050
67051 2001-11-23  Jim Meyering  <meyering@lucent.com>
67052
67053         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
67054         it.
67055         * lib/hash.c (struct hash_table): Define it here instead.
67056
67057 2001-11-22  Jim Meyering  <meyering@lucent.com>
67058
67059         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
67060
67061 2001-11-20  Jim Meyering  <meyering@lucent.com>
67062
67063         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
67064         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
67065
67066 2001-11-19  Jim Meyering  <meyering@lucent.com>
67067
67068         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
67069         directory.  Use "conftestXXXXXX" as the template.
67070         Suggestion from Paul Eggert.
67071
67072         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
67073         immediately, so the test doesn't mistakenly hit the max-open-files
67074         limit.
67075
67076 2001-11-18  Paul Eggert  <eggert@twinsun.com>
67077
67078         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
67079         (TEMPORARIES): New macro.
67080         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
67081         removes an artificial limitation (e.g. HP-UX 10.20, where
67082         TMP_MAX is 17576).
67083
67084 2001-11-18  Jim Meyering  <meyering@lucent.com>
67085
67086         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
67087
67088 2001-11-18  Jim Meyering  <meyering@lucent.com>
67089
67090         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
67091         on SunOS 4.
67092
67093         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
67094         files will be created before anything else.
67095
67096 2001-11-17  Paul Eggert  <eggert@twinsun.com>
67097
67098         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
67099         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
67100
67101 2001-11-17  Jim Meyering  <meyering@lucent.com>
67102
67103         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
67104         Prompted by a report from Bob Proulx.
67105
67106         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
67107         Instead, require UTILS_FUNC_MKSTEMP.
67108
67109 2001-11-17  Jim Meyering  <meyering@lucent.com>
67110
67111         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
67112         Now, that's done as part of AC_FUNC_STRTOD.
67113
67114 2001-11-17  Jim Meyering  <meyering@lucent.com>
67115
67116         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
67117         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
67118         rather than group writable.  Patch by Juan F. Codagnone.
67119
67120         * lib/readtokens.c: Remove explicit declarations of xmalloc and
67121         xrealloc, Instead, include "xalloc.h".
67122
67123         * lib/mountlist.c: Include unlocked-io.h after all system headers.
67124         Remove explicit declarations of xmalloc, xrealloc,
67125         and xstrdup.  Instead, include "xalloc.h".
67126
67127         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
67128         unlocked-io.h.
67129         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
67130         Likewise.
67131         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
67132
67133         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
67134         Reported by Padraig Brady.
67135
67136         * lib/mkstemp.c: #undef mkstemp.
67137         Include config.h.
67138         (rpl_mkstemp): Rename from mkstemp.
67139         Protoize.
67140
67141 2001-11-16  Jim Meyering  <meyering@lucent.com>
67142
67143         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
67144         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
67145         determine the amount of total physical memory, use pstat_getstatic.
67146         HPUX-11 doesn't define _SC_PHYS_PAGES.
67147         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
67148         If sysconf couldn't be used to determine the amount of available
67149         physical memory, use both pstat_getstatic and pstat_getdynamic.
67150         Based on a patch from Bob Proulx.
67151
67152 2001-11-10  Jim Meyering  <meyering@lucent.com>
67153
67154         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
67155         (jm_PREREQ): Use it.
67156
67157 2001-11-09  Jim Meyering  <meyering@lucent.com>
67158
67159         * m4/jm-macros.m4: Require autoconf-2.52f.
67160         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
67161         Use these AC_-prefixed names, not the AM_-prefixed ones.
67162
67163         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
67164
67165 2001-11-05  Jim Meyering  <meyering@lucent.com>
67166
67167         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
67168
67169 2001-11-04  Jim Meyering  <meyering@lucent.com>
67170
67171         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
67172         $DEFS.
67173
67174 2001-11-03  Jim Meyering  <meyering@lucent.com>
67175
67176         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
67177         of AC_DEFUN.
67178
67179         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
67180         know the name of the variable in the macro definition.
67181
67182 2001-11-03  Jim Meyering  <meyering@lucent.com>
67183
67184         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
67185         in argmatch_to_argument call.
67186
67187         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
67188         argument.
67189
67190         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
67191         e.g., a fault due to an attempt to free a NULL pointer.
67192
67193 2001-11-01  Jim Meyering  <meyering@lucent.com>
67194
67195         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
67196         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
67197
67198 2001-11-01  Jim Meyering  <meyering@lucent.com>
67199
67200         * lib/dirfd.c, lib/dirfd.h: New files.
67201         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
67202
67203         * lib/hash.c (hash_print) [TESTING]: Clean up.
67204
67205 2001-10-22  Paul Eggert  <eggert@twinsun.com>
67206
67207         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
67208         to avoid a warning if -Wall.
67209
67210 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
67211
67212         * README: New file
67213         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
67214         (per RMS's instructions, this is now the canonical source)
67215         * lgpl/, gpl/: New directories.
67216
67217 2001-10-21  Paul Eggert  <eggert@twinsun.com>
67218
67219         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
67220
67221 2001-10-21  Jim Meyering  <meyering@lucent.com>
67222
67223         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
67224         this code would end up calling gettext even in packages built
67225         with --disable-nls.
67226         * lib/getopt.c (_): Likewise.
67227         * lib/regex.c (_): Likewise.
67228
67229 2001-10-20  Paul Eggert  <eggert@twinsun.com>
67230
67231         * m4/error.m4 (jm_PREREQ_ERROR):
67232         Do not invoke AC_CHECK_FUNCS with strerror_r, as
67233         AC_FUNC_STRERROR_R does that.
67234         Check for strerror declaration.
67235
67236         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
67237         are supposed to have them these days.
67238         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
67239         Merge changes from latest Autoconf CVS.
67240         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
67241         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
67242         POSIX decided to standardize on the int flavor of strerror_r.
67243
67244 2001-10-20  Paul Eggert  <eggert@twinsun.com>
67245
67246         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
67247         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
67248         Use strerror_r that is only a macro, even if it is not a function.
67249         (strerror): Check for HAVE_DECL_STRERROR before declaring.
67250         (private_strerror): Use prototypes, not old-style function definition.
67251         (print_errno_message): New function.
67252         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
67253         char*-flavored one.
67254         (error_tail, error, error_at_line): Use it.
67255
67256 2001-10-11  Jim Meyering  <meyering@lucent.com>
67257
67258         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
67259         and quote_n (1, ... to avoid clobbering a buffer.
67260
67261 2001-10-05  Jim Meyering  <meyering@lucent.com>
67262
67263         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
67264         hash-pjw.h.
67265         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
67266         * lib/hash-pjw.h: New file.
67267
67268 2001-09-30  Jim Meyering  <meyering@lucent.com>
67269
67270         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
67271         `struct fsstat' has the `f_fstypename' member.
67272         Use that to define FS_TYPE, which is now used to make
67273         the getfsstat link test tighter.
67274
67275 2001-09-30  Jim Meyering  <meyering@lucent.com>
67276
67277         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
67278         Include <sys/ucred.h>, for Apple Darwin.
67279         Include sys/mount.h and sys/fs_types.h only if available.
67280         (FS_TYPE): Define.
67281         (read_filesystem_list): Use FS_TYPE.
67282
67283 2001-09-29  Paul Eggert  <eggert@twinsun.com>
67284
67285         * lib/exclude.c (excluded_filename): 0 -> false, since it's
67286         a boolean context.
67287
67288 2001-09-29  Jim Meyering  <meyering@lucent.com>
67289
67290         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
67291         [one-argument getmntent function]): Include stdio.h before mntent.h.
67292         SunOS 4.1.x needs it for the declaration of `FILE'.
67293         Patch by Volker Borchert.
67294
67295         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
67296         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
67297         sys/fs_types.h, and make the link-test for getfsstat guard #include
67298         directives with appropriate #if HAVE_*_H tests so that we can
67299         detect getfsstat on Apple Darwin1.3.7 systems.
67300         Reported by Nelson Beebe.
67301         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
67302
67303 2001-09-28  Paul Eggert  <eggert@twinsun.com>
67304
67305         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
67306         #defines strtoimax.  Also treat the other strto* functions
67307         like strtoimax.
67308
67309         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
67310         Check for strtoul and strtoumax,
67311         as those declarations are made even in the signed case.
67312         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
67313         Likewise, for strtol and strtoimax.
67314
67315 2001-09-28  Paul Eggert  <eggert@twinsun.com>
67316
67317         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
67318         #defines strtoimax.  Also treat the other strto* functions
67319         like strtoimax.
67320
67321         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
67322         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
67323         (strtoimax, strtoumax): Do not declare if already defined as a macro.
67324
67325 2001-09-26  Jim Meyering  <meyering@lucent.com>
67326
67327         Most macros in unlocked-io.h had the wrong number of arguments.
67328         * lib/gen-uio: New script.
67329         (USE_UNLOCKED_IO): Define to 1 if not already defined.
67330         * lib/unlocked-io.hin: Remove file.
67331         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
67332         rather than trying to embed it here.
67333         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
67334         Reported by Padraig Brady.
67335
67336 2001-09-25  Volker Borchert  <bt@teknon.de>
67337
67338         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
67339         `result'.
67340
67341 2001-09-24  Jim Meyering  <meyering@lucent.com>
67342
67343         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
67344
67345 2001-09-23  Jim Meyering  <meyering@lucent.com>
67346
67347         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
67348         instead of the mere test for existence of mntent.h.  The latter
67349         would get a false-positive on AIX 3.4 systems.
67350         In the outer getmntent if-block, don't die if neither of the getmntent
67351         tests succeeds.  Instead, just fall through and continue with the
67352         remaining tests.
67353
67354 2001-09-23  Jim Meyering  <meyering@lucent.com>
67355
67356         * lib/mountlist.c: Remove useless parentheses in #if directives.
67357         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
67358         the deprecated MOUNTED symbol is no longer defined in mntent.h.
67359
67360 2001-09-22  Jim Meyering  <meyering@lucent.com>
67361
67362         * m4/gettext.m4: New file.  From gettext.
67363         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
67364         * m4/progtest.m4: Likewise
67365         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
67366         * m4/glibc21.m4: Likewise.
67367
67368         * m4/libintl.m4: Remove.  No longer used.
67369
67370 2001-09-22  Jim Meyering  <meyering@lucent.com>
67371
67372         * lib/localcharset.c: Update from latest gettext.
67373         * lib/config.charset: Likewise.
67374
67375 2001-09-20  Jim Meyering  <meyering@lucent.com>
67376
67377         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
67378         strtoimax.
67379         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
67380         strtoumax.
67381
67382 2001-09-20  Jim Meyering  <meyering@lucent.com>
67383
67384         * lib/xstrtol.c (strtoimax): Guard declaration with
67385         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
67386         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
67387         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
67388         (strtoumax): Likewise, for completeness (it wasn't necessary).
67389
67390 2001-09-17  Paul Eggert  <eggert@twinsun.com>
67391
67392         * lib/strtoimax.c (HAVE_LONG_LONG):
67393         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
67394         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
67395         to work around bug in IBM C compiler.
67396
67397 2001-09-17  Jim Meyering  <meyering@lucent.com>
67398
67399         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
67400         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
67401         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
67402         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
67403         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
67404         whenever the right hand side need not be expanded by the shell.
67405
67406 2001-09-16  Paul Eggert  <eggert@twinsun.com>
67407
67408         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
67409         library.  It's not correct, as some older glibcs are buggy.
67410         fnmatch wasn't fixed until glibc 2.2.
67411
67412         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
67413         special shell magic here.
67414
67415 2001-09-16  Jim Meyering  <meyering@lucent.com>
67416
67417         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
67418         * m4/jm-macros.m4: Require it.
67419
67420 2001-09-16  Jim Meyering  <meyering@lucent.com>
67421
67422         * lib/mkdir.c: New file.
67423
67424 2001-09-15  Jim Meyering  <meyering@lucent.com>
67425
67426         * m4/jm-macros.m4: Check for help2man.
67427
67428 2001-09-11  Jim Meyering  <meyering@lucent.com>
67429
67430         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
67431         The body, by Paul Eggert, was moved here from configure.in.
67432         * m4/jm-macros.m4: Require UTILS_HOST_OS.
67433
67434 2001-09-04  Paul Eggert  <eggert@twinsun.com>
67435
67436         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
67437         (jm_PREREQ): Use it.
67438
67439 2001-09-04  Paul Eggert  <eggert@twinsun.com>
67440
67441         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
67442         Use ssize_t, not int, to store result of readlink.
67443         Check for ssize_t overflow as well as size_t overflow,
67444         as POSIX says the result of readlink is implementation-defined
67445         when ssize_t overflows.
67446         Remove unnecessary cast to char*.
67447         Use free+malloc instead of realloc, as the storage doesn't need
67448         to be preserved and it's clearer and can be more efficient that way.
67449         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
67450         * lib/xreadlink.h (xreadlink): Update prototype.
67451
67452 2001-09-04  Paul Eggert  <eggert@twinsun.com>
67453
67454         * lib/xgetcwd.c: Revert some of the previous change; intead,
67455         fix the HAVE_GETCWD_NULL code to behave more like the
67456         !HAVE_GETCWD_NULL code used to.
67457
67458         Include "xalloc.h".
67459         (xgetcwd): Do not return NULL when memory is exhausted; instead,
67460         invoke xalloc_die.
67461
67462 2001-09-03  Paul Eggert  <eggert@twinsun.com>
67463
67464         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
67465         sys/param.h, as pathmax.h includes them.
67466
67467 2001-09-03  Paul Eggert  <eggert@twinsun.com>
67468
67469         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
67470         (jm_PREREQ_XGETCWD): New macro.
67471
67472         * m4/getcwd.m4: New file.
67473
67474 2001-09-03  Paul Eggert  <eggert@twinsun.com>
67475
67476         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
67477         like the HAVE_GETCWD_NULL code.
67478         Include pathmax.h if not HAVE_GETCWD.
67479         Do not include xalloc.h.
67480         (INITIAL_BUFFER_SIZE): New symbol.
67481         Do not use xmalloc / xrealloc, since the caller is responsible for
67482         handling errors.  Preserve errno around `free' during failure.
67483         Do not overrun buffer when using getwd.
67484
67485 2001-09-03  Paul Eggert  <eggert@twinsun.com>
67486
67487         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
67488         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
67489         getcwd (NULL, 0).
67490
67491 2001-09-03  Paul Eggert  <eggert@twinsun.com>
67492
67493         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
67494         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
67495         spotted by Jim Meyering.
67496
67497 2001-09-03  Jim Meyering  <meyering@lucent.com>
67498
67499         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
67500         failure.
67501
67502 2001-09-02  Jim Meyering  <meyering@lucent.com>
67503
67504         * lib/error.c: Update from GNU libc.
67505
67506 2001-09-01  Jim Meyering  <meyering@lucent.com>
67507
67508         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
67509         Used by df.
67510
67511 2001-09-01  Jim Meyering  <meyering@lucent.com>
67512
67513         * lib/xreadlink.c: New file.
67514         * lib/xreadlink.h: New file.
67515         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
67516         xreadlink.h.
67517
67518         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
67519         doesn't conflict with sparc Solaris 7's definition in
67520         /usr/include/sys/int_types.h.
67521
67522         * lib/exclude.c: Use `""', not `<>' to #include non-system header
67523         files.
67524         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
67525         and strncasecmp as r-values.  Unixware didn't have declarations.
67526
67527 2001-08-31  Paul Eggert  <eggert@twinsun.com>
67528
67529         * lib/xstrtol.h: Add copyright notice.
67530         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
67531         LONGINT_INVALID_SUFFIX_CHAR.
67532
67533 2001-08-31  Paul Eggert  <eggert@twinsun.com>
67534
67535         * lib/xstrtol.c (strtoimax): New decl.
67536
67537 2001-08-31  Paul Eggert  <eggert@twinsun.com>
67538
67539         * lib/xgetcwd.c: Don't include pathmax.h.
67540         Include stdlib.h and unistd.h if available.
67541         Include xalloc.h.
67542         (xmalloc, xstrdup, free): Remove decls.
67543         (xgetcwd): Don't assume sizes fit in unsigned.
67544         Check for overflow when computing sizes.
67545         Simplify reallocation code.
67546
67547 2001-08-31  Paul Eggert  <eggert@twinsun.com>
67548
67549         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
67550         a directory's st_size can have an arbitrary value, so the old
67551         usage could waste an arbitrary amount of memory.  All uses
67552         changed.
67553         * lib/savedir.h: Update prototype.
67554
67555 2001-08-31  Paul Eggert  <eggert@twinsun.com>
67556
67557         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
67558
67559         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
67560         old strtoimax.c.
67561
67562         Also, make the following further changes to make this file's
67563         configuration more similar to that of strtol.c:
67564         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
67565         (strtoumax, uintmax_t, strtoull, strtol): Remove.
67566         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
67567         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
67568         changed to signed values.
67569
67570         And make the following changes as well:
67571         Fix copyright notice, as 1999 was missing.
67572         (verify): New macro.
67573         (strtoimax): Check sizes at compile-time, not run-time.
67574         Prefer strtol to strtoll if both work.
67575         (main): Remove; it was not that useful and was a pain to maintain.
67576
67577         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
67578
67579 2001-08-31  Jim Meyering  <meyering@lucent.com>
67580
67581         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
67582         Use an initial, malloc'd, buffer of length 128 rather than
67583         a statically allocated one of length 1024.
67584
67585 2001-08-30  Paul Eggert  <eggert@twinsun.com>
67586
67587         Simplify code, partly by assuming autoconf 2.52 semantics.
67588
67589         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
67590
67591         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
67592         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
67593         All uses removed.
67594         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
67595         Move AC_REQUIRE to next-to-top level, to avoid confusion.
67596         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
67597         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
67598         jm_AC_HEADER_INTTYPES_H.
67599         * m4/jm-macros.m4 (jm_MACROS): Likewise.
67600
67601         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
67602
67603         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
67604         Quote first arg of AC_DEFUN.
67605         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
67606         since they are needed to parse the include file even if we need
67607         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
67608         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
67609         but with opposite signedness.
67610
67611 2001-08-30  Paul Eggert  <eggert@twinsun.com>
67612
67613         Merge 'exclude' changes from tar 1.13.22.
67614         This fixes one or two unlikely storage allocation overflow bugs,
67615         but doesn't change user-visible behavior otherwise.
67616
67617 2001-08-30  Paul Eggert  <eggert@twinsun.com>
67618
67619         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
67620         (jm_PREREQ_EXCLUDE): New macro.
67621
67622 2001-08-30  Paul Eggert  <eggert@twinsun.com>
67623
67624         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
67625         tm to be declared.
67626
67627 2001-08-30  Paul Eggert  <eggert@twinsun.com>
67628
67629         * lib/hash.c: Remove '2001' from copyright notice.
67630
67631 2001-08-30  Paul Eggert  <eggert@twinsun.com>
67632
67633         * lib/full-write.h: New file.
67634         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
67635         * lib/full-write.c: Correct credits, as cccp.c no longer
67636         exists and anyway it was so heavily changed from the old cccp
67637         code as to be unrecognizable.  Include full-write.h.
67638         (full_write) Return size_t, with short writes meaning failure.
67639         All callers changed.  This fixes a bug with large buffers
67640         on 64-bit hosts.
67641         * lib/utime.c: Include full-write.h.
67642
67643 2001-08-30  Paul Eggert  <eggert@twinsun.com>
67644
67645         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
67646         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
67647         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
67648         Include if available.
67649         (<xalloc.h>): Include
67650         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
67651         (verify): New macro.  Use it to verify that EXCLUDE macros do not
67652         collide with FNM macros.
67653         (struct patopts): New struct.
67654         (struct exclude): Use it, as exclude patterns now come with options.
67655         (new_exclude): Support above changes.
67656         (new_exclude, add_exclude_file):
67657         Initial size must now be a power of two to simplify overflow checking.
67658         (free_exclude, fnmatch_no_wildcards): New function.
67659         (excluded_filename): No longer requires options arg, as the options
67660         are determined by add_exclude.  Now returns bool, not int.
67661         (excluded_filename, add_exclude):
67662         Add support for the fancy new exclusion options.
67663         (add_exclude, add_exclude_file): Now takes int options arg.
67664         Check for arithmetic overflow when computing sizes.
67665         (add_exclude_file): xrealloc might modify errno, so don't
67666         realloc until after errno might be used.
67667
67668         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
67669         New macros.
67670         (free_exclude): New decl.
67671         (add_exclude, add_exclude_file): Now takes int options arg.
67672         (excluded_filename): No longer requires options arg, as the options
67673         are determined by add_exclude.  Now returns bool, not int.
67674
67675 2001-08-30  Paul Eggert  <eggert@twinsun.com>
67676
67677         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
67678
67679 2001-08-27  Jim Meyering  <meyering@lucent.com>
67680
67681         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
67682
67683         * lib/version-etc.c (N_): Remove definition.
67684         Revert most of last change.
67685         Instead, simply don't mark the `Copyright...' string for translation.
67686         Based on advice from Paul Eggert.
67687
67688         * lib/strtoxmax.c: Tweak comment.
67689
67690 2001-08-26  Jim Meyering  <meyering@lucent.com>
67691
67692         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
67693
67694         * m4/xstrtoimax.m4: New file.
67695         * m4/xstrtoumax.m4: Add comments explaining why we
67696         AC_REPLACE_FUNCS(strtol).
67697
67698 2001-08-26  Jim Meyering  <meyering@lucent.com>
67699
67700         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
67701         of copyright with `%s' so translators don't get an untranslated
67702         message in 2002.
67703         (COPYRIGHT_YEAR): Define.
67704         (version_etc): Use fprintf rather than fputs.
67705         Suggestion from Ulrich Drepper.
67706
67707         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
67708
67709         * lib/strtoll.c: New file, from GNU libc.
67710         * lib/xstrtoimax.c: New file.
67711
67712         * lib/xstrtol.h: Add xstrtoimax.
67713         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
67714         * lib/strtoimax.c: New file.  Likewise, but first define
67715         STRTOUXMAX_SIGNED.
67716
67717         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
67718         ...
67719         * lib/strtoxmax.c: ... then renamed to this.
67720
67721 2001-08-18  Paul Eggert  <eggert@twinsun.com>
67722
67723         * m4/inttypes.m4: Add AC_PREREQ(2.13).
67724         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
67725         (jm_AC_TYPE_INTMAX_T): New macro.
67726         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
67727
67728         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
67729
67730         * m4/longlong.m4: Renamed from ulonglong.m4.
67731         * m4/inttypes.m4: Renamed from inttypes_h.m4.
67732         * m4/uintmax_t.m4: Removed.
67733
67734 2001-08-13  Paul Eggert  <eggert@twinsun.com>
67735
67736         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
67737         Port to Solaris 8, where 'sed' requires a space after the 'r'
67738         command, and where sh dislikes "$/".  Clean up the spacing a bit.
67739         Redirect output to $tmp just once.
67740
67741 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
67742
67743         * lib/addext.c (<errno.h>): Include.
67744         (errno): Declare if not defined.
67745         (addext): Work correctly when pathconf returns -1 and leaves
67746         errno alone because there is no limit.  Also, work even if
67747         pathconf returns a value greater than SIZE_MAX.
67748
67749 2001-08-12  Jim Meyering  <meyering@lucent.com>
67750
67751         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
67752         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
67753         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
67754         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
67755         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
67756         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
67757         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
67758         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
67759         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
67760         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
67761         utime.m4, utimes.m4, xstrtoumax.m4:
67762         Quote the first argument in each use of AC_DEFUN.
67763
67764 2001-08-12  Jim Meyering  <meyering@lucent.com>
67765
67766         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
67767         Simply `return getcwd (NULL, 0);'.
67768         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
67769         Use 1300 as initial value for length, not PATH_MAX.
67770
67771         * lib/pathmax.h: Clean up cpp syntax.
67772
67773 2001-08-12  Jim Meyering  <meyering@lucent.com>
67774
67775         * lib/gettimeofday.c: New file.
67776         * lib/gtod.h: New file.
67777         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
67778
67779 2001-08-05  Jim Meyering  <meyering@lucent.com>
67780
67781         * m4/jm-macros.m4: Require autoconf-2.52.
67782
67783 2001-08-04  Jim Meyering  <meyering@lucent.com>
67784
67785         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
67786         stmt, to get in sync with glibc.
67787
67788 2001-08-03  Paul Eggert  <eggert@twinsun.com>
67789
67790         The following changes are from gettext 0.10.39 as maintained by
67791         Bruno Haible.
67792
67793         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
67794         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
67795         with inverted sense.  All uses changed.
67796
67797         * lib/mbswidth.c: Don't include <limits.h>.
67798         Include <stdlib.h> and <string.h> unconditionally.
67799         (iswcntrl, mbsinit, ISCNTRL): New macros.
67800         (mbsnwidth): Use K&R style function declarations.
67801         Don't bother checking for MB_LEN_MAX == 1, since the compiler
67802         can optimize it when MB_CUR_MAX == 1.
67803         The width of control characters is zero, not 1.
67804
67805 2001-08-03  Paul Eggert  <eggert@twinsun.com>
67806
67807         The following changes are from gettext 0.10.39 as maintained by
67808         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
67809
67810         * m4/codeset.m4: Upgrade to serial AM1.
67811         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
67812         all uses changed.  Quote first arg of AC_DEFUN.
67813         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
67814
67815         * m4/iconv.m4: Upgrade to serial AM2.
67816         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
67817         Add --with-libconv-prefix.
67818         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
67819         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
67820         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
67821         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
67822         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
67823
67824         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
67825         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
67826         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
67827         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
67828         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
67829         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
67830         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
67831         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
67832         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
67833
67834         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
67835         string.h any more.
67836
67837         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
67838         not the default value.
67839
67840         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
67841         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
67842         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
67843         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
67844         Also check for iswcntrl, used for wcwidth fallback.
67845         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
67846         to Autoconf 2.13.
67847
67848 2001-08-03  Jim Meyering  <meyering@lucent.com>
67849
67850         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
67851         as it was in the original.  Reported by Paul Eggert.
67852
67853 2001-07-16  Jim Meyering  <meyering@lucent.com>
67854
67855         * m4/gettimeofday.m4: New file.
67856         Prompted by a report from Bernhard Baehr.
67857
67858 2001-07-15  Jim Meyering  <meyering@lucent.com>
67859
67860         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
67861         stuff. Now it's in ../Makefile.cfg.
67862
67863 2001-07-15  Jim Meyering  <meyering@lucent.com>
67864
67865         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
67866         (BUILT_SOURCES): Add unlocked-io.h.
67867         (io_functions): Define.
67868         (unlocked-io.h): New rule.
67869         (DISTCLEANFILES): Add unlocked-io.h.
67870         (all-local): Depend on unlocked-io.h, to ensure it is created.
67871
67872         * lib/unlocked-io.hin: New file
67873
67874         * lib/regex.c: Update from glibc.
67875
67876 2001-07-05  Jim Meyering  <meyering@lucent.com>
67877
67878         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
67879         recommendation.
67880         (libfetish_a_SOURCES): Put all .h files here instead.
67881         Remove a thus-exposed (better checks in automake) duplicate and
67882         two unnecessary .h files.
67883
67884 2001-07-04  Jim Meyering  <meyering@lucent.com>
67885
67886         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
67887         that generates jm-glibc-io.m4 so that it doesn't trigger any make
67888         distcheck failure.
67889
67890 2001-07-02  Jim Meyering  <meyering@lucent.com>
67891
67892         The following changes were prompted by suggestions from Bruno Haible.
67893
67894         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
67895         is now generated.
67896         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
67897         definition of EXTRA_DIST.
67898         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
67899         ensure that the generated file is created/updated whenever the list
67900         of $(unlocked_functions) is changed.
67901         (jm-glibc-io.m4): New rule.
67902         (unlocked-io.h): New rule -- currently unused.
67903
67904 2001-06-24  Jim Meyering  <meyering@lucent.com>
67905
67906         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
67907         unmatched right bracket, rather than kludging it with an extra,
67908         falsely-matching quote in a comment.  Patch by Akim Demaille.
67909
67910 2001-06-11  Jim Meyering  <meyering@lucent.com>
67911
67912         * lib/regex.c: Update from GNU libc.
67913
67914 2001-05-27  Jim Meyering  <meyering@lucent.com>
67915
67916         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
67917         Check for ut_type in struct utmp.
67918
67919 2001-05-27  Jim Meyering  <meyering@lucent.com>
67920
67921         * lib/readutmp.h (UT_TYPE): Define.
67922
67923 2001-05-24  Jim Meyering  <meyering@lucent.com>
67924
67925         * lib/argmatch.c: Include "quote.h".
67926         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
67927         quote function.  Reported by Göran Uddeborg.
67928
67929 2001-05-22  Jim Meyering  <meyering@lucent.com>
67930
67931         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
67932         now that we use the package-supplied version unconditionally.
67933         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
67934
67935 2001-05-21  Jim Meyering  <meyering@lucent.com>
67936
67937         * m4/regex.m4: Change a couple backticks to single quotes to avoid
67938         shell syntax errors.
67939
67940 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
67941
67942         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
67943
67944 2001-05-20  Paul Eggert  <eggert@twinsun.com>
67945
67946         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
67947         Don't bother to check library strftime, since
67948         we'll be using our own my_strftime function anyway.
67949         Define my_strftime instead of strftime.
67950
67951 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
67952
67953         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
67954         which is not yet declared.
67955
67956 2001-05-15  Jim Meyering  <meyering@lucent.com>
67957
67958         * m4/regex.m4: Use proper quoting so brackets appear in the test
67959         program.
67960         Reported by, and with help from, Bruno Haible.
67961
67962 2001-05-13  Jim Meyering  <meyering@lucent.com>
67963
67964         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
67965         undefined.
67966
67967 2001-05-11  Paul Eggert  <eggert@twinsun.com>
67968
67969         dirname code cleanup.  base_name now behaves more compatibly
67970         with POSIX basename when given file names that have trailing
67971         slashes, and similarly for dir_name.  Add new primitives
67972         base_len and dir_len.  Put the directory-name-related decls
67973         into dirname.h.
67974
67975         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
67976         * lib/backupfile.c (base_name): Likewise.
67977         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
67978         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
67979         * lib/makepath.c (strip_trailing_slashes): Likewise.
67980         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
67981         ISSLASH): Likewise.
67982         * lib/rename.c (strip_trailing_slashes): Likewise.
67983         * lib/same.c (base_name): Likewise.
67984         * lib/stripslash.c (ISSLASH): Likewise.
67985
67986         * lib/addext.c: Include <dirname.h> after size_t is defined.
67987         * lib/backupfile.c: Likewise.
67988
67989         * lib/addext.c (addext): Use base_len to trim redundant
67990         trailing slashes instead of doing it ourselves.
67991         But do not trim the last slash if it is not redundant.
67992
67993         * lib/backupfile.c (find_backup_file_name,
67994         max_backup_version): Use base_len instead of rolling it ourselves.
67995         Handle the case of "" and (on DOS) "C:" correctly.
67996
67997         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
67998         needed. Include <string.h>, <dirname.h>.
67999         (base_name): Allow file names ending in slashes, other than names
68000         that are all slashes.  In this case, return the basename followed
68001         by the slashes.  This is more general, and can be used in places
68002         where the original base_name purposely had an assertion failure.
68003         (base_len): New function.
68004
68005         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
68006         Do not include <assert.h>; no longer needed.
68007         Include xalloc.h.
68008         (memrchr): Remove decl.
68009         (dir_name_r): Remove.
68010         (dir_len): Renamed from dirlen.  All callers changed.
68011         Rewrite in terms of base_name, for simplicity and consistency.
68012         (dir_name): Never return NULL.  All callers changed.
68013         Do not include <stdlib.h> in test program; no longer needed.
68014         return 0; is fine for test program.
68015
68016         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
68017         New macros.
68018         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
68019
68020         * lib/path-concat.c (path_concat): Use base_len to compute
68021         base length, not strlen; this means we cannot rely on memcpy
68022         to null-terminate.
68023
68024         * lib/same.c (STREQ): Remove.
68025         (same_name): Handle the case where the basename ends in trailing '/'.
68026
68027         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
68028         a slash was stripped.  Do not strip the last slash after a
68029         file system prefix.
68030
68031 2001-05-11  Paul Eggert  <eggert@twinsun.com>
68032
68033         * lib/Makefile.am (libfetish_a_SOURCES):
68034         Add strftime.c, since we now compile it on all hosts.
68035
68036         * lib/strftime.c (my_strftime):
68037         Define to nstrftime if emacs, but only if my_strftime is not defined.
68038         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
68039         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
68040         Add one more extra argument: a nanoseconds value.
68041         All uses changed.
68042         (ns): New macro.
68043         (my_strftime function): Add %N format.
68044         (emacs_strftimeu): Renamed from emacs_strftime,
68045         with extra ut argument.
68046
68047 2001-05-09  Paul Eggert  <eggert@twinsun.com>
68048
68049         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
68050
68051 2001-04-21  Jim Meyering  <meyering@lucent.com>
68052
68053         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
68054         doesn't interfere.
68055
68056 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
68057
68058         * m4/ftruncate.m4: Check for chsize.
68059         Link with ftruncate.o unconditionally if ftruncate is missing.
68060         This was required when cross-compiling to i586-mingw32msvc.
68061
68062 2001-04-08  Jim Meyering  <meyering@lucent.com>
68063
68064         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
68065         recomputed; that's necessary when the offset spans a DST transition.
68066         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
68067
68068 2001-04-02  Jim Meyering  <meyering@lucent.com>
68069
68070         * lib/regex.h, regex.c: Update from GNU libc.
68071
68072 2001-03-24  Jim Meyering  <meyering@lucent.com>
68073
68074         * m4/jm-macros.m4: Require autoconf-2.49d.
68075
68076 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
68077
68078         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
68079
68080 2001-03-19  Paul Eggert  <eggert@twinsun.com>
68081
68082         * lib/version-etc.c (version_etc_copyright): Update to 2001.
68083
68084 2001-03-17  Jim Meyering  <meyering@lucent.com>
68085
68086         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
68087         now that the version in autoconf is equivalent.
68088         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
68089
68090         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
68091         Suggestion from Akim Demaille.
68092
68093         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
68094         (jm_PREREQ_TEMPNAME): New function.
68095
68096 2001-03-16  Paul Eggert  <eggert@twinsun.com>
68097
68098         * lib/tempname.c (uint64_t): Define to uintmax_t if
68099         not defined, and if UINT64_MAX is not defined.
68100         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
68101         Reported by John David Anglin.
68102
68103 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
68104
68105         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
68106         resolve alias if codeset is empty.
68107         * lib/config.charset (BeOS): Use wildcard syntax.
68108
68109 2001-03-13  Jim Meyering  <meyering@lucent.com>
68110
68111         * lib/path-concat.c (path_concat)
68112         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
68113         concatenating e.g., `C:' and `foo'.
68114         From Bruno Haible.
68115
68116 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
68117
68118         * lib/localcharset.c (locale_charset): Don't use
68119         setlocale(LC_CTYPE,NULL). Don't return NULL.
68120         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
68121
68122 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
68123
68124         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
68125         support for DOS/DJGPP.
68126
68127 2001-03-01  Paul Eggert  <eggert@twinsun.com>
68128
68129         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
68130         lacks mkstemp.  Compile our own tempname.c if we compile our own
68131         mkstemp.c, as mkstemp relies on tempname.
68132
68133 2001-03-01  Jim Meyering  <meyering@lucent.com>
68134
68135         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
68136         AH_VERBATIM really does output its argument verbatim.
68137
68138 2001-02-28  Paul Eggert  <eggert@twinsun.com>
68139
68140         * lib/Makefile.am (libfetish_a_SOURCES):
68141         Add dup-safer.c, fopen-safer.c.
68142         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
68143
68144         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
68145         * lib/unistd-safer.h: New files.
68146
68147 2001-02-25  Paul Eggert  <eggert@twinsun.com>
68148
68149         The mkstemp replacement is taken from glibc 2.2.2, with some
68150         portability fixes for use outside glibc, as follows:
68151
68152         * lib/tempname.c (struct_stat64): New macro.
68153         (direxists, __gen_tempname): Use it.
68154         This avoids a portability problem with Solaris 8.
68155
68156         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
68157         (<stddef.h>, <stdint.h>, <string.h>):
68158         Include only if STDC_HEADERS || _LIBC.
68159         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
68160         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
68161         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
68162         (__set_errno): Define this macro if <errno.h> doesn't.
68163         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
68164         Define these macros if <stdio.h> doesn't.
68165         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
68166         Define these macros if <sys/stat.h>
68167         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
68168         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
68169         __xstat64): Define if not _LIBC.
68170         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
68171         (__gen_tempname): Invoke gettimeofday only if
68172         HAVE_GETTIMEOFDAY || _LIBC;
68173         otherwise, fall back on plain "time".
68174         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
68175
68176         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
68177
68178         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
68179
68180 2001-02-18  Paul Eggert  <eggert@twinsun.com>
68181
68182         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
68183
68184 2001-02-17  Paul Eggert  <eggert@twinsun.com>
68185
68186         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
68187         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
68188         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
68189         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
68190
68191 2001-02-17  Paul Eggert  <eggert@twinsun.com>
68192
68193         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
68194         Remove workaround macros for hosts that have mbrtowc but not
68195         mbstate_t, as we now insist on proper declarations for both
68196         before using mbrtowc.
68197
68198 2001-02-17  Jim Meyering  <meyering@lucent.com>
68199
68200         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
68201         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
68202         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
68203         UnixWare 7.1.1.
68204
68205         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
68206         rather than AC_CACHE_VAL.
68207
68208 2001-02-17  Jim Meyering  <meyering@lucent.com>
68209
68210         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
68211         around included file name.
68212
68213         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
68214
68215         * lib/strftime.c: Update from GNU libc (the only changes were to
68216         comments).
68217
68218 2001-02-17  Jim Meyering  <meyering@lucent.com>
68219
68220         * lib/regex.c: Update from libc.
68221
68222 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
68223
68224         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
68225         clash.
68226
68227 2001-02-16  Paul Eggert  <eggert@twinsun.com>
68228
68229         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
68230         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
68231         Reported by Mark Hounschell via Paul Eggert.
68232
68233 2001-02-07  Jim Meyering  <meyering@lucent.com>
68234
68235         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
68236
68237 2001-02-05  Jim Meyering  <meyering@lucent.com>
68238
68239         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
68240         it includes the patch required for `large file' support with at least
68241         HP-UX's 10.20 /bin/cc.
68242
68243 2001-02-03  Jim Meyering  <meyering@lucent.com>
68244
68245         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
68246         AS_IF, now that it works once again (mysteriously).
68247         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
68248
68249 2001-01-30  Jim Meyering  <meyering@lucent.com>
68250
68251         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
68252         * m4/chown.m4: Rename conftestchown to conftest.chown.
68253         * m4/rename.m4: s/conftestdir/conftest.d1/ and
68254         s/conftestdir2/conftest.d2/.
68255         * m4/utimes.m4: s/conftestdata/conftest.data/
68256         Inspired by Pavel Roskin's change in autoconf.
68257
68258 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
68259
68260         * lib/config.charset: Update for FreeBSD 4.2.
68261
68262 2001-01-27  Jim Meyering  <meyering@lucent.com>
68263
68264         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
68265         a use of AS_IF.
68266         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
68267
68268 2001-01-26  Jim Meyering  <meyering@lucent.com>
68269
68270         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
68271         quotearg.c includes it.
68272
68273 2001-01-26  Jim Meyering  <meyering@lucent.com>
68274
68275         * lib/quotearg.c: Include stddef.h.
68276         * lib/quote.c: Include stddef.h.
68277         Reported by Axel Kittenberger.
68278
68279         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
68280         line in double quotes so that it evokes a better diagnostic.
68281         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
68282         Reported by Axel Kittenberger.
68283
68284 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
68285
68286         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
68287         as if it was a `charset'.
68288
68289 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
68290
68291         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
68292         has const.
68293
68294 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
68295
68296         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
68297         to avoid a warning.  Add back 'const' to inptr.
68298
68299 2001-01-20  Jim Meyering  <meyering@lucent.com>
68300
68301         Be sure that headers are checked before used in code compiled
68302         for the type checks.
68303         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
68304         In place of that, invoke jm_CHECK_ALL_TYPES.
68305         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
68306         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
68307         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
68308         The check for ssize_t was mistakenly run before the test for unistd.h.
68309
68310         The configure-time check for stdbool.h was missing.
68311         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
68312         (jm_PREREQ_HASH): New function.
68313
68314 2001-01-17  Jim Meyering  <meyering@lucent.com>
68315
68316         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
68317         for autoconf-2.49c.
68318         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
68319
68320 2001-01-16  Jim Meyering  <meyering@lucent.com>
68321
68322         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
68323         From Bruno Haible.
68324
68325 2001-01-14  Jim Meyering  <meyering@lucent.com>
68326
68327         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
68328         foo and bar.  Create conftestdir/ in the script, not in the C code.
68329         Remove directories in the script, not in the C code.
68330         Remove conftestdir{,2} before trying to create the directory.
68331         Make the entire configure script fail if the mkdir fails.
68332
68333 2001-01-14  Jim Meyering  <meyering@lucent.com>
68334
68335         * lib/rename.c: New file.  From Volker Borchert.
68336         Include stdlib.h, string.h or strings.h, and xalloc.h.
68337         Use strip_trailing_slashes rather than open-coding it.
68338
68339 2001-01-03  Paul Eggert  <eggert@twinsun.com>
68340
68341         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
68342
68343 2001-01-03  Jim Meyering  <meyering@lucent.com>
68344
68345         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
68346         of local `inptr' to avoid warning with some system declarations of
68347         iconv.
68348
68349 2001-01-02  Volker Borchert  <bt@teknon.de>
68350
68351         * m4/rename.m4: New file.
68352         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
68353
68354 2001-01-01  Jim Meyering  <meyering@lucent.com>
68355
68356         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
68357         even on systems with utmpx.h.  It's necessary for the declaration of
68358         utmp's ut_user member.  Reported by Andreas Jaeger.
68359
68360         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
68361         available. They are required for the declarations of getgrgid and
68362         getpwuid resp.
68363         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
68364         Reported by Andreas Jaeger.
68365
68366 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
68367
68368         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
68369         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
68370         so `make install' also works in VPATH builds.
68371
68372 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
68373
68374         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
68375         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
68376         can be used in subdirectories.
68377
68378 2000-12-29  Paul Eggert  <eggert@twinsun.com>
68379
68380         * lib/modechange.c: Do not assume that mode_t uses the
68381         traditional octal encoding.  E.g. "chmod 1 FOO" should set
68382         the other-execute bit of FOO even if S_IXOTH != 1.
68383
68384         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
68385         WOTH, XOTH, ALLM): New macros.
68386         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
68387          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
68388         Use them.
68389         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
68390         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
68391         (mode_compile):
68392         No need to use uintmax_t; unsigned long is long enough.
68393         Don't bother to get suffix since we don't use it.
68394
68395 2000-12-26  Jim Meyering  <meyering@lucent.com>
68396
68397         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
68398         better with autoheader.
68399
68400 2000-12-24  Jim Meyering  <meyering@lucent.com>
68401
68402         * lib/hash.c (is_prime): Return explicit boolean values.
68403         (hash_get_first): Return NULL to appease Irix5.6's 89.
68404         Reported by Nelson Beebe.
68405
68406 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
68407
68408         * lib/localcharset.c (locale_charset): Add support for Win32.
68409
68410 2000-12-18  Paul Eggert  <eggert@twinsun.com>
68411
68412         * lib/physmem.h, lib/physmem.c: New files.
68413
68414         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
68415         (noinst_HEADERS): Add physmem.h.
68416
68417         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
68418         't' for compatibility with Solaris 8 sort.
68419
68420 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
68421
68422         * lib/config.charset: Add support for BeOS.
68423
68424 2000-12-17  Jim Meyering  <meyering@lucent.com>
68425
68426         * m4/dos.m4 (jm_AC_DOS): New file and macro.
68427         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
68428
68429 2000-12-16  Jim Meyering  <meyering@lucent.com>
68430
68431         This bug had a serious impact on chown: `chown N:M FILE' (for integer
68432         N and M) would have treated it like `chown N:N FILE'.
68433
68434         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
68435
68436 2000-12-16  Jim Meyering  <meyering@lucent.com>
68437
68438         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
68439         SHELLS_FILE to a file name that's useful on djgpp systems.
68440         Include stdlib.h.
68441         (ADDITIONAL_DEFAULT_SHELLS): Define.
68442         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
68443         Based mostly on a patch from Prashant TR.
68444
68445 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
68446
68447         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
68448         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
68449         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
68450
68451 2000-12-08  Andreas Schwab  <schwab@suse.de>
68452
68453         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
68454         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
68455
68456 2000-12-07  Jim Meyering  <meyering@lucent.com>
68457
68458         * lib/stripslash.c (ISSLASH): Define.
68459         (strip_trailing_slashes): Use ISSLASH rather than comparing against
68460         `/'.
68461         From Prashant TR.
68462
68463         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
68464         (dir_name_r): Declare this function as static.
68465         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
68466         manifest itself on a name containing a mix of slashes and
68467         backslashes.
68468         Make this function work with names starting with a DOS-style
68469         drive letter and colon prefix.
68470         (dir_name): Append `.' if necessary.
68471         Based mostly on patches from Prashant TR and Eli Zaretskii.
68472
68473         * lib/dirname.h (dir_name_r): Remove prototype.
68474
68475 2000-12-06  Paul Eggert  <eggert@twinsun.com>
68476
68477         * m4/off_t-format.m4: Remove this file.
68478         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
68479
68480 2000-12-06  Jim Meyering  <meyering@lucent.com>
68481
68482         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
68483         replacement strtoull, we may well need the replacement strtoul, too.
68484         Check for declarations of strtoul and strtoull.
68485         Check for strtol.  Mainly as a cue to cause automake to include
68486         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
68487         Check for limits.h -- strtol.c needs it.
68488
68489 2000-12-05  Jim Meyering  <meyering@lucent.com>
68490
68491         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
68492
68493 2000-12-04  Jim Meyering  <meyering@lucent.com>
68494
68495         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
68496         Also include memory.h, stdlib.h, unistd.h if appropriate.
68497         Reported by Andreas Jaeger (conflicting declaration of malloc).
68498
68499 2000-12-02  Jim Meyering  <meyering@lucent.com>
68500
68501         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
68502         * m4/jm-macros.m4 (jm_MACROS): require it.
68503
68504 2000-12-02  Jim Meyering  <meyering@lucent.com>
68505
68506         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
68507
68508 2000-12-01  Paul Eggert  <eggert@twinsun.com>
68509
68510         * lib/memrchr.c: Include <config.h> before any system include file.
68511
68512 2000-11-30  Jim Meyering  <meyering@lucent.com>
68513
68514         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
68515
68516 2000-11-30  Jim Meyering  <meyering@lucent.com>
68517
68518         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
68519
68520 2000-11-29  Paul Eggert  <eggert@twinsun.com>
68521
68522         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
68523
68524 2000-11-26  Jim Meyering  <meyering@lucent.com>
68525
68526         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
68527
68528 2000-11-22  Paul Eggert  <eggert@twinsun.com>
68529
68530         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
68531         size of (size_t) -1; it's not portable.
68532
68533 2000-11-17  Jim Meyering  <meyering@lucent.com>
68534
68535         * lib/strstr.c: Update from GNU libc.
68536
68537 2000-11-17  Akim Demaille  <akim@epita.fr>
68538
68539         * lib/obstack.h: Formatting changes.
68540         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
68541         prevent type checking.
68542         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
68543         cast the value to (void *): assigning a `foo *' to a `void *'
68544         variable is valid.
68545         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
68546
68547 2000-11-16  Jim Meyering  <meyering@lucent.com>
68548
68549         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
68550
68551 2000-11-11  Jim Meyering  <meyering@lucent.com>
68552
68553         * lib/error.c: Add a couple #includes, merging from GNU libc version.
68554
68555 2000-11-10  Jim Meyering  <meyering@lucent.com>
68556
68557         * lib/obstack.h: Update from GNU libc.
68558         * lib/obstack.c: Likewise.
68559
68560 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
68561
68562         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
68563
68564 2000-11-06  Paul Eggert  <eggert@twinsun.com>
68565
68566         * lib/getusershell.c (setusershell): Use rewind rather than
68567         fseek/fseeko, to avoid configuration hassles with fseeko.
68568         Don't bother opening SHELLS_FILE if shellstream is NULL;
68569         it's not necessary.
68570
68571 2000-11-05  Jim Meyering  <meyering@lucent.com>
68572
68573         * lib/makepath.h (make_dir): Declare.
68574         * lib/makepath.c (make_dir): Remove `static' attribute.
68575         Tweak a comment.
68576
68577 2000-11-04  Jim Meyering  <meyering@lucent.com>
68578
68579         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
68580
68581 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
68582
68583         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
68584         last one in a bucket, advance to the next bucket.
68585
68586 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
68587
68588         * lib/fnmatch.c: Do not comment out all the code if we are using
68589         the GNU C library, because in some cases we are replacing buggy
68590         code in the GNU C library itself.
68591
68592 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
68593
68594         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
68595         (regex_compile): Catch bogus \(\1\).
68596
68597 2000-10-30  Paul Eggert  <eggert@twinsun.com>
68598
68599         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
68600         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
68601         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
68602
68603 2000-10-30  Paul Eggert  <eggert@twinsun.com>
68604
68605         * lib/error.h, getline.h, modechange.h:
68606         Remove "2000" from Copyright line, as the file hasn't been
68607         changed this year other than in the copyright notice.
68608
68609         * lib/xalloc.h: Add "2000" to Copyright line, as this file
68610         was changed this year.
68611
68612 2000-10-29  Jim Meyering  <meyering@lucent.com>
68613
68614         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
68615         renaming.
68616         * m4/ls-mntd-fs.m4: Likewise
68617
68618 2000-10-29  Jim Meyering  <meyering@lucent.com>
68619
68620         * lib/xstat.in: Fix grammar in comment.
68621
68622 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
68623
68624         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
68625         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
68626         doesn't define __restrict_arr.
68627
68628 2000-10-28  Jim Meyering  <meyering@lucent.com>
68629
68630         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
68631         (jm_PREREQ_MEMCHR): New function.
68632
68633 2000-10-28  Jim Meyering  <meyering@lucent.com>
68634
68635         * lib/memchr.c: Update from libc.
68636         Adjust for portability:
68637         [HAVE_STDLIB_H]: Include stdlib.h.
68638         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
68639         Undef __memchr, too.
68640         [!weak_alias]: Define __memchr to memchr.
68641
68642         * lib/regex.c: Update from libc.
68643         * lib/regex.h: Likewise.
68644         * lib/getopt1.c: Likewise.
68645         * lib/memcmp.c: Likewise.
68646
68647         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
68648         Avoid using fseek, when possible -- it's broken by design.
68649         Patch by Ulrich Drepper.
68650
68651 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
68652
68653         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
68654         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
68655         Giving in to popular pressure to shut up the compiler with casts.
68656
68657 2000-10-26  Jim Meyering  <meyering@lucent.com>
68658
68659         * lib/strftime.c: Update from libc.
68660
68661 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
68662
68663         * regex.c: More `unsigned char' -> `re_char' changes.
68664         Also change several `int' into `re_wchar_t'.
68665         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
68666         (PUSH_FAILURE_POINTER): Don't cast any more.
68667         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
68668         We want GCC to complain, since this piece of code makes
68669         re_match non-reentrant, which *should* be fixed.
68670         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
68671         (EXTEND_BUFFER): Use RETALLOC.
68672         (SET_LIST_BIT): Don't cast.
68673         (re_wchar_t): New type.
68674         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
68675         that those two functions will always properly return.
68676         (IMMEDIATE_QUIT_CHECK): Cast to void.
68677         (analyse_first): Use recursion rather than an explicit stack.
68678         (re_compile_fastmap): Can't fail anymore.
68679         (re_search_2): Don't check re_compile_fastmap for failure.
68680         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
68681         Now also sets the new value (passed in a new argument).
68682         (re_match_2_internal): Use it.
68683         Also, use a new var `reg' of type size_t when looping through regs
68684         rather than reuse the inappropriate `mcnt'.
68685
68686 2000-10-25  Jim Meyering  <meyering@lucent.com>
68687
68688         * lib/obstack.c: Update from libc.
68689
68690 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
68691
68692         * regex.c (regex_compile): Change the way of handling a range from
68693         a char less than 256 to a char not less than 256.
68694
68695 2000-10-24  Andrew Innes  <andrewi@gnu.org>
68696
68697         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
68698         NT-Emacs only.
68699         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
68700         so that re_search functions only quit when callers expect them to.
68701
68702 2000-10-23  Jim Meyering  <meyering@lucent.com>
68703
68704         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
68705         wrong.  That set_locale call must not have any side effects.
68706         From Paul Eggert.
68707
68708 2000-10-22  Jim Meyering  <meyering@lucent.com>
68709
68710         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
68711         [CYCLIC]: Remove now-unused definition.
68712
68713         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
68714         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
68715         Suggestion from Ulrich Drepper.
68716
68717 2000-10-21  Jim Meyering  <meyering@lucent.com>
68718
68719         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
68720         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
68721         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
68722
68723 2000-10-21  Jim Meyering  <meyering@lucent.com>
68724
68725         * lib/dirname.c (memrchr): Declare if necessary.
68726         (dir_name): Remove the restriction that there be no
68727         trailing slashes.  Now, this code skips past them, effectively
68728         ignoring them.
68729         [TEST_DIRNAME] (main): New unit tests.
68730
68731         * lib/memrchr.c: New file from GNU libc.
68732         Undef __memrchr, too.
68733         [!weak_alias]: Define __memrchr to memrchr.
68734         Guard weak_alias use with `#ifdef weak_alias'.
68735
68736 2000-10-21  Jim Meyering  <meyering@lucent.com>
68737
68738         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
68739         (dir_name): Use dir_name_r.
68740         * lib/dirname.h (dir_name_r): Declare it.
68741
68742 2000-10-17  Jim Meyering  <meyering@lucent.com>
68743
68744         * lib/quote.h (PARAMS): Define and use.
68745         Reported by Akim Demaille.
68746
68747         * lib/getopt.c: Update from libc.
68748
68749 2000-10-16  Jim Meyering  <meyering@lucent.com>
68750
68751         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
68752         setlocale.
68753         From Jan Fedak.
68754
68755 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
68756
68757         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
68758
68759 2000-09-25  Jim Meyering  <meyering@lucent.com>
68760
68761         * lib/md5.h (rol): Define (from GnuPG).
68762
68763         * lib/sha.c: Give credit (GnuPG) where due.
68764         (M): Use rol rather than open-coding it.
68765         Add a FIXME comment.
68766
68767 2000-09-21  Jim Meyering  <meyering@lucent.com>
68768
68769         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
68770         Reported by Michael Stone.
68771
68772 2000-09-20  Jim Meyering  <meyering@lucent.com>
68773
68774         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
68775         (noinst_HEADERS): Add sha.h.
68776         Based on code from Scott G. Miller and from GnuPG.
68777
68778 2000-09-18  Jim Meyering  <meyering@lucent.com>
68779
68780         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
68781         LIBS. Otherwise, everyone ends up linking with -lelf for some
68782         configurations.
68783         Reported by Mike Stone.
68784
68785 2000-09-15  Jim Meyering  <meyering@lucent.com>
68786
68787         * lib/regex.c: Update from libc.
68788
68789 2000-09-10  Jim Meyering  <meyering@lucent.com>
68790
68791         * lib/getopt.c (_getopt_internal): Update from glibc.
68792
68793 2000-09-09  Jim Meyering  <meyering@lucent.com>
68794
68795         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
68796         think it should be used as a general replacement for isascii.
68797         * lib/fnmatch.c: Likewise.
68798         * lib/mbswidth.c: Likewise
68799         * lib/regex.c: Likewise.
68800
68801         Don't use atoi.
68802         * lib/userspec.c: Include sys/param.h and limits.h.
68803         Include xstrtol.h.
68804         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
68805         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
68806         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
68807         UID, GID.  Check range.
68808
68809 2000-09-06  Jim Meyering  <meyering@lucent.com>
68810
68811         * lib/getopt.c (_getopt_internal): Update from glibc.
68812
68813 2000-08-30  Jim Meyering  <meyering@lucent.com>
68814
68815         * lib/strftime.c: Merge in changes from GNU libc.
68816
68817 2000-08-26  Jim Meyering  <meyering@lucent.com>
68818
68819         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
68820         * m4/fpending.m4: New file.
68821
68822 2000-08-26  Jim Meyering  <meyering@lucent.com>
68823
68824         * lib/closeout.c: Include "__fpending.h".
68825         (close_stdout_status): Return right away if there's nothing to flush.
68826
68827         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
68828         * lib/__fpending.c: New file.
68829         * lib/__fpending.h: New file.
68830
68831 2000-08-20  Jim Meyering  <meyering@lucent.com>
68832
68833         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
68834         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
68835         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
68836
68837 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
68838
68839         Improve fileutils installation on systems where running
68840         programs (like install) can't be unlinked.
68841         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
68842         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
68843
68844 2000-08-07  Paul Eggert  <eggert@twinsun.com>
68845
68846         Standardize on "memory exhausted" instead of "Memory exhausted"
68847         or "virtual memory exhausted".
68848         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
68849         "virtual memory exhausted".
68850         * lib/same.c (same_name): Invoke xalloc_die instead of printing
68851         our own message.
68852         * lib/userspec.c (parse_user_spec): Likewise.
68853         * lib/bumpalloc.h: comment fix
68854         * lib/same.c, userspec.c: Include xalloc.h.
68855
68856         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
68857         not char *const and pointing to a constant array.
68858         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
68859         (xrealloc): Comment fix.
68860
68861         * lib/userspec.c (parse_user_spec):
68862         Don't translate a message until just before returning,
68863         to avoid unnecessary translation.
68864
68865 2000-08-07  Jim Meyering  <meyering@lucent.com>
68866
68867         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
68868         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
68869         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
68870         getgroups.c, gethostname.c, getopt.h, group-member.c,
68871         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
68872         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
68873         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
68874         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
68875         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
68876         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
68877         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
68878         yesno.c: Back out Copyright date changes for each file with no change
68879         this year.  This eases coordination with other programs using the same
68880         source code modules.  From Paul Eggert.
68881
68882 2000-08-06  Paul Eggert  <eggert@twinsun.com>
68883
68884         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
68885         not char, for compatibility with glibc 2.1.3 strftime.c.
68886
68887 2000-08-03  Greg McGary  <greg@mcgary.org>
68888
68889         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
68890         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
68891         (EXTEND_BUFFER): Use them.
68892
68893 2000-08-01  Jim Meyering  <meyering@lucent.com>
68894
68895         * lib/dirname.c (ISSLASH): Define.
68896         (BACKSLASH_IS_PATH_SEPARATOR): Define.
68897         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
68898         both `\' and `/' may be use as path separators.
68899         Based on a patch from Prashant TR.
68900
68901 2000-07-31  Paul Eggert  <eggert@twinsun.com>
68902
68903         * lib/quotearg.c (quotearg_n_options): Don't make the initial
68904         slot vector a constant, since it might get modified.
68905
68906 2000-07-31  Jim Meyering  <meyering@lucent.com>
68907
68908         * lib/xmalloc.c: Use `virtual memory exhausted', not
68909         `Memory exhausted'.
68910         * lib/obstack.c (print_and_abort): Likewise.
68911
68912 2000-07-30  Paul Eggert  <eggert@twinsun.com>
68913
68914         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
68915         buffer, so that the caller can always quote one small
68916         component of a "memory exhausted" message in slot 0.
68917         From a suggestion by Jim Meyering.
68918
68919 2000-07-30  Jim Meyering  <meyering@lucent.com>
68920
68921         * lib/makepath.c (make_path): Quote the other instance, too.
68922
68923         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
68924         (STATIC_BUF_SIZE): Define.
68925         (quotearg_n_options): Use only statically allocated storage when
68926         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
68927         than STATIC_BUF_SIZE.
68928
68929 2000-07-29  Jim Meyering  <meyering@lucent.com>
68930
68931         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
68932         * lib/dirname.c (dir_name): Likewise.
68933
68934         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
68935         `/'.
68936
68937         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
68938         (dir_name): Assert that there are no trailing slashes.
68939
68940 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
68941
68942         * lib/mbswidth.h (mbswidth): Add a flags argument.
68943         (mbswidth): New declaration.
68944         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
68945         * lib/mbswidth.c (mbswidth): Add a flags argument.
68946         (mbsnwidth): New function.
68947
68948 2000-07-24  Jim Meyering  <meyering@lucent.com>
68949
68950         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
68951
68952 2000-07-23  Paul Eggert  <eggert@twinsun.com>
68953
68954         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
68955
68956 2000-07-23  Paul Eggert  <eggert@twinsun.com>
68957
68958         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
68959         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
68960         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
68961         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
68962         invoke multibyte primitives.
68963
68964 2000-07-23  Paul Eggert  <eggert@twinsun.com>
68965
68966         * lib/quotearg.c:
68967         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
68968         so that mbstate_t is always defined.
68969
68970         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
68971         be 1 in at least one GCC installation, and this configuration
68972         error is likely to be common.  Ignoring MB_LEN_MAX hurts
68973         performance on hosts that have mbrtowc but have only unibyte
68974         locales, but I assume these hosts are rare.
68975
68976 2000-07-23  Paul Eggert  <eggert@twinsun.com>
68977
68978         * lib/mbswidth.c (_XOPEN_SOURCE):
68979         Don't define; this causes problems on Solaris 7.
68980         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
68981
68982 2000-07-23  Jim Meyering  <meyering@lucent.com>
68983
68984         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
68985         too: getgrgid, getpwuid, getuid.
68986
68987 2000-07-23  Jim Meyering  <meyering@lucent.com>
68988
68989         * lib/basename.c (base_name): Add an assertion.
68990
68991 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
68992
68993         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
68994         shadow its mbsinit function.
68995
68996 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
68997
68998         * lib/mbswidth.h: New file.
68999         * lib/mbswidth.c: New file.
69000         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
69001         (noinst_HEADERS): Add mbswidth.h.
69002
69003 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
69004
69005         * lib/config.charset: Add support for FreeBSD. Improve support for
69006         HP-UX and IRIX 6.
69007
69008 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
69009
69010         * m4/mbswidth.m4: New file.
69011         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
69012
69013 2000-07-15  Jim Meyering  <meyering@lucent.com>
69014
69015         * lib/makepath.c: Include quote.h.
69016         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
69017         corresponding argument in a `quote (...)' call.
69018         Give better diagnostics.
69019
69020         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
69021         (noinst_HEADERS): Add quote.h.
69022
69023         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
69024         from tar's src/misc.c.
69025         * lib/quote.h: New file.  Prototypes for same.
69026
69027 2000-07-14  Paul Eggert  <eggert@twinsun.com>
69028
69029         From a suggestion by Bruno Haible.
69030         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
69031         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
69032         to decide whether to define the BeOS workaround macro;
69033         this adjusts to the change to AC_MBSTATE_T.
69034
69035 2000-07-14  Jim Meyering  <meyering@lucent.com>
69036
69037         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
69038         jm_AC_TYPE_UINTMAX_T.
69039
69040 2000-07-13  Paul Eggert  <eggert@twinsun.com>
69041
69042         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
69043
69044         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
69045         quotearg_buffer_restyled): Add support for
69046         clocale_quoting_style.  Undo previous change to
69047         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
69048         and "{RIGHT QUOTATION MARK}" msgids.
69049
69050 2000-07-10  Paul Eggert  <eggert@twinsun.com>
69051
69052         From a suggestion by Bruno Haible.
69053         * m4/mbstate_t.m4 (AC_MBSTATE_T):
69054         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
69055         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
69056         and mbstate_t, to a single-part test that simply defines mbstate_t.
69057         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
69058         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
69059
69060 2000-07-10  Jim Meyering  <meyering@lucent.com>
69061
69062         * m4/strerror_r.m4: Mirror the correction made in autoconf.
69063
69064         * m4/gnu-source.m4: Output to confdefs.h directly.
69065         Suggestion from Akim Demaille.
69066
69067 2000-07-09  Paul Eggert  <eggert@twinsun.com>
69068
69069         The old behavior of quoting `like this' doesn't look good with
69070         newer, ISO-style fonts.  See:
69071         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
69072
69073         Instead, quote "like this" by default.  Let the translator
69074         tailor the locale-specific quoting behavior by providing
69075         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
69076
69077         * lib/quotearg.c (N_): New macro.
69078         (gettext_default): New function.
69079         (quotearg_buffer_restyled): Use
69080         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
69081         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
69082
69083 2000-07-09  Jim Meyering  <meyering@lucent.com>
69084
69085         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
69086         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
69087
69088         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
69089         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
69090
69091 2000-07-09  Jim Meyering  <meyering@lucent.com>
69092
69093         * lib/Most files: Update copyright dates to include 2000.
69094
69095 2000-07-08  Jim Meyering  <meyering@lucent.com>
69096
69097         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
69098         if not defined.
69099         (xgethostname): Remove now-unnecessary #ifdef.
69100         Move declaration of `err' into loop where it's used.
69101
69102 2000-07-05  Paul Eggert  <eggert@twinsun.com>
69103         and Bruno Haible  <haible@clisp.cons.org>
69104
69105         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
69106         only if the test for an object-type mbstate_t fails.  This
69107         prevents us from mistakenly reporting that mbstate_t is a
69108         system object type after we "#define mbstate_t int" to work
69109         around its lack.
69110
69111 2000-07-05  Paul Eggert  <eggert@twinsun.com>
69112         and Bruno Haible  <haible@clisp.cons.org>
69113
69114         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
69115
69116 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
69117
69118         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
69119         to strerror_r.
69120         Include <ctype.h> for use of isalpha.
69121
69122 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
69123
69124         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
69125         by allocating a larger buffer. Test the gethostname return value for
69126         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
69127         returns an error and ENAMETOOLONG isn't defined.
69128
69129 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
69130
69131         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
69132         dimension.
69133
69134 2000-07-04  Jim Meyering  <meyering@lucent.com>
69135
69136         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
69137         of the deprecated AC_CHECKING.
69138
69139 2000-07-04  Jim Meyering  <meyering@lucent.com>
69140
69141         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
69142         Reported by Bruno Haible.
69143
69144 2000-07-04  Jim Meyering  <meyering@lucent.com>
69145
69146         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
69147         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
69148         lacks mbrtowc.
69149
69150 2000-07-03  Paul Eggert  <eggert@twinsun.com>
69151
69152         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
69153         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
69154
69155 2000-07-03  Paul Eggert  <eggert@twinsun.com>
69156         and Bruno Haible  <haible@clisp.cons.org>
69157
69158         * lib/quotearg.c (mbrtowc):
69159         Assign to *pwc, and return 1 only if result is nonzero.
69160         (iswprint): Use ISPRINT when substituting our own mbrtowc.
69161
69162 2000-07-03  Jim Meyering  <meyering@lucent.com>
69163
69164         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
69165
69166 2000-07-03  Jim Meyering  <meyering@lucent.com>
69167
69168         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
69169         This is necessary to get a definition of e.g., UTMP_FILE on
69170         HP-UX 10.20.
69171         From Bob Proulx.
69172
69173 2000-07-02  Jim Meyering  <meyering@lucent.com>
69174
69175         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
69176
69177         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
69178         AC_LIBOBJ(function_name).
69179         * m4/chown.m4: Likewise.
69180         * m4/fnmatch.m4: Likewise.
69181         * m4/ftruncate.m4: Likewise.
69182         * m4/getgroups.m4: Likewise.
69183         * m4/getline.m4: Likewise.
69184         * m4/group-member.m4: Likewise.
69185         * m4/jm-macros.m4: Likewise.
69186         * m4/lstat.m4: Likewise.
69187         * m4/malloc.m4: Likewise.
69188         * m4/memcmp.m4: Likewise.
69189         * m4/nanosleep.m4: Likewise.
69190         * m4/putenv.m4: Likewise.
69191         * m4/realloc.m4: Likewise.
69192         * m4/regex.m4: Likewise.
69193         * m4/stat.m4: Likewise.
69194         * m4/strftime.m4: Likewise.
69195
69196 2000-07-02  Jim Meyering  <meyering@lucent.com>
69197
69198         * lib/quotearg.c (mbstate_t): Don't define here.
69199
69200 2000-07-02  Jim Meyering  <meyering@lucent.com>
69201
69202         * lib/nanosleep.c (SIGCONT): Define if not already defined.
69203
69204 2000-07-01  Jim Meyering  <meyering@lucent.com>
69205
69206         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
69207
69208 2000-07-01  Jim Meyering  <meyering@lucent.com>
69209
69210         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
69211         problem.
69212
69213 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
69214
69215         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
69216         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
69217
69218 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
69219
69220         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
69221         per change in ../m4/ls-mntd-fs.m4.
69222         (read_filesystem_list): Ignore symbolic links.
69223
69224 2000-06-29  Jim Meyering  <meyering@lucent.com>
69225
69226         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
69227         for declaration of strcmp.
69228
69229         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
69230
69231         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
69232         Avoid warning by casting result to `char *' to remove `const'.
69233
69234 2000-06-28  Jim Meyering  <meyering@lucent.com>
69235
69236         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
69237         included by quotearg.c, for which we perform this test.  From
69238         Bruno Haible.
69239
69240 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
69241
69242         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
69243         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
69244         <utmpx.h> exists, put readutmp.o into LIBOBJS.
69245
69246 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
69247
69248         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
69249
69250 2000-06-26  Paul Eggert  <eggert@twinsun.com>
69251
69252         savedir now sets errno on failure and invokes xmalloc to get memory.
69253         Fix a couple of other minor bugs while we're at it.
69254
69255         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
69256         (NAMLEN): Remove macro.
69257         (malloc, realloc): Remove decls.
69258         (stpcpy): Likewise.
69259         ("xalloc.h"): Include.
69260         (NAME_SIZE_DEFAULT): New macro.
69261         (savedir): Use xmalloc / xrealloc to allocate memory.
69262         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
69263         Skip "" directory entries.
69264         Use strlen to calculate directory entry length, since the old method
69265         is rarely used these days and isn't worth supporting.
69266         Don't use a pointer after freeing it.
69267         Check for integer overflow when calculating allocation size.
69268         Use memcpy to copy entries, instead of stpcpy.
69269         Set errno properly when returning NULL.
69270         Check for readdir error.
69271
69272 2000-06-26  Jim Meyering  <meyering@lucent.com>
69273
69274         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
69275
69276 2000-06-25  Jim Meyering  <meyering@lucent.com>
69277
69278         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
69279         Linux header bug when _XOPEN_SOURCE is defined to 500.
69280
69281 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
69282
69283         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
69284         deficiency.
69285
69286 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
69287
69288         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
69289         Include xalloc.h.
69290         Don't include <stdlib.h>.  Don't declare malloc, realloc.
69291
69292 2000-06-24  Jim Meyering  <meyering@lucent.com>
69293
69294         * m4/strerror_r.m4: Revive this file -- to try out an experimental
69295         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
69296         for which strerror does return char*, but which lacks a conveniently
69297         accessible declaration of the function.  If the compile-test says
69298         strerror_r doesn't work, then resort to a `run'-test that works on
69299         BeOS and segfaults on DEC Unix.
69300
69301 2000-06-24  Jim Meyering  <meyering@lucent.com>
69302
69303         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
69304
69305 2000-06-23  Paul Eggert  <eggert@twinsun.com>
69306
69307         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
69308         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
69309
69310 2000-06-23  Paul Eggert  <eggert@twinsun.com>
69311
69312         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
69313         (mbrtowc, mbstate_t): Define substitutes if
69314         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
69315         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
69316         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
69317
69318 2000-06-23  Jim Meyering  <meyering@lucent.com>
69319
69320         * m4/afs.m4: Add missing AC_MSG_RESULT.
69321         Reported by Bruno Haible.
69322
69323         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
69324         Suggestion from Bruno Haible.
69325
69326 2000-06-23  Jim Meyering  <meyering@lucent.com>
69327
69328         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
69329
69330 2000-06-21  Jim Meyering  <meyering@lucent.com>
69331
69332         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
69333
69334 2000-06-21  Jim Meyering  <meyering@lucent.com>
69335
69336         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
69337         (noinst_HEADERS): Add getstr.h.
69338
69339         * lib/getline.c (getstr): Move into a separate file.
69340         * lib/getstr.c (getstr): New file, extracted from getline.c, with
69341         the following changes: new parameter, delim2; both delim[12]
69342         parameters have type `int', not `char'.  The latter would lose
69343         with 8-bit delimiters.
69344         * lib/getstr.h: New file.
69345
69346 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
69347
69348         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
69349         than 1024, return a memory chunk of least possible size, instead
69350         of size PATH_MAX + 2. In the loop, increment the size proportionally.
69351         Use free/xmalloc instead of xrealloc to avoid copying for very long
69352         paths.
69353
69354 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
69355
69356         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
69357         the empty string.
69358
69359 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
69360
69361         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
69362         address, not strdup.  Include <stdlib.h> and don't declare free().
69363
69364 2000-06-19  Jim Meyering  <meyering@lucent.com>
69365
69366         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
69367
69368 2000-06-18  Jim Meyering  <meyering@lucent.com>
69369
69370         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
69371
69372         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
69373         `checking whether...' message to be consistent with that of the
69374         lstat test.
69375
69376 2000-06-18  Jim Meyering  <meyering@lucent.com>
69377
69378         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
69379         Besides, these days every porting target provides a mkdir function.
69380
69381         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
69382         needed. (this snippet comes from src/system.h).
69383
69384 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
69385
69386         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
69387
69388 2000-06-15  Paul Eggert  <eggert@twinsun.com>
69389
69390         * lib/human.c (adjust_value): New function.
69391         (human_readable_inexact): Apply rounding style even when
69392         printing approximate values.
69393
69394 2000-06-14  Paul Eggert  <eggert@twinsun.com>
69395
69396         * lib/human.c (human_readable_inexact): Allow an input block
69397         size that is not a multiple of the output block size, and vice versa.
69398         Reported by Piergiorgio Sartor.
69399
69400 2000-06-14  Paul Eggert  <eggert@twinsun.com>
69401
69402         * lib/getdate.y (get_date): Apply relative times after time
69403         zone indicator, not before.  Reported by Todd A. Jacobs.
69404
69405 2000-06-13  Jim Meyering  <meyering@lucent.com>
69406
69407         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
69408
69409         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
69410
69411 2000-06-12  Paul Eggert  <eggert@twinsun.com>
69412
69413         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
69414
69415 2000-06-12  Jim Meyering  <meyering@lucent.com>
69416
69417         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
69418         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
69419         optional argument.
69420         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
69421         the optional argument, `lib'.
69422
69423 2000-06-08  Jim Meyering  <meyering@lucent.com>
69424
69425         * m4/largefile.m4: Remove file (now that it's part of autoconf).
69426
69427 2000-06-04  Paul Eggert  <eggert@twinsun.com>
69428
69429         Rewrite largefile configuration so that we don't need to run
69430         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
69431         AC_CANONICAL_HOST in configure.in -- jmm]
69432
69433         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
69434         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
69435         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
69436         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
69437         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
69438         All uses changed.
69439         Instead of inspecting the output of getconf, try to compile the
69440         test program without and with the macro definition.
69441         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
69442         for getconf.  Instead, check for the needed flags by compiling
69443         test programs.
69444
69445 2000-06-04  Paul Eggert  <eggert@twinsun.com>
69446
69447         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
69448
69449 2000-06-04  Jim Meyering  <meyering@lucent.com>
69450
69451         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
69452         SunOS 4.1.4 for which gid_t is an unsigned type.
69453
69454 2000-06-03  Jim Meyering  <meyering@lucent.com>
69455
69456         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
69457         now that autoconf requires that.
69458
69459         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
69460         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
69461         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
69462
69463 2000-06-03  Jim Meyering  <meyering@lucent.com>
69464
69465         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
69466
69467 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
69468
69469         * m4/glibc21.m4: New file.
69470         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
69471
69472 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
69473
69474         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
69475         newer, don't install charset.alias.
69476         * lib/config.charset: Change the Linux/glibc rules so they become empty
69477         on glibc-2.1 or newer.
69478
69479 2000-06-02  Jim Meyering  <meyering@lucent.com>
69480
69481         * lib/mountlist.c: Back out last change.  Instead, do this...
69482         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
69483         me_dummy member using the same `ignore'-testing code.
69484         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
69485         fs_type strings.
69486         From Mark D. Roth.
69487
69488 2000-05-29  Jim Meyering  <meyering@lucent.com>
69489
69490         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
69491         mounts with the `ignore' attribute.  Based on a patch from
69492         Mark D. Roth.
69493
69494 2000-05-28  Jim Meyering  <meyering@lucent.com>
69495
69496         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
69497         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
69498         * m4/stat.m4: Likewise.
69499         * m4/lstat.m4: Likewise.
69500         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
69501
69502         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
69503         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
69504
69505 2000-05-26  Jim Meyering  <meyering@lucent.com>
69506
69507         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
69508
69509 2000-05-24  Jim Meyering  <meyering@lucent.com>
69510
69511         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
69512         autoconf requires that.
69513         * m4/lib-check.m4: Likewise.
69514         * m4/jm-macros.m4: Likewise.
69515         * m4/strftime.m4: Likewise.
69516
69517         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
69518         AC_CHECK_DECLS, now that autoconf requires that.
69519
69520 2000-05-22  Jim Meyering  <meyering@lucent.com>
69521
69522         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
69523         * m4/lstat.m4: Likewise.
69524
69525 2000-05-22  Jim Meyering  <meyering@lucent.com>
69526
69527         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
69528
69529 2000-05-20  Jim Meyering  <meyering@lucent.com>
69530
69531         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
69532         (jm_PREREQ): Use it.
69533
69534 2000-05-18  Jim Meyering  <meyering@lucent.com>
69535
69536         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
69537         back, too, since it may have been modified by allocate_entry.
69538         (hash_delete): Rewrite to use neither the assignment operator
69539         nor the comma operator in an if-expression.
69540
69541 2000-05-15  Paul Eggert  <eggert@twinsun.com>
69542
69543         * lib/closeout.c:
69544         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
69545         Remove; no longer needed.
69546         "quotearg.h": Add include.
69547         (file_name): Do not bother to explicitly initialize to NULL; it's less
69548         efficient on some hosts.
69549         (close_stdout_status): Remove test as to whether stdout was already
69550         closed; it breaks for the case "echo x | sort >&-".
69551         Quote file name colons.
69552         Do not assume that _("write error") lacks format strings.
69553
69554 2000-05-15  Jim Meyering  <meyering@lucent.com>
69555
69556         * lib/version-etc.c (version_etc_copyright): Update the copyright
69557         string used in all --version output.
69558
69559 2000-05-14  Jim Meyering  <meyering@lucent.com>
69560
69561         * lib/closeout.c (close_stdout_set_file_name): New function.
69562         (close_stdout_status): Use new file-scoped global.
69563         Return right away if fstat says the stdout file descriptor is invalid.
69564         * lib/closeout.h (close_stdout_set_file_name): Declare.
69565
69566 2000-05-10  Jim Meyering  <meyering@lucent.com>
69567
69568         * lib/closeout.c [default_exit_status]: New file-scoped variable.
69569         (close_stdout_set_status): New function.
69570         * lib/closeout.h (close_stdout_set_status): Declare.
69571
69572 2000-05-09  Jim Meyering  <meyering@lucent.com>
69573
69574         * m4/gettext.m4: Rename this...
69575         * m4/libintl.m4: ...to this.
69576
69577 2000-05-08  Jim Meyering  <meyering@lucent.com>
69578
69579         * lib/long-options.c: Don't include closeout.h.
69580         (parse_long_options): Don't call close_stdout for --version.
69581
69582 2000-05-06  Paul Eggert  <eggert@twinsun.com>
69583
69584         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
69585         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
69586         2.1.3 bug.  This avoids a clash when files like regex.c define
69587         _GNU_SOURCE.
69588
69589 2000-05-06  Jim Meyering  <meyering@lucent.com>
69590
69591         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
69592         (AC_REPLACE_FUNCS): Add strnlen.
69593
69594         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
69595         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
69596
69597         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
69598         AC_SEARCH_LIBS call for nanosleep.
69599         (LIB_NANOSLEEP): Set and AC_SUBST.
69600
69601 2000-05-06  Jim Meyering  <meyering@lucent.com>
69602
69603         * lib/strnlen.c: Undefine __strnlen and strnlen.
69604         [!weak_alias]: Define __strnlen to strnlen.
69605
69606         * lib/atexit.c: New file, from libiberty.
69607
69608 2000-05-06  Jim Meyering  <meyering@lucent.com>
69609
69610         * lib/closeout.c (close_stdout_status): Also check for errors on the
69611         stderr stream.
69612
69613 2000-05-05  Jim Meyering  <meyering@lucent.com>
69614
69615         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
69616         AC_SEARCH_LIBS call for clock_gettime.
69617         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
69618
69619         * m4/search-libs.m4: Update from autoconf.
69620
69621         su doesn't work on Solaris 2.6.
69622         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
69623         <shadow.h>.  Reported by Dragos Harabor.
69624
69625 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
69626
69627         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
69628         memcpy instead of xmalloc, xrealloc, path_concat.
69629         (locale_charset): Treat empty environment variables as absent.
69630         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
69631
69632 2000-05-04  Jim Meyering  <meyering@lucent.com>
69633
69634         * lib/getopt.c: Update from glibc.
69635         * lib/obstack.c: Likewise.
69636         * lib/obstack.h: Likewise.
69637         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
69638         file
69639
69640         * lib/regex.h: Likewise.
69641         * lib/strndup.c: Likewise.
69642         * lib/strnlen.c: New file, from glibc.
69643
69644 2000-05-03  Jim Meyering  <meyering@lucent.com>
69645
69646         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
69647
69648 2000-05-02  Paul Eggert  <eggert@twinsun.com>
69649
69650         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
69651         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
69652         compile-time test, rather than inspecting host and OS, to
69653         decide whether to define _LARGEFILE_SOURCE.
69654
69655 2000-05-01  Jim Meyering  <meyering@lucent.com>
69656
69657         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
69658
69659         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
69660         Based on a patch from Bruno Haible.
69661
69662 2000-05-01  Jim Meyering  <meyering@lucent.com>
69663
69664         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
69665
69666 2000-04-29  Jim Meyering  <meyering@lucent.com>
69667
69668         * lib/path-concat.c: Declare strdup only if it's not defined.
69669         * lib/canon-host.c: Likewise.
69670
69671 2000-04-28  Jim Meyering  <meyering@lucent.com>
69672
69673         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
69674         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
69675         is included first, then limits.h is included by locale.h by libintl.h.
69676         From John David Anglin.
69677
69678 2000-04-25  Jim Meyering  <meyering@lucent.com>
69679
69680         * lib/makepath.c (S_IRWXUGO): Define.
69681         (make_path): Always perform explicit chmod if MODE specifies any
69682         of the `special' permission bits.  Prompted by a bug report against
69683         install from Mate Wierdl and Joost van Baal.
69684
69685 2000-04-18  Jim Meyering  <meyering@lucent.com>
69686
69687         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
69688         (jm_PREREQ): Use it.
69689
69690 2000-04-18  Jim Meyering  <meyering@lucent.com>
69691
69692         * lib/README: New file.
69693
69694         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
69695         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
69696
69697 2000-04-17  Jim Meyering  <meyering@lucent.com>
69698
69699         Get it right :-)
69700         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
69701         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
69702         Suggestion from Akim Demaille.
69703
69704 2000-04-17  Jim Meyering  <meyering@lucent.com>
69705
69706         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
69707         the definition of it to rpl_strftime also defined-away the system's
69708         declaration.
69709
69710 2000-04-15  Jim Meyering  <meyering@lucent.com>
69711
69712         Use `C' to denote so-called `contiguous' files, the same way
69713         that tar does.
69714         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
69715         (ftypelet): Use S_ISCTG.
69716         From Michael Deutschmann.
69717
69718 2000-04-14  Jim Meyering  <meyering@lucent.com>
69719
69720         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
69721         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
69722         clobbered.
69723
69724 2000-04-14  Jim Meyering  <meyering@lucent.com>
69725
69726         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
69727
69728 2000-04-13  Jim Meyering  <meyering@lucent.com>
69729
69730         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
69731         AH_VERBATIM to insert required #ifndef into config.h.in.
69732         Suggestion from Akim Demaille.
69733
69734 2000-04-12  Jim Meyering  <meyering@lucent.com>
69735
69736         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
69737         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
69738         Christian Krackowizer.
69739
69740         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
69741         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
69742         (AC_SYS_LARGEFILE): Require.
69743         (AM_C_PROTOTYPES): Require.
69744
69745 2000-04-08  Jim Meyering  <meyering@lucent.com>
69746
69747         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
69748         names don't conflict.  Reported by Eli Zaretskii.
69749
69750 2000-04-07  Jim Meyering  <meyering@lucent.com>
69751
69752         * lib/putenv.c: Move inclusion of errno.h so it follows that of
69753         sys/types.h, to work around system header problems on AIX 3.2.5.
69754         From Bruno Haible.
69755
69756 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
69757
69758         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
69759         bug.  Deal with the different error behavior of Irix iconv.
69760
69761 2000-04-05  Paul Eggert  <eggert@twinsun.com>
69762
69763         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
69764         IRIX if the installer said otherwise.
69765
69766 2000-04-05  Jim Meyering  <meyering@lucent.com>
69767
69768         Portability tweaks required for ultrix4.3.
69769         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
69770         (jm_CHECK_DECLS): Add getutent to the list of functions.
69771         (_jm_DECL_HEADERS): Add utmpx.h.
69772         From John David Anglin.
69773
69774         * m4/strftime.m4: Back out the 2000-04-02 change.
69775         Instead of that change, simply undefine putenv in the test program.
69776
69777 2000-04-05  Jim Meyering  <meyering@lucent.com>
69778
69779         Portability tweaks required for ultrix4.3.
69780         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
69781         getutent.
69782         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
69783         * lib/canon-host.c: Declare strdup.
69784         * lib/path-concat.c: Likewise.
69785         From John David Anglin.
69786
69787 2000-04-04  Jim Meyering  <meyering@lucent.com>
69788
69789         Be more DOS 8.3-friendly.
69790         * lib/ref-add.sin: Renamed from ref-add.sed.in.
69791         * lib/ref-del.sin: Renamed from ref-del.sed.in.
69792         * lib/Makefile.am: Reflect renaming.
69793         Reported by Eli Zaretskii.
69794
69795         Use a temporary file name that won't clash with `charset.alias'
69796         in the DOS 8.3 name space.
69797         * lib/Makefile.am (charset_tmp): Define.
69798         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
69799         (uninstall-local): Likewise.
69800         Reported by Eli Zaretskii.
69801
69802 2000-04-03  Jim Meyering  <meyering@lucent.com>
69803
69804         * m4/gettext.m4: Fix typo in comment.
69805
69806         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
69807         textutils/configure.in).  Suggestion from Paul Eggert.
69808         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
69809
69810 2000-04-02  Paul Eggert  <eggert@twinsun.com>
69811
69812         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
69813         variable in the shell rather than using putenv, which isn't
69814         portable.  This avoids the configure-time inter-test dependency
69815         on the potentially-renamed putenv function.
69816
69817 2000-03-30  Paul Eggert  <eggert@twinsun.com>
69818
69819         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
69820         before checking struct stat.st_blksize, so that
69821         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
69822
69823 2000-03-29  Paul Eggert  <eggert@twinsun.com>
69824
69825         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
69826         since strftime.c uses HAVE_STRFTIME to decide whether to use
69827         the underlying strftime.
69828
69829 2000-03-29  Paul Eggert  <eggert@twinsun.com>
69830
69831         * lib/time/strftime.c (my_strftime): Make sure we call the system
69832         strftime, not ourselves, when invoking the underlying strftime.
69833
69834 2000-03-24  Jim Meyering  <meyering@lucent.com>
69835
69836         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
69837         (charset_alias): Define.
69838         (install-exec-local): Factor out common code.
69839         (uninstall-local): Split lines longer than 80.
69840         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
69841         (SUFFIXES): Define.
69842         (.sed.in.sed): New rule.  Don't redirect directly to $@.
69843         (CLEANFILES): Add ref-add.sed and ref-del.sed.
69844
69845 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
69846
69847         * lib/config.charset: Output a line containing "Packages using this
69848         file".
69849         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
69850         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
69851         ref-del.sed): New rules.
69852
69853 2000-03-17  Jim Meyering  <meyering@lucent.com>
69854
69855         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
69856         Otherwise, include <strings.h>
69857
69858 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
69859
69860         * lib/unicodeio.c (utf8_wctomb): New function.
69861         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
69862         format instead of in UCS-4 with platform dependent endianness.
69863
69864 2000-03-10  Jim Meyering  <meyering@lucent.com>
69865
69866         * m4/lib-check.m4: Look for getspnam in -lgen, too.
69867         From Marco Franzen.
69868
69869 2000-03-07  Paul Eggert  <eggert@twinsun.com>
69870
69871         * lib/savedir.c (savedir): Work even if directory size is
69872         negative; this can happen with some screwy NFS configurations.
69873
69874 2000-03-06  Jim Meyering  <meyering@lucent.com>
69875
69876         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
69877         if it's NULL (because we ran out of memory).  From Bruno Haible.
69878
69879 2000-03-05  Jim Meyering  <meyering@lucent.com>
69880
69881         * lib/localcharset.c ("path-concat.h"): Include.
69882         (get_charset_aliases): Use path_concat instead of ANSI string
69883         concatenation.
69884
69885         * lib/unicodeio.h (PARAMS): Define.
69886         Use it to guard prototype.
69887
69888 2000-03-04  Jim Meyering  <meyering@lucent.com>
69889
69890         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
69891         for lib/localcharset.c.
69892
69893 2000-03-04  Jim Meyering  <meyering@lucent.com>
69894
69895         * lib/Makefile.am (install-exec-local): Create $(libdir) before
69896         installing into it.
69897         (uninstall-local): Uncomment this rule so `make distcheck' works
69898         once again.
69899
69900         * lib/unicodeio.c (<errno.h>): Include it.
69901         (errno): Declare if not defined.
69902
69903         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
69904
69905         * lib/config.charset: New version, incorporating remarks from a linux
69906         i18n mailing list.  From Bruno Haible.
69907
69908 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
69909
69910         * m4/codeset.m4: New file.
69911         * m4/iconv.m4: New file.
69912         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
69913
69914 2000-03-03  Jim Meyering  <meyering@lucent.com>
69915
69916         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
69917
69918 2000-03-02  Jim Meyering  <meyering@lucent.com>
69919
69920         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
69921         the messages come out on separate lines.
69922
69923         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
69924         rather than jm_CHECK_DECLARATIONS.
69925         * m4/decl.m4: Remove now-unused file.
69926
69927         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
69928         geteuid.
69929
69930 2000-03-02  Jim Meyering  <meyering@lucent.com>
69931
69932         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
69933
69934 2000-03-01  Jim Meyering  <meyering@lucent.com>
69935
69936         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
69937         * lib/unicodeio.c: Likewise.
69938
69939 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
69940
69941         * lib/config.charset: New file.
69942         * lib/localcharset.c: New file.
69943         * lib/unicodeio.h, lib/unicodeio.c: New files.
69944         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
69945         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
69946         (noinst_HEADERS): Add unicodeio.h.
69947         (all-local, install-exec-local, charset.alias): New targets.
69948
69949 2000-02-28  Paul Eggert  <eggert@twinsun.com>
69950
69951         * lib/quotearg.c (ALERT_CHAR): New macro.
69952         (quotearg_buffer_restyled): Use it.
69953
69954 2000-02-27  Jim Meyering  <meyering@lucent.com>
69955
69956         * m4/check-decl.m4: Add getenv to the list.
69957
69958 2000-02-27  Jim Meyering  <meyering@lucent.com>
69959
69960         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
69961         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
69962
69963         * lib/backupfile.c: Guard inclusion of stdlib.h with
69964         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
69965         Declare malloc if needed.
69966
69967         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
69968         `#ifndef HAVE_DECL..'
69969         now that autoconf always defines the HAVE_DECL_ symbols.
69970         * lib/human.c: Likewise.
69971         * lib/same.c: Likewise.
69972         * lib/strtoumax.c: Likewise.
69973
69974         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
69975         declaration check was not run.
69976         * lib/hash.c: Likewise.
69977         * lib/human.c: Likewise.
69978         * lib/same.c: Likewise.
69979         * lib/strtoumax.c: Likewise.
69980
69981         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
69982         `.', then first look up the entire `.'-containing string as a login
69983         name.
69984
69985 2000-02-23  Jim Meyering  <meyering@lucent.com>
69986
69987         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
69988         in place of my hack.
69989
69990 2000-02-18  Paul Eggert  <eggert@twinsun.com>
69991
69992         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
69993         (textint): New typedef.
69994         (parser_control): Member year changed from int to textint.
69995         All uses changed.
69996         (YYSTYPE): Removed; replaced by %union with int and textint members.
69997         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
69998         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
69999         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
70000         (tSNUMBER, tUNUMBER): Now of type <textintval>.
70001         (date, number, to_year): Use width of number in digits, not its value,
70002         to determine whether it's a 2-digit year, or a 2-digit time.
70003         (yylex): Store number of digits of numeric tokens.
70004         Reported by John Kendall.
70005
70006         (parser_control): Changed from struct parser_control to typedef (for
70007         consistency).  All uses changed.
70008
70009         (tID): Removed; not used.
70010         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
70011
70012 2000-02-14  Paul Eggert  <eggert@twinsun.com>
70013
70014         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
70015         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
70016
70017 2000-02-12  Jim Meyering  <meyering@lucent.com>
70018
70019         * lib/userspec.c (ISDIGIT): Define it.
70020         (isdigit): Remove definition.
70021         (is_number): Use ISDIGIT, not isdigit.
70022         <libintl.h>: Include.
70023         (_ and N_): Define.
70024         (parse_user_spec): Mark translatable strings.
70025
70026 2000-02-10  Jim Meyering  <meyering@lucent.com>
70027
70028         With these changes, nanosleep.[ch] are finally enough like the other
70029         lib/* replacement files to compile on a few more losing systems.
70030
70031         * lib/nanosleep.h: Don't include config.h.
70032         Remove prototype from declaration of nanosleep.
70033         (PARAMS): Remove now-unneeded definition.
70034         * lib/nanosleep.c: #undef nanosleep.
70035         (rpl_nanosleep): Rename from nanosleep.
70036
70037 2000-02-10  Jim Meyering  <meyering@lucent.com>
70038
70039         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
70040         gnu_nanosleep to rpl_nanosleep.
70041
70042 2000-02-09  Jim Meyering  <meyering@lucent.com>
70043
70044         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
70045         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
70046
70047 2000-02-08  Akim Demaille  <akim@epita.fr>
70048
70049         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
70050         `[' and `]' and remove uses of `changequote'.
70051         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
70052         (AC_SYS_LARGEFILE): Likewise.
70053         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
70054         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
70055         of changequote.
70056         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
70057         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
70058         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
70059         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
70060
70061 2000-02-05  Jim Meyering  <meyering@lucent.com>
70062
70063         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
70064         Remove explicit use of AC_HEADER_TIME.  It is required by
70065         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
70066         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
70067         in autoconf whereby the expansion of the latter ended up preceding
70068         the expansion of its prerequisite, AC_HEADER_TIME.
70069         Reported by Volker Borchert.
70070
70071 2000-02-03  Jim Meyering  <meyering@lucent.com>
70072
70073         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
70074
70075 2000-02-03  Jim Meyering  <meyering@lucent.com>
70076
70077         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
70078         rather than with `#if HAVE_UTMPNAME'.
70079
70080 2000-02-02  Jim Meyering  <meyering@lucent.com>
70081
70082         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
70083         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
70084         Reported by Eli Zaretskii.
70085
70086 2000-02-01  Jim Meyering  <meyering@lucent.com>
70087
70088         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
70089
70090 2000-01-31  Jim Meyering  <meyering@lucent.com>
70091
70092         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
70093         functions.  Add the time.h and sys/time.h headers along with the
70094         AC_REQUIRE'ment of AC_HEADER_TIME.
70095
70096 2000-01-31  Jim Meyering  <meyering@lucent.com>
70097
70098         * lib/nanosleep.h (nanosleep): Guard declaration with
70099         `#if ! HAVE_DECL_NANOSLEEP'.
70100         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
70101         the declaration in that vendor's sys/timers.h.
70102         Reported by Christian Krackowizer.
70103
70104         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
70105         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
70106         (ISPRINT): Likewise.
70107         Reported by Tom Tromey.
70108
70109 2000-01-30  Jim Meyering  <meyering@lucent.com>
70110
70111         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
70112
70113         * m4/prereq.m4 (utmp_includes): Define.
70114         Check for ut_user and ut_name members in both struct utmpx
70115         and struct utmp.
70116
70117 2000-01-30  Jim Meyering  <meyering@lucent.com>
70118
70119         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
70120         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
70121         header files where only utmpx.ut_user is declared.
70122
70123         * lib/readutmp.h (UT_USER): Define.
70124
70125 2000-01-29  Jim Meyering  <meyering@lucent.com>
70126
70127         * m4/lib-check.m4: New file containing library-related checks from
70128         fileutils and sh-utils (textutils had none).
70129
70130 2000-01-28  Jim Meyering  <meyering@lucent.com>
70131
70132         * m4/perl.m4: Change format of warning message to look more like that
70133         from the missing script.  Suggestion from François Pinard.
70134
70135 2000-01-25  Jim Meyering  <meyering@lucent.com>
70136
70137         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
70138         well as time.h in the compile check.
70139         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
70140         Fix typo in cross-compiling case: s/yes/no/.
70141
70142 2000-01-23  Jim Meyering  <meyering@lucent.com>
70143
70144         * m4/jm-macros.m4: Move df-related tests here from
70145         fileutils/configure.in
70146
70147         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
70148         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
70149
70150         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
70151         s/space/ac_fsusage_space/.
70152         (jm_FILE_SYSTEM_USAGE): Take two parameters.
70153
70154         * m4/ftruncate.m4: New file (derived from part of
70155         fileutils/configure.in).
70156         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
70157         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
70158
70159         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
70160         AC_SUBST these here, rather than just in sh-util/configure.in, so
70161         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
70162         all the same.
70163         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
70164         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
70165         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
70166         (AC_SUBST(POW_LIBM)): Likewise.
70167         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
70168
70169 2000-01-23  Jim Meyering  <meyering@lucent.com>
70170
70171         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
70172         obstack.c.
70173
70174 2000-01-22  Jim Meyering  <meyering@lucent.com>
70175
70176         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
70177
70178         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
70179
70180         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
70181         configure.in
70182         (AC_CHECK_HEADERS): Likewise for sh-utils.
70183         (AC_CHECK_HEADERS): Likewise for textutils.
70184         Merge the three lists of headers.
70185
70186         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
70187         from fileutils' configure.in.
70188
70189         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
70190         code. Moved tests into their own function (_jm_DECL_HEADERS) in
70191         check-decl.m4.
70192
70193         * m4/check-decl.m4: Use #if rather than #ifdef.
70194         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
70195         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
70196         (_jm_DECL_HEADERS): Define new function.
70197         (jm_CHECK_DECLARATIONS): Require it.
70198
70199 2000-01-22  Jim Meyering  <meyering@lucent.com>
70200
70201         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
70202         [! HAVE_DECL_STRTOULL]: Declare strtoull.
70203         Required for some AIX systems.  Reported by Christian Krackowizer.
70204         [TESTING] (main): New function.
70205
70206         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
70207         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
70208         letters.
70209
70210         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
70211         iswprint.
70212
70213         * lib/strverscmp.c (ISDIGIT): Define.
70214         (strverscmp): Use ISDIGIT, not isdigit.
70215
70216 2000-01-19  Jim Meyering  <meyering@lucent.com>
70217
70218         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
70219         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
70220         defines `struct timespec' in <sys/time.h>
70221
70222         * m4/c-bs-a.m4: Remove uses of changequote altogether.
70223         Thanks to Akim for explaining.
70224
70225 2000-01-17  Paul Eggert  <eggert@twinsun.com>
70226
70227         * lib/nanosleep.c (nanosleep):
70228         Don't use SA_INTERRUPT to decide whether to call sigaction, as
70229         POSIX.1 doesn't require SA_INTERRUPT and some systems
70230         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
70231         it's been part of POSIX.1 since day 1 (in 1988).
70232
70233 2000-01-17  Jim Meyering  <meyering@lucent.com>
70234
70235         * lib/interlock: Remove unused file.  Reported by François Pinard.
70236
70237 2000-01-16  Paul Eggert  <eggert@twinsun.com>
70238
70239         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
70240         alert, backslash, formfeed, and vertical tab unnecessarily in
70241         shell quoting style.
70242
70243 2000-01-16  Jim Meyering  <meyering@lucent.com>
70244
70245         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
70246         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
70247         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
70248         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
70249
70250 2000-01-16  Jim Meyering  <meyering@lucent.com>
70251
70252         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
70253         because the latter didn't work.
70254
70255 2000-01-15  Jim Meyering  <meyering@lucent.com>
70256
70257         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
70258         (AC_REPLACE_FUNCS): Add memcpy and memset.
70259         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
70260         Add strpbrk.
70261         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
70262
70263 2000-01-12  Jim Meyering  <meyering@lucent.com>
70264
70265         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
70266         (jm_PREREQ): Use it.
70267         (jm_PREREQ_READUTMP): New macro.
70268         (jm_PREREQ): Use it.
70269
70270 2000-01-11  Paul Eggert  <eggert@twinsun.com>
70271
70272         Quote multibyte characters correctly.
70273         * m4/c-bs-a.m4: New file.
70274         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
70275         (jm_PREREQ): Use it.
70276
70277 2000-01-11  Paul Eggert  <eggert@twinsun.com>
70278
70279         * m4/uintmax_t.m4: Port to autoconf 2.13.
70280
70281 2000-01-08  Jim Meyering  <meyering@ascend.com>
70282
70283         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
70284         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
70285
70286 2000-01-04  Jim Meyering  <meyering@ascend.com>
70287
70288         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
70289         jm_STRUCT_DIRENT_D_TYPE.
70290         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
70291         jm_STRUCT_DIRENT_D_INO.
70292         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
70293         jm_STRUCT_UTIMBUF.
70294         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
70295         renamings.
70296         * m4/utime.m4: Likewise.
70297
70298         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
70299         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
70300
70301 2000-01-03  Paul Eggert  <eggert@twinsun.com>
70302
70303         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
70304         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
70305
70306 2000-01-02  Jim Meyering  <meyering@ascend.com>
70307
70308         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
70309         remember if this is necessary.
70310
70311 1999-12-26  Jim Meyering  <meyering@ascend.com>
70312
70313         * m4/jm-macros.m4: Use it here.
70314         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
70315
70316 1999-12-23  Jim Meyering  <meyering@ascend.com>
70317
70318         * m4/jm-macros.m4: Check for clock_gettime (moved from
70319         fileutils/configure.in)
70320         Check for gettimeofday.
70321
70322 1999-12-20  Jim Meyering  <meyering@ascend.com>
70323
70324         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
70325         autoconf-2.14a-1999-12-20.
70326
70327 1999-12-19  Jim Meyering  <meyering@ascend.com>
70328
70329         * m4/lstat-slash.m4: New file.
70330         * m4/jm-macros.m4: Use the new macro:
70331         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
70332
70333 1999-12-07  Jim Meyering  <meyering@ascend.com>
70334
70335         * m4/perl.m4: Require that File::Compare be available, too.
70336         Too many systems seem to lack it.
70337
70338         * m4/strftime.m4: Add checks for most of the cpp macros tested in
70339         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
70340
70341 1999-11-18  Paul Eggert  <eggert@twinsun.com>
70342
70343         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
70344         problem with the QNX 4.25 shell, which doesn't propagate exit
70345         status of failed commands inside shell assignments.
70346
70347 1999-11-17  Jim Meyering  <meyering@ascend.com>
70348
70349         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
70350
70351 1999-11-07  Jim Meyering  <meyering@ascend.com>
70352
70353         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
70354
70355 1999-11-06  Jim Meyering  <meyering@ascend.com>
70356
70357         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
70358         * m4/jm-macros.m4 (jm_MACROS): Use it here.
70359
70360 1999-11-05  Jim Meyering  <meyering@ascend.com>
70361
70362         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
70363         configure.in of textutils, fileutils, and sh-utils into this one
70364         (shared between those packages) file.
70365         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
70366         AC_STRUCT_ST_BLKSIZE.
70367
70368 1999-11-03  Jim Meyering  <meyering@ascend.com>
70369
70370         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
70371         of AC_CHECK_TYPE checks includes unistd.h.
70372         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
70373         Suggestion from Akim Demaille.
70374
70375 1999-10-30  Jim Meyering  <meyering@ascend.com>
70376
70377         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
70378         m4-quoted string.
70379         * m4/ls-mntd-fs.m4: Likewise.
70380         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
70381         * m4/jm-winsz1.m4: Likewise.
70382
70383         * m4/const.m4: Remove file, since the fix made it into the experimental
70384         version of autoconf.
70385         * m4/mktime.m4: Likewise.
70386
70387         * m4/check-type.m4: Remove file, now that the latest version of
70388         AC_CHECK_TYPE takes a third arg to specify additional #includes.
70389
70390         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
70391         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
70392         AC_CHECK_TYPE.
70393
70394 1999-10-04  Jim Meyering  <meyering@ascend.com>
70395
70396         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
70397
70398 1999-09-22  Paul Eggert  <eggert@twinsun.com>
70399
70400         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
70401         2.95.1 bug with HP-UX 10.20.
70402
70403 1999-09-17  Jim Meyering  <meyering@ascend.com>
70404
70405         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
70406         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
70407         due to missing strdup (against sh-utils-2.0).
70408
70409 1999-08-29  Jim Meyering  <meyering@ascend.com>
70410
70411         * m4/jm-macros.m4: Require jm_BISON.
70412         * m4/bison.m4: New file.
70413
70414 1999-08-17  Paul Eggert  <eggert@twinsun.com>
70415
70416         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
70417         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
70418
70419 1999-08-05  Jim Meyering  <meyering@ascend.com>
70420
70421         * m4/getline.m4: Rename test file from conftestdata to conftest.data
70422         to avoid conflicts with `conftest' on 8+3 filesystems.
70423         Suggestion from Eli Zaretskii.
70424
70425 1999-08-04  Jim Meyering  <meyering@ascend.com>
70426
70427         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
70428         fileutils and sh-utils (textutils's getline test was inadequate).
70429         (AM_FUNC_GETLINE): Run this test.
70430         (AC_CHECK_FUNCS): Check for getdelim.
70431         Reported by Bob Proulx.
70432
70433 1999-08-02  Jim Meyering  <meyering@ascend.com>
70434
70435         * m4/jm-macros.m4: Add a comment.
70436
70437 1999-08-01  Paul Eggert  <eggert@twinsun.com>
70438
70439         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
70440         <inttypes.h> defines strtoumax as a macro (and not as a
70441         function).
70442
70443 1999-08-01  Paul Eggert  <eggert@twinsun.com>
70444
70445         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
70446         that we can shift, multiply and divide unsigned long long
70447         values; Ultrix cc can't do it.
70448
70449 1999-08-01  Paul Eggert  <eggert@twinsun.com>
70450
70451         * m4/mktime.m4: New file, which is a preview of what should appear
70452         in the next public autoconf release.
70453
70454 1999-08-01  Paul Eggert  <eggert@twinsun.com>
70455
70456         * m4/lfs.m4: Remove this file.
70457         * m4/largefile.m4: New file.  It contains the old contents of
70458         lfs.m4, except that all names with prefix AC_LFS have been
70459         changed to use the prefix AC_SYS_LARGEFILE instead, to be
70460         compatible with future autoconf versions.  Also, some minor m4
70461         quoting problems have been fixed.
70462
70463 1999-08-01  Paul Eggert  <eggert@twinsun.com>
70464
70465         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
70466         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
70467         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
70468         and simplify the shell code.
70469
70470 1999-08-01  Jim Meyering  <meyering@ascend.com>
70471
70472         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
70473         m4.
70474
70475 1999-07-20  Jim Meyering  <meyering@ascend.com>
70476
70477         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
70478
70479 1999-07-15  Jim Meyering  <meyering@ascend.com>
70480
70481         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
70482
70483 1999-05-22  Jim Meyering  <meyering@ascend.com>
70484
70485         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
70486
70487 1999-05-20  Jim Meyering  <meyering@ascend.com>
70488
70489         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
70490         Add a colon after each `then' in case $4 is empty.
70491
70492 1999-05-16  Jim Meyering  <meyering@ascend.com>
70493
70494         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
70495
70496 1999-05-10  Jim Meyering  <meyering@ascend.com>
70497
70498         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
70499
70500         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
70501         AC_FUNC_MKTIME.
70502
70503 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
70504
70505         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
70506
70507 1999-05-04  Paul Eggert  <eggert@twinsun.com>
70508
70509         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
70510         not CPPFLAGS, so that linking works correctly in IRIX.
70511
70512 1999-04-30  Paul Eggert  <eggert@twinsun.com>
70513
70514         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
70515
70516 1999-04-20  Paul Eggert  <eggert@twinsun.com>
70517
70518         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
70519         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
70520         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
70521         jm_AC_TYPE_UNSIGNED_LONG_LONG.
70522         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
70523
70524         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
70525
70526 1999-04-20  Jim Meyering  <meyering@ascend.com>
70527
70528         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
70529         AC_REPLACE xstroull if necessary.  From Paul Eggert.
70530         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
70531
70532 1999-04-18  Jim Meyering  <meyering@ascend.com>
70533
70534         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
70535         * m4/jm-macros.m4: Use it.
70536
70537 1999-04-06  Jim Meyering  <meyering@ascend.com>
70538
70539         * m4/strftime.m4: Remove test for %f.
70540
70541 1999-03-29  Jim Meyering  <meyering@ascend.com>
70542
70543         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
70544         superset of the AC_TYPE_* checks in the textutils, fileutils,
70545         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
70546         AC_TYPE_PID_T.
70547
70548 1999-03-28  Jim Meyering  <meyering@ascend.com>
70549
70550         * m4/jm-macros.m4: Define GNU_PACKAGE here.
70551         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
70552         replaced e.g., in the *.sh files of the sh-utils.
70553
70554 1999-03-20  Jim Meyering  <meyering@ascend.com>
70555
70556         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
70557         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
70558         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
70559
70560 1999-03-19  Jim Meyering  <meyering@ascend.com>
70561
70562         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
70563
70564 1999-03-12  Jim Meyering  <meyering@ascend.com>
70565
70566         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
70567
70568 1999-03-07  Jim Meyering  <meyering@ascend.com>
70569
70570         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
70571         declared.
70572
70573 1999-02-17  Jim Meyering  <meyering@ascend.com>
70574
70575         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
70576         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
70577
70578 1999-02-07  Jim Meyering  <meyering@ascend.com>
70579
70580         * m4/group-member.m4: New file -- extracted from sh-utils'
70581         configure.in.
70582
70583         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
70584         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
70585
70586 1999-02-06  Jim Meyering  <meyering@ascend.com>
70587
70588         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
70589         * m4/fnmatch.m4: Likewise.
70590         * m4/getgroups.m4: Likewise.
70591         * m4/lstat.m4: Likewise.
70592         * m4/malloc.m4: Likewise.
70593         * m4/putenv.m4: Likewise.
70594         * m4/realloc.m4: Likewise.
70595         * m4/regex.m4: Likewise.
70596         * m4/stat.m4: Likewise.
70597         * m4/strftime.m4: Likewise.
70598         Suggestion from Alain Magloire.
70599
70600         * m4/chown.m4: Use `.$ac_objext', not `.o'.
70601         * m4/fnmatch.m4: Likewise.
70602         * m4/getgroups.m4: Likewise.
70603         * m4/getline.m4: Likewise.
70604         * m4/lstat.m4: Likewise.
70605         * m4/malloc.m4: Likewise.
70606         * m4/memcmp.m4: Likewise.
70607         * m4/putenv.m4: Likewise.
70608         * m4/realloc.m4: Likewise.
70609         * m4/regex.m4: Likewise.
70610         * m4/stat.m4: Likewise.
70611         * m4/strftime.m4: Likewise.
70612         Suggestion from Alain Magloire.
70613
70614         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
70615         an argument.
70616
70617         * m4/regex.m4: Add a run-time Test for proper operation of
70618         re_compile_pattern.
70619
70620 1999-01-31  Jim Meyering  <meyering@ascend.com>
70621
70622         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
70623
70624 1999-01-30  Jim Meyering  <meyering@ascend.com>
70625
70626         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
70627
70628         * m4/jm-mktime.m4: Make this a wrapper around the official
70629         AM_FUNC_MKTIME rather than my private copy, now that the official one
70630         is up to date.
70631         * m4/mktime.m4: Remove file.
70632
70633         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
70634         * m4/uptime.m4: Likewise.
70635         * m4/uintmax_t.m4: Likewise.
70636
70637 1999-01-28  Jim Meyering  <meyering@ascend.com>
70638
70639         * m4/jm-macros.m4: Use jm_AFS.
70640         * m4/afs.m4: New file (from fileutils' configure.in).
70641
70642         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
70643         * m4/chown.m4: Likewise.
70644         * m4/d-ino.m4: Likewise.
70645         * m4/d-type.m4: Likewise.
70646         * m4/fnmatch.m4: Likewise.
70647         * m4/getgroups.m4: Likewise.
70648         * m4/gettext.m4: Likewise.
70649         * m4/jm-mktime.m4: Likewise.
70650         * m4/jm-winsz2.m4: Likewise.
70651         * m4/lcmessage.m4: Likewise.
70652         * m4/ls-mntd-fs.m4: Likewise.
70653         * m4/malloc.m4: Likewise.
70654         * m4/memcmp.m4: Likewise.
70655         * m4/putenv.m4: Likewise.
70656         * m4/realloc.m4: Likewise.
70657         * m4/st_mtim.m4: Likewise.
70658         * m4/strftime.m4: Likewise.
70659
70660 1999-01-16  Jim Meyering  <meyering@ascend.com>
70661
70662         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
70663         (ARGMATCH_DIE_DECL): Define.
70664
70665 1999-01-12  Jim Meyering  <meyering@ascend.com>
70666
70667         * m4/Makefile.am.in: Rewrite to avoid using fmt.
70668         Reported by Lars Hecking.
70669
70670 1999-01-10  Jim Meyering  <meyering@ascend.com>
70671
70672         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
70673         gross kludge.
70674         * m4/inttypes_h.m4: Likewise.
70675         * m4/lstat.m4: Likewise.
70676         * m4/malloc.m4: Likewise.
70677         * m4/readdir.m4: Likewise.
70678         * m4/realloc.m4: Likewise.
70679         * m4/st_dm_mode.m4: Likewise.
70680         * m4/stat.m4: Likewise.
70681         * m4/utimbuf.m4: Likewise.
70682         * m4/utimes.m4: Likewise.
70683
70684         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
70685         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
70686         comments in config.h.in are meaningful.
70687
70688         * m4/jm-macros.m4: Require autoconf-2.13 here.
70689
70690         * m4/regex.m4: By default, don't use the included regex.c on systems
70691         with glibc 2.  Suggestion from Uli Drepper.
70692
70693 1999-01-02  Jim Meyering  <meyering@ascend.com>
70694
70695         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
70696
70697 1998-12-18  Jim Meyering  <meyering@ascend.com>
70698
70699         * m4/Makefile.am.in (Makefile.am): Simplify rule.
70700         Based on a suggestion from Lars Hecking.
70701
70702 1998-11-16  Paul Eggert  <eggert@twinsun.com>
70703
70704         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
70705
70706 1998-11-16  Jim Meyering  <meyering@ascend.com>
70707
70708         * m4/lfs.m4: Double-quote the `uname...` expression.
70709
70710 1998-11-14  Jim Meyering  <meyering@ascend.com>
70711
70712         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
70713         * m4/stat.m4: Likewise.
70714
70715 1998-11-03  Jim Meyering  <meyering@ascend.com>
70716
70717         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
70718         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
70719
70720 1998-10-18  Jim Meyering  <meyering@ascend.com>
70721
70722         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
70723
70724 1998-10-17  Jim Meyering  <meyering@ascend.com>
70725
70726         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
70727         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
70728         calls for those previously hard-coded headers.  Instead, take a new
70729         parameter.
70730         (jm_CHECK_DECLARATIONS): Reflect interface change.
70731         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
70732         (jm_CHECK_DECL_LOCALTIME_R): New macro.
70733
70734         * m4/mktime.m4: Test for spring-forward gap before long-running test.
70735
70736 1998-10-14  Jim Meyering  <meyering@ascend.com>
70737
70738         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
70739         instead of "TZ=America/Vancouver".  From Paul Eggert.
70740
70741 1998-10-11  Jim Meyering  <meyering@ascend.com>
70742
70743         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
70744         This adds a test for a recently added compatibility fix for mktime.c.
70745         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
70746
70747 1998-09-27  Jim Meyering  <meyering@ascend.com>
70748
70749         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
70750
70751         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
70752         ../configure.in, including a change from Gordon Matzigkeit to allow
70753         cross-compiling for the Hurd.
70754
70755         * m4/glibc.m4: New file/macro to test for the GNU C Library
70756         versions 1 and 2.  From Gordon Matzigkeit.
70757         Indent.
70758
70759 1998-09-21  Jim Meyering  <meyering@ascend.com>
70760
70761         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
70762
70763 1998-08-18  Paul Eggert  <eggert@twinsun.com>
70764
70765         Port nanosecond-resolution times to UnixWare 2.1.2 and
70766         pedantic Solaris 2.6.
70767
70768         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
70769         AC_STRUCT_ST_MTIM.
70770         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
70771         Generate name of ns member, instead of just 1 or undef.
70772         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
70773
70774 1998-08-15  Jim Meyering  <meyering@ascend.com>
70775
70776         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
70777         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
70778         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
70779         instead of jm_TYPE_SSIZE_T.
70780
70781 1998-08-12  Jim Meyering  <meyering@ascend.com>
70782
70783         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
70784
70785 1998-08-02  Jim Meyering  <meyering@ascend.com>
70786
70787         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
70788         in acconfig.h manually.
70789
70790 1998-07-31  Paul Eggert  <eggert@twinsun.com>
70791
70792         * m4/st_mtim.m4: New file.
70793
70794 1998-07-28  Jim Meyering  <meyering@ascend.com>
70795
70796         * m4/utimes.m4: Undef stat.
70797
70798 1998-07-25  Jim Meyering  <meyering@ascend.com>
70799
70800         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
70801         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
70802
70803 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
70804
70805         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
70806         uid and gid actually remain unchanged.
70807
70808 1998-07-07  Jim Meyering  <meyering@ascend.com>
70809
70810         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
70811
70812 1998-07-04  Jim Meyering  <meyering@ascend.com>
70813
70814         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
70815         to prove that this macro can be used in packages without regex.c.
70816
70817 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
70818
70819         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
70820         is to be used.
70821
70822 1998-07-03  Jim Meyering  <meyering@ascend.com>
70823
70824         * m4/gettext.m4: Add -lintl if it's found to be necessary.
70825
70826         * m4/gettext.m4: New file -- from gettext-0.10.35.
70827         * m4/lcmessage.m4: Likewise.
70828         * m4/progtest.m4: Likewise.
70829
70830         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
70831         * m4/jm-macros.m4: Require the new macro.
70832
70833 1998-06-29  Jim Meyering  <meyering@ascend.com>
70834
70835         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
70836         for the definition of NGROUPS (used in a system header included
70837         by sys/mount.h).
70838
70839 1998-06-28  Jim Meyering  <meyering@ascend.com>
70840
70841         * m4/ls-mntd-fs.m4: New file.
70842         * m4/fstypename.m4: New file.
70843
70844         * m4/jm-macros.m4: Require the new macro.
70845         * m4/jm-glibc-io.m4: New file.
70846
70847 1998-05-19  Jim Meyering  <meyering@ascend.com>
70848
70849         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
70850         * m4/lchown.m4: New file.
70851
70852         * m4/Makefile.am.in: New file.
70853         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
70854
70855 1998-05-14  Jim Meyering  <meyering@ascend.com>
70856
70857         * m4/Makefile.am (EXTRA_DIST): Add them.
70858         * m4/jm-macros.m4: New file.
70859         * m4/utimbuf.m4: New file.
70860
70861 1998-05-12  Jim Meyering  <meyering@ascend.com>
70862
70863         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
70864
70865 1998-05-11  Jim Meyering  <meyering@ascend.com>
70866
70867         * m4/isc-posix.m4: New file.
70868
70869 1998-05-10  Jim Meyering  <meyering@ascend.com>
70870
70871         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
70872
70873 1998-05-09  Jim Meyering  <meyering@ascend.com>
70874
70875         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
70876         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
70877         with automake.
70878
70879         * m4/ssize_t.m4: New file.
70880         * m4/mktime.m4: Remove file -- the new automake has this now.
70881
70882 1998-04-26  Jim Meyering  <meyering@ascend.com>
70883
70884         * m4/assert.m4: New file.
70885         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
70886
70887 1998-04-05  Jim Meyering  <meyering@ascend.com>
70888
70889         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
70890         (jm_PREREQ): Use it here.
70891
70892 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
70893
70894         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
70895         in acconfig.h.
70896
70897 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
70898
70899         * m4/prereq.m4: New file.
70900         * m4/error.m4: New file.
70901         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
70902
70903 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
70904
70905         * m4/getline.m4: Don't set am_cv_func_working_getline before the
70906         cache-check for the same variable -- that defeated the purpose of
70907         the test; the test program was never run.  This was a problem only
70908         on systems with losing getline functions -- HP-UX 10.20 is one.
70909         Reported by Bjorn Helgaas.
70910
70911 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
70912
70913         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
70914
70915 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
70916
70917         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
70918
70919         * m4/const.m4: New file.  Use an initializer in this declaration
70920         typedef int charset[2]; const charset x;
70921         Reported by Bob Glickstein.
70922
70923 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
70924
70925         * m4/chown.m4: Fix reversed types on -1 args to chown.
70926         From Kaveh Ghazi.
70927
70928 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
70929
70930         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
70931         Add lseek and memchr.
70932
70933         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
70934         T.E.Dickey <dickey@clark.net> said that some older preprocessors
70935         have a 20-character limit on names.
70936
70937 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
70938
70939         * m4/inttypes_h.m4: New file.
70940         * m4/uintmax_t.m4: New file.
70941         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
70942
70943
70944         -----
70945
70946         Local Variables:
70947         coding: utf-8
70948         End:
70949
70950         Copyright (C) 1997-2010 Free Software Foundation, Inc.
70951
70952         Copying and distribution of this file, with or without
70953         modification, are permitted provided the copyright notice
70954         and this notice are preserved.